diff --git a/.dockerignore b/.dockerignore index 8c3449d6..0475918c 100644 --- a/.dockerignore +++ b/.dockerignore @@ -76,10 +76,10 @@ backups/ services_data/ static/ media/ -!core/static -!blog/static -!vibes_auth/static -!payments/static +!engine/core/static +!engine/blog/static +!engine/vibes_auth/static +!engine/payments/static # Environment file .env diff --git a/.gitignore b/.gitignore index fb11fcfb..6b0e7bd1 100644 --- a/.gitignore +++ b/.gitignore @@ -109,10 +109,10 @@ static/ media/ # Allow checked-in static from apps -!core/static/ -!payments/static/ -!vibes_auth/static/ -!blog/static/ +!engine/core/static/ +!engine/payments/static/ +!engine/vibes_auth/static/ +!engine/blog/static/ # Webassets .webassets-cache/ diff --git a/.idea/externalDependencies.xml b/.idea/externalDependencies.xml index 66339880..ffb227ff 100644 --- a/.idea/externalDependencies.xml +++ b/.idea/externalDependencies.xml @@ -8,7 +8,6 @@ - diff --git a/README.md b/README.md index 83e4e865..aca50b61 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # eVibes -![LOGO](core/docs/images/evibes-big.png) +![LOGO](engine/core/docs/images/evibes-big.png) 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. @@ -87,7 +87,7 @@ eVibes — a lightweight, production-ready e‑commerce backend. Storefront, pro ## Configuration ### Dockerfile -If you rely on locale mirrors, adjust Debian sources before running install scripts: +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 ``` @@ -107,14 +107,7 @@ After generation, review and update secrets and credentials (API keys, DB passwo 1. @.your-domain.com 2. www.your-domain.com 3. api.your-domain.com - 4. b2b.your-domain.com - 5. prometheus.your-domain.com - -- For local development, add hosts entries (development only): - ```hosts - 127.0.0.1 api.localhost - 127.0.0.1 b2b.localhost - ``` + 4. prometheus.your-domain.com - Once running, access: - API root / Admin redirect: http://api.localhost:8000/ @@ -136,4 +129,4 @@ After generation, review and update secrets and credentials (API keys, DB passwo This project is licensed under the terms of the LICENSE file included in this repository. -![FAVICON](core/docs/images/evibes.png) \ No newline at end of file +![FAVICON](engine/core/docs/images/evibes.png) \ No newline at end of file diff --git a/blog/views.py b/blog/views.py deleted file mode 100644 index 075719c8..00000000 --- a/blog/views.py +++ /dev/null @@ -1,3 +0,0 @@ -import logging - -logger = logging.getLogger("django") diff --git a/core/api_urls.py b/core/api_urls.py deleted file mode 100644 index cfa07308..00000000 --- a/core/api_urls.py +++ /dev/null @@ -1,88 +0,0 @@ -from django.urls import include, path -from rest_framework.routers import DefaultRouter - -from core.sitemaps import BrandSitemap, CategorySitemap, ProductSitemap, StaticPagesSitemap -from core.views import ( - CacheOperatorView, - ContactUsView, - DownloadDigitalAssetView, - GlobalSearchView, - RequestCursedURLView, - SupportedLanguagesView, - WebsiteParametersView, - sitemap_detail, - sitemap_index, -) -from core.viewsets import ( - AddressViewSet, - AttributeGroupViewSet, - BrandViewSet, - CategoryViewSet, - FeedbackViewSet, - OrderProductViewSet, - OrderViewSet, - ProductTagViewSet, - ProductViewSet, - PromoCodeViewSet, - PromotionViewSet, - StockViewSet, - VendorViewSet, - WishlistViewSet, -) - -app_name = "core" - -core_router = DefaultRouter() -core_router.register(r"products", ProductViewSet, basename="products") -core_router.register(r"orders", OrderViewSet, basename="orders") -core_router.register(r"wishlists", WishlistViewSet, basename="wishlists") -core_router.register(r"attribute_groups", AttributeGroupViewSet, basename="attribute_groups") -core_router.register(r"brands", BrandViewSet, basename="brands") -core_router.register(r"categories", CategoryViewSet, basename="categories") -core_router.register(r"vendors", VendorViewSet, basename="vendors") -core_router.register(r"feedbacks", FeedbackViewSet, basename="feedbacks") -core_router.register(r"stocks", StockViewSet, basename="stocks") -core_router.register(r"promo_codes", PromoCodeViewSet, basename="promo_codes") -core_router.register(r"promotions", PromotionViewSet, basename="promotions") -core_router.register(r"addresses", AddressViewSet, basename="addresses") -core_router.register(r"product_tags", ProductTagViewSet, basename="product_tags") -core_router.register(r"order_products", OrderProductViewSet, basename="order_products") - -sitemaps = { - "static": StaticPagesSitemap, - "products": ProductSitemap, - "categories": CategorySitemap, - "brands": BrandSitemap, -} - -urlpatterns = [ - path("core/", include(core_router.urls)), - path( - "sitemap.xml", - sitemap_index, - { - "sitemaps": sitemaps, - "sitemap_url_name": "core:sitemap-detail", - }, - name="sitemap-index", - ), - path( - "sitemap-
.xml", - sitemap_detail, - {"sitemaps": sitemaps}, - name="sitemap-detail", - ), - path( - "sitemap-
-.xml", - sitemap_detail, - {"sitemaps": sitemaps}, - name="sitemap-detail", - ), - path("download//", DownloadDigitalAssetView.as_view(), name="download_digital_asset"), - path("search/", GlobalSearchView.as_view(), name="global_search"), - path("app/cache/", CacheOperatorView.as_view(), name="cache_operator"), - path("app/languages/", SupportedLanguagesView.as_view(), name="supported_languages"), - path("app/parameters/", WebsiteParametersView.as_view(), name="parameters"), - path("app/contact_us/", ContactUsView.as_view(), name="contact_us"), - path("app/request_cursed_url/", RequestCursedURLView.as_view(), name="request_cursed_url"), -] diff --git a/core/locale/ar_AR/LC_MESSAGES/django.mo b/core/locale/ar_AR/LC_MESSAGES/django.mo deleted file mode 100644 index 9487f878..00000000 Binary files a/core/locale/ar_AR/LC_MESSAGES/django.mo and /dev/null differ diff --git a/core/locale/cs_CZ/LC_MESSAGES/django.mo b/core/locale/cs_CZ/LC_MESSAGES/django.mo deleted file mode 100644 index 86cfbc4b..00000000 Binary files a/core/locale/cs_CZ/LC_MESSAGES/django.mo and /dev/null differ diff --git a/core/locale/da_DK/LC_MESSAGES/django.mo b/core/locale/da_DK/LC_MESSAGES/django.mo deleted file mode 100644 index 119246dd..00000000 Binary files a/core/locale/da_DK/LC_MESSAGES/django.mo and /dev/null differ diff --git a/core/locale/de_DE/LC_MESSAGES/django.mo b/core/locale/de_DE/LC_MESSAGES/django.mo deleted file mode 100644 index f4b4bf2c..00000000 Binary files a/core/locale/de_DE/LC_MESSAGES/django.mo and /dev/null differ diff --git a/core/locale/en_GB/LC_MESSAGES/django.mo b/core/locale/en_GB/LC_MESSAGES/django.mo deleted file mode 100644 index a35aaae8..00000000 Binary files a/core/locale/en_GB/LC_MESSAGES/django.mo and /dev/null differ diff --git a/core/locale/en_US/LC_MESSAGES/django.mo b/core/locale/en_US/LC_MESSAGES/django.mo deleted file mode 100644 index f27c29c2..00000000 Binary files a/core/locale/en_US/LC_MESSAGES/django.mo and /dev/null differ diff --git a/core/locale/es_ES/LC_MESSAGES/django.mo b/core/locale/es_ES/LC_MESSAGES/django.mo deleted file mode 100644 index ddd2a654..00000000 Binary files a/core/locale/es_ES/LC_MESSAGES/django.mo and /dev/null differ diff --git a/core/locale/fr_FR/LC_MESSAGES/django.mo b/core/locale/fr_FR/LC_MESSAGES/django.mo deleted file mode 100644 index 305145d3..00000000 Binary files a/core/locale/fr_FR/LC_MESSAGES/django.mo and /dev/null differ diff --git a/core/locale/he_IL/LC_MESSAGES/django.mo b/core/locale/he_IL/LC_MESSAGES/django.mo deleted file mode 100644 index abb15076..00000000 Binary files a/core/locale/he_IL/LC_MESSAGES/django.mo and /dev/null differ diff --git a/core/locale/id_ID/LC_MESSAGES/django.mo b/core/locale/id_ID/LC_MESSAGES/django.mo deleted file mode 100644 index 45e5f491..00000000 Binary files a/core/locale/id_ID/LC_MESSAGES/django.mo and /dev/null differ diff --git a/core/locale/it_IT/LC_MESSAGES/django.mo b/core/locale/it_IT/LC_MESSAGES/django.mo deleted file mode 100644 index 6b6d7cfb..00000000 Binary files a/core/locale/it_IT/LC_MESSAGES/django.mo and /dev/null differ diff --git a/core/locale/ja_JP/LC_MESSAGES/django.mo b/core/locale/ja_JP/LC_MESSAGES/django.mo deleted file mode 100644 index d5782867..00000000 Binary files a/core/locale/ja_JP/LC_MESSAGES/django.mo and /dev/null differ diff --git a/core/locale/ko_KR/LC_MESSAGES/django.mo b/core/locale/ko_KR/LC_MESSAGES/django.mo deleted file mode 100644 index 1efb48c7..00000000 Binary files a/core/locale/ko_KR/LC_MESSAGES/django.mo and /dev/null differ diff --git a/core/locale/nl_NL/LC_MESSAGES/django.mo b/core/locale/nl_NL/LC_MESSAGES/django.mo deleted file mode 100644 index c7f28b3b..00000000 Binary files a/core/locale/nl_NL/LC_MESSAGES/django.mo and /dev/null differ diff --git a/core/locale/no_NO/LC_MESSAGES/django.mo b/core/locale/no_NO/LC_MESSAGES/django.mo deleted file mode 100644 index a5c26fa4..00000000 Binary files a/core/locale/no_NO/LC_MESSAGES/django.mo and /dev/null differ diff --git a/core/locale/pl_PL/LC_MESSAGES/django.mo b/core/locale/pl_PL/LC_MESSAGES/django.mo deleted file mode 100644 index 26975d27..00000000 Binary files a/core/locale/pl_PL/LC_MESSAGES/django.mo and /dev/null differ diff --git a/core/locale/pt_BR/LC_MESSAGES/django.mo b/core/locale/pt_BR/LC_MESSAGES/django.mo deleted file mode 100644 index f36a362b..00000000 Binary files a/core/locale/pt_BR/LC_MESSAGES/django.mo and /dev/null differ diff --git a/core/locale/ro_RO/LC_MESSAGES/django.mo b/core/locale/ro_RO/LC_MESSAGES/django.mo deleted file mode 100644 index 46e8b8cf..00000000 Binary files a/core/locale/ro_RO/LC_MESSAGES/django.mo and /dev/null differ diff --git a/core/locale/ru_RU/LC_MESSAGES/django.mo b/core/locale/ru_RU/LC_MESSAGES/django.mo deleted file mode 100644 index 20a7e870..00000000 Binary files a/core/locale/ru_RU/LC_MESSAGES/django.mo and /dev/null differ diff --git a/core/locale/sv_SE/LC_MESSAGES/django.mo b/core/locale/sv_SE/LC_MESSAGES/django.mo deleted file mode 100644 index 8a287575..00000000 Binary files a/core/locale/sv_SE/LC_MESSAGES/django.mo and /dev/null differ diff --git a/core/locale/th_TH/LC_MESSAGES/django.mo b/core/locale/th_TH/LC_MESSAGES/django.mo deleted file mode 100644 index df12b00b..00000000 Binary files a/core/locale/th_TH/LC_MESSAGES/django.mo and /dev/null differ diff --git a/core/locale/tr_TR/LC_MESSAGES/django.mo b/core/locale/tr_TR/LC_MESSAGES/django.mo deleted file mode 100644 index c5a7ad50..00000000 Binary files a/core/locale/tr_TR/LC_MESSAGES/django.mo and /dev/null differ diff --git a/core/locale/vi_VN/LC_MESSAGES/django.mo b/core/locale/vi_VN/LC_MESSAGES/django.mo deleted file mode 100644 index 0d441490..00000000 Binary files a/core/locale/vi_VN/LC_MESSAGES/django.mo and /dev/null differ diff --git a/core/locale/zh_Hans/LC_MESSAGES/django.mo b/core/locale/zh_Hans/LC_MESSAGES/django.mo deleted file mode 100644 index b9a2161c..00000000 Binary files a/core/locale/zh_Hans/LC_MESSAGES/django.mo and /dev/null differ diff --git a/core/urls.py b/core/urls.py deleted file mode 100644 index a1b30b22..00000000 --- a/core/urls.py +++ /dev/null @@ -1,3 +0,0 @@ -from typing import Any - -urlpatterns: list[Any] = [] diff --git a/core/utils/vendors.py b/core/utils/vendors.py deleted file mode 100644 index 462f2eab..00000000 --- a/core/utils/vendors.py +++ /dev/null @@ -1,39 +0,0 @@ -import logging -from contextlib import suppress -from typing import Type - -from celery import current_task -from celery.utils.log import get_task_logger - -from core.models import Vendor -from core.vendors import AbstractVendor -from evibes.utils.misc import create_object - -sync_logger = logging.getLogger("django") -async_logger = get_task_logger(__name__) - - -def _in_celery_task() -> bool: - task = current_task - with suppress(Exception): - return bool(task and getattr(task, "request", None) and getattr(task.request, "id", None)) - return False - - -def get_vendors_integrations(name: str | None = None) -> list[Type[AbstractVendor]]: - vendors_integrations: list[Type[AbstractVendor]] = [] - - vendors = Vendor.objects.filter(is_active=True, integration_path__isnull=False) - if name: - vendors = vendors.filter(name=name) - - logger = async_logger if _in_celery_task() else sync_logger - - for vendor in vendors: - try: - module_name, class_name = vendor.integration_path.rsplit(".", 1) - vendors_integrations.append(create_object(module_name, class_name)) - except Exception as e: - logger.warning("Couldn't load integration for vendor %s: %s", vendor.name, e) - - return vendors_integrations diff --git a/blog/__init__.py b/engine/__init__.py similarity index 100% rename from blog/__init__.py rename to engine/__init__.py diff --git a/blog/docs/__init__.py b/engine/blog/__init__.py similarity index 100% rename from blog/docs/__init__.py rename to engine/blog/__init__.py diff --git a/blog/admin.py b/engine/blog/admin.py similarity index 89% rename from blog/admin.py rename to engine/blog/admin.py index b207d677..611edfe2 100644 --- a/blog/admin.py +++ b/engine/blog/admin.py @@ -1,7 +1,7 @@ from django.contrib.admin import ModelAdmin, register from django_summernote.admin import SummernoteModelAdminMixin -from core.admin import ActivationActionsMixin, FieldsetsMixin +from engine.core.admin import ActivationActionsMixin, FieldsetsMixin from .models import Post, PostTag @@ -13,7 +13,7 @@ class PostAdmin(SummernoteModelAdminMixin, FieldsetsMixin, ActivationActionsMixi search_fields = ("title", "content", "slug") filter_horizontal = ("tags",) date_hierarchy = "created" - autocomplete_fields = ("author", "tags") + autocomplete_fields = ("tags",) readonly_fields = ( "uuid", "slug", @@ -29,6 +29,7 @@ class PostAdmin(SummernoteModelAdminMixin, FieldsetsMixin, ActivationActionsMixi "file", ] relation_fields = [ + "author", "tags", ] diff --git a/blog/apps.py b/engine/blog/apps.py similarity index 68% rename from blog/apps.py rename to engine/blog/apps.py index 689b2aaf..500c1bdd 100644 --- a/blog/apps.py +++ b/engine/blog/apps.py @@ -4,10 +4,10 @@ from django.utils.translation import gettext_lazy as _ class BlogConfig(AppConfig): default_auto_field = "django.db.models.BigAutoField" - name = "blog" + name = "engine.blog" verbose_name = _("blog") # noinspection PyUnresolvedReferences def ready(self) -> None: - import blog.elasticsearch.documents - import blog.signals # noqa: F401 + import engine.blog.elasticsearch.documents + import engine.blog.signals # noqa: F401 diff --git a/blog/docs/drf/__init__.py b/engine/blog/docs/__init__.py similarity index 100% rename from blog/docs/drf/__init__.py rename to engine/blog/docs/__init__.py diff --git a/blog/elasticsearch/__init__.py b/engine/blog/docs/drf/__init__.py similarity index 100% rename from blog/elasticsearch/__init__.py rename to engine/blog/docs/drf/__init__.py diff --git a/blog/docs/drf/views.py b/engine/blog/docs/drf/views.py similarity index 100% rename from blog/docs/drf/views.py rename to engine/blog/docs/drf/views.py diff --git a/blog/docs/drf/viewsets.py b/engine/blog/docs/drf/viewsets.py similarity index 83% rename from blog/docs/drf/viewsets.py rename to engine/blog/docs/drf/viewsets.py index c0e9a5ee..14d2e36f 100644 --- a/blog/docs/drf/viewsets.py +++ b/engine/blog/docs/drf/viewsets.py @@ -2,8 +2,8 @@ from django.utils.translation import gettext_lazy as _ from drf_spectacular.utils import extend_schema from rest_framework import status -from core.docs.drf import BASE_ERRORS -from blog.serializers import PostSerializer +from engine.core.docs.drf import BASE_ERRORS +from engine.blog.serializers import PostSerializer POST_SCHEMA = { "list": extend_schema( diff --git a/blog/graphene/__init__.py b/engine/blog/elasticsearch/__init__.py similarity index 100% rename from blog/graphene/__init__.py rename to engine/blog/elasticsearch/__init__.py diff --git a/blog/elasticsearch/documents.py b/engine/blog/elasticsearch/documents.py similarity index 83% rename from blog/elasticsearch/documents.py rename to engine/blog/elasticsearch/documents.py index f266efaf..0a7b0005 100644 --- a/blog/elasticsearch/documents.py +++ b/engine/blog/elasticsearch/documents.py @@ -1,9 +1,9 @@ from django_elasticsearch_dsl import fields from django_elasticsearch_dsl.registries import registry -from blog.models import Post -from core.elasticsearch import COMMON_ANALYSIS, ActiveOnlyMixin, add_multilang_fields -from core.elasticsearch.documents import BaseDocument +from engine.blog.models import Post +from engine.core.elasticsearch import COMMON_ANALYSIS, ActiveOnlyMixin, add_multilang_fields +from engine.core.elasticsearch.documents import BaseDocument class PostDocument(ActiveOnlyMixin, BaseDocument): # type: ignore [misc] diff --git a/blog/filters.py b/engine/blog/filters.py similarity index 89% rename from blog/filters.py rename to engine/blog/filters.py index 115e9d99..fd6f1db3 100644 --- a/blog/filters.py +++ b/engine/blog/filters.py @@ -1,7 +1,7 @@ from django_filters import CharFilter, FilterSet, OrderingFilter, UUIDFilter -from blog.models import Post -from core.filters import CaseInsensitiveListFilter +from engine.blog.models import Post +from engine.core.filters import CaseInsensitiveListFilter class PostFilter(FilterSet): # type: ignore [misc] diff --git a/blog/migrations/__init__.py b/engine/blog/graphene/__init__.py similarity index 100% rename from blog/migrations/__init__.py rename to engine/blog/graphene/__init__.py diff --git a/blog/graphene/object_types.py b/engine/blog/graphene/object_types.py similarity index 92% rename from blog/graphene/object_types.py rename to engine/blog/graphene/object_types.py index 0ee27abc..08cef11e 100644 --- a/blog/graphene/object_types.py +++ b/engine/blog/graphene/object_types.py @@ -2,7 +2,7 @@ import graphene from graphene import relay from graphene_django import DjangoObjectType -from blog.models import Post, PostTag +from engine.blog.models import Post, PostTag class PostType(DjangoObjectType): diff --git a/blog/locale/ar_AR/LC_MESSAGES/django.mo b/engine/blog/locale/ar_AR/LC_MESSAGES/django.mo similarity index 92% rename from blog/locale/ar_AR/LC_MESSAGES/django.mo rename to engine/blog/locale/ar_AR/LC_MESSAGES/django.mo index 048a14b8..025f2196 100644 Binary files a/blog/locale/ar_AR/LC_MESSAGES/django.mo and b/engine/blog/locale/ar_AR/LC_MESSAGES/django.mo differ diff --git a/blog/locale/ar_AR/LC_MESSAGES/django.po b/engine/blog/locale/ar_AR/LC_MESSAGES/django.po similarity index 81% rename from blog/locale/ar_AR/LC_MESSAGES/django.po rename to engine/blog/locale/ar_AR/LC_MESSAGES/django.po index 828cce10..d03f6ded 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 19:18+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -13,93 +13,92 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: blog/apps.py:8 +#: engine/blog/apps.py:8 msgid "blog" msgstr "المدونة" -#: blog/docs/drf/viewsets.py:10 +#: engine/blog/docs/drf/viewsets.py:10 msgid "list all posts (read-only)" msgstr "سرد جميع المشاركات (للقراءة فقط)" -#: blog/docs/drf/viewsets.py:14 +#: engine/blog/docs/drf/viewsets.py:14 msgid "retrieve a single post (read-only)" msgstr "استرداد منشور واحد (للقراءة فقط)" -#: blog/models.py:12 +#: engine/blog/models.py:13 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 "" "يمثل نموذج منشور المدونة. تحدد فئة المشاركة بنية وسلوك مشاركة المدونة. " "وتتضمن سمات للمؤلف والعنوان والمحتوى ومرفق الملف الاختياري والسبيكة " -"والعلامات المرتبطة بها. يفرض الصنف قيودًا مثل طلب إما محتوى أو مرفق ملف ولكن" -" ليس كلاهما في نفس الوقت. كما أنها تدعم إنشاء سبيكة تلقائية بناءً على " -"العنوان." +"والعلامات المرتبطة بها. يفرض الصنف قيودًا مثل طلب إما محتوى أو مرفق ملف ولكن " +"ليس كلاهما في نفس الوقت. كما أنها تدعم إنشاء سبيكة تلقائية بناءً على العنوان." -#: blog/models.py:23 +#: engine/blog/models.py:24 msgid "post title" msgstr "عنوان المنشور" -#: blog/models.py:23 +#: engine/blog/models.py:24 msgid "title" msgstr "العنوان" -#: blog/models.py:68 +#: engine/blog/models.py:69 msgid "is static page" msgstr "هي صفحة ثابتة" -#: blog/models.py:69 +#: engine/blog/models.py:70 msgid "is this a post for a page with static URL (e.g. `/help/delivery`)?" msgstr "" "هل هذا منشور لصفحة ذات عنوان URL ثابت (على سبيل المثال '/مساعدة/التسليم'؟)" -#: blog/models.py:76 +#: engine/blog/models.py:77 msgid "post" msgstr "المنشور" -#: blog/models.py:77 +#: engine/blog/models.py:78 msgid "posts" msgstr "المنشورات" -#: blog/models.py:81 +#: engine/blog/models.py:82 msgid "markdown files are not supported yet - use markdown content instead" msgstr "" "ملفات تخفيض السعر غير مدعومة Yer - استخدم محتوى تخفيض السعر بدلاً من ذلك!" -#: blog/models.py:83 +#: engine/blog/models.py:84 msgid "" "a markdown file or markdown content must be provided - mutually exclusive" msgstr "يجب توفير ملف ترميز أو محتوى ترميز مخفض - متنافيان" -#: blog/models.py:115 +#: engine/blog/models.py:116 msgid "internal tag identifier for the post tag" msgstr "معرّف العلامة الداخلي لعلامة المنشور" -#: blog/models.py:116 +#: engine/blog/models.py:117 msgid "tag name" msgstr "اسم العلامة" -#: blog/models.py:120 +#: engine/blog/models.py:121 msgid "user-friendly name for the post tag" msgstr "اسم سهل الاستخدام لعلامة المنشور" -#: blog/models.py:121 +#: engine/blog/models.py:122 msgid "tag display name" msgstr "اسم عرض العلامة" -#: blog/models.py:129 +#: engine/blog/models.py:130 msgid "post tag" msgstr "علامة المشاركة" -#: blog/models.py:130 +#: engine/blog/models.py:131 msgid "post tags" msgstr "علامات المشاركة" -#: blog/viewsets.py:16 +#: engine/blog/viewsets.py:16 msgid "" "Encapsulates operations for managing and retrieving Post entities in a read-" "only model view set. This class is tailored to handle Post objects that are " diff --git a/blog/locale/cs_CZ/LC_MESSAGES/django.mo b/engine/blog/locale/cs_CZ/LC_MESSAGES/django.mo similarity index 92% rename from blog/locale/cs_CZ/LC_MESSAGES/django.mo rename to engine/blog/locale/cs_CZ/LC_MESSAGES/django.mo index 4a82f576..b350ee60 100644 Binary files a/blog/locale/cs_CZ/LC_MESSAGES/django.mo and b/engine/blog/locale/cs_CZ/LC_MESSAGES/django.mo differ diff --git a/blog/locale/cs_CZ/LC_MESSAGES/django.po b/engine/blog/locale/cs_CZ/LC_MESSAGES/django.po similarity index 78% rename from blog/locale/cs_CZ/LC_MESSAGES/django.po rename to engine/blog/locale/cs_CZ/LC_MESSAGES/django.po index 4187f2cb..0f8e13ee 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 19:18+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -13,96 +13,96 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: blog/apps.py:8 +#: engine/blog/apps.py:8 msgid "blog" msgstr "Blog" -#: blog/docs/drf/viewsets.py:10 +#: engine/blog/docs/drf/viewsets.py:10 msgid "list all posts (read-only)" msgstr "Seznam všech příspěvků (pouze pro čtení)" -#: blog/docs/drf/viewsets.py:14 +#: engine/blog/docs/drf/viewsets.py:14 msgid "retrieve a single post (read-only)" msgstr "Získání jednoho příspěvku (pouze pro čtení)" -#: blog/models.py:12 +#: engine/blog/models.py:13 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." -#: blog/models.py:23 +#: engine/blog/models.py:24 msgid "post title" msgstr "Název příspěvku" -#: blog/models.py:23 +#: engine/blog/models.py:24 msgid "title" msgstr "Název" -#: blog/models.py:68 +#: engine/blog/models.py:69 msgid "is static page" msgstr "je statická stránka" -#: blog/models.py:69 +#: engine/blog/models.py:70 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`)?" -#: blog/models.py:76 +#: engine/blog/models.py:77 msgid "post" msgstr "Příspěvek" -#: blog/models.py:77 +#: engine/blog/models.py:78 msgid "posts" msgstr "Příspěvky" -#: blog/models.py:81 +#: engine/blog/models.py:82 msgid "markdown files are not supported yet - use markdown content instead" msgstr "" "Soubory Markdown nejsou podporovány - místo toho použijte obsah Markdown!" -#: blog/models.py:83 +#: engine/blog/models.py:84 msgid "" "a markdown file or markdown content must be provided - mutually exclusive" msgstr "" "musí být poskytnut soubor markdown nebo obsah markdown - vzájemně se " "vylučují." -#: blog/models.py:115 +#: engine/blog/models.py:116 msgid "internal tag identifier for the post tag" msgstr "interní identifikátor tagu pro tag příspěvku" -#: blog/models.py:116 +#: engine/blog/models.py:117 msgid "tag name" msgstr "Název štítku" -#: blog/models.py:120 +#: engine/blog/models.py:121 msgid "user-friendly name for the post tag" msgstr "Uživatelsky přívětivý název pro značku příspěvku" -#: blog/models.py:121 +#: engine/blog/models.py:122 msgid "tag display name" msgstr "Zobrazení názvu štítku" -#: blog/models.py:129 +#: engine/blog/models.py:130 msgid "post tag" msgstr "Označení příspěvku" -#: blog/models.py:130 +#: engine/blog/models.py:131 msgid "post tags" msgstr "Štítky příspěvků" -#: blog/viewsets.py:16 +#: engine/blog/viewsets.py:16 msgid "" "Encapsulates operations for managing and retrieving Post entities in a read-" "only model view set. This class is tailored to handle Post objects that are " @@ -111,8 +111,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/blog/locale/da_DK/LC_MESSAGES/django.mo b/engine/blog/locale/da_DK/LC_MESSAGES/django.mo similarity index 92% rename from blog/locale/da_DK/LC_MESSAGES/django.mo rename to engine/blog/locale/da_DK/LC_MESSAGES/django.mo index 16ecd96a..83be66a1 100644 Binary files a/blog/locale/da_DK/LC_MESSAGES/django.mo and b/engine/blog/locale/da_DK/LC_MESSAGES/django.mo differ diff --git a/blog/locale/da_DK/LC_MESSAGES/django.po b/engine/blog/locale/da_DK/LC_MESSAGES/django.po similarity index 79% rename from blog/locale/da_DK/LC_MESSAGES/django.po rename to engine/blog/locale/da_DK/LC_MESSAGES/django.po index 14d9d412..fb17a168 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 19:18+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -13,94 +13,94 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: blog/apps.py:8 +#: engine/blog/apps.py:8 msgid "blog" msgstr "Blog" -#: blog/docs/drf/viewsets.py:10 +#: engine/blog/docs/drf/viewsets.py:10 msgid "list all posts (read-only)" msgstr "Vis alle indlæg (skrivebeskyttet)" -#: blog/docs/drf/viewsets.py:14 +#: engine/blog/docs/drf/viewsets.py:14 msgid "retrieve a single post (read-only)" msgstr "Hent et enkelt indlæg (skrivebeskyttet)" -#: blog/models.py:12 +#: engine/blog/models.py:13 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." -#: blog/models.py:23 +#: engine/blog/models.py:24 msgid "post title" msgstr "Indlæggets titel" -#: blog/models.py:23 +#: engine/blog/models.py:24 msgid "title" msgstr "Titel" -#: blog/models.py:68 +#: engine/blog/models.py:69 msgid "is static page" msgstr "er en statisk side" -#: blog/models.py:69 +#: engine/blog/models.py:70 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`)?" -#: blog/models.py:76 +#: engine/blog/models.py:77 msgid "post" msgstr "Indlæg" -#: blog/models.py:77 +#: engine/blog/models.py:78 msgid "posts" msgstr "Indlæg" -#: blog/models.py:81 +#: engine/blog/models.py:82 msgid "markdown files are not supported yet - use markdown content instead" msgstr "Markdown-filer understøttes ikke - brug markdown-indhold i stedet!" -#: blog/models.py:83 +#: engine/blog/models.py:84 msgid "" "a markdown file or markdown content must be provided - mutually exclusive" msgstr "" "en markdown-fil eller markdown-indhold skal leveres - gensidigt udelukkende" -#: blog/models.py:115 +#: engine/blog/models.py:116 msgid "internal tag identifier for the post tag" msgstr "intern tag-identifikator for indlægs-tagget" -#: blog/models.py:116 +#: engine/blog/models.py:117 msgid "tag name" msgstr "Tag-navn" -#: blog/models.py:120 +#: engine/blog/models.py:121 msgid "user-friendly name for the post tag" msgstr "Brugervenligt navn til posttagget" -#: blog/models.py:121 +#: engine/blog/models.py:122 msgid "tag display name" msgstr "Navn på tag-visning" -#: blog/models.py:129 +#: engine/blog/models.py:130 msgid "post tag" msgstr "Tag til indlæg" -#: blog/models.py:130 +#: engine/blog/models.py:131 msgid "post tags" msgstr "Tags til indlæg" -#: blog/viewsets.py:16 +#: engine/blog/viewsets.py:16 msgid "" "Encapsulates operations for managing and retrieving Post entities in a read-" "only model view set. This class is tailored to handle Post objects that are " @@ -113,6 +113,5 @@ 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/blog/locale/de_DE/LC_MESSAGES/django.mo b/engine/blog/locale/de_DE/LC_MESSAGES/django.mo similarity index 92% rename from blog/locale/de_DE/LC_MESSAGES/django.mo rename to engine/blog/locale/de_DE/LC_MESSAGES/django.mo index 6e450643..9ef22b24 100644 Binary files a/blog/locale/de_DE/LC_MESSAGES/django.mo and b/engine/blog/locale/de_DE/LC_MESSAGES/django.mo differ diff --git a/blog/locale/de_DE/LC_MESSAGES/django.po b/engine/blog/locale/de_DE/LC_MESSAGES/django.po similarity index 81% rename from blog/locale/de_DE/LC_MESSAGES/django.po rename to engine/blog/locale/de_DE/LC_MESSAGES/django.po index 92e98930..7b3985c2 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 19:18+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -13,26 +13,26 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: blog/apps.py:8 +#: engine/blog/apps.py:8 msgid "blog" msgstr "Blog" -#: blog/docs/drf/viewsets.py:10 +#: engine/blog/docs/drf/viewsets.py:10 msgid "list all posts (read-only)" msgstr "Alle Beiträge auflisten (schreibgeschützt)" -#: blog/docs/drf/viewsets.py:14 +#: engine/blog/docs/drf/viewsets.py:14 msgid "retrieve a single post (read-only)" msgstr "Einen einzelnen Beitrag abrufen (schreibgeschützt)" -#: blog/models.py:12 +#: engine/blog/models.py:13 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,70 +42,70 @@ msgstr "" "unterstützt auch die automatische Slug-Generierung auf der Grundlage des " "Titels." -#: blog/models.py:23 +#: engine/blog/models.py:24 msgid "post title" msgstr "Titel des Beitrags" -#: blog/models.py:23 +#: engine/blog/models.py:24 msgid "title" msgstr "Titel" -#: blog/models.py:68 +#: engine/blog/models.py:69 msgid "is static page" msgstr "ist eine statische Seite" -#: blog/models.py:69 +#: engine/blog/models.py:70 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`)?" -#: blog/models.py:76 +#: engine/blog/models.py:77 msgid "post" msgstr "Beitrag" -#: blog/models.py:77 +#: engine/blog/models.py:78 msgid "posts" msgstr "Beiträge" -#: blog/models.py:81 +#: engine/blog/models.py:82 msgid "markdown files are not supported yet - use markdown content instead" msgstr "" "Markdown-Dateien werden nicht unterstützt - verwenden Sie stattdessen " "Markdown-Inhalte!" -#: blog/models.py:83 +#: engine/blog/models.py:84 msgid "" "a markdown file or markdown content must be provided - mutually exclusive" msgstr "" "eine Markdown-Datei oder ein Markdown-Inhalt muss bereitgestellt werden - " "beide schließen sich gegenseitig aus" -#: blog/models.py:115 +#: engine/blog/models.py:116 msgid "internal tag identifier for the post tag" msgstr "interner Tag-Bezeichner für den Post-Tag" -#: blog/models.py:116 +#: engine/blog/models.py:117 msgid "tag name" msgstr "Tag name" -#: blog/models.py:120 +#: engine/blog/models.py:121 msgid "user-friendly name for the post tag" msgstr "Benutzerfreundlicher Name für das Post-Tag" -#: blog/models.py:121 +#: engine/blog/models.py:122 msgid "tag display name" msgstr "Tag-Anzeigename" -#: blog/models.py:129 +#: engine/blog/models.py:130 msgid "post tag" msgstr "Tag eintragen" -#: blog/models.py:130 +#: engine/blog/models.py:131 msgid "post tags" msgstr "Tags eintragen" -#: blog/viewsets.py:16 +#: engine/blog/viewsets.py:16 msgid "" "Encapsulates operations for managing and retrieving Post entities in a read-" "only model view set. This class is tailored to handle Post objects that are " @@ -119,5 +119,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/blog/locale/en_GB/LC_MESSAGES/django.mo b/engine/blog/locale/en_GB/LC_MESSAGES/django.mo similarity index 93% rename from blog/locale/en_GB/LC_MESSAGES/django.mo rename to engine/blog/locale/en_GB/LC_MESSAGES/django.mo index 546e6068..19eced8a 100644 Binary files a/blog/locale/en_GB/LC_MESSAGES/django.mo and b/engine/blog/locale/en_GB/LC_MESSAGES/django.mo differ diff --git a/blog/locale/en_GB/LC_MESSAGES/django.po b/engine/blog/locale/en_GB/LC_MESSAGES/django.po similarity index 82% rename from blog/locale/en_GB/LC_MESSAGES/django.po rename to engine/blog/locale/en_GB/LC_MESSAGES/django.po index ff8c6d21..a90e8dbf 100644 --- a/blog/locale/en_GB/LC_MESSAGES/django.po +++ b/engine/blog/locale/en_GB/LC_MESSAGES/django.po @@ -2,12 +2,12 @@ # 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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 19:18+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -17,93 +17,93 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: blog/apps.py:8 +#: engine/blog/apps.py:8 msgid "blog" msgstr "Blog" -#: blog/docs/drf/viewsets.py:10 +#: engine/blog/docs/drf/viewsets.py:10 msgid "list all posts (read-only)" msgstr "List all posts (read-only)" -#: blog/docs/drf/viewsets.py:14 +#: engine/blog/docs/drf/viewsets.py:14 msgid "retrieve a single post (read-only)" msgstr "Retrieve a single post (read-only)" -#: blog/models.py:12 +#: engine/blog/models.py:13 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." -#: blog/models.py:23 +#: engine/blog/models.py:24 msgid "post title" msgstr "Post's title" -#: blog/models.py:23 +#: engine/blog/models.py:24 msgid "title" msgstr "Title" -#: blog/models.py:68 +#: engine/blog/models.py:69 msgid "is static page" msgstr "is static page" -#: blog/models.py:69 +#: engine/blog/models.py:70 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`)?" -#: blog/models.py:76 +#: engine/blog/models.py:77 msgid "post" msgstr "Post" -#: blog/models.py:77 +#: engine/blog/models.py:78 msgid "posts" msgstr "Posts" -#: blog/models.py:81 +#: engine/blog/models.py:82 msgid "markdown files are not supported yet - use markdown content instead" msgstr "Markdown files are not supported yer - use markdown content instead!" -#: blog/models.py:83 +#: engine/blog/models.py:84 msgid "" "a markdown file or markdown content must be provided - mutually exclusive" msgstr "" "a markdown file or markdown content must be provided - mutually exclusive" -#: blog/models.py:115 +#: engine/blog/models.py:116 msgid "internal tag identifier for the post tag" msgstr "internal tag identifier for the post tag" -#: blog/models.py:116 +#: engine/blog/models.py:117 msgid "tag name" msgstr "Tag name" -#: blog/models.py:120 +#: engine/blog/models.py:121 msgid "user-friendly name for the post tag" msgstr "User-friendly name for the post tag" -#: blog/models.py:121 +#: engine/blog/models.py:122 msgid "tag display name" msgstr "Tag display name" -#: blog/models.py:129 +#: engine/blog/models.py:130 msgid "post tag" msgstr "Post tag" -#: blog/models.py:130 +#: engine/blog/models.py:131 msgid "post tags" msgstr "Post tags" -#: blog/viewsets.py:16 +#: engine/blog/viewsets.py:16 msgid "" "Encapsulates operations for managing and retrieving Post entities in a read-" "only model view set. This class is tailored to handle Post objects that are " diff --git a/blog/locale/en_US/LC_MESSAGES/django.mo b/engine/blog/locale/en_US/LC_MESSAGES/django.mo similarity index 93% rename from blog/locale/en_US/LC_MESSAGES/django.mo rename to engine/blog/locale/en_US/LC_MESSAGES/django.mo index 804f150e..f34a002b 100644 Binary files a/blog/locale/en_US/LC_MESSAGES/django.mo and b/engine/blog/locale/en_US/LC_MESSAGES/django.mo differ diff --git a/blog/locale/en_US/LC_MESSAGES/django.po b/engine/blog/locale/en_US/LC_MESSAGES/django.po similarity index 82% rename from blog/locale/en_US/LC_MESSAGES/django.po rename to engine/blog/locale/en_US/LC_MESSAGES/django.po index f8064e4c..84eee432 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 19:18+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -13,93 +13,93 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: blog/apps.py:8 +#: engine/blog/apps.py:8 msgid "blog" msgstr "Blog" -#: blog/docs/drf/viewsets.py:10 +#: engine/blog/docs/drf/viewsets.py:10 msgid "list all posts (read-only)" msgstr "List all posts (read-only)" -#: blog/docs/drf/viewsets.py:14 +#: engine/blog/docs/drf/viewsets.py:14 msgid "retrieve a single post (read-only)" msgstr "Retrieve a single post (read-only)" -#: blog/models.py:12 +#: engine/blog/models.py:13 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." -#: blog/models.py:23 +#: engine/blog/models.py:24 msgid "post title" msgstr "Post's title" -#: blog/models.py:23 +#: engine/blog/models.py:24 msgid "title" msgstr "Title" -#: blog/models.py:68 +#: engine/blog/models.py:69 msgid "is static page" msgstr "is static page" -#: blog/models.py:69 +#: engine/blog/models.py:70 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`)?" -#: blog/models.py:76 +#: engine/blog/models.py:77 msgid "post" msgstr "Post" -#: blog/models.py:77 +#: engine/blog/models.py:78 msgid "posts" msgstr "Posts" -#: blog/models.py:81 +#: engine/blog/models.py:82 msgid "markdown files are not supported yet - use markdown content instead" msgstr "Markdown files are not supported yer - use markdown content instead!" -#: blog/models.py:83 +#: engine/blog/models.py:84 msgid "" "a markdown file or markdown content must be provided - mutually exclusive" msgstr "" "a markdown file or markdown content must be provided - mutually exclusive" -#: blog/models.py:115 +#: engine/blog/models.py:116 msgid "internal tag identifier for the post tag" msgstr "internal tag identifier for the post tag" -#: blog/models.py:116 +#: engine/blog/models.py:117 msgid "tag name" msgstr "Tag name" -#: blog/models.py:120 +#: engine/blog/models.py:121 msgid "user-friendly name for the post tag" msgstr "User-friendly name for the post tag" -#: blog/models.py:121 +#: engine/blog/models.py:122 msgid "tag display name" msgstr "Tag display name" -#: blog/models.py:129 +#: engine/blog/models.py:130 msgid "post tag" msgstr "Post tag" -#: blog/models.py:130 +#: engine/blog/models.py:131 msgid "post tags" msgstr "Post tags" -#: blog/viewsets.py:16 +#: engine/blog/viewsets.py:16 msgid "" "Encapsulates operations for managing and retrieving Post entities in a read-" "only model view set. This class is tailored to handle Post objects that are " diff --git a/blog/locale/es_ES/LC_MESSAGES/django.mo b/engine/blog/locale/es_ES/LC_MESSAGES/django.mo similarity index 92% rename from blog/locale/es_ES/LC_MESSAGES/django.mo rename to engine/blog/locale/es_ES/LC_MESSAGES/django.mo index 0722bcdf..5729fa3f 100644 Binary files a/blog/locale/es_ES/LC_MESSAGES/django.mo and b/engine/blog/locale/es_ES/LC_MESSAGES/django.mo differ diff --git a/blog/locale/es_ES/LC_MESSAGES/django.po b/engine/blog/locale/es_ES/LC_MESSAGES/django.po similarity index 80% rename from blog/locale/es_ES/LC_MESSAGES/django.po rename to engine/blog/locale/es_ES/LC_MESSAGES/django.po index 3ddbd12b..d46ea176 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 19:18+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -13,26 +13,26 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: blog/apps.py:8 +#: engine/blog/apps.py:8 msgid "blog" msgstr "Blog" -#: blog/docs/drf/viewsets.py:10 +#: engine/blog/docs/drf/viewsets.py:10 msgid "list all posts (read-only)" msgstr "Listar todos los mensajes (sólo lectura)" -#: blog/docs/drf/viewsets.py:14 +#: engine/blog/docs/drf/viewsets.py:14 msgid "retrieve a single post (read-only)" msgstr "Recuperar una única entrada (sólo lectura)" -#: blog/models.py:12 +#: engine/blog/models.py:13 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,69 +41,69 @@ msgstr "" "adjunto, pero no ambos simultáneamente. También admite la generación " "automática de slug a partir del título." -#: blog/models.py:23 +#: engine/blog/models.py:24 msgid "post title" msgstr "Título del mensaje" -#: blog/models.py:23 +#: engine/blog/models.py:24 msgid "title" msgstr "Título" -#: blog/models.py:68 +#: engine/blog/models.py:69 msgid "is static page" msgstr "es una página estática" -#: blog/models.py:69 +#: engine/blog/models.py:70 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`)?" -#: blog/models.py:76 +#: engine/blog/models.py:77 msgid "post" msgstr "Publicar en" -#: blog/models.py:77 +#: engine/blog/models.py:78 msgid "posts" msgstr "Puestos" -#: blog/models.py:81 +#: engine/blog/models.py:82 msgid "markdown files are not supported yet - use markdown content instead" msgstr "" "No se admiten archivos Markdown - ¡utiliza contenido Markdown en su lugar!" -#: blog/models.py:83 +#: engine/blog/models.py:84 msgid "" "a markdown file or markdown content must be provided - mutually exclusive" msgstr "" "se debe proporcionar un archivo markdown o contenido markdown - mutuamente " "excluyentes" -#: blog/models.py:115 +#: engine/blog/models.py:116 msgid "internal tag identifier for the post tag" msgstr "identificador interno de la etiqueta post" -#: blog/models.py:116 +#: engine/blog/models.py:117 msgid "tag name" msgstr "Nombre de la etiqueta" -#: blog/models.py:120 +#: engine/blog/models.py:121 msgid "user-friendly name for the post tag" msgstr "Nombre fácil de usar para la etiqueta de la entrada" -#: blog/models.py:121 +#: engine/blog/models.py:122 msgid "tag display name" msgstr "Nombre de la etiqueta" -#: blog/models.py:129 +#: engine/blog/models.py:130 msgid "post tag" msgstr "Etiqueta postal" -#: blog/models.py:130 +#: engine/blog/models.py:131 msgid "post tags" msgstr "Etiquetas" -#: blog/viewsets.py:16 +#: engine/blog/viewsets.py:16 msgid "" "Encapsulates operations for managing and retrieving Post entities in a read-" "only model view set. This class is tailored to handle Post objects that are " @@ -115,7 +115,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/blog/locale/fa_IR/LC_MESSAGES/django.mo b/engine/blog/locale/fa_IR/LC_MESSAGES/django.mo similarity index 100% rename from blog/locale/fa_IR/LC_MESSAGES/django.mo rename to engine/blog/locale/fa_IR/LC_MESSAGES/django.mo diff --git a/blog/locale/fa_IR/LC_MESSAGES/django.po b/engine/blog/locale/fa_IR/LC_MESSAGES/django.po similarity index 77% rename from blog/locale/fa_IR/LC_MESSAGES/django.po rename to engine/blog/locale/fa_IR/LC_MESSAGES/django.po index 94a169ef..b4ef3d76 100644 --- a/blog/locale/fa_IR/LC_MESSAGES/django.po +++ b/engine/blog/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: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 19:18+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,19 +16,19 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: blog/apps.py:8 +#: engine/blog/apps.py:8 msgid "blog" msgstr "" -#: blog/docs/drf/viewsets.py:10 +#: engine/blog/docs/drf/viewsets.py:10 msgid "list all posts (read-only)" msgstr "" -#: blog/docs/drf/viewsets.py:14 +#: engine/blog/docs/drf/viewsets.py:14 msgid "retrieve a single post (read-only)" msgstr "" -#: blog/models.py:12 +#: engine/blog/models.py:13 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,64 +38,64 @@ msgid "" "title." msgstr "" -#: blog/models.py:23 +#: engine/blog/models.py:24 msgid "post title" msgstr "" -#: blog/models.py:23 +#: engine/blog/models.py:24 msgid "title" msgstr "" -#: blog/models.py:68 +#: engine/blog/models.py:69 msgid "is static page" msgstr "" -#: blog/models.py:69 +#: engine/blog/models.py:70 msgid "is this a post for a page with static URL (e.g. `/help/delivery`)?" msgstr "" -#: blog/models.py:76 +#: engine/blog/models.py:77 msgid "post" msgstr "" -#: blog/models.py:77 +#: engine/blog/models.py:78 msgid "posts" msgstr "" -#: blog/models.py:81 +#: engine/blog/models.py:82 msgid "markdown files are not supported yet - use markdown content instead" msgstr "" -#: blog/models.py:83 +#: engine/blog/models.py:84 msgid "" "a markdown file or markdown content must be provided - mutually exclusive" msgstr "" -#: blog/models.py:115 +#: engine/blog/models.py:116 msgid "internal tag identifier for the post tag" msgstr "" -#: blog/models.py:116 +#: engine/blog/models.py:117 msgid "tag name" msgstr "" -#: blog/models.py:120 +#: engine/blog/models.py:121 msgid "user-friendly name for the post tag" msgstr "" -#: blog/models.py:121 +#: engine/blog/models.py:122 msgid "tag display name" msgstr "" -#: blog/models.py:129 +#: engine/blog/models.py:130 msgid "post tag" msgstr "" -#: blog/models.py:130 +#: engine/blog/models.py:131 msgid "post tags" msgstr "" -#: blog/viewsets.py:16 +#: engine/blog/viewsets.py:16 msgid "" "Encapsulates operations for managing and retrieving Post entities in a read-" "only model view set. This class is tailored to handle Post objects that are " diff --git a/blog/locale/fr_FR/LC_MESSAGES/django.mo b/engine/blog/locale/fr_FR/LC_MESSAGES/django.mo similarity index 92% rename from blog/locale/fr_FR/LC_MESSAGES/django.mo rename to engine/blog/locale/fr_FR/LC_MESSAGES/django.mo index 5d6773d5..a611eed2 100644 Binary files a/blog/locale/fr_FR/LC_MESSAGES/django.mo and b/engine/blog/locale/fr_FR/LC_MESSAGES/django.mo differ diff --git a/blog/locale/fr_FR/LC_MESSAGES/django.po b/engine/blog/locale/fr_FR/LC_MESSAGES/django.po similarity index 80% rename from blog/locale/fr_FR/LC_MESSAGES/django.po rename to engine/blog/locale/fr_FR/LC_MESSAGES/django.po index 99b93758..828c03f0 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 19:18+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -13,26 +13,26 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: blog/apps.py:8 +#: engine/blog/apps.py:8 msgid "blog" msgstr "Blog" -#: blog/docs/drf/viewsets.py:10 +#: engine/blog/docs/drf/viewsets.py:10 msgid "list all posts (read-only)" msgstr "Liste de tous les messages (en lecture seule)" -#: blog/docs/drf/viewsets.py:14 +#: engine/blog/docs/drf/viewsets.py:14 msgid "retrieve a single post (read-only)" msgstr "Récupérer un seul message (en lecture seule)" -#: blog/models.py:12 +#: engine/blog/models.py:13 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,70 +42,70 @@ msgstr "" "simultanément. Elle prend également en charge la génération automatique " "d'une balise en fonction du titre." -#: blog/models.py:23 +#: engine/blog/models.py:24 msgid "post title" msgstr "Titre du message" -#: blog/models.py:23 +#: engine/blog/models.py:24 msgid "title" msgstr "Titre" -#: blog/models.py:68 +#: engine/blog/models.py:69 msgid "is static page" msgstr "est une page statique" -#: blog/models.py:69 +#: engine/blog/models.py:70 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`) ?" -#: blog/models.py:76 +#: engine/blog/models.py:77 msgid "post" msgstr "Poste" -#: blog/models.py:77 +#: engine/blog/models.py:78 msgid "posts" msgstr "Postes" -#: blog/models.py:81 +#: engine/blog/models.py:82 msgid "markdown files are not supported yet - use markdown content instead" msgstr "" "Les fichiers Markdown ne sont pas pris en charge - utilisez plutôt du " "contenu Markdown !" -#: blog/models.py:83 +#: engine/blog/models.py:84 msgid "" "a markdown file or markdown 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" -#: blog/models.py:115 +#: engine/blog/models.py:116 msgid "internal tag identifier for the post tag" msgstr "identifiant interne de la balise post" -#: blog/models.py:116 +#: engine/blog/models.py:117 msgid "tag name" msgstr "Nom du jour" -#: blog/models.py:120 +#: engine/blog/models.py:121 msgid "user-friendly name for the post tag" msgstr "Nom convivial pour la balise post" -#: blog/models.py:121 +#: engine/blog/models.py:122 msgid "tag display name" msgstr "Nom d'affichage de l'étiquette" -#: blog/models.py:129 +#: engine/blog/models.py:130 msgid "post tag" msgstr "Tag de poste" -#: blog/models.py:130 +#: engine/blog/models.py:131 msgid "post tags" msgstr "Tags de la poste" -#: blog/viewsets.py:16 +#: engine/blog/viewsets.py:16 msgid "" "Encapsulates operations for managing and retrieving Post entities in a read-" "only model view set. This class is tailored to handle Post objects that are " @@ -114,8 +114,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/blog/locale/he_IL/LC_MESSAGES/django.mo b/engine/blog/locale/he_IL/LC_MESSAGES/django.mo similarity index 92% rename from blog/locale/he_IL/LC_MESSAGES/django.mo rename to engine/blog/locale/he_IL/LC_MESSAGES/django.mo index 4cbf6ef7..2dc1913c 100644 Binary files a/blog/locale/he_IL/LC_MESSAGES/django.mo and b/engine/blog/locale/he_IL/LC_MESSAGES/django.mo differ diff --git a/blog/locale/he_IL/LC_MESSAGES/django.po b/engine/blog/locale/he_IL/LC_MESSAGES/django.po similarity index 75% rename from blog/locale/he_IL/LC_MESSAGES/django.po rename to engine/blog/locale/he_IL/LC_MESSAGES/django.po index 2f84dcab..e251ee70 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 19:18+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -13,90 +13,90 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: blog/apps.py:8 +#: engine/blog/apps.py:8 msgid "blog" msgstr "בלוג" -#: blog/docs/drf/viewsets.py:10 +#: engine/blog/docs/drf/viewsets.py:10 msgid "list all posts (read-only)" msgstr "הצג את כל ההודעות (לקריאה בלבד)" -#: blog/docs/drf/viewsets.py:14 +#: engine/blog/docs/drf/viewsets.py:14 msgid "retrieve a single post (read-only)" msgstr "איתור פוסט בודד (לקריאה בלבד)" -#: blog/models.py:12 +#: engine/blog/models.py:13 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 על סמך הכותרת." -#: blog/models.py:23 +#: engine/blog/models.py:24 msgid "post title" msgstr "כותרת הפוסט" -#: blog/models.py:23 +#: engine/blog/models.py:24 msgid "title" msgstr "כותרת" -#: blog/models.py:68 +#: engine/blog/models.py:69 msgid "is static page" msgstr "הוא דף סטטי" -#: blog/models.py:69 +#: engine/blog/models.py:70 msgid "is this a post for a page with static URL (e.g. `/help/delivery`)?" msgstr "האם זו הודעה לדף עם כתובת URL סטטית (למשל `/help/delivery`)?" -#: blog/models.py:76 +#: engine/blog/models.py:77 msgid "post" msgstr "פוסט" -#: blog/models.py:77 +#: engine/blog/models.py:78 msgid "posts" msgstr "פוסטים" -#: blog/models.py:81 +#: engine/blog/models.py:82 msgid "markdown files are not supported yet - use markdown content instead" msgstr "קובצי Markdown אינם נתמכים עדיין - השתמש בתוכן Markdown במקום!" -#: blog/models.py:83 +#: engine/blog/models.py:84 msgid "" "a markdown file or markdown content must be provided - mutually exclusive" msgstr "יש לספק קובץ markdown או תוכן markdown - באופן בלעדי" -#: blog/models.py:115 +#: engine/blog/models.py:116 msgid "internal tag identifier for the post tag" msgstr "מזהה תגיות פנימי עבור תגיות הפוסט" -#: blog/models.py:116 +#: engine/blog/models.py:117 msgid "tag name" msgstr "שם היום" -#: blog/models.py:120 +#: engine/blog/models.py:121 msgid "user-friendly name for the post tag" msgstr "שם ידידותי למשתמש עבור תגיות הפוסט" -#: blog/models.py:121 +#: engine/blog/models.py:122 msgid "tag display name" msgstr "שם תצוגה של התג" -#: blog/models.py:129 +#: engine/blog/models.py:130 msgid "post tag" msgstr "תגית פוסט" -#: blog/models.py:130 +#: engine/blog/models.py:131 msgid "post tags" msgstr "תגיות פוסט" -#: blog/viewsets.py:16 +#: engine/blog/viewsets.py:16 msgid "" "Encapsulates operations for managing and retrieving Post entities in a read-" "only model view set. This class is tailored to handle Post objects that are " @@ -105,7 +105,7 @@ msgid "" "defined permissions. The view set also includes an additional 'retrieve' " "permission configuration." msgstr "" -"מכיל פעולות לניהול ואחזור ישויות Post במערך תצוגה של מודל לקריאה בלבד. מחלקה" -" זו מותאמת לטיפול באובייקטי Post פעילים ומאפשרת סינון על בסיס מסננים " -"מוגדרים. היא משתלבת במערכת הסינון האחורית של Django ומבטיחה שהפעולות תואמות " -"את ההרשאות המוגדרות. מערך התצוגה כולל גם תצורת הרשאה נוספת ל'אחזור'." +"מכיל פעולות לניהול ואחזור ישויות Post במערך תצוגה של מודל לקריאה בלבד. מחלקה " +"זו מותאמת לטיפול באובייקטי Post פעילים ומאפשרת סינון על בסיס מסננים מוגדרים. " +"היא משתלבת במערכת הסינון האחורית של Django ומבטיחה שהפעולות תואמות את " +"ההרשאות המוגדרות. מערך התצוגה כולל גם תצורת הרשאה נוספת ל'אחזור'." diff --git a/blog/locale/hi_IN/LC_MESSAGES/django.mo b/engine/blog/locale/hi_IN/LC_MESSAGES/django.mo similarity index 74% rename from blog/locale/hi_IN/LC_MESSAGES/django.mo rename to engine/blog/locale/hi_IN/LC_MESSAGES/django.mo index 692bae97..7640ce00 100644 Binary files a/blog/locale/hi_IN/LC_MESSAGES/django.mo and b/engine/blog/locale/hi_IN/LC_MESSAGES/django.mo differ diff --git a/blog/locale/kk_KZ/LC_MESSAGES/django.po b/engine/blog/locale/hi_IN/LC_MESSAGES/django.po similarity index 76% rename from blog/locale/kk_KZ/LC_MESSAGES/django.po rename to engine/blog/locale/hi_IN/LC_MESSAGES/django.po index b17deb4c..f1246c8c 100644 --- a/blog/locale/kk_KZ/LC_MESSAGES/django.po +++ b/engine/blog/locale/hi_IN/LC_MESSAGES/django.po @@ -2,12 +2,12 @@ # 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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 19:18+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -16,19 +16,19 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: blog/apps.py:8 +#: engine/blog/apps.py:8 msgid "blog" msgstr "" -#: blog/docs/drf/viewsets.py:10 +#: engine/blog/docs/drf/viewsets.py:10 msgid "list all posts (read-only)" msgstr "" -#: blog/docs/drf/viewsets.py:14 +#: engine/blog/docs/drf/viewsets.py:14 msgid "retrieve a single post (read-only)" msgstr "" -#: blog/models.py:12 +#: engine/blog/models.py:13 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,64 +38,64 @@ msgid "" "title." msgstr "" -#: blog/models.py:23 +#: engine/blog/models.py:24 msgid "post title" msgstr "" -#: blog/models.py:23 +#: engine/blog/models.py:24 msgid "title" msgstr "" -#: blog/models.py:68 +#: engine/blog/models.py:69 msgid "is static page" msgstr "" -#: blog/models.py:69 +#: engine/blog/models.py:70 msgid "is this a post for a page with static URL (e.g. `/help/delivery`)?" msgstr "" -#: blog/models.py:76 +#: engine/blog/models.py:77 msgid "post" msgstr "" -#: blog/models.py:77 +#: engine/blog/models.py:78 msgid "posts" msgstr "" -#: blog/models.py:81 +#: engine/blog/models.py:82 msgid "markdown files are not supported yet - use markdown content instead" msgstr "" -#: blog/models.py:83 +#: engine/blog/models.py:84 msgid "" "a markdown file or markdown content must be provided - mutually exclusive" msgstr "" -#: blog/models.py:115 +#: engine/blog/models.py:116 msgid "internal tag identifier for the post tag" msgstr "" -#: blog/models.py:116 +#: engine/blog/models.py:117 msgid "tag name" msgstr "" -#: blog/models.py:120 +#: engine/blog/models.py:121 msgid "user-friendly name for the post tag" msgstr "" -#: blog/models.py:121 +#: engine/blog/models.py:122 msgid "tag display name" msgstr "" -#: blog/models.py:129 +#: engine/blog/models.py:130 msgid "post tag" msgstr "" -#: blog/models.py:130 +#: engine/blog/models.py:131 msgid "post tags" msgstr "" -#: blog/viewsets.py:16 +#: engine/blog/viewsets.py:16 msgid "" "Encapsulates operations for managing and retrieving Post entities in a read-" "only model view set. This class is tailored to handle Post objects that are " diff --git a/blog/locale/hr_HR/LC_MESSAGES/django.mo b/engine/blog/locale/hr_HR/LC_MESSAGES/django.mo similarity index 100% rename from blog/locale/hr_HR/LC_MESSAGES/django.mo rename to engine/blog/locale/hr_HR/LC_MESSAGES/django.mo diff --git a/blog/locale/hr_HR/LC_MESSAGES/django.po b/engine/blog/locale/hr_HR/LC_MESSAGES/django.po similarity index 77% rename from blog/locale/hr_HR/LC_MESSAGES/django.po rename to engine/blog/locale/hr_HR/LC_MESSAGES/django.po index 94a169ef..b4ef3d76 100644 --- a/blog/locale/hr_HR/LC_MESSAGES/django.po +++ b/engine/blog/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: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 19:18+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,19 +16,19 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: blog/apps.py:8 +#: engine/blog/apps.py:8 msgid "blog" msgstr "" -#: blog/docs/drf/viewsets.py:10 +#: engine/blog/docs/drf/viewsets.py:10 msgid "list all posts (read-only)" msgstr "" -#: blog/docs/drf/viewsets.py:14 +#: engine/blog/docs/drf/viewsets.py:14 msgid "retrieve a single post (read-only)" msgstr "" -#: blog/models.py:12 +#: engine/blog/models.py:13 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,64 +38,64 @@ msgid "" "title." msgstr "" -#: blog/models.py:23 +#: engine/blog/models.py:24 msgid "post title" msgstr "" -#: blog/models.py:23 +#: engine/blog/models.py:24 msgid "title" msgstr "" -#: blog/models.py:68 +#: engine/blog/models.py:69 msgid "is static page" msgstr "" -#: blog/models.py:69 +#: engine/blog/models.py:70 msgid "is this a post for a page with static URL (e.g. `/help/delivery`)?" msgstr "" -#: blog/models.py:76 +#: engine/blog/models.py:77 msgid "post" msgstr "" -#: blog/models.py:77 +#: engine/blog/models.py:78 msgid "posts" msgstr "" -#: blog/models.py:81 +#: engine/blog/models.py:82 msgid "markdown files are not supported yet - use markdown content instead" msgstr "" -#: blog/models.py:83 +#: engine/blog/models.py:84 msgid "" "a markdown file or markdown content must be provided - mutually exclusive" msgstr "" -#: blog/models.py:115 +#: engine/blog/models.py:116 msgid "internal tag identifier for the post tag" msgstr "" -#: blog/models.py:116 +#: engine/blog/models.py:117 msgid "tag name" msgstr "" -#: blog/models.py:120 +#: engine/blog/models.py:121 msgid "user-friendly name for the post tag" msgstr "" -#: blog/models.py:121 +#: engine/blog/models.py:122 msgid "tag display name" msgstr "" -#: blog/models.py:129 +#: engine/blog/models.py:130 msgid "post tag" msgstr "" -#: blog/models.py:130 +#: engine/blog/models.py:131 msgid "post tags" msgstr "" -#: blog/viewsets.py:16 +#: engine/blog/viewsets.py:16 msgid "" "Encapsulates operations for managing and retrieving Post entities in a read-" "only model view set. This class is tailored to handle Post objects that are " diff --git a/blog/locale/id_ID/LC_MESSAGES/django.mo b/engine/blog/locale/id_ID/LC_MESSAGES/django.mo similarity index 92% rename from blog/locale/id_ID/LC_MESSAGES/django.mo rename to engine/blog/locale/id_ID/LC_MESSAGES/django.mo index 9c4458ae..ed8d0cc7 100644 Binary files a/blog/locale/id_ID/LC_MESSAGES/django.mo and b/engine/blog/locale/id_ID/LC_MESSAGES/django.mo differ diff --git a/blog/locale/id_ID/LC_MESSAGES/django.po b/engine/blog/locale/id_ID/LC_MESSAGES/django.po similarity index 75% rename from blog/locale/id_ID/LC_MESSAGES/django.po rename to engine/blog/locale/id_ID/LC_MESSAGES/django.po index d518fde8..fcc56637 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 19:18+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -13,98 +13,98 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: blog/apps.py:8 +#: engine/blog/apps.py:8 msgid "blog" msgstr "Blog" -#: blog/docs/drf/viewsets.py:10 +#: engine/blog/docs/drf/viewsets.py:10 msgid "list all posts (read-only)" msgstr "Daftar semua postingan (hanya-baca)" -#: blog/docs/drf/viewsets.py:14 +#: engine/blog/docs/drf/viewsets.py:14 msgid "retrieve a single post (read-only)" msgstr "Mengambil satu postingan (hanya-baca)" -#: blog/models.py:12 +#: engine/blog/models.py:13 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." -#: blog/models.py:23 +#: engine/blog/models.py:24 msgid "post title" msgstr "Judul postingan" -#: blog/models.py:23 +#: engine/blog/models.py:24 msgid "title" msgstr "Judul" -#: blog/models.py:68 +#: engine/blog/models.py:69 msgid "is static page" msgstr "adalah halaman statis" -#: blog/models.py:69 +#: engine/blog/models.py:70 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`)?" -#: blog/models.py:76 +#: engine/blog/models.py:77 msgid "post" msgstr "Pos" -#: blog/models.py:77 +#: engine/blog/models.py:78 msgid "posts" msgstr "Posting" -#: blog/models.py:81 +#: engine/blog/models.py:82 msgid "markdown files are not supported yet - use markdown 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!" -#: blog/models.py:83 +#: engine/blog/models.py:84 msgid "" "a markdown file or markdown content must be provided - mutually exclusive" msgstr "" "file penurunan harga atau konten penurunan harga harus disediakan - tidak " "boleh ada yang sama" -#: blog/models.py:115 +#: engine/blog/models.py:116 msgid "internal tag identifier for the post tag" msgstr "pengidentifikasi tag internal untuk tag pos" -#: blog/models.py:116 +#: engine/blog/models.py:117 msgid "tag name" msgstr "Nama tag" -#: blog/models.py:120 +#: engine/blog/models.py:121 msgid "user-friendly name for the post tag" msgstr "Nama yang mudah digunakan untuk tag postingan" -#: blog/models.py:121 +#: engine/blog/models.py:122 msgid "tag display name" msgstr "Nama tampilan tag" -#: blog/models.py:129 +#: engine/blog/models.py:130 msgid "post tag" msgstr "Tag pos" -#: blog/models.py:130 +#: engine/blog/models.py:131 msgid "post tags" msgstr "Tag pos" -#: blog/viewsets.py:16 +#: engine/blog/viewsets.py:16 msgid "" "Encapsulates operations for managing and retrieving Post entities in a read-" "only model view set. This class is tailored to handle Post objects that are " @@ -113,8 +113,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/blog/locale/it_IT/LC_MESSAGES/django.mo b/engine/blog/locale/it_IT/LC_MESSAGES/django.mo similarity index 92% rename from blog/locale/it_IT/LC_MESSAGES/django.mo rename to engine/blog/locale/it_IT/LC_MESSAGES/django.mo index 4ea69e0d..76074b2f 100644 Binary files a/blog/locale/it_IT/LC_MESSAGES/django.mo and b/engine/blog/locale/it_IT/LC_MESSAGES/django.mo differ diff --git a/blog/locale/it_IT/LC_MESSAGES/django.po b/engine/blog/locale/it_IT/LC_MESSAGES/django.po similarity index 78% rename from blog/locale/it_IT/LC_MESSAGES/django.po rename to engine/blog/locale/it_IT/LC_MESSAGES/django.po index 98ce2242..c70f118b 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 19:18+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -13,96 +13,96 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: blog/apps.py:8 +#: engine/blog/apps.py:8 msgid "blog" msgstr "Blog" -#: blog/docs/drf/viewsets.py:10 +#: engine/blog/docs/drf/viewsets.py:10 msgid "list all posts (read-only)" msgstr "Elenco di tutti i messaggi (solo lettura)" -#: blog/docs/drf/viewsets.py:14 +#: engine/blog/docs/drf/viewsets.py:14 msgid "retrieve a single post (read-only)" msgstr "Recuperare un singolo post (solo lettura)" -#: blog/models.py:12 +#: engine/blog/models.py:13 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." -#: blog/models.py:23 +#: engine/blog/models.py:24 msgid "post title" msgstr "Titolo del post" -#: blog/models.py:23 +#: engine/blog/models.py:24 msgid "title" msgstr "Titolo" -#: blog/models.py:68 +#: engine/blog/models.py:69 msgid "is static page" msgstr "è una pagina statica" -#: blog/models.py:69 +#: engine/blog/models.py:70 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`)?" -#: blog/models.py:76 +#: engine/blog/models.py:77 msgid "post" msgstr "Posta" -#: blog/models.py:77 +#: engine/blog/models.py:78 msgid "posts" msgstr "Messaggi" -#: blog/models.py:81 +#: engine/blog/models.py:82 msgid "markdown files are not supported yet - use markdown content instead" msgstr "I file Markdown non sono supportati: usa invece i contenuti Markdown!" -#: blog/models.py:83 +#: engine/blog/models.py:84 msgid "" "a markdown file or markdown content must be provided - mutually exclusive" msgstr "" "deve essere fornito un file markdown o un contenuto markdown - si escludono " "a vicenda" -#: blog/models.py:115 +#: engine/blog/models.py:116 msgid "internal tag identifier for the post tag" msgstr "identificatore interno del tag post" -#: blog/models.py:116 +#: engine/blog/models.py:117 msgid "tag name" msgstr "Nome del tag" -#: blog/models.py:120 +#: engine/blog/models.py:121 msgid "user-friendly name for the post tag" msgstr "Nome intuitivo per il tag del post" -#: blog/models.py:121 +#: engine/blog/models.py:122 msgid "tag display name" msgstr "Nome del tag" -#: blog/models.py:129 +#: engine/blog/models.py:130 msgid "post tag" msgstr "Post tag" -#: blog/models.py:130 +#: engine/blog/models.py:131 msgid "post tags" msgstr "Tag dei post" -#: blog/viewsets.py:16 +#: engine/blog/viewsets.py:16 msgid "" "Encapsulates operations for managing and retrieving Post entities in a read-" "only model view set. This class is tailored to handle Post objects that are " @@ -113,8 +113,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/blog/locale/ja_JP/LC_MESSAGES/django.mo b/engine/blog/locale/ja_JP/LC_MESSAGES/django.mo similarity index 92% rename from blog/locale/ja_JP/LC_MESSAGES/django.mo rename to engine/blog/locale/ja_JP/LC_MESSAGES/django.mo index 2c4d8eab..9fdc2695 100644 Binary files a/blog/locale/ja_JP/LC_MESSAGES/django.mo and b/engine/blog/locale/ja_JP/LC_MESSAGES/django.mo differ diff --git a/blog/locale/ja_JP/LC_MESSAGES/django.po b/engine/blog/locale/ja_JP/LC_MESSAGES/django.po similarity index 54% rename from blog/locale/ja_JP/LC_MESSAGES/django.po rename to engine/blog/locale/ja_JP/LC_MESSAGES/django.po index a30de701..0ad9b9cf 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 19:18+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -13,88 +13,95 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: blog/apps.py:8 +#: engine/blog/apps.py:8 msgid "blog" msgstr "ブログ" -#: blog/docs/drf/viewsets.py:10 +#: engine/blog/docs/drf/viewsets.py:10 msgid "list all posts (read-only)" msgstr "すべての投稿をリストアップする(読み取り専用)" -#: blog/docs/drf/viewsets.py:14 +#: engine/blog/docs/drf/viewsets.py:14 msgid "retrieve a single post (read-only)" msgstr "単一の投稿を取得する(読み取り専用)" -#: blog/models.py:12 +#: engine/blog/models.py:13 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 クラスはブログ記事の構造と動作を定義しま" +"す。著者、タイトル、内容、オプションの添付ファイル、スラッグ、関連タグの属性" +"を含みます。このクラスは、内容か添付ファイルのどちらかを要求するが、両方は同" +"時に要求しないといった制約を強制します。また、タイトルに基づくスラッグの自動" +"生成もサポートしています。" -#: blog/models.py:23 +#: engine/blog/models.py:24 msgid "post title" msgstr "投稿タイトル" -#: blog/models.py:23 +#: engine/blog/models.py:24 msgid "title" msgstr "タイトル" -#: blog/models.py:68 +#: engine/blog/models.py:69 msgid "is static page" msgstr "は静的ページ" -#: blog/models.py:69 +#: engine/blog/models.py:70 msgid "is this a post for a page with static URL (e.g. `/help/delivery`)?" msgstr "これは静的URLのページ(例:`/help/delivery`)への投稿ですか?" -#: blog/models.py:76 +#: engine/blog/models.py:77 msgid "post" msgstr "ポスト" -#: blog/models.py:77 +#: engine/blog/models.py:78 msgid "posts" msgstr "投稿" -#: blog/models.py:81 +#: engine/blog/models.py:82 msgid "markdown files are not supported yet - use markdown content instead" -msgstr "マークダウン・ファイルはサポートされていません - 代わりにマークダウン・コンテンツを使用してください!" +msgstr "" +"マークダウン・ファイルはサポートされていません - 代わりにマークダウン・コンテ" +"ンツを使用してください!" -#: blog/models.py:83 +#: engine/blog/models.py:84 msgid "" "a markdown file or markdown content must be provided - mutually exclusive" -msgstr "マークダウン・ファイルまたはマークダウン・コンテンツを提供しなければならない。" +msgstr "" +"マークダウン・ファイルまたはマークダウン・コンテンツを提供しなければならな" +"い。" -#: blog/models.py:115 +#: engine/blog/models.py:116 msgid "internal tag identifier for the post tag" msgstr "投稿タグの内部タグ識別子" -#: blog/models.py:116 +#: engine/blog/models.py:117 msgid "tag name" msgstr "タグ名" -#: blog/models.py:120 +#: engine/blog/models.py:121 msgid "user-friendly name for the post tag" msgstr "投稿タグのユーザーフレンドリーな名前" -#: blog/models.py:121 +#: engine/blog/models.py:122 msgid "tag display name" msgstr "タグ表示名" -#: blog/models.py:129 +#: engine/blog/models.py:130 msgid "post tag" msgstr "投稿タグ" -#: blog/models.py:130 +#: engine/blog/models.py:131 msgid "post tags" msgstr "投稿タグ" -#: blog/viewsets.py:16 +#: engine/blog/viewsets.py:16 msgid "" "Encapsulates operations for managing and retrieving Post entities in a read-" "only model view set. This class is tailored to handle Post objects that are " @@ -103,7 +110,9 @@ 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/blog/locale/kk_KZ/LC_MESSAGES/django.mo b/engine/blog/locale/kk_KZ/LC_MESSAGES/django.mo similarity index 74% rename from blog/locale/kk_KZ/LC_MESSAGES/django.mo rename to engine/blog/locale/kk_KZ/LC_MESSAGES/django.mo index 692bae97..7640ce00 100644 Binary files a/blog/locale/kk_KZ/LC_MESSAGES/django.mo and b/engine/blog/locale/kk_KZ/LC_MESSAGES/django.mo differ diff --git a/blog/locale/hi_IN/LC_MESSAGES/django.po b/engine/blog/locale/kk_KZ/LC_MESSAGES/django.po similarity index 76% rename from blog/locale/hi_IN/LC_MESSAGES/django.po rename to engine/blog/locale/kk_KZ/LC_MESSAGES/django.po index b17deb4c..f1246c8c 100644 --- a/blog/locale/hi_IN/LC_MESSAGES/django.po +++ b/engine/blog/locale/kk_KZ/LC_MESSAGES/django.po @@ -2,12 +2,12 @@ # 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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 19:18+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -16,19 +16,19 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: blog/apps.py:8 +#: engine/blog/apps.py:8 msgid "blog" msgstr "" -#: blog/docs/drf/viewsets.py:10 +#: engine/blog/docs/drf/viewsets.py:10 msgid "list all posts (read-only)" msgstr "" -#: blog/docs/drf/viewsets.py:14 +#: engine/blog/docs/drf/viewsets.py:14 msgid "retrieve a single post (read-only)" msgstr "" -#: blog/models.py:12 +#: engine/blog/models.py:13 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,64 +38,64 @@ msgid "" "title." msgstr "" -#: blog/models.py:23 +#: engine/blog/models.py:24 msgid "post title" msgstr "" -#: blog/models.py:23 +#: engine/blog/models.py:24 msgid "title" msgstr "" -#: blog/models.py:68 +#: engine/blog/models.py:69 msgid "is static page" msgstr "" -#: blog/models.py:69 +#: engine/blog/models.py:70 msgid "is this a post for a page with static URL (e.g. `/help/delivery`)?" msgstr "" -#: blog/models.py:76 +#: engine/blog/models.py:77 msgid "post" msgstr "" -#: blog/models.py:77 +#: engine/blog/models.py:78 msgid "posts" msgstr "" -#: blog/models.py:81 +#: engine/blog/models.py:82 msgid "markdown files are not supported yet - use markdown content instead" msgstr "" -#: blog/models.py:83 +#: engine/blog/models.py:84 msgid "" "a markdown file or markdown content must be provided - mutually exclusive" msgstr "" -#: blog/models.py:115 +#: engine/blog/models.py:116 msgid "internal tag identifier for the post tag" msgstr "" -#: blog/models.py:116 +#: engine/blog/models.py:117 msgid "tag name" msgstr "" -#: blog/models.py:120 +#: engine/blog/models.py:121 msgid "user-friendly name for the post tag" msgstr "" -#: blog/models.py:121 +#: engine/blog/models.py:122 msgid "tag display name" msgstr "" -#: blog/models.py:129 +#: engine/blog/models.py:130 msgid "post tag" msgstr "" -#: blog/models.py:130 +#: engine/blog/models.py:131 msgid "post tags" msgstr "" -#: blog/viewsets.py:16 +#: engine/blog/viewsets.py:16 msgid "" "Encapsulates operations for managing and retrieving Post entities in a read-" "only model view set. This class is tailored to handle Post objects that are " diff --git a/blog/locale/ko_KR/LC_MESSAGES/django.mo b/engine/blog/locale/ko_KR/LC_MESSAGES/django.mo similarity index 92% rename from blog/locale/ko_KR/LC_MESSAGES/django.mo rename to engine/blog/locale/ko_KR/LC_MESSAGES/django.mo index bb2f4545..f55e79c2 100644 Binary files a/blog/locale/ko_KR/LC_MESSAGES/django.mo and b/engine/blog/locale/ko_KR/LC_MESSAGES/django.mo differ diff --git a/blog/locale/ko_KR/LC_MESSAGES/django.po b/engine/blog/locale/ko_KR/LC_MESSAGES/django.po similarity index 60% rename from blog/locale/ko_KR/LC_MESSAGES/django.po rename to engine/blog/locale/ko_KR/LC_MESSAGES/django.po index 208ca5a4..9e65a98b 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 19:18+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -13,89 +13,92 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: blog/apps.py:8 +#: engine/blog/apps.py:8 msgid "blog" msgstr "블로그" -#: blog/docs/drf/viewsets.py:10 +#: engine/blog/docs/drf/viewsets.py:10 msgid "list all posts (read-only)" msgstr "모든 게시물 나열(읽기 전용)" -#: blog/docs/drf/viewsets.py:14 +#: engine/blog/docs/drf/viewsets.py:14 msgid "retrieve a single post (read-only)" msgstr "단일 게시물 검색(읽기 전용)" -#: blog/models.py:12 +#: engine/blog/models.py:13 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 클래스는 블로그 글의 구조와 동작을 정의합니" +"다. 여기에는 작성자, 제목, 콘텐츠, 선택적 파일 첨부, 슬러그 및 관련 태그에 대" +"한 속성이 포함됩니다. 이 클래스는 콘텐츠 또는 파일 첨부 중 하나만 요구하고 " +"둘 다 동시에 요구하지 않는 등의 제약 조건을 적용합니다. 또한 제목에 따른 자" +"동 슬러그 생성도 지원합니다." -#: blog/models.py:23 +#: engine/blog/models.py:24 msgid "post title" msgstr "게시물 제목" -#: blog/models.py:23 +#: engine/blog/models.py:24 msgid "title" msgstr "제목" -#: blog/models.py:68 +#: engine/blog/models.py:69 msgid "is static page" msgstr "는 정적 페이지입니다." -#: blog/models.py:69 +#: engine/blog/models.py:70 msgid "is this a post for a page with static URL (e.g. `/help/delivery`)?" msgstr "정적 URL(예: `/help/delivery`)이 있는 페이지의 게시물인가요?" -#: blog/models.py:76 +#: engine/blog/models.py:77 msgid "post" msgstr "게시물" -#: blog/models.py:77 +#: engine/blog/models.py:78 msgid "posts" msgstr "게시물" -#: blog/models.py:81 +#: engine/blog/models.py:82 msgid "markdown files are not supported yet - use markdown content instead" -msgstr "마크다운 파일은 지원되지 않습니다 예 - 대신 마크다운 콘텐츠를 사용하세요!" +msgstr "" +"마크다운 파일은 지원되지 않습니다 예 - 대신 마크다운 콘텐츠를 사용하세요!" -#: blog/models.py:83 +#: engine/blog/models.py:84 msgid "" "a markdown file or markdown content must be provided - mutually exclusive" msgstr "마크다운 파일 또는 마크다운 콘텐츠가 제공되어야 합니다." -#: blog/models.py:115 +#: engine/blog/models.py:116 msgid "internal tag identifier for the post tag" msgstr "게시물 태그의 내부 태그 식별자" -#: blog/models.py:116 +#: engine/blog/models.py:117 msgid "tag name" msgstr "태그 이름" -#: blog/models.py:120 +#: engine/blog/models.py:121 msgid "user-friendly name for the post tag" msgstr "게시물 태그의 사용자 친화적인 이름" -#: blog/models.py:121 +#: engine/blog/models.py:122 msgid "tag display name" msgstr "태그 표시 이름" -#: blog/models.py:129 +#: engine/blog/models.py:130 msgid "post tag" msgstr "게시물 태그" -#: blog/models.py:130 +#: engine/blog/models.py:131 msgid "post tags" msgstr "게시물 태그" -#: blog/viewsets.py:16 +#: engine/blog/viewsets.py:16 msgid "" "Encapsulates operations for managing and retrieving Post entities in a read-" "only model view set. This class is tailored to handle Post objects that are " @@ -104,6 +107,8 @@ msgid "" "defined permissions. The view set also includes an additional 'retrieve' " "permission configuration." msgstr "" -"읽기 전용 모델 보기 집합에서 Post 엔티티를 관리하고 검색하기 위한 작업을 캡슐화합니다. 이 클래스는 활성 상태인 Post 개체를 " -"처리하도록 맞춤화되어 있으며 정의된 필터를 기반으로 필터링을 허용합니다. 이 클래스는 장고의 백엔드 필터링 시스템과 통합되며 정의된 " -"권한에 따라 작업이 이루어지도록 합니다. 보기 세트에는 추가 '검색' 권한 구성도 포함되어 있습니다." +"읽기 전용 모델 보기 집합에서 Post 엔티티를 관리하고 검색하기 위한 작업을 캡슐" +"화합니다. 이 클래스는 활성 상태인 Post 개체를 처리하도록 맞춤화되어 있으며 정" +"의된 필터를 기반으로 필터링을 허용합니다. 이 클래스는 장고의 백엔드 필터링 시" +"스템과 통합되며 정의된 권한에 따라 작업이 이루어지도록 합니다. 보기 세트에는 " +"추가 '검색' 권한 구성도 포함되어 있습니다." diff --git a/blog/locale/nl_NL/LC_MESSAGES/django.mo b/engine/blog/locale/nl_NL/LC_MESSAGES/django.mo similarity index 92% rename from blog/locale/nl_NL/LC_MESSAGES/django.mo rename to engine/blog/locale/nl_NL/LC_MESSAGES/django.mo index f79e9713..76ac761c 100644 Binary files a/blog/locale/nl_NL/LC_MESSAGES/django.mo and b/engine/blog/locale/nl_NL/LC_MESSAGES/django.mo differ diff --git a/blog/locale/nl_NL/LC_MESSAGES/django.po b/engine/blog/locale/nl_NL/LC_MESSAGES/django.po similarity index 82% rename from blog/locale/nl_NL/LC_MESSAGES/django.po rename to engine/blog/locale/nl_NL/LC_MESSAGES/django.po index 3ac8cefd..677134b2 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 19:18+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -13,26 +13,26 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: blog/apps.py:8 +#: engine/blog/apps.py:8 msgid "blog" msgstr "Blog" -#: blog/docs/drf/viewsets.py:10 +#: engine/blog/docs/drf/viewsets.py:10 msgid "list all posts (read-only)" msgstr "Alle berichten weergeven (alleen-lezen)" -#: blog/docs/drf/viewsets.py:14 +#: engine/blog/docs/drf/viewsets.py:14 msgid "retrieve a single post (read-only)" msgstr "Een enkel bericht ophalen (alleen-lezen)" -#: blog/models.py:12 +#: engine/blog/models.py:13 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,70 +41,70 @@ msgstr "" "maar niet beide tegelijk. Het ondersteunt ook het automatisch genereren van " "slugs op basis van de titel." -#: blog/models.py:23 +#: engine/blog/models.py:24 msgid "post title" msgstr "Titel van de post" -#: blog/models.py:23 +#: engine/blog/models.py:24 msgid "title" msgstr "Titel" -#: blog/models.py:68 +#: engine/blog/models.py:69 msgid "is static page" msgstr "is statische pagina" -#: blog/models.py:69 +#: engine/blog/models.py:70 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`)?" -#: blog/models.py:76 +#: engine/blog/models.py:77 msgid "post" msgstr "Plaats" -#: blog/models.py:77 +#: engine/blog/models.py:78 msgid "posts" msgstr "Berichten" -#: blog/models.py:81 +#: engine/blog/models.py:82 msgid "markdown files are not supported yet - use markdown content instead" msgstr "" "Markdown-bestanden worden niet ondersteund - gebruik in plaats daarvan " "markdown-inhoud!" -#: blog/models.py:83 +#: engine/blog/models.py:84 msgid "" "a markdown file or markdown 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" -#: blog/models.py:115 +#: engine/blog/models.py:116 msgid "internal tag identifier for the post tag" msgstr "interne tagidentifier voor de posttag" -#: blog/models.py:116 +#: engine/blog/models.py:117 msgid "tag name" msgstr "Tag naam" -#: blog/models.py:120 +#: engine/blog/models.py:121 msgid "user-friendly name for the post tag" msgstr "Gebruiksvriendelijke naam voor de posttag" -#: blog/models.py:121 +#: engine/blog/models.py:122 msgid "tag display name" msgstr "Tag weergavenaam" -#: blog/models.py:129 +#: engine/blog/models.py:130 msgid "post tag" msgstr "Post tag" -#: blog/models.py:130 +#: engine/blog/models.py:131 msgid "post tags" msgstr "Post tags" -#: blog/viewsets.py:16 +#: engine/blog/viewsets.py:16 msgid "" "Encapsulates operations for managing and retrieving Post entities in a read-" "only model view set. This class is tailored to handle Post objects that are " diff --git a/blog/locale/no_NO/LC_MESSAGES/django.mo b/engine/blog/locale/no_NO/LC_MESSAGES/django.mo similarity index 92% rename from blog/locale/no_NO/LC_MESSAGES/django.mo rename to engine/blog/locale/no_NO/LC_MESSAGES/django.mo index a3d05808..51706420 100644 Binary files a/blog/locale/no_NO/LC_MESSAGES/django.mo and b/engine/blog/locale/no_NO/LC_MESSAGES/django.mo differ diff --git a/blog/locale/no_NO/LC_MESSAGES/django.po b/engine/blog/locale/no_NO/LC_MESSAGES/django.po similarity index 81% rename from blog/locale/no_NO/LC_MESSAGES/django.po rename to engine/blog/locale/no_NO/LC_MESSAGES/django.po index 2029b718..5a6d8385 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 19:18+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -13,26 +13,26 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: blog/apps.py:8 +#: engine/blog/apps.py:8 msgid "blog" msgstr "Blogg" -#: blog/docs/drf/viewsets.py:10 +#: engine/blog/docs/drf/viewsets.py:10 msgid "list all posts (read-only)" msgstr "Liste over alle innlegg (skrivebeskyttet)" -#: blog/docs/drf/viewsets.py:14 +#: engine/blog/docs/drf/viewsets.py:14 msgid "retrieve a single post (read-only)" msgstr "Hent et enkelt innlegg (skrivebeskyttet)" -#: blog/models.py:12 +#: engine/blog/models.py:13 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,66 +41,66 @@ msgstr "" "må være med, men ikke begge deler samtidig. Den støtter også automatisk " "generering av slug basert på tittelen." -#: blog/models.py:23 +#: engine/blog/models.py:24 msgid "post title" msgstr "Innleggets tittel" -#: blog/models.py:23 +#: engine/blog/models.py:24 msgid "title" msgstr "Title" -#: blog/models.py:68 +#: engine/blog/models.py:69 msgid "is static page" msgstr "er statisk side" -#: blog/models.py:69 +#: engine/blog/models.py:70 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`)?" -#: blog/models.py:76 +#: engine/blog/models.py:77 msgid "post" msgstr "Post" -#: blog/models.py:77 +#: engine/blog/models.py:78 msgid "posts" msgstr "Innlegg" -#: blog/models.py:81 +#: engine/blog/models.py:82 msgid "markdown files are not supported yet - use markdown content instead" msgstr "Markdown-filer støttes ikke - bruk markdown-innhold i stedet!" -#: blog/models.py:83 +#: engine/blog/models.py:84 msgid "" "a markdown file or markdown content must be provided - mutually exclusive" msgstr "" "en markdown-fil eller markdown-innhold må oppgis - gjensidig utelukkende" -#: blog/models.py:115 +#: engine/blog/models.py:116 msgid "internal tag identifier for the post tag" msgstr "intern tagg-identifikator for innleggstaggen" -#: blog/models.py:116 +#: engine/blog/models.py:117 msgid "tag name" msgstr "Tagg navn" -#: blog/models.py:120 +#: engine/blog/models.py:121 msgid "user-friendly name for the post tag" msgstr "Brukervennlig navn for innleggstaggen" -#: blog/models.py:121 +#: engine/blog/models.py:122 msgid "tag display name" msgstr "Visningsnavn for taggen" -#: blog/models.py:129 +#: engine/blog/models.py:130 msgid "post tag" msgstr "Post tag" -#: blog/models.py:130 +#: engine/blog/models.py:131 msgid "post tags" msgstr "Tagger for innlegg" -#: blog/viewsets.py:16 +#: engine/blog/viewsets.py:16 msgid "" "Encapsulates operations for managing and retrieving Post entities in a read-" "only model view set. This class is tailored to handle Post objects that are " @@ -114,5 +114,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/blog/locale/pl_PL/LC_MESSAGES/django.mo b/engine/blog/locale/pl_PL/LC_MESSAGES/django.mo similarity index 91% rename from blog/locale/pl_PL/LC_MESSAGES/django.mo rename to engine/blog/locale/pl_PL/LC_MESSAGES/django.mo index cd2b96ae..78d84543 100644 Binary files a/blog/locale/pl_PL/LC_MESSAGES/django.mo and b/engine/blog/locale/pl_PL/LC_MESSAGES/django.mo differ diff --git a/blog/locale/pl_PL/LC_MESSAGES/django.po b/engine/blog/locale/pl_PL/LC_MESSAGES/django.po similarity index 78% rename from blog/locale/pl_PL/LC_MESSAGES/django.po rename to engine/blog/locale/pl_PL/LC_MESSAGES/django.po index f11e4f1e..c7147bfa 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 19:18+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -13,26 +13,26 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: blog/apps.py:8 +#: engine/blog/apps.py:8 msgid "blog" msgstr "Blog" -#: blog/docs/drf/viewsets.py:10 +#: engine/blog/docs/drf/viewsets.py:10 msgid "list all posts (read-only)" msgstr "Lista wszystkich postów (tylko do odczytu)" -#: blog/docs/drf/viewsets.py:14 +#: engine/blog/docs/drf/viewsets.py:14 msgid "retrieve a single post (read-only)" msgstr "Pobieranie pojedynczego wpisu (tylko do odczytu)" -#: blog/models.py:12 +#: engine/blog/models.py:13 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,69 +41,68 @@ msgstr "" "nie obu jednocześnie. Obsługuje również automatyczne generowanie slug na " "podstawie tytułu." -#: blog/models.py:23 +#: engine/blog/models.py:24 msgid "post title" msgstr "Tytuł postu" -#: blog/models.py:23 +#: engine/blog/models.py:24 msgid "title" msgstr "Tytuł" -#: blog/models.py:68 +#: engine/blog/models.py:69 msgid "is static page" msgstr "jest stroną statyczną" -#: blog/models.py:69 +#: engine/blog/models.py:70 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`)?" -#: blog/models.py:76 +#: engine/blog/models.py:77 msgid "post" msgstr "Post" -#: blog/models.py:77 +#: engine/blog/models.py:78 msgid "posts" msgstr "Posty" -#: blog/models.py:81 +#: engine/blog/models.py:82 msgid "markdown files are not supported yet - use markdown content instead" msgstr "" "Pliki Markdown nie są obsługiwane - zamiast tego użyj zawartości Markdown!" -#: blog/models.py:83 +#: engine/blog/models.py:84 msgid "" "a markdown file or markdown content must be provided - mutually exclusive" msgstr "" "należy dostarczyć plik markdown lub zawartość markdown - wzajemnie się " "wykluczające" -#: blog/models.py:115 +#: engine/blog/models.py:116 msgid "internal tag identifier for the post tag" msgstr "wewnętrzny identyfikator tagu posta" -#: blog/models.py:116 +#: engine/blog/models.py:117 msgid "tag name" msgstr "Nazwa tagu" -#: blog/models.py:120 +#: engine/blog/models.py:121 msgid "user-friendly name for the post tag" msgstr "Przyjazna dla użytkownika nazwa tagu posta" -#: blog/models.py:121 +#: engine/blog/models.py:122 msgid "tag display name" msgstr "Wyświetlana nazwa znacznika" -#: blog/models.py:129 +#: engine/blog/models.py:130 msgid "post tag" msgstr "Tag posta" -#: blog/models.py:130 +#: engine/blog/models.py:131 msgid "post tags" msgstr "Tagi postów" -#: blog/viewsets.py:16 +#: engine/blog/viewsets.py:16 msgid "" "Encapsulates operations for managing and retrieving Post entities in a read-" "only model view set. This class is tailored to handle Post objects that are " @@ -113,8 +112,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/blog/locale/pt_BR/LC_MESSAGES/django.mo b/engine/blog/locale/pt_BR/LC_MESSAGES/django.mo similarity index 92% rename from blog/locale/pt_BR/LC_MESSAGES/django.mo rename to engine/blog/locale/pt_BR/LC_MESSAGES/django.mo index c446d0cf..cb104a56 100644 Binary files a/blog/locale/pt_BR/LC_MESSAGES/django.mo and b/engine/blog/locale/pt_BR/LC_MESSAGES/django.mo differ diff --git a/blog/locale/pt_BR/LC_MESSAGES/django.po b/engine/blog/locale/pt_BR/LC_MESSAGES/django.po similarity index 81% rename from blog/locale/pt_BR/LC_MESSAGES/django.po rename to engine/blog/locale/pt_BR/LC_MESSAGES/django.po index 2e6d7929..b4fe6da9 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 19:18+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -13,97 +13,96 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: blog/apps.py:8 +#: engine/blog/apps.py:8 msgid "blog" msgstr "Blog" -#: blog/docs/drf/viewsets.py:10 +#: engine/blog/docs/drf/viewsets.py:10 msgid "list all posts (read-only)" msgstr "Listar todas as postagens (somente leitura)" -#: blog/docs/drf/viewsets.py:14 +#: engine/blog/docs/drf/viewsets.py:14 msgid "retrieve a single post (read-only)" msgstr "Recuperar um único post (somente leitura)" -#: blog/models.py:12 +#: engine/blog/models.py:13 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." -#: blog/models.py:23 +#: engine/blog/models.py:24 msgid "post title" msgstr "Título da postagem" -#: blog/models.py:23 +#: engine/blog/models.py:24 msgid "title" msgstr "Título" -#: blog/models.py:68 +#: engine/blog/models.py:69 msgid "is static page" msgstr "é uma página estática" -#: blog/models.py:69 +#: engine/blog/models.py:70 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`)?" -#: blog/models.py:76 +#: engine/blog/models.py:77 msgid "post" msgstr "Postar" -#: blog/models.py:77 +#: engine/blog/models.py:78 msgid "posts" msgstr "Publicações" -#: blog/models.py:81 +#: engine/blog/models.py:82 msgid "markdown files are not supported yet - use markdown 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!" -#: blog/models.py:83 +#: engine/blog/models.py:84 msgid "" "a markdown file or markdown content must be provided - mutually exclusive" msgstr "" "um arquivo ou conteúdo de markdown deve ser fornecido - mutuamente exclusivo" -#: blog/models.py:115 +#: engine/blog/models.py:116 msgid "internal tag identifier for the post tag" msgstr "identificador de tag interno para a tag de postagem" -#: blog/models.py:116 +#: engine/blog/models.py:117 msgid "tag name" msgstr "Nome da etiqueta" -#: blog/models.py:120 +#: engine/blog/models.py:121 msgid "user-friendly name for the post tag" msgstr "Nome de fácil utilização para a tag de postagem" -#: blog/models.py:121 +#: engine/blog/models.py:122 msgid "tag display name" msgstr "Nome de exibição da tag" -#: blog/models.py:129 +#: engine/blog/models.py:130 msgid "post tag" msgstr "Etiqueta de postagem" -#: blog/models.py:130 +#: engine/blog/models.py:131 msgid "post tags" msgstr "Tags de postagem" -#: blog/viewsets.py:16 +#: engine/blog/viewsets.py:16 msgid "" "Encapsulates operations for managing and retrieving Post entities in a read-" "only model view set. This class is tailored to handle Post objects that are " diff --git a/blog/locale/ro_RO/LC_MESSAGES/django.mo b/engine/blog/locale/ro_RO/LC_MESSAGES/django.mo similarity index 92% rename from blog/locale/ro_RO/LC_MESSAGES/django.mo rename to engine/blog/locale/ro_RO/LC_MESSAGES/django.mo index 7d77ef49..7f51f868 100644 Binary files a/blog/locale/ro_RO/LC_MESSAGES/django.mo and b/engine/blog/locale/ro_RO/LC_MESSAGES/django.mo differ diff --git a/blog/locale/ro_RO/LC_MESSAGES/django.po b/engine/blog/locale/ro_RO/LC_MESSAGES/django.po similarity index 80% rename from blog/locale/ro_RO/LC_MESSAGES/django.po rename to engine/blog/locale/ro_RO/LC_MESSAGES/django.po index a38b9a4e..2e124093 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 19:18+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -13,26 +13,26 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: blog/apps.py:8 +#: engine/blog/apps.py:8 msgid "blog" msgstr "Blog" -#: blog/docs/drf/viewsets.py:10 +#: engine/blog/docs/drf/viewsets.py:10 msgid "list all posts (read-only)" msgstr "Listează toate postările (doar pentru citire)" -#: blog/docs/drf/viewsets.py:14 +#: engine/blog/docs/drf/viewsets.py:14 msgid "retrieve a single post (read-only)" msgstr "Recuperează o singură postare (read-only)" -#: blog/models.py:12 +#: engine/blog/models.py:13 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,70 +41,69 @@ msgstr "" "fișier atașat, dar nu ambele simultan. De asemenea, acceptă generarea " "automată a slug-ului pe baza titlului." -#: blog/models.py:23 +#: engine/blog/models.py:24 msgid "post title" msgstr "Titlul postului" -#: blog/models.py:23 +#: engine/blog/models.py:24 msgid "title" msgstr "Titlul" -#: blog/models.py:68 +#: engine/blog/models.py:69 msgid "is static page" msgstr "este o pagină statică" -#: blog/models.py:69 +#: engine/blog/models.py:70 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`)?" -#: blog/models.py:76 +#: engine/blog/models.py:77 msgid "post" msgstr "Post" -#: blog/models.py:77 +#: engine/blog/models.py:78 msgid "posts" msgstr "Mesaje" -#: blog/models.py:81 +#: engine/blog/models.py:82 msgid "markdown files are not supported yet - use markdown 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!" -#: blog/models.py:83 +#: engine/blog/models.py:84 msgid "" "a markdown file or markdown content must be provided - mutually exclusive" msgstr "" "trebuie furnizat un fișier markdown sau conținut markdown - se exclud " "reciproc" -#: blog/models.py:115 +#: engine/blog/models.py:116 msgid "internal tag identifier for the post tag" msgstr "identificator intern de etichetă pentru eticheta postului" -#: blog/models.py:116 +#: engine/blog/models.py:117 msgid "tag name" msgstr "Nume etichetă" -#: blog/models.py:120 +#: engine/blog/models.py:121 msgid "user-friendly name for the post tag" msgstr "Nume ușor de utilizat pentru eticheta postului" -#: blog/models.py:121 +#: engine/blog/models.py:122 msgid "tag display name" msgstr "Nume afișare etichetă" -#: blog/models.py:129 +#: engine/blog/models.py:130 msgid "post tag" msgstr "Etichetă post" -#: blog/models.py:130 +#: engine/blog/models.py:131 msgid "post tags" msgstr "Etichete poștale" -#: blog/viewsets.py:16 +#: engine/blog/viewsets.py:16 msgid "" "Encapsulates operations for managing and retrieving Post entities in a read-" "only model view set. This class is tailored to handle Post objects that are " @@ -113,8 +112,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/blog/locale/ru_RU/LC_MESSAGES/django.mo b/engine/blog/locale/ru_RU/LC_MESSAGES/django.mo similarity index 94% rename from blog/locale/ru_RU/LC_MESSAGES/django.mo rename to engine/blog/locale/ru_RU/LC_MESSAGES/django.mo index 72b85433..e69ccf0c 100644 Binary files a/blog/locale/ru_RU/LC_MESSAGES/django.mo and b/engine/blog/locale/ru_RU/LC_MESSAGES/django.mo differ diff --git a/blog/locale/ru_RU/LC_MESSAGES/django.po b/engine/blog/locale/ru_RU/LC_MESSAGES/django.po similarity index 84% rename from blog/locale/ru_RU/LC_MESSAGES/django.po rename to engine/blog/locale/ru_RU/LC_MESSAGES/django.po index 98ca6ba8..69338188 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 19:18+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -13,26 +13,26 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: blog/apps.py:8 +#: engine/blog/apps.py:8 msgid "blog" msgstr "Блог" -#: blog/docs/drf/viewsets.py:10 +#: engine/blog/docs/drf/viewsets.py:10 msgid "list all posts (read-only)" msgstr "Список всех сообщений (только для чтения)" -#: blog/docs/drf/viewsets.py:14 +#: engine/blog/docs/drf/viewsets.py:14 msgid "retrieve a single post (read-only)" msgstr "Получение одного сообщения (только для чтения)" -#: blog/models.py:12 +#: engine/blog/models.py:13 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,69 +41,69 @@ msgstr "" "вложение файла, но не то и другое одновременно. Он также поддерживает " "автоматическую генерацию slug на основе заголовка." -#: blog/models.py:23 +#: engine/blog/models.py:24 msgid "post title" msgstr "Заголовок сообщения" -#: blog/models.py:23 +#: engine/blog/models.py:24 msgid "title" msgstr "Название" -#: blog/models.py:68 +#: engine/blog/models.py:69 msgid "is static page" msgstr "это статическая страница" -#: blog/models.py:69 +#: engine/blog/models.py:70 msgid "is this a post for a page with static URL (e.g. `/help/delivery`)?" msgstr "" "Это сообщение для страницы со статическим URL (например, `/help/delivery`)?" -#: blog/models.py:76 +#: engine/blog/models.py:77 msgid "post" msgstr "Пост" -#: blog/models.py:77 +#: engine/blog/models.py:78 msgid "posts" msgstr "Посты" -#: blog/models.py:81 +#: engine/blog/models.py:82 msgid "markdown files are not supported yet - use markdown content instead" msgstr "" "Файлы в формате Markdown не поддерживаются - используйте вместо них " "содержимое в формате Markdown!" -#: blog/models.py:83 +#: engine/blog/models.py:84 msgid "" "a markdown file or markdown content must be provided - mutually exclusive" msgstr "" "необходимо предоставить файл разметки или содержимое разметки - " "взаимоисключающие варианты" -#: blog/models.py:115 +#: engine/blog/models.py:116 msgid "internal tag identifier for the post tag" msgstr "внутренний идентификатор тега для тега post" -#: blog/models.py:116 +#: engine/blog/models.py:117 msgid "tag name" msgstr "Название тега" -#: blog/models.py:120 +#: engine/blog/models.py:121 msgid "user-friendly name for the post tag" msgstr "Удобное для пользователя название тега поста" -#: blog/models.py:121 +#: engine/blog/models.py:122 msgid "tag display name" msgstr "Отображаемое имя тега" -#: blog/models.py:129 +#: engine/blog/models.py:130 msgid "post tag" msgstr "Тэг поста" -#: blog/models.py:130 +#: engine/blog/models.py:131 msgid "post tags" msgstr "Тэги постов" -#: blog/viewsets.py:16 +#: engine/blog/viewsets.py:16 msgid "" "Encapsulates operations for managing and retrieving Post entities in a read-" "only model view set. This class is tailored to handle Post objects that are " @@ -114,8 +114,8 @@ msgid "" msgstr "" "Инкапсулирует операции по управлению и получению объектов Post в наборе " "представлений модели, доступном только для чтения. Этот класс предназначен " -"для работы с активными объектами Post и позволяет осуществлять фильтрацию на" -" основе заданных фильтров. Он интегрируется с системой фильтрации бэкенда " +"для работы с активными объектами Post и позволяет осуществлять фильтрацию на " +"основе заданных фильтров. Он интегрируется с системой фильтрации бэкенда " "Django и обеспечивает соответствие операций заданным разрешениям. Набор " "представлений также включает дополнительную конфигурацию разрешения " "'retrieve'." diff --git a/blog/locale/sv_SE/LC_MESSAGES/django.mo b/engine/blog/locale/sv_SE/LC_MESSAGES/django.mo similarity index 92% rename from blog/locale/sv_SE/LC_MESSAGES/django.mo rename to engine/blog/locale/sv_SE/LC_MESSAGES/django.mo index 2bc48698..459abb9e 100644 Binary files a/blog/locale/sv_SE/LC_MESSAGES/django.mo and b/engine/blog/locale/sv_SE/LC_MESSAGES/django.mo differ diff --git a/blog/locale/sv_SE/LC_MESSAGES/django.po b/engine/blog/locale/sv_SE/LC_MESSAGES/django.po similarity index 82% rename from blog/locale/sv_SE/LC_MESSAGES/django.po rename to engine/blog/locale/sv_SE/LC_MESSAGES/django.po index 21f10642..b6627cc4 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 19:18+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -13,26 +13,26 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: blog/apps.py:8 +#: engine/blog/apps.py:8 msgid "blog" msgstr "Blogg" -#: blog/docs/drf/viewsets.py:10 +#: engine/blog/docs/drf/viewsets.py:10 msgid "list all posts (read-only)" msgstr "Lista alla inlägg (skrivskyddad)" -#: blog/docs/drf/viewsets.py:14 +#: engine/blog/docs/drf/viewsets.py:14 msgid "retrieve a single post (read-only)" msgstr "Hämta ett enskilt inlägg (skrivskyddat)" -#: blog/models.py:12 +#: engine/blog/models.py:13 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,67 +41,67 @@ msgstr "" "filbilaga krävs, men inte båda samtidigt. Den stöder också automatisk " "sluggenerering baserat på titeln." -#: blog/models.py:23 +#: engine/blog/models.py:24 msgid "post title" msgstr "Inläggets titel" -#: blog/models.py:23 +#: engine/blog/models.py:24 msgid "title" msgstr "Titel" -#: blog/models.py:68 +#: engine/blog/models.py:69 msgid "is static page" msgstr "är statisk sida" -#: blog/models.py:69 +#: engine/blog/models.py:70 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`)?" -#: blog/models.py:76 +#: engine/blog/models.py:77 msgid "post" msgstr "Post" -#: blog/models.py:77 +#: engine/blog/models.py:78 msgid "posts" msgstr "Inlägg" -#: blog/models.py:81 +#: engine/blog/models.py:82 msgid "markdown files are not supported yet - use markdown content instead" msgstr "Markdown-filer stöds inte - använd markdown-innehåll istället!" -#: blog/models.py:83 +#: engine/blog/models.py:84 msgid "" "a markdown file or markdown content must be provided - mutually exclusive" msgstr "" "en markdown-fil eller markdown-innehåll måste tillhandahållas - ömsesidigt " "uteslutande" -#: blog/models.py:115 +#: engine/blog/models.py:116 msgid "internal tag identifier for the post tag" msgstr "intern taggidentifierare för inläggstaggen" -#: blog/models.py:116 +#: engine/blog/models.py:117 msgid "tag name" msgstr "Tagg namn" -#: blog/models.py:120 +#: engine/blog/models.py:121 msgid "user-friendly name for the post tag" msgstr "Användarvänligt namn för inläggstaggen" -#: blog/models.py:121 +#: engine/blog/models.py:122 msgid "tag display name" msgstr "Taggens visningsnamn" -#: blog/models.py:129 +#: engine/blog/models.py:130 msgid "post tag" msgstr "Post tagg" -#: blog/models.py:130 +#: engine/blog/models.py:131 msgid "post tags" msgstr "Taggar för inlägg" -#: blog/viewsets.py:16 +#: engine/blog/viewsets.py:16 msgid "" "Encapsulates operations for managing and retrieving Post entities in a read-" "only model view set. This class is tailored to handle Post objects that are " @@ -115,5 +115,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/blog/locale/th_TH/LC_MESSAGES/django.mo b/engine/blog/locale/th_TH/LC_MESSAGES/django.mo similarity index 94% rename from blog/locale/th_TH/LC_MESSAGES/django.mo rename to engine/blog/locale/th_TH/LC_MESSAGES/django.mo index 13f7d9df..a21f32ac 100644 Binary files a/blog/locale/th_TH/LC_MESSAGES/django.mo and b/engine/blog/locale/th_TH/LC_MESSAGES/django.mo differ diff --git a/blog/locale/th_TH/LC_MESSAGES/django.po b/engine/blog/locale/th_TH/LC_MESSAGES/django.po similarity index 67% rename from blog/locale/th_TH/LC_MESSAGES/django.po rename to engine/blog/locale/th_TH/LC_MESSAGES/django.po index 0c005ccf..4edb9b74 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 19:18+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -13,95 +13,90 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: blog/apps.py:8 +#: engine/blog/apps.py:8 msgid "blog" msgstr "บล็อก" -#: blog/docs/drf/viewsets.py:10 +#: engine/blog/docs/drf/viewsets.py:10 msgid "list all posts (read-only)" msgstr "แสดงรายการโพสต์ทั้งหมด (อ่านอย่างเดียว)" -#: blog/docs/drf/viewsets.py:14 +#: engine/blog/docs/drf/viewsets.py:14 msgid "retrieve a single post (read-only)" msgstr "ดึงโพสต์เดียว (อ่านอย่างเดียว)" -#: blog/models.py:12 +#: engine/blog/models.py:13 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 โดยอัตโนมัติจากชื่อเรื่อง" -#: blog/models.py:23 +#: engine/blog/models.py:24 msgid "post title" msgstr "ชื่อโพสต์" -#: blog/models.py:23 +#: engine/blog/models.py:24 msgid "title" msgstr "ชื่อเรื่อง" -#: blog/models.py:68 +#: engine/blog/models.py:69 msgid "is static page" msgstr "เป็นหน้าคงที่" -#: blog/models.py:69 +#: engine/blog/models.py:70 msgid "is this a post for a page with static URL (e.g. `/help/delivery`)?" msgstr "นี่คือโพสต์สำหรับหน้าที่มี URL แบบคงที่ (เช่น `/help/delivery`)?" -#: blog/models.py:76 +#: engine/blog/models.py:77 msgid "post" msgstr "โพสต์" -#: blog/models.py:77 +#: engine/blog/models.py:78 msgid "posts" msgstr "โพสต์" -#: blog/models.py:81 +#: engine/blog/models.py:82 msgid "markdown files are not supported yet - use markdown content instead" msgstr "ไฟล์มาร์กดาวน์ยังไม่รองรับในตอนนี้ - กรุณาใช้เนื้อหาแบบมาร์กดาวน์แทน!" -#: blog/models.py:83 +#: engine/blog/models.py:84 msgid "" "a markdown file or markdown content must be provided - mutually exclusive" -msgstr "" -"ไฟล์มาร์กดาวน์หรือเนื้อหาแบบมาร์กดาวน์ต้องได้รับการจัดเตรียมไว้ - " -"ไม่สามารถใช้ร่วมกันได้" +msgstr "ไฟล์มาร์กดาวน์หรือเนื้อหาแบบมาร์กดาวน์ต้องได้รับการจัดเตรียมไว้ - ไม่สามารถใช้ร่วมกันได้" -#: blog/models.py:115 +#: engine/blog/models.py:116 msgid "internal tag identifier for the post tag" msgstr "ตัวระบุแท็กภายในสำหรับแท็กโพสต์" -#: blog/models.py:116 +#: engine/blog/models.py:117 msgid "tag name" msgstr "ชื่อวัน" -#: blog/models.py:120 +#: engine/blog/models.py:121 msgid "user-friendly name for the post tag" msgstr "ชื่อที่ใช้งานได้ง่ายสำหรับแท็กโพสต์" -#: blog/models.py:121 +#: engine/blog/models.py:122 msgid "tag display name" msgstr "แสดงชื่อแท็ก" -#: blog/models.py:129 +#: engine/blog/models.py:130 msgid "post tag" msgstr "โพสต์แท็ก" -#: blog/models.py:130 +#: engine/blog/models.py:131 msgid "post tags" msgstr "ป้ายกำกับโพสต์" -#: blog/viewsets.py:16 +#: engine/blog/viewsets.py:16 msgid "" "Encapsulates operations for managing and retrieving Post entities in a read-" "only model view set. This class is tailored to handle Post objects that are " @@ -110,9 +105,8 @@ msgid "" "defined permissions. The view set also includes an additional 'retrieve' " "permission configuration." msgstr "" -"รวบรวมการดำเนินการสำหรับการจัดการและดึงข้อมูลเอนทิตีโพสต์ในชุดมุมมองแบบอ่านอย่างเดียว" -" " -"คลาสนี้ถูกออกแบบมาเพื่อจัดการกับวัตถุโพสต์ที่ใช้งานอยู่และอนุญาตให้มีการกรองตามตัวกรองที่กำหนดไว้" -" มันผสานรวมกับระบบการกรองแบ็กเอนด์ของ Django " -"และทำให้แน่ใจว่าการดำเนินการสอดคล้องกับสิทธิ์ที่กำหนดไว้ " -"ชุดมุมมองยังรวมถึงการกำหนดค่าสิทธิ์ 'ดึงข้อมูล' เพิ่มเติมด้วย" +"รวบรวมการดำเนินการสำหรับการจัดการและดึงข้อมูลเอนทิตีโพสต์ในชุดมุมมองแบบอ่านอย่างเดียว " +"คลาสนี้ถูกออกแบบมาเพื่อจัดการกับวัตถุโพสต์ที่ใช้งานอยู่และอนุญาตให้มีการกรองตามตัวกรองที่กำหนดไว้ " +"มันผสานรวมกับระบบการกรองแบ็กเอนด์ของ Django " +"และทำให้แน่ใจว่าการดำเนินการสอดคล้องกับสิทธิ์ที่กำหนดไว้ ชุดมุมมองยังรวมถึงการกำหนดค่าสิทธิ์ " +"'ดึงข้อมูล' เพิ่มเติมด้วย" diff --git a/blog/locale/tr_TR/LC_MESSAGES/django.mo b/engine/blog/locale/tr_TR/LC_MESSAGES/django.mo similarity index 92% rename from blog/locale/tr_TR/LC_MESSAGES/django.mo rename to engine/blog/locale/tr_TR/LC_MESSAGES/django.mo index 4cb49698..6fabce87 100644 Binary files a/blog/locale/tr_TR/LC_MESSAGES/django.mo and b/engine/blog/locale/tr_TR/LC_MESSAGES/django.mo differ diff --git a/blog/locale/tr_TR/LC_MESSAGES/django.po b/engine/blog/locale/tr_TR/LC_MESSAGES/django.po similarity index 80% rename from blog/locale/tr_TR/LC_MESSAGES/django.po rename to engine/blog/locale/tr_TR/LC_MESSAGES/django.po index fee352fc..0fda96ce 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 19:18+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -13,98 +13,97 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: blog/apps.py:8 +#: engine/blog/apps.py:8 msgid "blog" msgstr "Blog" -#: blog/docs/drf/viewsets.py:10 +#: engine/blog/docs/drf/viewsets.py:10 msgid "list all posts (read-only)" msgstr "Tüm gönderileri listele (salt okunur)" -#: blog/docs/drf/viewsets.py:14 +#: engine/blog/docs/drf/viewsets.py:14 msgid "retrieve a single post (read-only)" msgstr "Tek bir gönderiyi al (salt okunur)" -#: blog/models.py:12 +#: engine/blog/models.py:13 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." -#: blog/models.py:23 +#: engine/blog/models.py:24 msgid "post title" msgstr "Gönderinin başlığı" -#: blog/models.py:23 +#: engine/blog/models.py:24 msgid "title" msgstr "Başlık" -#: blog/models.py:68 +#: engine/blog/models.py:69 msgid "is static page" msgstr "statik sayfadır" -#: blog/models.py:69 +#: engine/blog/models.py:70 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?" -#: blog/models.py:76 +#: engine/blog/models.py:77 msgid "post" msgstr "Posta" -#: blog/models.py:77 +#: engine/blog/models.py:78 msgid "posts" msgstr "Mesajlar" -#: blog/models.py:81 +#: engine/blog/models.py:82 msgid "markdown files are not supported yet - use markdown content instead" msgstr "" "Markdown dosyaları desteklenmiyor yer - bunun yerine markdown içeriği " "kullanın!" -#: blog/models.py:83 +#: engine/blog/models.py:84 msgid "" "a markdown file or markdown 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" -#: blog/models.py:115 +#: engine/blog/models.py:116 msgid "internal tag identifier for the post tag" msgstr "gönderi etiketi için dahili etiket tanımlayıcısı" -#: blog/models.py:116 +#: engine/blog/models.py:117 msgid "tag name" msgstr "Etiket adı" -#: blog/models.py:120 +#: engine/blog/models.py:121 msgid "user-friendly name for the post tag" msgstr "Gönderi etiketi için kullanıcı dostu ad" -#: blog/models.py:121 +#: engine/blog/models.py:122 msgid "tag display name" msgstr "Etiket görünen adı" -#: blog/models.py:129 +#: engine/blog/models.py:130 msgid "post tag" msgstr "Mesaj etiketi" -#: blog/models.py:130 +#: engine/blog/models.py:131 msgid "post tags" msgstr "Gönderi etiketleri" -#: blog/viewsets.py:16 +#: engine/blog/viewsets.py:16 msgid "" "Encapsulates operations for managing and retrieving Post entities in a read-" "only model view set. This class is tailored to handle Post objects that are " diff --git a/blog/locale/vi_VN/LC_MESSAGES/django.mo b/engine/blog/locale/vi_VN/LC_MESSAGES/django.mo similarity index 92% rename from blog/locale/vi_VN/LC_MESSAGES/django.mo rename to engine/blog/locale/vi_VN/LC_MESSAGES/django.mo index 1ac89080..7872e11c 100644 Binary files a/blog/locale/vi_VN/LC_MESSAGES/django.mo and b/engine/blog/locale/vi_VN/LC_MESSAGES/django.mo differ diff --git a/blog/locale/vi_VN/LC_MESSAGES/django.po b/engine/blog/locale/vi_VN/LC_MESSAGES/django.po similarity index 78% rename from blog/locale/vi_VN/LC_MESSAGES/django.po rename to engine/blog/locale/vi_VN/LC_MESSAGES/django.po index 5c4682e3..fdeaf685 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 19:18+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -13,26 +13,26 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: blog/apps.py:8 +#: engine/blog/apps.py:8 msgid "blog" msgstr "Blog" -#: blog/docs/drf/viewsets.py:10 +#: engine/blog/docs/drf/viewsets.py:10 msgid "list all posts (read-only)" msgstr "Danh sách tất cả các bài đăng (chỉ đọc)" -#: blog/docs/drf/viewsets.py:14 +#: engine/blog/docs/drf/viewsets.py:14 msgid "retrieve a single post (read-only)" msgstr "Lấy một bài đăng duy nhất (chỉ đọc)" -#: blog/models.py:12 +#: engine/blog/models.py:13 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,69 +40,69 @@ 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 đề." -#: blog/models.py:23 +#: engine/blog/models.py:24 msgid "post title" msgstr "Tiêu đề bài đăng" -#: blog/models.py:23 +#: engine/blog/models.py:24 msgid "title" msgstr "Tiêu đề" -#: blog/models.py:68 +#: engine/blog/models.py:69 msgid "is static page" msgstr "là trang tĩnh" -#: blog/models.py:69 +#: engine/blog/models.py:70 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?" -#: blog/models.py:76 +#: engine/blog/models.py:77 msgid "post" msgstr "Bài đăng" -#: blog/models.py:77 +#: engine/blog/models.py:78 msgid "posts" msgstr "Bài đăng" -#: blog/models.py:81 +#: engine/blog/models.py:82 msgid "markdown files are not supported yet - use markdown content instead" msgstr "" "Tệp Markdown hiện chưa được hỗ trợ - hãy sử dụng nội dung Markdown thay thế!" -#: blog/models.py:83 +#: engine/blog/models.py:84 msgid "" "a markdown file or markdown 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." -#: blog/models.py:115 +#: engine/blog/models.py:116 msgid "internal tag identifier for the post tag" msgstr "Mã định danh thẻ nội bộ cho thẻ bài viết" -#: blog/models.py:116 +#: engine/blog/models.py:117 msgid "tag name" msgstr "Tên ngày" -#: blog/models.py:120 +#: engine/blog/models.py:121 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" -#: blog/models.py:121 +#: engine/blog/models.py:122 msgid "tag display name" msgstr "Hiển thị tên thẻ" -#: blog/models.py:129 +#: engine/blog/models.py:130 msgid "post tag" msgstr "Thẻ bài viết" -#: blog/models.py:130 +#: engine/blog/models.py:131 msgid "post tags" msgstr "Thẻ bài viết" -#: blog/viewsets.py:16 +#: engine/blog/viewsets.py:16 msgid "" "Encapsulates operations for managing and retrieving Post entities in a read-" "only model view set. This class is tailored to handle Post objects that are " @@ -113,7 +113,6 @@ 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/blog/locale/zh_Hans/LC_MESSAGES/django.mo b/engine/blog/locale/zh_Hans/LC_MESSAGES/django.mo similarity index 91% rename from blog/locale/zh_Hans/LC_MESSAGES/django.mo rename to engine/blog/locale/zh_Hans/LC_MESSAGES/django.mo index bbdc8337..ffbe3cd0 100644 Binary files a/blog/locale/zh_Hans/LC_MESSAGES/django.mo and b/engine/blog/locale/zh_Hans/LC_MESSAGES/django.mo differ diff --git a/blog/locale/zh_Hans/LC_MESSAGES/django.po b/engine/blog/locale/zh_Hans/LC_MESSAGES/django.po similarity index 67% rename from blog/locale/zh_Hans/LC_MESSAGES/django.po rename to engine/blog/locale/zh_Hans/LC_MESSAGES/django.po index 4e60dfb7..92ba088f 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 19:18+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -13,87 +13,89 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: blog/apps.py:8 +#: engine/blog/apps.py:8 msgid "blog" msgstr "博客" -#: blog/docs/drf/viewsets.py:10 +#: engine/blog/docs/drf/viewsets.py:10 msgid "list all posts (read-only)" msgstr "列出所有帖子(只读)" -#: blog/docs/drf/viewsets.py:14 +#: engine/blog/docs/drf/viewsets.py:14 msgid "retrieve a single post (read-only)" msgstr "检索单个帖子(只读)" -#: blog/models.py:12 +#: engine/blog/models.py:13 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 "" -"代表博文模型。帖子类定义了博文的结构和行为。它包括作者、标题、内容、可选文件附件、标签和相关标记的属性。该类可强制执行一些限制条件,如要求提供内容或文件附件,但不能同时提供这两种内容。它还支持根据标题自动生成标签。" +"代表博文模型。帖子类定义了博文的结构和行为。它包括作者、标题、内容、可选文件" +"附件、标签和相关标记的属性。该类可强制执行一些限制条件,如要求提供内容或文件" +"附件,但不能同时提供这两种内容。它还支持根据标题自动生成标签。" -#: blog/models.py:23 +#: engine/blog/models.py:24 msgid "post title" msgstr "帖子标题" -#: blog/models.py:23 +#: engine/blog/models.py:24 msgid "title" msgstr "标题" -#: blog/models.py:68 +#: engine/blog/models.py:69 msgid "is static page" msgstr "是静态页面" -#: blog/models.py:69 +#: engine/blog/models.py:70 msgid "is this a post for a page with static URL (e.g. `/help/delivery`)?" msgstr "这是静态 URL 页面(如 `/help/delivery`)的帖子吗?" -#: blog/models.py:76 +#: engine/blog/models.py:77 msgid "post" msgstr "职位" -#: blog/models.py:77 +#: engine/blog/models.py:78 msgid "posts" msgstr "职位" -#: blog/models.py:81 +#: engine/blog/models.py:82 msgid "markdown files are not supported yet - use markdown content instead" msgstr "不支持 Markdown 文件,请使用 Markdown 内容!" -#: blog/models.py:83 +#: engine/blog/models.py:84 msgid "" "a markdown file or markdown content must be provided - mutually exclusive" msgstr "必须提供标记符文件或标记符内容 - 相互排斥" -#: blog/models.py:115 +#: engine/blog/models.py:116 msgid "internal tag identifier for the post tag" msgstr "职位标签的内部标签标识符" -#: blog/models.py:116 +#: engine/blog/models.py:117 msgid "tag name" msgstr "标签名称" -#: blog/models.py:120 +#: engine/blog/models.py:121 msgid "user-friendly name for the post tag" msgstr "方便用户使用的帖子标签名称" -#: blog/models.py:121 +#: engine/blog/models.py:122 msgid "tag display name" msgstr "标签显示名称" -#: blog/models.py:129 +#: engine/blog/models.py:130 msgid "post tag" msgstr "职位标签" -#: blog/models.py:130 +#: engine/blog/models.py:131 msgid "post tags" msgstr "帖子标签" -#: blog/viewsets.py:16 +#: engine/blog/viewsets.py:16 msgid "" "Encapsulates operations for managing and retrieving Post entities in a read-" "only model view set. This class is tailored to handle Post objects that are " @@ -102,5 +104,6 @@ msgid "" "defined permissions. The view set also includes an additional 'retrieve' " "permission configuration." msgstr "" -"该类封装了在只读模型视图集中管理和检索 \"帖子 \"实体的操作。该类专门用于处理活动的 \"帖子 \"对象,并允许根据定义的过滤器进行过滤。它与 " -"Django 的后台过滤系统集成,确保操作与定义的权限一致。视图集还包括额外的 \"检索 \"权限配置。" +"该类封装了在只读模型视图集中管理和检索 \"帖子 \"实体的操作。该类专门用于处理" +"活动的 \"帖子 \"对象,并允许根据定义的过滤器进行过滤。它与 Django 的后台过滤" +"系统集成,确保操作与定义的权限一致。视图集还包括额外的 \"检索 \"权限配置。" diff --git a/blog/migrations/0001_initial.py b/engine/blog/migrations/0001_initial.py similarity index 98% rename from blog/migrations/0001_initial.py rename to engine/blog/migrations/0001_initial.py index 231105f3..5ba1c491 100644 --- a/blog/migrations/0001_initial.py +++ b/engine/blog/migrations/0001_initial.py @@ -1,5 +1,3 @@ -# Generated by Django 5.1.8 on 2025-04-28 11:56 - import uuid import django.db.models.deletion diff --git a/blog/migrations/0002_alter_post_slug_alter_post_title.py b/engine/blog/migrations/0002_alter_post_slug_alter_post_title.py similarity index 93% rename from blog/migrations/0002_alter_post_slug_alter_post_title.py rename to engine/blog/migrations/0002_alter_post_slug_alter_post_title.py index e247c9ea..16f7094f 100644 --- a/blog/migrations/0002_alter_post_slug_alter_post_title.py +++ b/engine/blog/migrations/0002_alter_post_slug_alter_post_title.py @@ -1,5 +1,3 @@ -# Generated by Django 5.1.8 on 2025-04-28 12:07 - import django_extensions.db.fields from django.db import migrations, models diff --git a/blog/migrations/0003_alter_post_tags.py b/engine/blog/migrations/0003_alter_post_tags.py similarity index 88% rename from blog/migrations/0003_alter_post_tags.py rename to engine/blog/migrations/0003_alter_post_tags.py index c514b15c..9c139274 100644 --- a/blog/migrations/0003_alter_post_tags.py +++ b/engine/blog/migrations/0003_alter_post_tags.py @@ -1,5 +1,3 @@ -# Generated by Django 5.1.8 on 2025-04-28 12:39 - from django.db import migrations, models diff --git a/blog/migrations/0004_post_content_ar_ar_post_content_cs_cz_and_more.py b/engine/blog/migrations/0004_post_content_ar_ar_post_content_cs_cz_and_more.py similarity index 99% rename from blog/migrations/0004_post_content_ar_ar_post_content_cs_cz_and_more.py rename to engine/blog/migrations/0004_post_content_ar_ar_post_content_cs_cz_and_more.py index 4ccfcaec..70a7b48b 100644 --- a/blog/migrations/0004_post_content_ar_ar_post_content_cs_cz_and_more.py +++ b/engine/blog/migrations/0004_post_content_ar_ar_post_content_cs_cz_and_more.py @@ -1,5 +1,3 @@ -# Generated by Django 5.2 on 2025-06-29 13:09 - import markdown_field.fields from django.db import migrations, models diff --git a/blog/migrations/0005_post_content_fa_ir_post_content_he_il_and_more.py b/engine/blog/migrations/0005_post_content_fa_ir_post_content_he_il_and_more.py similarity index 99% rename from blog/migrations/0005_post_content_fa_ir_post_content_he_il_and_more.py rename to engine/blog/migrations/0005_post_content_fa_ir_post_content_he_il_and_more.py index 85b99695..6dcbc623 100644 --- a/blog/migrations/0005_post_content_fa_ir_post_content_he_il_and_more.py +++ b/engine/blog/migrations/0005_post_content_fa_ir_post_content_he_il_and_more.py @@ -1,5 +1,3 @@ -# Generated by Django 5.2 on 2025-09-19 11:59 - import markdown_field.fields from django.db import migrations, models diff --git a/blog/migrations/0006_post_meta_description_post_meta_description_ar_ar_and_more.py b/engine/blog/migrations/0006_post_meta_description_post_meta_description_ar_ar_and_more.py similarity index 99% rename from blog/migrations/0006_post_meta_description_post_meta_description_ar_ar_and_more.py rename to engine/blog/migrations/0006_post_meta_description_post_meta_description_ar_ar_and_more.py index 582bea7e..0631cb59 100644 --- a/blog/migrations/0006_post_meta_description_post_meta_description_ar_ar_and_more.py +++ b/engine/blog/migrations/0006_post_meta_description_post_meta_description_ar_ar_and_more.py @@ -1,5 +1,3 @@ -# Generated by Django 5.2 on 2025-10-07 12:46 - from django.db import migrations, models diff --git a/blog/migrations/0007_post_is_static_page.py b/engine/blog/migrations/0007_post_is_static_page.py similarity index 92% rename from blog/migrations/0007_post_is_static_page.py rename to engine/blog/migrations/0007_post_is_static_page.py index 051728de..47685dbe 100644 --- a/blog/migrations/0007_post_is_static_page.py +++ b/engine/blog/migrations/0007_post_is_static_page.py @@ -1,5 +1,3 @@ -# Generated by Django 5.2 on 2025-10-21 09:24 - from django.db import migrations, models diff --git a/blog/templates/__init__.py b/engine/blog/migrations/__init__.py similarity index 100% rename from blog/templates/__init__.py rename to engine/blog/migrations/__init__.py diff --git a/blog/models.py b/engine/blog/models.py similarity index 95% rename from blog/models.py rename to engine/blog/models.py index 98a6b22c..ec180145 100644 --- a/blog/models.py +++ b/engine/blog/models.py @@ -1,14 +1,15 @@ +from django.conf import settings from django.db.models import CASCADE, CharField, FileField, ForeignKey, ManyToManyField, BooleanField 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 core.abstract import NiceModel +from engine.core.abstract import NiceModel class Post(NiceModel): # type: ignore [django-manager-missing] - __doc__ = _( + __doc__ = _( # type: ignore [assignment] "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. " @@ -18,7 +19,7 @@ class Post(NiceModel): # type: ignore [django-manager-missing] is_publicly_visible = True - author = ForeignKey(to="vibes_auth.User", on_delete=CASCADE, blank=False, null=False, related_name="posts") + author = ForeignKey(to=settings.AUTH_USER_MODEL, on_delete=CASCADE, blank=False, null=False, related_name="posts") title = CharField( unique=True, max_length=128, blank=False, null=False, help_text=_("post title"), verbose_name=_("title") ) diff --git a/blog/serializers.py b/engine/blog/serializers.py similarity index 91% rename from blog/serializers.py rename to engine/blog/serializers.py index bf681a6c..57279ac1 100644 --- a/blog/serializers.py +++ b/engine/blog/serializers.py @@ -1,7 +1,7 @@ from rest_framework.fields import SerializerMethodField from rest_framework.serializers import ModelSerializer -from blog.models import Post, PostTag +from engine.blog.models import Post, PostTag class PostTagSerializer(ModelSerializer): diff --git a/blog/signals.py b/engine/blog/signals.py similarity index 100% rename from blog/signals.py rename to engine/blog/signals.py diff --git a/blog/static/.gitkeep b/engine/blog/static/.gitkeep similarity index 100% rename from blog/static/.gitkeep rename to engine/blog/static/.gitkeep diff --git a/blog/utils/__init__.py b/engine/blog/templates/__init__.py similarity index 100% rename from blog/utils/__init__.py rename to engine/blog/templates/__init__.py diff --git a/blog/tests.py b/engine/blog/tests.py similarity index 100% rename from blog/tests.py rename to engine/blog/tests.py diff --git a/blog/translation.py b/engine/blog/translation.py similarity index 85% rename from blog/translation.py rename to engine/blog/translation.py index 0fe484dc..c86129f7 100644 --- a/blog/translation.py +++ b/engine/blog/translation.py @@ -1,7 +1,7 @@ from modeltranslation.decorators import register from modeltranslation.translator import TranslationOptions -from blog.models import Post +from engine.blog.models import Post @register(Post) diff --git a/blog/urls.py b/engine/blog/urls.py similarity index 85% rename from blog/urls.py rename to engine/blog/urls.py index cd00f4f7..730810e3 100644 --- a/blog/urls.py +++ b/engine/blog/urls.py @@ -1,7 +1,7 @@ from django.urls import include, path from rest_framework.routers import DefaultRouter -from blog.viewsets import PostViewSet +from engine.blog.viewsets import PostViewSet app_name = "blog" diff --git a/core/__init__.py b/engine/blog/utils/__init__.py similarity index 100% rename from core/__init__.py rename to engine/blog/utils/__init__.py diff --git a/engine/blog/views.py b/engine/blog/views.py new file mode 100644 index 00000000..eea436a3 --- /dev/null +++ b/engine/blog/views.py @@ -0,0 +1,3 @@ +import logging + +logger = logging.getLogger(__name__) diff --git a/blog/viewsets.py b/engine/blog/viewsets.py similarity index 81% rename from blog/viewsets.py rename to engine/blog/viewsets.py index d9f58736..76a3a76d 100644 --- a/blog/viewsets.py +++ b/engine/blog/viewsets.py @@ -3,11 +3,11 @@ from django_filters.rest_framework import DjangoFilterBackend from drf_spectacular.utils import extend_schema_view from rest_framework.viewsets import ReadOnlyModelViewSet -from blog.filters import PostFilter -from blog.models import Post -from blog.serializers import PostSerializer -from blog.docs.drf.viewsets import POST_SCHEMA -from core.permissions import EvibesPermission +from engine.blog.filters import PostFilter +from engine.blog.models import Post +from engine.blog.serializers import PostSerializer +from engine.blog.docs.drf.viewsets import POST_SCHEMA +from engine.core.permissions import EvibesPermission @extend_schema_view(**POST_SCHEMA) diff --git a/blog/widgets.py b/engine/blog/widgets.py similarity index 100% rename from blog/widgets.py rename to engine/blog/widgets.py diff --git a/core/crm/amo/__init__.py b/engine/core/__init__.py similarity index 100% rename from core/crm/amo/__init__.py rename to engine/core/__init__.py diff --git a/core/abstract.py b/engine/core/abstract.py similarity index 100% rename from core/abstract.py rename to engine/core/abstract.py diff --git a/core/admin.py b/engine/core/admin.py similarity index 99% rename from core/admin.py rename to engine/core/admin.py index 5649fe98..99566044 100644 --- a/core/admin.py +++ b/engine/core/admin.py @@ -16,8 +16,8 @@ from modeltranslation.translator import NotRegistered, translator from modeltranslation.utils import get_translation_fields from mptt.admin import DraggableMPTTAdmin -from core.forms import CRMForm, OrderForm, OrderProductForm, StockForm, VendorForm -from core.models import ( +from engine.core.forms import CRMForm, OrderForm, OrderProductForm, StockForm, VendorForm +from engine.core.models import ( Address, Attribute, AttributeGroup, @@ -259,7 +259,6 @@ class AttributeAdmin(FieldsetsMixin, ActivationActionsMixin, ModelAdmin): # typ ] relation_fields = [ "group", - "categories", ] @@ -449,7 +448,6 @@ class ProductAdmin(FieldsetsMixin, ActivationActionsMixin, ModelAdmin): # type: ] def get_queryset(self, request): - # Optimize product change page to avoid N+1 queries return ( super() .get_queryset(request) diff --git a/core/apps.py b/engine/core/apps.py similarity index 73% rename from core/apps.py rename to engine/core/apps.py index 749486f9..f8e2e0a3 100644 --- a/core/apps.py +++ b/engine/core/apps.py @@ -4,7 +4,7 @@ from django.utils.translation import gettext_lazy as _ class CoreConfig(AppConfig): default_auto_field = "django.db.models.BigAutoField" - name = "core" + name = "engine.core" verbose_name = _("core") icon = "fa fa-solid fa-star" priority = 88 @@ -12,5 +12,5 @@ class CoreConfig(AppConfig): # noinspection PyUnresolvedReferences def ready(self) -> None: - import core.elasticsearch.documents - import core.signals # noqa: F401 + import engine.core.elasticsearch.documents + import engine.core.signals # noqa: F401 diff --git a/core/b2b_urls.py b/engine/core/b2b_urls.py similarity index 89% rename from core/b2b_urls.py rename to engine/core/b2b_urls.py index 53a4f04c..658af948 100644 --- a/core/b2b_urls.py +++ b/engine/core/b2b_urls.py @@ -1,6 +1,6 @@ from django.urls import path -from core.views import ( +from engine.core.views import ( BuyAsBusinessView, GlobalSearchView, ) diff --git a/core/choices.py b/engine/core/choices.py similarity index 100% rename from core/choices.py rename to engine/core/choices.py diff --git a/core/crm/__init__.py b/engine/core/crm/__init__.py similarity index 60% rename from core/crm/__init__.py rename to engine/core/crm/__init__.py index 4135da1c..c5fa112c 100644 --- a/core/crm/__init__.py +++ b/engine/core/crm/__init__.py @@ -1,4 +1,4 @@ -from core.models import CustomerRelationshipManagementProvider +from engine.core.models import CustomerRelationshipManagementProvider def any_crm_integrations() -> bool: diff --git a/core/docs/__init__.py b/engine/core/crm/amo/__init__.py similarity index 100% rename from core/docs/__init__.py rename to engine/core/crm/amo/__init__.py diff --git a/core/crm/amo/gateway.py b/engine/core/crm/amo/gateway.py similarity index 91% rename from core/crm/amo/gateway.py rename to engine/core/crm/amo/gateway.py index bb0b5e64..3321fcb9 100644 --- a/core/crm/amo/gateway.py +++ b/engine/core/crm/amo/gateway.py @@ -1,17 +1,15 @@ import logging -import traceback -from typing import Optional import requests from constance import config from django.core.cache import cache from django.db import transaction -from core.crm.exceptions import CRMException -from core.models import CustomerRelationshipManagementProvider, Order, OrderCrmLink -from core.utils import is_status_code_success +from engine.core.crm.exceptions import CRMException +from engine.core.models import CustomerRelationshipManagementProvider, Order, OrderCrmLink +from engine.core.utils import is_status_code_success -logger = logging.getLogger("django") +logger = logging.getLogger(__name__) class AmoCRM: @@ -63,7 +61,7 @@ class AmoCRM: payload["code"] = self.authorization_code r = requests.post(f"{self.base}/oauth2/access_token", json=payload, timeout=15) if not is_status_code_success(r.status_code): - logger.error(f"Unable to get AMO access token: {r.status_code} {r.text}") + logger.error("Unable to get AMO access token: %s %s", r.status_code, r.text) raise CRMException("Unable to get AMO access token") data = r.json() self.access_token = data["access_token"] @@ -111,8 +109,7 @@ class AmoCRM: r.raise_for_status() body = r.json() except requests.exceptions.RequestException as rex: - logger.error(f"Unable to get company info with FNS: {rex}") - logger.error(traceback.format_exc()) + logger.error("Unable to get company info with FNS: %s", rex, exc_info=True) return "" ul = body.get("ЮЛ") @@ -161,14 +158,13 @@ class AmoCRM: return None except requests.exceptions.RequestException as rex: - logger.error(f"Unable to create a company in AmoCRM: {rex}") - logger.error(traceback.format_exc()) + logger.error("Unable to create a company in AmoCRM: %s", rex, exc_info=True) raise CRMException("Unable to create a company in AmoCRM") from rex def process_order_changes(self, order: Order) -> str: with transaction.atomic(): try: - link: Optional[OrderCrmLink] = OrderCrmLink.objects.get(order=order) + link: OrderCrmLink | None = OrderCrmLink.objects.get(order=order) except OrderCrmLink.MultipleObjectsReturned: link = OrderCrmLink.objects.filter(order=order).first() except OrderCrmLink.DoesNotExist: diff --git a/core/crm/exceptions.py b/engine/core/crm/exceptions.py similarity index 100% rename from core/crm/exceptions.py rename to engine/core/crm/exceptions.py diff --git a/core/data/.gitkeep b/engine/core/data/.gitkeep similarity index 100% rename from core/data/.gitkeep rename to engine/core/data/.gitkeep diff --git a/core/data/payment_methods.json b/engine/core/data/payment_methods.json similarity index 100% rename from core/data/payment_methods.json rename to engine/core/data/payment_methods.json diff --git a/core/management/__init__.py b/engine/core/docs/__init__.py similarity index 100% rename from core/management/__init__.py rename to engine/core/docs/__init__.py diff --git a/core/docs/drf/__init__.py b/engine/core/docs/drf/__init__.py similarity index 100% rename from core/docs/drf/__init__.py rename to engine/core/docs/drf/__init__.py diff --git a/core/docs/drf/views.py b/engine/core/docs/drf/views.py similarity index 95% rename from core/docs/drf/views.py rename to engine/core/docs/drf/views.py index 3d62c800..a3f4f912 100644 --- a/core/docs/drf/views.py +++ b/engine/core/docs/drf/views.py @@ -3,14 +3,14 @@ from drf_spectacular.utils import OpenApiParameter, extend_schema, inline_serial from rest_framework import status from rest_framework.fields import CharField, DictField, JSONField, ListField -from core.docs.drf import error -from core.serializers import ( +from engine.core.docs.drf import error +from engine.core.serializers import ( BuyAsBusinessOrderSerializer, CacheOperatorSerializer, ContactUsSerializer, LanguageSerializer, ) -from payments.serializers import TransactionProcessSerializer +from engine.payments.serializers import TransactionProcessSerializer CACHE_SCHEMA = { "post": extend_schema( diff --git a/core/docs/drf/viewsets.py b/engine/core/docs/drf/viewsets.py similarity index 96% rename from core/docs/drf/viewsets.py rename to engine/core/docs/drf/viewsets.py index b0fc8de3..4e34955f 100644 --- a/core/docs/drf/viewsets.py +++ b/engine/core/docs/drf/viewsets.py @@ -3,8 +3,8 @@ from drf_spectacular.types import OpenApiTypes from drf_spectacular.utils import OpenApiParameter, extend_schema from rest_framework import status -from core.docs.drf import BASE_ERRORS -from core.serializers import ( +from engine.core.docs.drf import BASE_ERRORS +from engine.core.serializers import ( AddOrderProductSerializer, AddressSerializer, AddWishlistProductSerializer, @@ -49,9 +49,9 @@ from core.serializers import ( WishlistDetailSerializer, WishlistSimpleSerializer, ) -from core.serializers.seo import SeoSnapshotSerializer -from core.serializers.utility import AddressCreateSerializer, AddressSuggestionSerializer, DoFeedbackSerializer -from payments.serializers import TransactionProcessSerializer +from engine.core.serializers.seo import SeoSnapshotSerializer +from engine.core.serializers.utility import AddressCreateSerializer, AddressSuggestionSerializer, DoFeedbackSerializer +from engine.payments.serializers import TransactionProcessSerializer ATTRIBUTE_GROUP_SCHEMA = { "list": extend_schema( @@ -143,6 +143,14 @@ CATEGORY_SCHEMA = { "retrieve": extend_schema( summary=_("retrieve a single category (detailed view)"), description=_("retrieve a single category (detailed view)"), + parameters=[ + OpenApiParameter( + name="lookup_value", + location="path", + description=_("Category UUID or slug"), + type=str, + ), + ], responses={status.HTTP_200_OK: CategoryDetailSerializer(), **BASE_ERRORS}, ), "create": extend_schema( @@ -165,12 +173,12 @@ CATEGORY_SCHEMA = { description=_("rewrite some fields of an existing category saving non-editables"), responses={status.HTTP_200_OK: CategoryDetailSerializer(), **BASE_ERRORS}, ), - "seo": extend_schema( + "seo_meta": extend_schema( summary=_("SEO Meta snapshot"), description=_("returns a snapshot of the category's SEO meta data"), parameters=[ OpenApiParameter( - name="lookup", + name="lookup_value", location="path", description=_("Category UUID or slug"), type=str, @@ -245,6 +253,14 @@ ORDER_SCHEMA = { ), "retrieve": extend_schema( summary=_("retrieve a single order (detailed view)"), + parameters=[ + OpenApiParameter( + name="lookup_value", + location="path", + description=_("Order UUID or human-readable id"), + type=str, + ), + ], responses={status.HTTP_200_OK: OrderDetailSerializer(), **BASE_ERRORS}, ), "create": extend_schema( @@ -674,6 +690,14 @@ BRAND_SCHEMA = { ), "retrieve": extend_schema( summary=_("retrieve a single brand (detailed view)"), + parameters=[ + OpenApiParameter( + name="lookup_value", + location="path", + description=_("Brand UUID or slug"), + type=str, + ), + ], responses={status.HTTP_200_OK: BrandDetailSerializer(), **BASE_ERRORS}, ), "create": extend_schema( @@ -694,6 +718,14 @@ BRAND_SCHEMA = { ), "seo_meta": extend_schema( summary=_("SEO Meta snapshot for brand"), + parameters=[ + OpenApiParameter( + name="lookup_value", + location="path", + description=_("Brand UUID or slug"), + type=str, + ), + ], responses={status.HTTP_200_OK: SeoSnapshotSerializer(), **BASE_ERRORS}, ), } diff --git a/core/docs/images/evibes-big-simple.png b/engine/core/docs/images/evibes-big-simple.png similarity index 100% rename from core/docs/images/evibes-big-simple.png rename to engine/core/docs/images/evibes-big-simple.png diff --git a/core/docs/images/evibes-big.png b/engine/core/docs/images/evibes-big.png similarity index 100% rename from core/docs/images/evibes-big.png rename to engine/core/docs/images/evibes-big.png diff --git a/core/docs/images/evibes.ico b/engine/core/docs/images/evibes.ico similarity index 100% rename from core/docs/images/evibes.ico rename to engine/core/docs/images/evibes.ico diff --git a/core/docs/images/evibes.png b/engine/core/docs/images/evibes.png similarity index 100% rename from core/docs/images/evibes.png rename to engine/core/docs/images/evibes.png diff --git a/core/docs/images/favicon.svg b/engine/core/docs/images/favicon.svg similarity index 100% rename from core/docs/images/favicon.svg rename to engine/core/docs/images/favicon.svg diff --git a/core/elasticsearch/__init__.py b/engine/core/elasticsearch/__init__.py similarity index 91% rename from core/elasticsearch/__init__.py rename to engine/core/elasticsearch/__init__.py index 00a7bcdd..2711fb6b 100644 --- a/core/elasticsearch/__init__.py +++ b/engine/core/elasticsearch/__init__.py @@ -13,7 +13,7 @@ from elasticsearch import NotFoundError from elasticsearch.dsl import Q, Search from rest_framework.request import Request -from core.models import Brand, Category, Product +from engine.core.models import Brand, Category, Product SMART_FIELDS = [ "name^6", @@ -58,32 +58,36 @@ functions = [ { "filter": Q("term", **{"_index": "products"}), "field_value_factor": { - "field": "rating", + "field": "category_priority", "modifier": "log1p", - "factor": 0.10, + "factor": 0.16, "missing": 0, }, - "weight": 0.3, + "weight": 0.36, + }, + { + "filter": Q("term", **{"_index": "products"}), + "field_value_factor": { + "field": "rating", + "modifier": "log1p", + "factor": 0.08, + "missing": 0, + }, + "weight": 0.25, }, { "filter": Q("term", **{"_index": "products"}), "field_value_factor": { "field": "total_orders", "modifier": "log1p", - "factor": 0.18, - "missing": 0, - }, - "weight": 0.4, - }, - { - "filter": Q("term", **{"_index": "products"}), - "field_value_factor": { - "field": "category_priority", - "modifier": "log1p", "factor": 0.15, "missing": 0, }, - "weight": 0.35, + "weight": 0.3, + }, + { + "filter": Q("bool", must=[Q("term", **{"_index": "products"}), Q("term", **{"personal_orders_only": False})]), + "weight": 0.7, }, { "filter": Q("term", **{"_index": "categories"}), @@ -120,10 +124,10 @@ def process_query( query = query.strip() try: exact_shoulds = [ - Q("term", **{"name.raw": {"value": query, "boost": 2.0}}), - Q("term", **{"slug": {"value": slugify(query), "boost": 1.5}}), - Q("term", **{"sku.raw": {"value": query.lower(), "boost": 6.0}}), - Q("term", **{"partnumber.raw": {"value": query.lower(), "boost": 7.0}}), + Q("term", **{"partnumber.raw": {"value": query.lower(), "boost": 20.0}}), + Q("term", **{"sku.raw": {"value": query.lower(), "boost": 16.0}}), + Q("term", **{"slug": {"value": slugify(query), "boost": 12.0}}), + Q("match", **{"name.ci": {"query": query, "boost": 8.0}}), ] lang = "" @@ -172,10 +176,9 @@ def process_query( if is_code_like: text_shoulds.extend( [ - Q("term", **{"sku.raw": {"value": query.lower(), "boost": 10.0}}), - Q("term", **{"partnumber.raw": {"value": query.lower(), "boost": 12.0}}), - Q("prefix", **{"sku.raw": {"value": query.lower(), "boost": 5.0}}), - Q("prefix", **{"partnumber.raw": {"value": query.lower(), "boost": 6.0}}), + Q("term", **{"partnumber.raw": {"value": query.lower(), "boost": 14.0}}), + Q("term", **{"sku.raw": {"value": query.lower(), "boost": 12.0}}), + Q("prefix", **{"partnumber.raw": {"value": query.lower(), "boost": 4.0}}), ] ) @@ -211,21 +214,21 @@ def process_query( resp_cats = None if "categories" in indexes: - search_cats = build_search(["categories"], size=22) + search_cats = build_search(["categories"], size=33) resp_cats = search_cats.execute() resp_brands = None if "brands" in indexes: - search_brands = build_search(["brands"], size=22) + search_brands = build_search(["brands"], size=33) resp_brands = search_brands.execute() resp_products = None if "products" in indexes: - search_products = build_search(["products"], size=44) + search_products = build_search(["products"], size=33) resp_products = search_products.execute() results: dict[str, list[dict[str, Any]]] = {"products": [], "categories": [], "brands": [], "posts": []} - uuids_by_index: dict[str, list[dict[str, Any]]] = {"products": [], "categories": [], "brands": []} + uuids_by_index: dict[str, list[str]] = {"products": [], "categories": [], "brands": []} hit_cache: list[Any] = [] seen_keys: set[tuple[str, str]] = set() @@ -241,7 +244,7 @@ def process_query( hit_cache.append(hh) seen_keys.add(key) if getattr(hh, "uuid", None): - uuids_by_index.setdefault(hh.meta.index, []).append({"uuid": str(hh.uuid)}) + uuids_by_index.setdefault(hh.meta.index, []).append(str(hh.uuid)) exact_queries_by_index: dict[str, list[Any]] = { "categories": [ @@ -252,15 +255,25 @@ def process_query( Q("term", **{"name.raw": {"value": query}}), Q("term", **{"slug": {"value": slugify(query)}}), ], - "products": [ - Q("term", **{"name.raw": {"value": query}}), - Q("term", **{"slug": {"value": slugify(query)}}), - Q("term", **{"sku.raw": {"value": query.lower()}}), - Q("term", **{"partnumber.raw": {"value": query.lower()}}), - ], } - for idx_name in ("categories", "brands", "products"): + # Collect exact product matches in strict priority: partnumber > sku > slug > name.ci + if "products" in indexes: + product_exact_sequence = [ + Q("term", **{"partnumber.raw": {"value": query.lower()}}), + Q("term", **{"sku.raw": {"value": query.lower()}}), + Q("term", **{"slug": {"value": slugify(query)}}), + Q("match", **{"name.ci": {"query": query}}), + ] + for qx in product_exact_sequence: + try: + resp_exact = Search(index=["products"]).query(qx).extra(size=5, track_total_hits=False).execute() + except NotFoundError: + resp_exact = None + if resp_exact is not None and getattr(resp_exact, "hits", None): + _collect_hits(list(resp_exact.hits)) + + for idx_name in ("categories", "brands"): if idx_name in indexes: shoulds = exact_queries_by_index[idx_name] s_exact = ( @@ -286,7 +299,7 @@ def process_query( hit_cache.append(h) seen_keys.add(k) if getattr(h, "uuid", None): - uuids_by_index.setdefault(h.meta.index, []).append({"uuid": str(h.uuid)}) + uuids_by_index.setdefault(h.meta.index, []).append(str(h.uuid)) products_by_uuid = {} brands_by_uuid = {} @@ -389,6 +402,7 @@ class ActiveOnlyMixin: COMMON_ANALYSIS = { "char_filter": { "icu_nfkc_cf": {"type": "icu_normalizer", "name": "nfkc_cf"}, + "strip_ws_punct": {"type": "pattern_replace", "pattern": "[\\s\\p{Punct}]+", "replacement": ""}, }, "filter": { "edge_ngram_filter": {"type": "edge_ngram", "min_gram": 1, "max_gram": 20}, @@ -433,6 +447,12 @@ COMMON_ANALYSIS = { "tokenizer": "icu_tokenizer", "filter": ["lowercase", "icu_folding", "double_metaphone"], }, + "name_exact": { + "type": "custom", + "char_filter": ["icu_nfkc_cf", "strip_ws_punct"], + "tokenizer": "keyword", + "filter": ["lowercase", "icu_folding"], + }, "cjk_search": { "type": "custom", "char_filter": ["icu_nfkc_cf"], diff --git a/core/elasticsearch/documents.py b/engine/core/elasticsearch/documents.py similarity index 93% rename from core/elasticsearch/documents.py rename to engine/core/elasticsearch/documents.py index a7904383..7b678699 100644 --- a/core/elasticsearch/documents.py +++ b/engine/core/elasticsearch/documents.py @@ -5,8 +5,8 @@ from django_elasticsearch_dsl import Document, fields from django_elasticsearch_dsl.registries import registry from health_check.db.models import TestModel -from core.elasticsearch import COMMON_ANALYSIS, ActiveOnlyMixin, add_multilang_fields -from core.models import Brand, Category, Product +from engine.core.elasticsearch import COMMON_ANALYSIS, ActiveOnlyMixin, add_multilang_fields +from engine.core.models import Brand, Category, Product class BaseDocument(Document): # type: ignore [misc] @@ -19,6 +19,7 @@ class BaseDocument(Document): # type: ignore [misc] "phonetic": fields.TextField(analyzer="name_phonetic"), "auto": fields.TextField(analyzer="autocomplete", search_analyzer="autocomplete_search"), "translit": fields.TextField(analyzer="translit_index", search_analyzer="translit_query"), + "ci": fields.TextField(analyzer="name_exact", search_analyzer="name_exact"), }, ) description = fields.TextField( @@ -32,7 +33,7 @@ class BaseDocument(Document): # type: ignore [misc] "translit": fields.TextField(analyzer="translit_index", search_analyzer="translit_query"), }, ) - slug = fields.KeywordField(attr="slug", index=False) + slug = fields.KeywordField(attr="slug") class Index: settings = { @@ -52,6 +53,7 @@ class BaseDocument(Document): # type: ignore [misc] class ProductDocument(ActiveOnlyMixin, BaseDocument): rating = fields.FloatField(attr="rating") total_orders = fields.IntegerField(attr="total_orders") + personal_orders_only = fields.BooleanField(attr="personal_orders_only") brand_priority = fields.IntegerField( attr="brand.priority", index=True, diff --git a/core/errors.py b/engine/core/errors.py similarity index 100% rename from core/errors.py rename to engine/core/errors.py diff --git a/core/filters.py b/engine/core/filters.py similarity index 94% rename from core/filters.py rename to engine/core/filters.py index 30cb3032..dbde2075 100644 --- a/core/filters.py +++ b/engine/core/filters.py @@ -36,10 +36,10 @@ from django_filters import ( from graphene import Context from rest_framework.request import Request -from core.elasticsearch import process_query -from core.models import Address, Brand, Category, Feedback, Order, Product, Stock, Wishlist +from engine.core.elasticsearch import process_query +from engine.core.models import Address, Brand, Category, Feedback, Order, Product, Stock, Wishlist -logger = logging.getLogger("django") +logger = logging.getLogger(__name__) class CaseInsensitiveListFilter(BaseInFilter, CharFilter): # type: ignore [misc] @@ -135,6 +135,7 @@ class ProductFilter(FilterSet): # type: ignore [misc] prefix: str | None = None, ) -> None: super().__init__(data=data, queryset=queryset, request=request, prefix=prefix) + self._es_rank_applied: bool = False ordering_param = self.data.get("order_by", "") if ordering_param: order_fields = [field.strip("-") for field in ordering_param.split(",")] @@ -164,9 +165,19 @@ class ProductFilter(FilterSet): # type: ignore [misc] if not value: return queryset - uuids = [product.get("uuid") for product in process_query(query=value, indexes=("products",))["products"]] # type: ignore + es_products = process_query(query=value, indexes=("products",)) # type: ignore + uuids = [p.get("uuid") for p in (es_products or {}).get("products", [])][:33] + if not uuids: + return queryset.none() - return queryset.filter(uuid__in=uuids) + # Preserve ES order using a CASE expression + when_statements = [When(uuid=u, then=pos) for pos, u in enumerate(uuids)] + queryset = queryset.filter(uuid__in=uuids).annotate( + es_rank=Case(*when_statements, default=Value(9999), output_field=IntegerField()) + ) + # Mark that ES ranking is applied, qs() will order appropriately + self._es_rank_applied = True + return queryset def filter_include_flag(self, queryset: QuerySet[Product], name: str, value: str) -> QuerySet[Product]: if not self.data.get("category_uuid"): @@ -324,7 +335,10 @@ class ProductFilter(FilterSet): # type: ignore [misc] if "?" in mapped_requested: final_ordering = ["personal_order_tail", "?"] else: - final_ordering = ["personal_order_tail"] + mapped_requested + if getattr(self, "_es_rank_applied", False): + final_ordering = ["personal_order_tail", "es_rank"] + mapped_requested + else: + final_ordering = ["personal_order_tail"] + mapped_requested if final_ordering: qs = qs.order_by(*final_ordering) diff --git a/payments/static/.gitkeep b/engine/core/fixtures/.gitkeep similarity index 100% rename from payments/static/.gitkeep rename to engine/core/fixtures/.gitkeep diff --git a/engine/core/fixtures/initialization.json b/engine/core/fixtures/initialization.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/engine/core/fixtures/initialization.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/core/forms.py b/engine/core/forms.py similarity index 100% rename from core/forms.py rename to engine/core/forms.py diff --git a/core/graphene/__init__.py b/engine/core/graphene/__init__.py similarity index 100% rename from core/graphene/__init__.py rename to engine/core/graphene/__init__.py diff --git a/core/graphene/mutations.py b/engine/core/graphene/mutations.py similarity index 97% rename from core/graphene/mutations.py rename to engine/core/graphene/mutations.py index 77945258..9cffd8cb 100644 --- a/core/graphene/mutations.py +++ b/engine/core/graphene/mutations.py @@ -10,9 +10,9 @@ from graphene import UUID, Boolean, Field, Int, List, String from graphene.types.generic import GenericScalar from graphene_django.utils import camelize -from core.elasticsearch import process_query -from core.graphene import BaseMutation -from core.graphene.object_types import ( +from engine.core.elasticsearch import process_query +from engine.core.graphene import BaseMutation +from engine.core.graphene.object_types import ( AddressType, BulkProductInput, OrderType, @@ -21,15 +21,15 @@ from core.graphene.object_types import ( WishlistType, FeedbackType, ) -from core.models import Address, Category, Order, Product, Wishlist, OrderProduct -from core.utils import format_attributes, is_url_safe -from core.utils.caching import web_cache -from core.utils.emailing import contact_us_email -from core.utils.messages import permission_denied_message -from core.utils.nominatim import fetch_address_suggestions -from payments.graphene.object_types import TransactionType +from engine.core.models import Address, Category, Order, Product, Wishlist, OrderProduct +from engine.core.utils import format_attributes, is_url_safe +from engine.core.utils.caching import web_cache +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 -logger = logging.getLogger("django") +logger = logging.getLogger(__name__) # noinspection PyUnusedLocal diff --git a/core/graphene/object_types.py b/engine/core/graphene/object_types.py similarity index 98% rename from core/graphene/object_types.py rename to engine/core/graphene/object_types.py index cb147101..b3f33358 100644 --- a/core/graphene/object_types.py +++ b/engine/core/graphene/object_types.py @@ -25,7 +25,7 @@ from graphene_django.filter import DjangoFilterConnectionField from graphene_django.utils import camelize from mptt.querysets import TreeQuerySet -from core.models import ( +from engine.core.models import ( Address, Attribute, AttributeGroup, @@ -45,8 +45,8 @@ from core.models import ( Vendor, Wishlist, ) -from core.utils import graphene_abs, graphene_current_lang -from core.utils.seo_builders import ( +from engine.core.utils import graphene_abs, graphene_current_lang +from engine.core.utils.seo_builders import ( brand_schema, breadcrumb_schema, category_schema, @@ -55,9 +55,9 @@ from core.utils.seo_builders import ( product_schema, website_schema, ) -from payments.graphene.object_types import TransactionType +from engine.payments.graphene.object_types import TransactionType -logger = logging.getLogger("django") +logger = logging.getLogger(__name__) class SEOMetaType(ObjectType): # type: ignore [misc] @@ -226,7 +226,7 @@ class CategoryType(DjangoObjectType): # type: ignore [misc] categories = Category.objects.filter(parent=self) if not info.context.user.has_perm("core.view_category"): categories = categories.filter(is_active=True) - result = categories + result: TreeQuerySet | list[Category] = categories with suppress(Exception): items = list(categories) Category.bulk_prefetch_filterable_attributes(items) @@ -241,7 +241,7 @@ class CategoryType(DjangoObjectType): # type: ignore [misc] return float(self.markup_percent) return 0.0 - def resolve_filterable_attributes(self: Category, info): + def resolve_filterable_attributes(self: Category, _info): return self.filterable_attributes def resolve_min_max_prices(self: Category, _info): diff --git a/core/graphene/schema.py b/engine/core/graphene/schema.py similarity index 93% rename from core/graphene/schema.py rename to engine/core/graphene/schema.py index dcb1730f..dcb52f16 100644 --- a/core/graphene/schema.py +++ b/engine/core/graphene/schema.py @@ -1,5 +1,6 @@ import logging +from django.conf import settings from django.core.cache import cache from django.core.exceptions import PermissionDenied from django.db.models import Case, Exists, IntegerField, OuterRef, Q, Value, When @@ -7,9 +8,9 @@ from django.utils import timezone from graphene import Field, List, ObjectType, Schema from graphene_django.filter import DjangoFilterConnectionField -from blog.filters import PostFilter -from blog.graphene.object_types import PostType -from core.filters import ( +from engine.blog.filters import PostFilter +from engine.blog.graphene.object_types import PostType +from engine.core.filters import ( AddressFilter, BrandFilter, CategoryFilter, @@ -18,7 +19,7 @@ from core.filters import ( ProductFilter, WishlistFilter, ) -from core.graphene.mutations import ( +from engine.core.graphene.mutations import ( AddOrderProduct, AddWishlistProduct, AutocompleteAddress, @@ -43,7 +44,7 @@ from core.graphene.mutations import ( Search, UpdateProduct, ) -from core.graphene.object_types import ( +from engine.core.graphene.object_types import ( AddressType, AttributeGroupType, BrandType, @@ -63,7 +64,7 @@ from core.graphene.object_types import ( VendorType, WishlistType, ) -from core.models import ( +from engine.core.models import ( Address, AttributeGroup, Brand, @@ -81,13 +82,12 @@ from core.models import ( Vendor, Wishlist, ) -from core.utils import get_project_parameters -from core.utils.languages import get_flag_by_language -from core.utils.messages import permission_denied_message -from evibes.settings import LANGUAGES -from payments.graphene.mutations import Deposit -from vibes_auth.filters import UserFilter -from vibes_auth.graphene.mutations import ( +from engine.core.utils import get_project_parameters +from engine.core.utils.languages import get_flag_by_language +from engine.core.utils.messages import permission_denied_message +from engine.payments.graphene.mutations import Deposit +from engine.vibes_auth.filters import UserFilter +from engine.vibes_auth.graphene.mutations import ( ActivateUser, ConfirmResetPassword, CreateUser, @@ -99,10 +99,10 @@ from vibes_auth.graphene.mutations import ( UploadAvatar, VerifyJSONWebToken, ) -from vibes_auth.graphene.object_types import UserType -from vibes_auth.models import User +from engine.vibes_auth.graphene.object_types import UserType +from engine.vibes_auth.models import User -logger = logging.getLogger("django") +logger = logging.getLogger(__name__) class Query(ObjectType): @@ -137,7 +137,7 @@ class Query(ObjectType): if not languages: languages = [ - {"code": lang[0], "name": lang[1], "flag": get_flag_by_language(lang[0])} for lang in LANGUAGES + {"code": lang[0], "name": lang[1], "flag": get_flag_by_language(lang[0])} for lang in settings.LANGUAGES ] cache.set("languages", languages, 60 * 60) diff --git a/engine/core/locale/ar_AR/LC_MESSAGES/django.mo b/engine/core/locale/ar_AR/LC_MESSAGES/django.mo new file mode 100644 index 00000000..9637a274 Binary files /dev/null and b/engine/core/locale/ar_AR/LC_MESSAGES/django.mo differ diff --git a/core/locale/ar_AR/LC_MESSAGES/django.po b/engine/core/locale/ar_AR/LC_MESSAGES/django.po similarity index 70% rename from core/locale/ar_AR/LC_MESSAGES/django.po rename to engine/core/locale/ar_AR/LC_MESSAGES/django.po index 45be5766..309a0497 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,209 +13,212 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: core/abstract.py:12 +#: engine/core/abstract.py:12 msgid "unique id" msgstr "المعرف الفريد" -#: core/abstract.py:13 +#: engine/core/abstract.py:13 msgid "unique id is used to surely identify any database object" msgstr "يستخدم المعرف الفريد لتحديد أي كائن قاعدة بيانات بالتأكيد" -#: core/abstract.py:20 +#: engine/core/abstract.py:20 msgid "is active" msgstr "نشط" -#: core/abstract.py:21 +#: engine/core/abstract.py:21 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 "" "إذا تم تعيينه على خطأ، لا يمكن للمستخدمين رؤية هذا الكائن دون الحاجة إلى إذن" -#: core/abstract.py:23 core/choices.py:18 +#: engine/core/abstract.py:23 engine/core/choices.py:18 msgid "created" msgstr "تم إنشاؤها" -#: core/abstract.py:23 +#: engine/core/abstract.py:23 msgid "when the object first appeared on the database" msgstr "عندما ظهر الكائن لأول مرة في قاعدة البيانات" -#: core/abstract.py:24 +#: engine/core/abstract.py:24 msgid "modified" msgstr "تم التعديل" -#: core/abstract.py:24 +#: engine/core/abstract.py:24 msgid "when the object was last modified" msgstr "متى تم تحرير الكائن آخر مرة" -#: core/admin.py:68 +#: engine/core/admin.py:68 msgid "translations" msgstr "الترجمات" -#: core/admin.py:72 +#: engine/core/admin.py:72 msgid "general" msgstr "جنرال لواء" -#: core/admin.py:74 +#: engine/core/admin.py:74 msgid "relations" msgstr "العلاقات" -#: core/admin.py:76 +#: engine/core/admin.py:76 msgid "additional info" msgstr "معلومات إضافية" -#: core/admin.py:94 +#: engine/core/admin.py:94 msgid "metadata" msgstr "البيانات الوصفية" -#: core/admin.py:101 +#: engine/core/admin.py:101 msgid "timestamps" msgstr "الطوابع الزمنية" -#: core/admin.py:116 +#: engine/core/admin.py:116 #, python-format msgid "activate selected %(verbose_name_plural)s" msgstr "تنشيط المحدد _PH_0__%(verbose_name_plural)s" -#: core/admin.py:121 +#: engine/core/admin.py:121 msgid "selected items have been activated." msgstr "تم تفعيل العناصر المختارة!" -#: core/admin.py:127 +#: engine/core/admin.py:127 #, python-format msgid "deactivate selected %(verbose_name_plural)s" msgstr "إلغاء التنشيط المحدد _PH_0_%(verbose_name_plural)s" -#: core/admin.py:132 +#: engine/core/admin.py:132 msgid "selected items have been deactivated." msgstr "تم إلغاء تنشيط العناصر المحددة!" -#: core/admin.py:144 core/graphene/object_types.py:582 -#: core/graphene/object_types.py:589 core/models.py:783 core/models.py:791 +#: engine/core/admin.py:144 engine/core/graphene/object_types.py:586 +#: engine/core/graphene/object_types.py:593 engine/core/models.py:794 +#: engine/core/models.py:802 msgid "attribute value" msgstr "قيمة السمة" -#: core/admin.py:145 core/graphene/object_types.py:75 core/models.py:792 +#: engine/core/admin.py:145 engine/core/graphene/object_types.py:75 +#: engine/core/models.py:803 msgid "attribute values" msgstr "قيم السمات" -#: core/admin.py:156 +#: engine/core/admin.py:156 msgid "image" msgstr "الصورة" -#: core/admin.py:157 core/graphene/object_types.py:474 +#: engine/core/admin.py:157 engine/core/graphene/object_types.py:474 msgid "images" msgstr "الصور" -#: core/admin.py:168 core/models.py:559 +#: engine/core/admin.py:169 engine/core/models.py:559 msgid "stock" msgstr "المخزون" -#: core/admin.py:169 core/graphene/object_types.py:636 +#: engine/core/admin.py:170 engine/core/graphene/object_types.py:640 msgid "stocks" msgstr "الأسهم" -#: core/admin.py:182 core/models.py:1744 +#: engine/core/admin.py:183 engine/core/models.py:1804 msgid "order product" msgstr "طلب المنتج" -#: core/admin.py:183 core/graphene/object_types.py:389 core/models.py:1745 +#: engine/core/admin.py:184 engine/core/graphene/object_types.py:389 +#: engine/core/models.py:1805 msgid "order products" msgstr "اطلب المنتجات" -#: core/admin.py:196 core/admin.py:197 +#: engine/core/admin.py:197 engine/core/admin.py:198 msgid "children" msgstr "الأطفال" -#: core/admin.py:965 +#: engine/core/admin.py:969 msgid "Config" msgstr "التكوين" -#: core/apps.py:8 +#: engine/core/apps.py:8 msgid "core" msgstr "الأساسيات" -#: core/choices.py:4 core/choices.py:20 +#: engine/core/choices.py:4 engine/core/choices.py:20 msgid "finished" msgstr "تم الانتهاء" -#: core/choices.py:5 core/choices.py:19 +#: engine/core/choices.py:5 engine/core/choices.py:19 msgid "delivering" msgstr "التوصيل" -#: core/choices.py:6 +#: engine/core/choices.py:6 msgid "delivered" msgstr "تم التسليم" -#: core/choices.py:7 +#: engine/core/choices.py:7 msgid "canceled" msgstr "تم الإلغاء" -#: core/choices.py:8 core/choices.py:16 core/choices.py:24 +#: engine/core/choices.py:8 engine/core/choices.py:16 engine/core/choices.py:24 msgid "failed" msgstr "فشل" -#: core/choices.py:9 core/choices.py:15 +#: engine/core/choices.py:9 engine/core/choices.py:15 msgid "pending" msgstr "قيد الانتظار" -#: core/choices.py:10 +#: engine/core/choices.py:10 msgid "accepted" msgstr "مقبولة" -#: core/choices.py:11 +#: engine/core/choices.py:11 msgid "money returned" msgstr "الأموال التي تم إرجاعها" -#: core/choices.py:17 +#: engine/core/choices.py:17 msgid "payment" msgstr "الدفع" -#: core/choices.py:21 +#: engine/core/choices.py:21 msgid "momental" msgstr "مومنتال" -#: core/choices.py:24 +#: engine/core/choices.py:24 msgid "successful" msgstr "ناجح" -#: core/docs/drf/views.py:17 core/graphene/mutations.py:38 +#: engine/core/docs/drf/views.py:17 engine/core/graphene/mutations.py:38 msgid "cache I/O" msgstr "ذاكرة التخزين المؤقت للإدخال/الإخراج" -#: core/docs/drf/views.py:19 +#: engine/core/docs/drf/views.py:19 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 "" "تطبيق مفتاح فقط لقراءة البيانات المسموح بها من ذاكرة التخزين المؤقت.\n" -"تطبيق مفتاح وبيانات ومهلة مع المصادقة لكتابة البيانات إلى ذاكرة التخزين المؤقت." +"تطبيق مفتاح وبيانات ومهلة مع المصادقة لكتابة البيانات إلى ذاكرة التخزين " +"المؤقت." -#: core/docs/drf/views.py:32 +#: engine/core/docs/drf/views.py:32 msgid "get a list of supported languages" msgstr "الحصول على قائمة باللغات المدعومة" -#: core/docs/drf/views.py:41 +#: engine/core/docs/drf/views.py:41 msgid "get application's exposable parameters" msgstr "الحصول على معلمات التطبيق القابلة للكشف" -#: core/docs/drf/views.py:48 +#: engine/core/docs/drf/views.py:48 msgid "send a message to the support team" msgstr "إرسال رسالة إلى فريق الدعم" -#: core/docs/drf/views.py:59 core/graphene/mutations.py:58 +#: engine/core/docs/drf/views.py:59 engine/core/graphene/mutations.py:58 msgid "request a CORSed URL" msgstr "طلب عنوان URL مرتبط بـ CORSed. مسموح بـ https فقط." -#: core/docs/drf/views.py:85 +#: engine/core/docs/drf/views.py:85 msgid "global search endpoint to query across project's tables" msgstr "نقطة نهاية بحث عالمية للاستعلام عبر جداول المشروع" -#: core/docs/drf/views.py:91 +#: engine/core/docs/drf/views.py:91 msgid "purchase an order as a business" msgstr "شراء طلب شراء كشركة" -#: core/docs/drf/views.py:98 +#: engine/core/docs/drf/views.py:98 msgid "" "purchase an order as a business, using the provided `products` with " "`product_uuid` and `attributes`." @@ -223,202 +226,205 @@ msgstr "" "اشترِ طلبًا كعمل تجاري، باستخدام \"المنتجات\" المتوفرة مع \"معرّف_المنتج\" " "و\"السمات\"." -#: core/docs/drf/viewsets.py:58 +#: engine/core/docs/drf/viewsets.py:58 msgid "list all attribute groups (simple view)" msgstr "سرد كل مجموعات السمات (عرض بسيط)" -#: core/docs/drf/viewsets.py:62 +#: engine/core/docs/drf/viewsets.py:62 msgid "retrieve a single attribute group (detailed view)" msgstr "استرداد مجموعة سمة واحدة (عرض تفصيلي)" -#: core/docs/drf/viewsets.py:66 +#: engine/core/docs/drf/viewsets.py:66 msgid "create an attribute group" msgstr "إنشاء مجموعة سمات" -#: core/docs/drf/viewsets.py:70 +#: engine/core/docs/drf/viewsets.py:70 msgid "delete an attribute group" msgstr "حذف مجموعة سمات" -#: core/docs/drf/viewsets.py:74 +#: engine/core/docs/drf/viewsets.py:74 msgid "rewrite an existing attribute group saving non-editables" msgstr "إعادة كتابة مجموعة سمات موجودة تحفظ غير القابلة للتعديل" -#: core/docs/drf/viewsets.py:78 -msgid "" -"rewrite some fields of an existing attribute group saving non-editables" +#: engine/core/docs/drf/viewsets.py:78 +msgid "rewrite some fields of an existing attribute group saving non-editables" msgstr "إعادة كتابة بعض حقول مجموعة سمات موجودة تحفظ غير القابلة للتعديل" -#: core/docs/drf/viewsets.py:85 +#: engine/core/docs/drf/viewsets.py:85 msgid "list all attributes (simple view)" msgstr "سرد جميع السمات (عرض بسيط)" -#: core/docs/drf/viewsets.py:89 +#: engine/core/docs/drf/viewsets.py:89 msgid "retrieve a single attribute (detailed view)" msgstr "استرداد سمة واحدة (عرض تفصيلي)" -#: core/docs/drf/viewsets.py:93 +#: engine/core/docs/drf/viewsets.py:93 msgid "create an attribute" msgstr "إنشاء سمة" -#: core/docs/drf/viewsets.py:97 +#: engine/core/docs/drf/viewsets.py:97 msgid "delete an attribute" msgstr "حذف سمة" -#: core/docs/drf/viewsets.py:101 +#: engine/core/docs/drf/viewsets.py:101 msgid "rewrite an existing attribute saving non-editables" msgstr "إعادة كتابة سمة موجودة تحفظ غير القابلة للتعديل" -#: core/docs/drf/viewsets.py:105 +#: engine/core/docs/drf/viewsets.py:105 msgid "rewrite some fields of an existing attribute saving non-editables" msgstr "إعادة كتابة بعض حقول سمة موجودة تحفظ غير القابلة للتعديل" -#: core/docs/drf/viewsets.py:112 +#: engine/core/docs/drf/viewsets.py:112 msgid "list all attribute values (simple view)" msgstr "سرد جميع قيم السمات (عرض بسيط)" -#: core/docs/drf/viewsets.py:116 +#: engine/core/docs/drf/viewsets.py:116 msgid "retrieve a single attribute value (detailed view)" msgstr "استرداد قيمة سمة واحدة (عرض تفصيلي)" -#: core/docs/drf/viewsets.py:120 +#: engine/core/docs/drf/viewsets.py:120 msgid "create an attribute value" msgstr "إنشاء قيمة السمة" -#: core/docs/drf/viewsets.py:124 +#: engine/core/docs/drf/viewsets.py:124 msgid "delete an attribute value" msgstr "حذف قيمة سمة" -#: core/docs/drf/viewsets.py:128 +#: engine/core/docs/drf/viewsets.py:128 msgid "rewrite an existing attribute value saving non-editables" msgstr "إعادة كتابة قيمة سمة موجودة تحفظ غير القابلة للتعديل" -#: core/docs/drf/viewsets.py:132 -msgid "" -"rewrite some fields of an existing attribute value saving non-editables" +#: engine/core/docs/drf/viewsets.py:132 +msgid "rewrite some fields of an existing attribute value saving non-editables" msgstr "إعادة كتابة بعض حقول قيمة سمة موجودة حفظ غير قابل للتعديل" -#: core/docs/drf/viewsets.py:139 core/docs/drf/viewsets.py:140 +#: engine/core/docs/drf/viewsets.py:139 engine/core/docs/drf/viewsets.py:140 msgid "list all categories (simple view)" msgstr "قائمة بجميع الفئات (عرض بسيط)" -#: core/docs/drf/viewsets.py:144 core/docs/drf/viewsets.py:145 +#: engine/core/docs/drf/viewsets.py:144 engine/core/docs/drf/viewsets.py:145 msgid "retrieve a single category (detailed view)" msgstr "استرداد فئة واحدة (عرض تفصيلي)" -#: core/docs/drf/viewsets.py:149 core/docs/drf/viewsets.py:150 -msgid "create a category" -msgstr "إنشاء فئة" - -#: core/docs/drf/viewsets.py:154 core/docs/drf/viewsets.py:155 -msgid "delete a category" -msgstr "حذف فئة" - -#: core/docs/drf/viewsets.py:159 core/docs/drf/viewsets.py:160 -msgid "rewrite an existing category saving non-editables" -msgstr "إعادة كتابة فئة موجودة حفظ غير المواد غير القابلة للتعديل" - -#: core/docs/drf/viewsets.py:164 core/docs/drf/viewsets.py:165 -msgid "rewrite some fields of an existing category saving non-editables" -msgstr "إعادة كتابة بعض حقول فئة موجودة حفظ غير القابلة للتعديل" - -#: core/docs/drf/viewsets.py:169 core/docs/drf/viewsets.py:501 -#: core/graphene/object_types.py:117 core/graphene/object_types.py:207 -#: core/graphene/object_types.py:482 -msgid "SEO Meta snapshot" -msgstr "لقطة تعريفية لتحسين محركات البحث SEO" - -#: core/docs/drf/viewsets.py:170 -msgid "returns a snapshot of the category's SEO meta data" -msgstr "إرجاع لقطة من البيانات الوصفية لتحسين محركات البحث الخاصة بالفئة" - -#: core/docs/drf/viewsets.py:175 +#: engine/core/docs/drf/viewsets.py:150 engine/core/docs/drf/viewsets.py:183 msgid "Category UUID or slug" msgstr "معرّف الفئة UUID أو سبيكة" -#: core/docs/drf/viewsets.py:188 +#: engine/core/docs/drf/viewsets.py:157 engine/core/docs/drf/viewsets.py:158 +msgid "create a category" +msgstr "إنشاء فئة" + +#: engine/core/docs/drf/viewsets.py:162 engine/core/docs/drf/viewsets.py:163 +msgid "delete a category" +msgstr "حذف فئة" + +#: engine/core/docs/drf/viewsets.py:167 engine/core/docs/drf/viewsets.py:168 +msgid "rewrite an existing category saving non-editables" +msgstr "إعادة كتابة فئة موجودة حفظ غير المواد غير القابلة للتعديل" + +#: engine/core/docs/drf/viewsets.py:172 engine/core/docs/drf/viewsets.py:173 +msgid "rewrite some fields of an existing category saving non-editables" +msgstr "إعادة كتابة بعض حقول فئة موجودة حفظ غير القابلة للتعديل" + +#: engine/core/docs/drf/viewsets.py:177 engine/core/docs/drf/viewsets.py:517 +#: engine/core/graphene/object_types.py:117 +#: engine/core/graphene/object_types.py:207 +#: engine/core/graphene/object_types.py:482 +msgid "SEO Meta snapshot" +msgstr "لقطة تعريفية لتحسين محركات البحث SEO" + +#: engine/core/docs/drf/viewsets.py:178 +msgid "returns a snapshot of the category's SEO meta data" +msgstr "إرجاع لقطة من البيانات الوصفية لتحسين محركات البحث الخاصة بالفئة" + +#: engine/core/docs/drf/viewsets.py:196 msgid "list all orders (simple view)" msgstr "قائمة بجميع الفئات (عرض بسيط)" -#: core/docs/drf/viewsets.py:189 +#: engine/core/docs/drf/viewsets.py:197 msgid "for non-staff users, only their own orders are returned." msgstr "بالنسبة للمستخدمين من غير الموظفين، يتم إرجاع الطلبات الخاصة بهم فقط." -#: core/docs/drf/viewsets.py:195 +#: engine/core/docs/drf/viewsets.py:203 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" -#: core/docs/drf/viewsets.py:202 +#: engine/core/docs/drf/viewsets.py:210 msgid "Filter orders with buy_time >= this ISO 8601 datetime" msgstr "تصفية الطلبات ذات وقت_الشراء >= تاريخ ووقت الشراء هذا ISO 8601" -#: core/docs/drf/viewsets.py:207 +#: engine/core/docs/drf/viewsets.py:215 msgid "Filter orders with buy_time <= this ISO 8601 datetime" msgstr "تصفية الطلبات ذات وقت_الشراء <= تاريخ ووقت الشراء ISO 8601 هذا" -#: core/docs/drf/viewsets.py:212 +#: engine/core/docs/drf/viewsets.py:220 msgid "Filter by exact order UUID" msgstr "تصفية حسب الطلب الدقيق UUID" -#: core/docs/drf/viewsets.py:217 +#: engine/core/docs/drf/viewsets.py:225 msgid "Filter by exact human-readable order ID" msgstr "التصفية حسب مُعرِّف الطلب المقروء بشريًا بالضبط" -#: core/docs/drf/viewsets.py:222 +#: engine/core/docs/drf/viewsets.py:230 msgid "Filter by user's email (case-insensitive exact match)" msgstr "" "تصفية حسب البريد الإلكتروني للمستخدم (مطابقة تامة غير حساسة لحالة الأحرف)" -#: core/docs/drf/viewsets.py:227 +#: engine/core/docs/drf/viewsets.py:235 msgid "Filter by user's UUID" msgstr "تصفية حسب معرّف المستخدم UUID" -#: core/docs/drf/viewsets.py:232 +#: engine/core/docs/drf/viewsets.py:240 msgid "Filter by order status (case-insensitive substring match)" msgstr "تصفية حسب حالة الطلب (مطابقة سلسلة فرعية غير حساسة لحالة الأحرف)" -#: core/docs/drf/viewsets.py:238 +#: engine/core/docs/drf/viewsets.py:246 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، معرف_بشري_مقروء، بريد_إلكتروني_مستخدم، مستخدم، " "حالة، إنشاء، تعديل، وقت_الشراء، عشوائي. البادئة بحرف \"-\" للترتيب التنازلي " "(على سبيل المثال \"-وقت_الشراء\")." -#: core/docs/drf/viewsets.py:247 +#: engine/core/docs/drf/viewsets.py:255 msgid "retrieve a single order (detailed view)" msgstr "استرداد فئة واحدة (عرض تفصيلي)" -#: core/docs/drf/viewsets.py:251 +#: engine/core/docs/drf/viewsets.py:260 +msgid "Order UUID or human-readable id" +msgstr "طلب معرّف UUID أو معرّف قابل للقراءة البشرية" + +#: engine/core/docs/drf/viewsets.py:267 msgid "create an order" msgstr "إنشاء سمة" -#: core/docs/drf/viewsets.py:252 +#: engine/core/docs/drf/viewsets.py:268 msgid "doesn't work for non-staff users." msgstr "لا يعمل مع المستخدمين من غير الموظفين." -#: core/docs/drf/viewsets.py:256 +#: engine/core/docs/drf/viewsets.py:272 msgid "delete an order" msgstr "حذف سمة" -#: core/docs/drf/viewsets.py:260 +#: engine/core/docs/drf/viewsets.py:276 msgid "rewrite an existing order saving non-editables" msgstr "إعادة كتابة فئة موجودة حفظ غير المواد غير القابلة للتعديل" -#: core/docs/drf/viewsets.py:264 +#: engine/core/docs/drf/viewsets.py:280 msgid "rewrite some fields of an existing order saving non-editables" msgstr "إعادة كتابة بعض حقول فئة موجودة حفظ غير القابلة للتعديل" -#: core/docs/drf/viewsets.py:268 +#: engine/core/docs/drf/viewsets.py:284 msgid "purchase an order" msgstr "سعر الشراء وقت الطلب" -#: core/docs/drf/viewsets.py:270 +#: engine/core/docs/drf/viewsets.py:286 msgid "" "finalizes the order purchase. if `force_balance` is used, the purchase is " "completed using the user's balance; if `force_payment` is used, a " @@ -427,51 +433,51 @@ msgstr "" "ينهي أمر الشراء. إذا تم استخدام \"فرض_الرصيد\"، يتم إكمال عملية الشراء " "باستخدام رصيد المستخدم؛ إذا تم استخدام \"فرض_الدفع\"، يتم بدء المعاملة." -#: core/docs/drf/viewsets.py:282 core/graphene/mutations.py:335 +#: engine/core/docs/drf/viewsets.py:298 engine/core/graphene/mutations.py:335 msgid "purchase an order without account creation" msgstr "شراء طلب شراء بدون إنشاء حساب" -#: core/docs/drf/viewsets.py:283 +#: engine/core/docs/drf/viewsets.py:299 msgid "finalizes the order purchase for a non-registered user." msgstr "إنهاء طلب الشراء لمستخدم غير مسجل." -#: core/docs/drf/viewsets.py:291 +#: engine/core/docs/drf/viewsets.py:307 msgid "add product to order" msgstr "إضافة منتج إلى الطلب" -#: core/docs/drf/viewsets.py:292 +#: engine/core/docs/drf/viewsets.py:308 msgid "" "adds a product to an order using the provided `product_uuid` and " "`attributes`." msgstr "يضيف منتجًا إلى طلب باستخدام \"معرّف_المنتج\" و\"السمات\" المتوفرة." -#: core/docs/drf/viewsets.py:297 +#: engine/core/docs/drf/viewsets.py:313 msgid "add a list of products to order, quantities will not count" msgstr "إضافة قائمة بالمنتجات المطلوب طلبها، لن يتم احتساب الكميات" -#: core/docs/drf/viewsets.py:298 +#: engine/core/docs/drf/viewsets.py:314 msgid "" "adds a list of products to an order using the provided `product_uuid` and " "`attributes`." msgstr "" -"يضيف قائمة من المنتجات إلى طلب باستخدام \"معرّف_المنتج\" و\"السمات\" " -"المتوفرة." +"يضيف قائمة من المنتجات إلى طلب باستخدام \"معرّف_المنتج\" و\"السمات\" المتوفرة." -#: core/docs/drf/viewsets.py:303 +#: engine/core/docs/drf/viewsets.py:319 msgid "remove product from order" msgstr "إزالة منتج من الطلب" -#: core/docs/drf/viewsets.py:304 +#: engine/core/docs/drf/viewsets.py:320 msgid "" "removes a product from an order using the provided `product_uuid` and " "`attributes`." -msgstr "يزيل منتجًا من أحد الطلبات باستخدام \"معرّف_المنتج\" و\"السمات\" المتوفرة." +msgstr "" +"يزيل منتجًا من أحد الطلبات باستخدام \"معرّف_المنتج\" و\"السمات\" المتوفرة." -#: core/docs/drf/viewsets.py:309 +#: engine/core/docs/drf/viewsets.py:325 msgid "remove product from order, quantities will not count" msgstr "إزالة منتج من الطلب، لن يتم احتساب الكميات" -#: core/docs/drf/viewsets.py:310 +#: engine/core/docs/drf/viewsets.py:326 msgid "" "removes a list of products from an order using the provided `product_uuid` " "and `attributes`" @@ -479,174 +485,187 @@ msgstr "" "يزيل قائمة من المنتجات من الطلب باستخدام \"معرّف_المنتج\" و\"السمات\" " "المتوفرة." -#: core/docs/drf/viewsets.py:318 +#: engine/core/docs/drf/viewsets.py:334 msgid "list all wishlists (simple view)" msgstr "سرد جميع السمات (عرض بسيط)" -#: core/docs/drf/viewsets.py:319 +#: engine/core/docs/drf/viewsets.py:335 msgid "for non-staff users, only their own wishlists are returned." msgstr "" "بالنسبة للمستخدمين من غير الموظفين، يتم إرجاع قوائم الرغبات الخاصة بهم فقط." -#: core/docs/drf/viewsets.py:323 +#: engine/core/docs/drf/viewsets.py:339 msgid "retrieve a single wishlist (detailed view)" msgstr "استرداد سمة واحدة (عرض تفصيلي)" -#: core/docs/drf/viewsets.py:327 +#: engine/core/docs/drf/viewsets.py:343 msgid "create an wishlist" msgstr "إنشاء سمة" -#: core/docs/drf/viewsets.py:328 +#: engine/core/docs/drf/viewsets.py:344 msgid "Doesn't work for non-staff users." msgstr "لا يعمل مع المستخدمين من غير الموظفين." -#: core/docs/drf/viewsets.py:332 +#: engine/core/docs/drf/viewsets.py:348 msgid "delete an wishlist" msgstr "حذف سمة" -#: core/docs/drf/viewsets.py:336 +#: engine/core/docs/drf/viewsets.py:352 msgid "rewrite an existing wishlist saving non-editables" msgstr "إعادة كتابة سمة موجودة تحفظ غير القابلة للتعديل" -#: core/docs/drf/viewsets.py:340 +#: engine/core/docs/drf/viewsets.py:356 msgid "rewrite some fields of an existing wishlist saving non-editables" msgstr "إعادة كتابة بعض حقول سمة موجودة تحفظ غير القابلة للتعديل" -#: core/docs/drf/viewsets.py:344 +#: engine/core/docs/drf/viewsets.py:360 msgid "add product to wishlist" msgstr "إضافة منتج إلى الطلب" -#: core/docs/drf/viewsets.py:345 +#: engine/core/docs/drf/viewsets.py:361 msgid "adds a product to an wishlist using the provided `product_uuid`" msgstr "يضيف منتجًا إلى قائمة أمنيات باستخدام 'product_uid' المتوفرة" -#: core/docs/drf/viewsets.py:350 +#: engine/core/docs/drf/viewsets.py:366 msgid "remove product from wishlist" msgstr "إزالة منتج من قائمة الرغبات" -#: core/docs/drf/viewsets.py:351 +#: engine/core/docs/drf/viewsets.py:367 msgid "removes a product from an wishlist using the provided `product_uuid`" msgstr "يزيل منتجًا من قائمة أمنيات باستخدام 'product_uid' المتوفرة" -#: core/docs/drf/viewsets.py:356 +#: engine/core/docs/drf/viewsets.py:372 msgid "add many products to wishlist" msgstr "إضافة العديد من المنتجات إلى قائمة الرغبات" -#: core/docs/drf/viewsets.py:357 +#: engine/core/docs/drf/viewsets.py:373 msgid "adds many products to an wishlist using the provided `product_uuids`" msgstr "" "يضيف العديد من المنتجات إلى قائمة الرغبات باستخدام 'product_uids' المتوفرة" -#: core/docs/drf/viewsets.py:362 +#: engine/core/docs/drf/viewsets.py:378 msgid "remove many products from wishlist" msgstr "إزالة منتج من الطلب" -#: core/docs/drf/viewsets.py:363 +#: engine/core/docs/drf/viewsets.py:379 msgid "" "removes many products from an wishlist using the provided `product_uuids`" msgstr "" "يزيل العديد من المنتجات من قائمة الرغبات باستخدام 'product_uids' المتوفرة" -#: core/docs/drf/viewsets.py:370 +#: engine/core/docs/drf/viewsets.py:386 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" -#: core/docs/drf/viewsets.py:386 core/docs/drf/viewsets.py:387 +#: engine/core/docs/drf/viewsets.py:402 engine/core/docs/drf/viewsets.py:403 msgid "list all products (simple view)" msgstr "قائمة بجميع المنتجات (عرض بسيط)" -#: core/docs/drf/viewsets.py:392 +#: engine/core/docs/drf/viewsets.py:408 msgid "(exact) Product UUID" msgstr "(بالضبط) UUID المنتج" -#: core/docs/drf/viewsets.py:399 +#: engine/core/docs/drf/viewsets.py:415 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، تصنيف، اسم، سبيكة، إنشاء، تعديل، سعر، عشوائي" -#: core/docs/drf/viewsets.py:413 core/docs/drf/viewsets.py:414 +#: engine/core/docs/drf/viewsets.py:429 engine/core/docs/drf/viewsets.py:430 msgid "retrieve a single product (detailed view)" msgstr "استرداد منتج واحد (عرض تفصيلي)" -#: core/docs/drf/viewsets.py:419 core/docs/drf/viewsets.py:443 -#: core/docs/drf/viewsets.py:459 core/docs/drf/viewsets.py:475 -#: core/docs/drf/viewsets.py:491 core/docs/drf/viewsets.py:507 +#: engine/core/docs/drf/viewsets.py:435 engine/core/docs/drf/viewsets.py:459 +#: engine/core/docs/drf/viewsets.py:475 engine/core/docs/drf/viewsets.py:491 +#: engine/core/docs/drf/viewsets.py:507 engine/core/docs/drf/viewsets.py:523 msgid "Product UUID or slug" msgstr "معرف المنتج UUID أو سبيكة المنتج" -#: core/docs/drf/viewsets.py:429 core/docs/drf/viewsets.py:430 +#: engine/core/docs/drf/viewsets.py:445 engine/core/docs/drf/viewsets.py:446 msgid "create a product" msgstr "إنشاء منتج" -#: core/docs/drf/viewsets.py:437 core/docs/drf/viewsets.py:438 +#: engine/core/docs/drf/viewsets.py:453 engine/core/docs/drf/viewsets.py:454 msgid "rewrite an existing product, preserving non-editable fields" msgstr "إعادة كتابة منتج موجود، مع الحفاظ على الحقول غير القابلة للتحرير" -#: core/docs/drf/viewsets.py:453 core/docs/drf/viewsets.py:454 +#: engine/core/docs/drf/viewsets.py:469 engine/core/docs/drf/viewsets.py:470 msgid "" "update some fields of an existing product, preserving non-editable fields" msgstr "تحديث بعض حقول منتج موجود، مع الحفاظ على الحقول غير القابلة للتحرير" -#: core/docs/drf/viewsets.py:469 core/docs/drf/viewsets.py:470 +#: engine/core/docs/drf/viewsets.py:485 engine/core/docs/drf/viewsets.py:486 msgid "delete a product" msgstr "حذف منتج" -#: core/docs/drf/viewsets.py:485 core/docs/drf/viewsets.py:486 +#: engine/core/docs/drf/viewsets.py:501 engine/core/docs/drf/viewsets.py:502 msgid "lists all permitted feedbacks for a product" msgstr "سرد جميع الملاحظات المسموح بها للمنتج" -#: core/docs/drf/viewsets.py:502 +#: engine/core/docs/drf/viewsets.py:518 msgid "returns a snapshot of the product's SEO meta data" msgstr "إرجاع لقطة من البيانات الوصفية لتحسين محركات البحث للمنتج" -#: core/docs/drf/viewsets.py:520 +#: engine/core/docs/drf/viewsets.py:536 msgid "list all addresses" msgstr "قائمة بجميع العناوين" -#: core/docs/drf/viewsets.py:527 +#: engine/core/docs/drf/viewsets.py:543 msgid "retrieve a single address" msgstr "استرجاع عنوان واحد" -#: core/docs/drf/viewsets.py:534 +#: engine/core/docs/drf/viewsets.py:550 msgid "create a new address" msgstr "إنشاء عنوان جديد" -#: core/docs/drf/viewsets.py:542 +#: engine/core/docs/drf/viewsets.py:558 msgid "delete an address" msgstr "حذف عنوان" -#: core/docs/drf/viewsets.py:549 +#: engine/core/docs/drf/viewsets.py:565 msgid "update an entire address" msgstr "تحديث عنوان كامل" -#: core/docs/drf/viewsets.py:557 +#: engine/core/docs/drf/viewsets.py:573 msgid "partially update an address" msgstr "تحديث جزئي للعنوان" -#: core/docs/drf/viewsets.py:565 +#: engine/core/docs/drf/viewsets.py:581 msgid "autocomplete address suggestions" msgstr "إدخال عنوان الإكمال التلقائي" -#: core/docs/drf/viewsets.py:570 +#: engine/core/docs/drf/viewsets.py:586 msgid "raw data query string, please append with data from geo-IP endpoint" msgstr "" "تطبيق docker compose exec تطبيق docker exec الشعر تشغيل إدارة python.py " @@ -655,594 +674,607 @@ msgstr "" "pl -l pt-br -l ro-ro -l ru-ru -l zh-hans -l zh-ans -a core -a geo -a geo -a " "payments -a vibes_auth -a blog" -#: core/docs/drf/viewsets.py:576 +#: engine/core/docs/drf/viewsets.py:592 msgid "limit the results amount, 1 < limit < 10, default: 5" msgstr "تحديد كمية النتائج، 1 < الحد < 10، الافتراضي: 5" -#: core/docs/drf/viewsets.py:589 +#: engine/core/docs/drf/viewsets.py:605 msgid "list all feedbacks (simple view)" msgstr "سرد جميع الملاحظات (عرض بسيط)" -#: core/docs/drf/viewsets.py:593 +#: engine/core/docs/drf/viewsets.py:609 msgid "retrieve a single feedback (detailed view)" msgstr "استرداد تعليق واحد (عرض مفصل)" -#: core/docs/drf/viewsets.py:597 +#: engine/core/docs/drf/viewsets.py:613 msgid "create a feedback" msgstr "إنشاء ملاحظات" -#: core/docs/drf/viewsets.py:601 +#: engine/core/docs/drf/viewsets.py:617 msgid "delete a feedback" msgstr "حذف تعليق" -#: core/docs/drf/viewsets.py:605 +#: engine/core/docs/drf/viewsets.py:621 msgid "rewrite an existing feedback saving non-editables" msgstr "إعادة كتابة ملاحظات حالية تحفظ المواد غير القابلة للتعديل" -#: core/docs/drf/viewsets.py:609 +#: engine/core/docs/drf/viewsets.py:625 msgid "rewrite some fields of an existing feedback saving non-editables" msgstr "إعادة كتابة بعض حقول الملاحظات الحالية التي تحفظ غير القابلة للتعديل" -#: core/docs/drf/viewsets.py:616 +#: engine/core/docs/drf/viewsets.py:632 msgid "list all order–product relations (simple view)" msgstr "سرد جميع العلاقات بين الطلب والمنتج (عرض بسيط)" -#: core/docs/drf/viewsets.py:623 +#: engine/core/docs/drf/viewsets.py:639 msgid "retrieve a single order–product relation (detailed view)" msgstr "استرداد علاقة طلب منتج واحد (عرض تفصيلي)" -#: core/docs/drf/viewsets.py:630 +#: engine/core/docs/drf/viewsets.py:646 msgid "create a new order–product relation" msgstr "إنشاء علاقة جديدة بين الطلب والمنتج" -#: core/docs/drf/viewsets.py:637 +#: engine/core/docs/drf/viewsets.py:653 msgid "replace an existing order–product relation" msgstr "استبدال علاقة الطلب-المنتج الحالية" -#: core/docs/drf/viewsets.py:644 +#: engine/core/docs/drf/viewsets.py:660 msgid "partially update an existing order–product relation" msgstr "تحديث جزئي لعلاقة الطلب والمنتج الحالية" -#: core/docs/drf/viewsets.py:651 +#: engine/core/docs/drf/viewsets.py:667 msgid "delete an order–product relation" msgstr "حذف علاقة الطلب-المنتج" -#: core/docs/drf/viewsets.py:658 +#: engine/core/docs/drf/viewsets.py:674 msgid "add or remove feedback on an order–product relation" msgstr "إضافة أو إزالة الملاحظات على العلاقة بين الطلب والمنتج" -#: core/docs/drf/viewsets.py:672 +#: engine/core/docs/drf/viewsets.py:688 msgid "list all brands (simple view)" msgstr "قائمة بجميع العلامات التجارية (عرض بسيط)" -#: core/docs/drf/viewsets.py:676 +#: engine/core/docs/drf/viewsets.py:692 msgid "retrieve a single brand (detailed view)" msgstr "استرداد علامة تجارية واحدة (عرض تفصيلي)" -#: core/docs/drf/viewsets.py:680 +#: engine/core/docs/drf/viewsets.py:697 engine/core/docs/drf/viewsets.py:725 +msgid "Brand UUID or slug" +msgstr "UUID أو سبيكة العلامة التجارية" + +#: engine/core/docs/drf/viewsets.py:704 msgid "create a brand" msgstr "إنشاء علامة تجارية" -#: core/docs/drf/viewsets.py:684 +#: engine/core/docs/drf/viewsets.py:708 msgid "delete a brand" msgstr "حذف علامة تجارية" -#: core/docs/drf/viewsets.py:688 +#: engine/core/docs/drf/viewsets.py:712 msgid "rewrite an existing brand saving non-editables" msgstr "إعادة كتابة علامة تجارية حالية توفر المواد غير القابلة للتعديل" -#: core/docs/drf/viewsets.py:692 +#: engine/core/docs/drf/viewsets.py:716 msgid "rewrite some fields of an existing brand saving non-editables" msgstr "إعادة كتابة بعض الحقول لعلامة تجارية موجودة حفظ غير قابلة للتعديل" -#: core/docs/drf/viewsets.py:696 +#: engine/core/docs/drf/viewsets.py:720 msgid "SEO Meta snapshot for brand" msgstr "لقطة تعريفية لتحسين محركات البحث للعلامة التجارية" -#: core/docs/drf/viewsets.py:703 +#: engine/core/docs/drf/viewsets.py:735 msgid "list all vendors (simple view)" msgstr "قائمة بجميع البائعين (عرض بسيط)" -#: core/docs/drf/viewsets.py:707 +#: engine/core/docs/drf/viewsets.py:739 msgid "retrieve a single vendor (detailed view)" msgstr "استرداد بائع واحد (عرض تفصيلي)" -#: core/docs/drf/viewsets.py:711 +#: engine/core/docs/drf/viewsets.py:743 msgid "create a vendor" msgstr "إنشاء بائع" -#: core/docs/drf/viewsets.py:715 +#: engine/core/docs/drf/viewsets.py:747 msgid "delete a vendor" msgstr "حذف بائع" -#: core/docs/drf/viewsets.py:719 +#: engine/core/docs/drf/viewsets.py:751 msgid "rewrite an existing vendor saving non-editables" msgstr "إعادة كتابة بائع موجود حفظ المواد غير القابلة للتعديل" -#: core/docs/drf/viewsets.py:723 +#: engine/core/docs/drf/viewsets.py:755 msgid "rewrite some fields of an existing vendor saving non-editables" msgstr "إعادة كتابة بعض حقول البائع الحالي لحفظ المواد غير القابلة للتعديل" -#: core/docs/drf/viewsets.py:730 +#: engine/core/docs/drf/viewsets.py:762 msgid "list all product images (simple view)" msgstr "سرد جميع صور المنتج (عرض بسيط)" -#: core/docs/drf/viewsets.py:734 +#: engine/core/docs/drf/viewsets.py:766 msgid "retrieve a single product image (detailed view)" msgstr "استرداد صورة منتج واحد (عرض تفصيلي)" -#: core/docs/drf/viewsets.py:738 +#: engine/core/docs/drf/viewsets.py:770 msgid "create a product image" msgstr "إنشاء صورة المنتج" -#: core/docs/drf/viewsets.py:742 +#: engine/core/docs/drf/viewsets.py:774 msgid "delete a product image" msgstr "حذف صورة المنتج" -#: core/docs/drf/viewsets.py:746 +#: engine/core/docs/drf/viewsets.py:778 msgid "rewrite an existing product image saving non-editables" msgstr "إعادة كتابة صورة منتج موجود حفظ غير قابل للتعديل" -#: core/docs/drf/viewsets.py:750 +#: engine/core/docs/drf/viewsets.py:782 msgid "rewrite some fields of an existing product image saving non-editables" msgstr "إعادة كتابة بعض حقول صورة منتج موجود حفظ غير قابل للتعديل" -#: core/docs/drf/viewsets.py:757 +#: engine/core/docs/drf/viewsets.py:789 msgid "list all promo codes (simple view)" msgstr "قائمة بجميع الرموز الترويجية (عرض بسيط)" -#: core/docs/drf/viewsets.py:761 +#: engine/core/docs/drf/viewsets.py:793 msgid "retrieve a single promo code (detailed view)" msgstr "استرداد رمز ترويجي واحد (عرض تفصيلي)" -#: core/docs/drf/viewsets.py:765 +#: engine/core/docs/drf/viewsets.py:797 msgid "create a promo code" msgstr "إنشاء رمز ترويجي" -#: core/docs/drf/viewsets.py:769 +#: engine/core/docs/drf/viewsets.py:801 msgid "delete a promo code" msgstr "حذف الرمز الترويجي" -#: core/docs/drf/viewsets.py:773 +#: engine/core/docs/drf/viewsets.py:805 msgid "rewrite an existing promo code saving non-editables" msgstr "إعادة كتابة الرمز الترويجي الحالي الذي يوفر غير القابل للتعديل" -#: core/docs/drf/viewsets.py:777 +#: engine/core/docs/drf/viewsets.py:809 msgid "rewrite some fields of an existing promo code saving non-editables" msgstr "إعادة كتابة بعض حقول الرمز الترويجي الحالي مع حفظ غير القابل للتعديل" -#: core/docs/drf/viewsets.py:784 +#: engine/core/docs/drf/viewsets.py:816 msgid "list all promotions (simple view)" msgstr "قائمة بجميع العروض الترويجية (عرض بسيط)" -#: core/docs/drf/viewsets.py:788 +#: engine/core/docs/drf/viewsets.py:820 msgid "retrieve a single promotion (detailed view)" msgstr "استرداد ترقية واحدة (عرض تفصيلي)" -#: core/docs/drf/viewsets.py:792 +#: engine/core/docs/drf/viewsets.py:824 msgid "create a promotion" msgstr "إنشاء عرض ترويجي" -#: core/docs/drf/viewsets.py:796 +#: engine/core/docs/drf/viewsets.py:828 msgid "delete a promotion" msgstr "حذف ترقية" -#: core/docs/drf/viewsets.py:800 +#: engine/core/docs/drf/viewsets.py:832 msgid "rewrite an existing promotion saving non-editables" msgstr "إعادة كتابة عرض ترويجي حالي يوفر المواد غير القابلة للتعديل" -#: core/docs/drf/viewsets.py:804 +#: engine/core/docs/drf/viewsets.py:836 msgid "rewrite some fields of an existing promotion saving non-editables" msgstr "" "إعادة كتابة بعض الحقول في ترقية حالية مع حفظ غير المواد غير القابلة للتعديل" -#: core/docs/drf/viewsets.py:811 +#: engine/core/docs/drf/viewsets.py:843 msgid "list all stocks (simple view)" msgstr "قائمة بجميع الأسهم (عرض بسيط)" -#: core/docs/drf/viewsets.py:815 +#: engine/core/docs/drf/viewsets.py:847 msgid "retrieve a single stock (detailed view)" msgstr "استرداد مخزون واحد (عرض تفصيلي)" -#: core/docs/drf/viewsets.py:819 +#: engine/core/docs/drf/viewsets.py:851 msgid "create a stock record" msgstr "إنشاء سجل مخزون" -#: core/docs/drf/viewsets.py:823 +#: engine/core/docs/drf/viewsets.py:855 msgid "delete a stock record" msgstr "حذف سجل مخزون" -#: core/docs/drf/viewsets.py:827 +#: engine/core/docs/drf/viewsets.py:859 msgid "rewrite an existing stock record saving non-editables" msgstr "إعادة كتابة سجل مخزون موجود يحفظ المواد غير القابلة للتعديل" -#: core/docs/drf/viewsets.py:831 +#: engine/core/docs/drf/viewsets.py:863 msgid "rewrite some fields of an existing stock record saving non-editables" msgstr "إعادة كتابة بعض حقول السجل الحالي للمخزون مع حفظ غير القابل للتعديل" -#: core/docs/drf/viewsets.py:838 +#: engine/core/docs/drf/viewsets.py:870 msgid "list all product tags (simple view)" msgstr "سرد جميع علامات المنتج (عرض بسيط)" -#: core/docs/drf/viewsets.py:842 +#: engine/core/docs/drf/viewsets.py:874 msgid "retrieve a single product tag (detailed view)" msgstr "استرداد علامة منتج واحد (عرض تفصيلي)" -#: core/docs/drf/viewsets.py:846 +#: engine/core/docs/drf/viewsets.py:878 msgid "create a product tag" msgstr "إنشاء علامة منتج" -#: core/docs/drf/viewsets.py:850 +#: engine/core/docs/drf/viewsets.py:882 msgid "delete a product tag" msgstr "حذف علامة منتج" -#: core/docs/drf/viewsets.py:854 +#: engine/core/docs/drf/viewsets.py:886 msgid "rewrite an existing product tag saving non-editables" msgstr "إعادة كتابة علامة منتج موجود حفظ غير قابل للتعديل" -#: core/docs/drf/viewsets.py:858 +#: engine/core/docs/drf/viewsets.py:890 msgid "rewrite some fields of an existing product tag saving non-editables" msgstr "إعادة كتابة بعض حقول علامة منتج موجود حفظ غير قابل للتعديل" -#: core/elasticsearch/__init__.py:118 core/elasticsearch/__init__.py:550 +#: engine/core/elasticsearch/__init__.py:122 +#: engine/core/elasticsearch/__init__.py:570 msgid "no search term provided." msgstr "لم يتم توفير مصطلح بحث." -#: core/filters.py:69 core/filters.py:412 core/filters.py:539 +#: engine/core/filters.py:69 engine/core/filters.py:426 +#: engine/core/filters.py:553 msgid "Search" msgstr "بحث" -#: core/filters.py:70 core/filters.py:569 core/filters.py:598 +#: engine/core/filters.py:70 engine/core/filters.py:583 +#: engine/core/filters.py:612 msgid "UUID" msgstr "UUID" -#: core/filters.py:71 core/filters.py:414 core/filters.py:541 +#: engine/core/filters.py:71 engine/core/filters.py:428 +#: engine/core/filters.py:555 msgid "Name" msgstr "الاسم" -#: core/filters.py:72 core/filters.py:543 +#: engine/core/filters.py:72 engine/core/filters.py:557 msgid "Categories" msgstr "الفئات" -#: core/filters.py:74 +#: engine/core/filters.py:74 msgid "Categories Slugs" msgstr "الفئات الرخويات" -#: core/filters.py:75 core/filters.py:422 +#: engine/core/filters.py:75 engine/core/filters.py:436 msgid "Tags" msgstr "الوسوم" -#: core/filters.py:76 +#: engine/core/filters.py:76 msgid "Min Price" msgstr "الحد الأدنى للسعر" -#: core/filters.py:77 +#: engine/core/filters.py:77 msgid "Max Price" msgstr "ماكس برايس" -#: core/filters.py:78 +#: engine/core/filters.py:78 msgid "Is Active" msgstr "نشط" -#: core/filters.py:79 +#: engine/core/filters.py:79 msgid "Brand" msgstr "العلامة التجارية" -#: core/filters.py:80 +#: engine/core/filters.py:80 msgid "Attributes" msgstr "السمات" -#: core/filters.py:81 +#: engine/core/filters.py:81 msgid "Quantity" msgstr "الكمية" -#: core/filters.py:82 core/filters.py:416 core/filters.py:542 -#: core/models.py:322 core/models.py:483 core/models.py:637 +#: engine/core/filters.py:82 engine/core/filters.py:430 +#: engine/core/filters.py:556 engine/core/models.py:321 +#: engine/core/models.py:482 engine/core/models.py:637 msgid "Slug" msgstr "سبيكة" -#: core/filters.py:83 +#: engine/core/filters.py:83 msgid "Is Digital" msgstr "هو رقمي" -#: core/filters.py:84 +#: engine/core/filters.py:84 msgid "Include sub-categories" msgstr "تضمين الفئات الفرعية" -#: core/filters.py:87 +#: engine/core/filters.py:87 msgid "Include personal ordered" msgstr "تضمين المنتجات المطلوبة شخصيًا" -#: core/filters.py:89 core/models.py:641 +#: engine/core/filters.py:89 engine/core/models.py:641 msgid "SKU" msgstr "وحدة التخزين" -#: core/filters.py:173 +#: engine/core/filters.py:184 msgid "there must be a category_uuid to use include_subcategories flag" msgstr "يجب أن يكون هناك category_uid لاستخدام علامة تضمين_الفئات_الفرعية" -#: core/filters.py:339 +#: engine/core/filters.py:353 msgid "Search (ID, product name or part number)" msgstr "البحث (المعرف أو اسم المنتج أو رقم الجزء)" -#: core/filters.py:342 +#: engine/core/filters.py:356 msgid "Bought after (inclusive)" msgstr "تم الشراء بعد (شامل)" -#: core/filters.py:343 +#: engine/core/filters.py:357 msgid "Bought before (inclusive)" msgstr "تم الشراء من قبل (شامل)" -#: core/filters.py:346 core/filters.py:393 core/filters.py:600 +#: engine/core/filters.py:360 engine/core/filters.py:407 +#: engine/core/filters.py:614 msgid "User email" msgstr "البريد الإلكتروني للمستخدم" -#: core/filters.py:347 core/filters.py:394 core/filters.py:578 -#: core/filters.py:599 +#: engine/core/filters.py:361 engine/core/filters.py:408 +#: engine/core/filters.py:592 engine/core/filters.py:613 msgid "User UUID" msgstr "معرّف المستخدم UUID" -#: core/filters.py:348 +#: engine/core/filters.py:362 msgid "Status" msgstr "الحالة" -#: core/filters.py:352 +#: engine/core/filters.py:366 msgid "Human Readable ID" msgstr "معرّف قابل للقراءة من قبل الإنسان" -#: core/filters.py:415 +#: engine/core/filters.py:429 msgid "Parent" msgstr "الوالدين" -#: core/filters.py:419 +#: engine/core/filters.py:433 msgid "Whole category(has at least 1 product or not)" msgstr "الفئة الكاملة (تحتوي على منتج واحد على الأقل أو لا)" -#: core/filters.py:423 +#: engine/core/filters.py:437 msgid "Level" msgstr "المستوى" -#: core/filters.py:573 +#: engine/core/filters.py:587 msgid "Product UUID" msgstr "UUID المنتج" -#: core/graphene/mutations.py:41 +#: engine/core/graphene/mutations.py:41 msgid "key to look for in or set into the cache" msgstr "" "مفتاح للبحث عنه في ذاكرة التخزين المؤقت أو تعيينه في ذاكرة التخزين المؤقت" -#: core/graphene/mutations.py:42 +#: engine/core/graphene/mutations.py:42 msgid "data to store in cache" msgstr "البيانات المراد تخزينها في ذاكرة التخزين المؤقت" -#: core/graphene/mutations.py:45 +#: engine/core/graphene/mutations.py:45 msgid "timeout in seconds to set the data for into the cache" msgstr "المهلة بالثواني لتعيين البيانات في ذاكرة التخزين المؤقت" -#: core/graphene/mutations.py:48 +#: engine/core/graphene/mutations.py:48 msgid "cached data" msgstr "البيانات المخزنة مؤقتاً" -#: core/graphene/mutations.py:63 +#: engine/core/graphene/mutations.py:63 msgid "camelized JSON data from the requested URL" msgstr "بيانات JSON مجمّلة من عنوان URL المطلوب" -#: core/graphene/mutations.py:68 core/views.py:232 +#: engine/core/graphene/mutations.py:68 engine/core/views.py:231 msgid "only URLs starting with http(s):// are allowed" msgstr "يُسمح فقط بعناوين URL التي تبدأ ب http(s)://" -#: core/graphene/mutations.py:84 +#: engine/core/graphene/mutations.py:84 msgid "add a product to the order" msgstr "إضافة منتج إلى الطلب" -#: core/graphene/mutations.py:105 core/graphene/mutations.py:132 -#: core/graphene/mutations.py:240 core/graphene/mutations.py:288 +#: engine/core/graphene/mutations.py:105 engine/core/graphene/mutations.py:132 +#: engine/core/graphene/mutations.py:240 engine/core/graphene/mutations.py:288 #, python-brace-format msgid "order {order_uuid} not found" msgstr "الطلب {order_uuid} غير موجود!" -#: core/graphene/mutations.py:111 core/graphene/mutations.py:160 +#: engine/core/graphene/mutations.py:111 engine/core/graphene/mutations.py:160 msgid "remove a product from the order" msgstr "إزالة منتج من الطلب" -#: core/graphene/mutations.py:138 +#: engine/core/graphene/mutations.py:138 msgid "remove all products from the order" msgstr "إزالة جميع المنتجات من الطلب" -#: core/graphene/mutations.py:183 +#: engine/core/graphene/mutations.py:183 msgid "buy an order" msgstr "شراء طلبية" -#: core/graphene/mutations.py:212 core/graphene/mutations.py:266 +#: engine/core/graphene/mutations.py:212 engine/core/graphene/mutations.py:266 msgid "please provide either order_uuid or order_hr_id - mutually exclusive" msgstr "يرجى تقديم إما Order_uuid أو order_uid_hr_hr_id - متنافيان!" -#: core/graphene/mutations.py:237 core/graphene/mutations.py:502 -#: core/graphene/mutations.py:544 core/viewsets.py:704 +#: engine/core/graphene/mutations.py:237 engine/core/graphene/mutations.py:502 +#: engine/core/graphene/mutations.py:544 engine/core/viewsets.py:704 msgid "wrong type came from order.buy() method: {type(instance)!s}" msgstr "جاء نوع خاطئ من طريقة order.buy(): {type(instance)!s}" -#: core/graphene/mutations.py:246 +#: engine/core/graphene/mutations.py:246 msgid "perform an action on a list of products in the order" msgstr "تنفيذ إجراء على قائمة من المنتجات بالترتيب" -#: core/graphene/mutations.py:251 +#: engine/core/graphene/mutations.py:251 msgid "remove/add" msgstr "إزالة/إضافة" -#: core/graphene/mutations.py:283 core/graphene/mutations.py:324 +#: engine/core/graphene/mutations.py:283 engine/core/graphene/mutations.py:324 msgid "action must be either add or remove" msgstr "يجب أن يكون الإجراء إما \"إضافة\" أو \"إزالة\"!" -#: core/graphene/mutations.py:294 +#: engine/core/graphene/mutations.py:294 msgid "perform an action on a list of products in the wishlist" msgstr "تنفيذ إجراء على قائمة المنتجات في قائمة الأمنيات" -#: core/graphene/mutations.py:312 +#: engine/core/graphene/mutations.py:312 msgid "please provide wishlist_uuid value" msgstr "يُرجى تقديم قيمة \"wishlist_uid\"." -#: core/graphene/mutations.py:329 core/graphene/mutations.py:405 -#: core/graphene/mutations.py:433 core/graphene/mutations.py:461 -#: core/graphene/mutations.py:505 +#: engine/core/graphene/mutations.py:329 engine/core/graphene/mutations.py:405 +#: engine/core/graphene/mutations.py:433 engine/core/graphene/mutations.py:461 +#: engine/core/graphene/mutations.py:505 #, python-brace-format msgid "wishlist {wishlist_uuid} not found" msgstr "قائمة الرغبات {wishlist_uuid} غير موجودة!" -#: core/graphene/mutations.py:383 +#: engine/core/graphene/mutations.py:383 msgid "add a product to the wishlist" msgstr "إضافة منتج إلى الطلب" -#: core/graphene/mutations.py:411 +#: engine/core/graphene/mutations.py:411 msgid "remove a product from the wishlist" msgstr "إزالة منتج من الطلب" -#: core/graphene/mutations.py:439 +#: engine/core/graphene/mutations.py:439 msgid "remove all products from the wishlist" msgstr "إزالة منتج من الطلب" -#: core/graphene/mutations.py:467 +#: engine/core/graphene/mutations.py:467 msgid "buy all products from the wishlist" msgstr "إزالة منتج من الطلب" -#: core/graphene/mutations.py:511 +#: engine/core/graphene/mutations.py:511 msgid "buy a product" msgstr "شراء طلبية" -#: core/graphene/mutations.py:517 +#: engine/core/graphene/mutations.py:517 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" -#: core/graphene/mutations.py:550 +#: engine/core/graphene/mutations.py:550 msgid "add or delete a feedback for orderproduct" msgstr "إضافة أو حذف تعليق على طلبالمنتج" -#: core/graphene/mutations.py:574 +#: engine/core/graphene/mutations.py:574 msgid "action must be either `add` or `remove`" msgstr "يجب أن يكون الإجراء إما \"إضافة\" أو \"إزالة\"!" -#: core/graphene/mutations.py:577 +#: engine/core/graphene/mutations.py:577 #, python-brace-format msgid "order product {order_product_uuid} not found" msgstr "طلب المنتج {order_product_uuid} غير موجود!" -#: core/graphene/mutations.py:644 +#: engine/core/graphene/mutations.py:644 msgid "original address string provided by the user" msgstr "سلسلة العنوان الأصلي المقدمة من المستخدم" -#: core/graphene/mutations.py:680 core/models.py:930 core/models.py:943 -#: core/models.py:1358 core/models.py:1387 core/models.py:1412 -#: core/viewsets.py:707 +#: engine/core/graphene/mutations.py:680 engine/core/models.py:941 +#: engine/core/models.py:954 engine/core/models.py:1369 +#: engine/core/models.py:1398 engine/core/models.py:1423 +#: engine/core/viewsets.py:707 #, python-brace-format msgid "{name} does not exist: {uuid}" msgstr "{name} غير موجود: {uuid}!" -#: core/graphene/mutations.py:694 +#: engine/core/graphene/mutations.py:694 msgid "limit must be between 1 and 10" msgstr "يجب أن يكون الحد بين 1 و10" -#: core/graphene/mutations.py:743 +#: engine/core/graphene/mutations.py:743 msgid "elasticsearch - works like a charm" msgstr "ElasticSearch - يعمل مثل السحر" -#: core/graphene/object_types.py:82 core/graphene/object_types.py:370 -#: core/graphene/object_types.py:417 core/models.py:754 core/models.py:1225 -#: core/models.py:1823 +#: engine/core/graphene/object_types.py:82 +#: engine/core/graphene/object_types.py:370 +#: engine/core/graphene/object_types.py:417 engine/core/models.py:765 +#: engine/core/models.py:1236 engine/core/models.py:1883 msgid "attributes" msgstr "السمات" -#: core/graphene/object_types.py:95 +#: engine/core/graphene/object_types.py:95 msgid "grouped attributes" msgstr "السمات المجمعة" -#: core/graphene/object_types.py:102 +#: engine/core/graphene/object_types.py:102 msgid "groups of attributes" msgstr "مجموعات السمات" -#: core/graphene/object_types.py:116 core/graphene/object_types.py:193 -#: core/graphene/object_types.py:223 core/models.py:426 +#: engine/core/graphene/object_types.py:116 +#: engine/core/graphene/object_types.py:193 +#: engine/core/graphene/object_types.py:223 engine/core/models.py:425 msgid "categories" msgstr "الفئات" -#: core/graphene/object_types.py:124 core/models.py:497 +#: engine/core/graphene/object_types.py:124 engine/core/models.py:496 msgid "brands" msgstr "العلامات التجارية" -#: core/graphene/object_types.py:195 +#: engine/core/graphene/object_types.py:195 msgid "category image url" msgstr "الفئات" -#: core/graphene/object_types.py:196 core/graphene/object_types.py:317 -#: core/models.py:284 +#: engine/core/graphene/object_types.py:196 +#: engine/core/graphene/object_types.py:317 engine/core/models.py:283 msgid "markup percentage" msgstr "النسبة المئوية للترميز" -#: core/graphene/object_types.py:199 +#: engine/core/graphene/object_types.py:199 msgid "which attributes and values can be used for filtering this category." msgstr "ما هي السمات والقيم التي يمكن استخدامها لتصفية هذه الفئة." -#: core/graphene/object_types.py:203 -msgid "" -"minimum and maximum prices for products in this category, if available." +#: engine/core/graphene/object_types.py:203 +msgid "minimum and maximum prices for products in this category, if available." msgstr "" "الحد الأدنى والحد الأقصى لأسعار المنتجات في هذه الفئة، إذا كانت متوفرة." -#: core/graphene/object_types.py:205 +#: engine/core/graphene/object_types.py:205 msgid "tags for this category" msgstr "العلامات الخاصة بهذه الفئة" -#: core/graphene/object_types.py:206 +#: engine/core/graphene/object_types.py:206 msgid "products in this category" msgstr "المنتجات في هذه الفئة" -#: core/graphene/object_types.py:324 core/models.py:189 +#: engine/core/graphene/object_types.py:324 engine/core/models.py:188 msgid "vendors" msgstr "البائعون" -#: core/graphene/object_types.py:328 +#: engine/core/graphene/object_types.py:328 msgid "Latitude (Y coordinate)" msgstr "خط العرض (الإحداثي Y)" -#: core/graphene/object_types.py:329 +#: engine/core/graphene/object_types.py:329 msgid "Longitude (X coordinate)" msgstr "خط الطول (الإحداثي X)" -#: core/graphene/object_types.py:358 +#: engine/core/graphene/object_types.py:358 msgid "comment" msgstr "كيفية" -#: core/graphene/object_types.py:359 core/graphene/object_types.py:483 +#: engine/core/graphene/object_types.py:359 +#: engine/core/graphene/object_types.py:483 msgid "rating value from 1 to 10, inclusive, or 0 if not set." msgstr "قيمة التصنيف من 1 إلى 10، شاملة، أو 0 إذا لم يتم تعيينها." -#: core/graphene/object_types.py:366 +#: engine/core/graphene/object_types.py:366 msgid "represents feedback from a user." msgstr "يمثل ملاحظات من المستخدم." -#: core/graphene/object_types.py:371 core/graphene/object_types.py:418 -#: core/models.py:1219 +#: engine/core/graphene/object_types.py:371 +#: engine/core/graphene/object_types.py:418 engine/core/models.py:1230 msgid "notifications" msgstr "الإشعارات" -#: core/graphene/object_types.py:372 +#: engine/core/graphene/object_types.py:372 msgid "download url for this order product if applicable" msgstr "تحميل الرابط الخاص بمنتج الطلب هذا إن أمكن" -#: core/graphene/object_types.py:373 core/models.py:1939 +#: engine/core/graphene/object_types.py:373 engine/core/models.py:1722 msgid "feedback" msgstr "الملاحظات" -#: core/graphene/object_types.py:407 +#: engine/core/graphene/object_types.py:407 msgid "a list of order products in this order" msgstr "قائمة بطلب المنتجات بهذا الترتيب" -#: core/graphene/object_types.py:409 core/models.py:1189 +#: engine/core/graphene/object_types.py:409 engine/core/models.py:1200 msgid "billing address" msgstr "عنوان إرسال الفواتير" -#: core/graphene/object_types.py:412 +#: engine/core/graphene/object_types.py:412 msgid "" "shipping address for this order, leave blank if same as billing address or " "if not applicable" @@ -1250,202 +1282,210 @@ msgstr "" "عنوان الشحن لهذا الطلب، اترك العنوان فارغًا إذا كان هو نفسه عنوان إرسال " "الفواتير أو إذا لم يكن منطبقًا" -#: core/graphene/object_types.py:414 +#: engine/core/graphene/object_types.py:414 msgid "total price of this order" msgstr "السعر الإجمالي لهذا الطلب" -#: core/graphene/object_types.py:415 +#: engine/core/graphene/object_types.py:415 msgid "total quantity of products in order" msgstr "إجمالي كمية المنتجات بالترتيب" -#: core/graphene/object_types.py:416 +#: engine/core/graphene/object_types.py:416 msgid "are all products in the order digital" msgstr "هل جميع المنتجات في الطلب رقمي" -#: core/graphene/object_types.py:419 +#: engine/core/graphene/object_types.py:419 msgid "transactions for this order" msgstr "المعاملات الخاصة بهذا الطلب" -#: core/graphene/object_types.py:438 core/models.py:1253 +#: engine/core/graphene/object_types.py:438 engine/core/models.py:1264 msgid "orders" msgstr "الطلبات" -#: core/graphene/object_types.py:459 +#: engine/core/graphene/object_types.py:459 msgid "image url" msgstr "رابط الصورة" -#: core/graphene/object_types.py:466 +#: engine/core/graphene/object_types.py:466 msgid "product's images" msgstr "صور المنتج" -#: core/graphene/object_types.py:473 core/models.py:425 core/models.py:579 +#: engine/core/graphene/object_types.py:473 engine/core/models.py:424 +#: engine/core/models.py:579 msgid "category" msgstr "الفئة" -#: core/graphene/object_types.py:475 core/models.py:1940 +#: engine/core/graphene/object_types.py:475 engine/core/models.py:1723 msgid "feedbacks" msgstr "الملاحظات" -#: core/graphene/object_types.py:476 core/models.py:496 core/models.py:588 +#: engine/core/graphene/object_types.py:476 engine/core/models.py:495 +#: engine/core/models.py:588 msgid "brand" msgstr "العلامة التجارية" -#: core/graphene/object_types.py:477 core/models.py:107 +#: engine/core/graphene/object_types.py:477 engine/core/models.py:106 msgid "attribute groups" msgstr "مجموعات السمات" -#: core/graphene/object_types.py:478 -#: core/templates/digital_order_created_email.html:111 -#: core/templates/digital_order_delivered_email.html:109 -#: core/templates/shipped_order_created_email.html:109 -#: core/templates/shipped_order_delivered_email.html:109 +#: engine/core/graphene/object_types.py:478 +#: engine/core/templates/digital_order_created_email.html:111 +#: engine/core/templates/digital_order_delivered_email.html:109 +#: engine/core/templates/shipped_order_created_email.html:109 +#: engine/core/templates/shipped_order_delivered_email.html:109 msgid "price" msgstr "السعر" -#: core/graphene/object_types.py:479 -#: core/templates/digital_order_created_email.html:110 -#: core/templates/digital_order_delivered_email.html:108 -#: core/templates/shipped_order_created_email.html:108 -#: core/templates/shipped_order_delivered_email.html:108 +#: engine/core/graphene/object_types.py:479 +#: engine/core/templates/digital_order_created_email.html:110 +#: engine/core/templates/digital_order_delivered_email.html:108 +#: engine/core/templates/shipped_order_created_email.html:108 +#: engine/core/templates/shipped_order_delivered_email.html:108 msgid "quantity" msgstr "الكمية" -#: core/graphene/object_types.py:480 +#: engine/core/graphene/object_types.py:480 msgid "number of feedbacks" msgstr "عدد الملاحظات" -#: core/graphene/object_types.py:481 +#: engine/core/graphene/object_types.py:481 msgid "only available for personal orders" msgstr "المنتجات متاحة للطلبات الشخصية فقط" -#: core/graphene/object_types.py:507 core/models.py:651 +#: engine/core/graphene/object_types.py:484 +msgid "discount price" +msgstr "سعر الخصم" + +#: engine/core/graphene/object_types.py:508 engine/core/models.py:651 msgid "products" msgstr "المنتجات" -#: core/graphene/object_types.py:607 +#: engine/core/graphene/object_types.py:611 msgid "promocodes" msgstr "الرموز الترويجية" -#: core/graphene/object_types.py:617 +#: engine/core/graphene/object_types.py:621 msgid "products on sale" msgstr "المنتجات المعروضة للبيع" -#: core/graphene/object_types.py:624 core/models.py:879 +#: engine/core/graphene/object_types.py:628 engine/core/models.py:890 msgid "promotions" msgstr "العروض الترويجية" -#: core/graphene/object_types.py:628 core/models.py:188 +#: engine/core/graphene/object_types.py:632 engine/core/models.py:187 msgid "vendor" msgstr "البائع" -#: core/graphene/object_types.py:629 core/models.py:650 -#: core/templates/digital_order_created_email.html:109 -#: core/templates/digital_order_delivered_email.html:107 -#: core/templates/shipped_order_created_email.html:107 -#: core/templates/shipped_order_delivered_email.html:107 +#: engine/core/graphene/object_types.py:633 engine/core/models.py:650 +#: 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 +#: engine/core/templates/shipped_order_delivered_email.html:107 msgid "product" msgstr "المنتج" -#: core/graphene/object_types.py:640 core/models.py:902 +#: engine/core/graphene/object_types.py:644 engine/core/models.py:913 msgid "wishlisted products" msgstr "المنتجات المفضلة" -#: core/graphene/object_types.py:646 core/models.py:919 +#: engine/core/graphene/object_types.py:650 engine/core/models.py:930 msgid "wishlists" msgstr "قوائم التمنيات" -#: core/graphene/object_types.py:650 +#: engine/core/graphene/object_types.py:654 msgid "tagged products" msgstr "المنتجات الموسومة" -#: core/graphene/object_types.py:657 core/models.py:225 core/models.py:594 +#: engine/core/graphene/object_types.py:661 engine/core/models.py:224 +#: engine/core/models.py:594 msgid "product tags" msgstr "علامات المنتج" -#: core/graphene/object_types.py:661 +#: engine/core/graphene/object_types.py:665 msgid "tagged categories" msgstr "الفئات الموسومة" -#: core/graphene/object_types.py:668 +#: engine/core/graphene/object_types.py:672 msgid "categories tags" msgstr "علامات الفئات" -#: core/graphene/object_types.py:672 +#: engine/core/graphene/object_types.py:676 msgid "project name" msgstr "اسم المشروع" -#: core/graphene/object_types.py:673 +#: engine/core/graphene/object_types.py:677 msgid "company email" msgstr "البريد الإلكتروني للشركة" -#: core/graphene/object_types.py:674 +#: engine/core/graphene/object_types.py:678 msgid "company name" msgstr "اسم الشركة" -#: core/graphene/object_types.py:675 +#: engine/core/graphene/object_types.py:679 msgid "company address" msgstr "عنوان الشركة" -#: core/graphene/object_types.py:676 +#: engine/core/graphene/object_types.py:680 msgid "company phone number" msgstr "رقم هاتف الشركة" -#: core/graphene/object_types.py:677 +#: engine/core/graphene/object_types.py:681 msgid "email from, sometimes it must be used instead of host user value" msgstr "" -"\"البريد الإلكتروني من\"، في بعض الأحيان يجب استخدامه بدلاً من قيمة المستخدم" -" المضيف" +"\"البريد الإلكتروني من\"، في بعض الأحيان يجب استخدامه بدلاً من قيمة المستخدم " +"المضيف" -#: core/graphene/object_types.py:678 +#: engine/core/graphene/object_types.py:682 msgid "email host user" msgstr "مستخدم البريد الإلكتروني المضيف" -#: core/graphene/object_types.py:679 +#: engine/core/graphene/object_types.py:683 msgid "maximum amount for payment" msgstr "الحد الأقصى لمبلغ السداد" -#: core/graphene/object_types.py:680 +#: engine/core/graphene/object_types.py:684 msgid "minimum amount for payment" msgstr "الحد الأدنى لمبلغ السداد" -#: core/graphene/object_types.py:681 +#: engine/core/graphene/object_types.py:685 msgid "analytics data" msgstr "بيانات التحليلات" -#: core/graphene/object_types.py:682 +#: engine/core/graphene/object_types.py:686 msgid "advertisement data" msgstr "بيانات الإعلانات" -#: core/graphene/object_types.py:685 +#: engine/core/graphene/object_types.py:689 msgid "company configuration" msgstr "التكوين" -#: core/graphene/object_types.py:689 +#: engine/core/graphene/object_types.py:693 msgid "language code" msgstr "رمز اللغة" -#: core/graphene/object_types.py:690 +#: engine/core/graphene/object_types.py:694 msgid "language name" msgstr "اسم اللغة" -#: core/graphene/object_types.py:691 +#: engine/core/graphene/object_types.py:695 msgid "language flag, if exists :)" msgstr "علم اللغة، إذا كان موجوداً :)" -#: core/graphene/object_types.py:694 +#: engine/core/graphene/object_types.py:698 msgid "supported languages" msgstr "الحصول على قائمة باللغات المدعومة" -#: core/graphene/object_types.py:725 core/graphene/object_types.py:726 -#: core/graphene/object_types.py:727 +#: engine/core/graphene/object_types.py:729 +#: engine/core/graphene/object_types.py:730 +#: engine/core/graphene/object_types.py:731 msgid "products search results" msgstr "نتائج البحث عن المنتجات" -#: core/graphene/object_types.py:728 +#: engine/core/graphene/object_types.py:732 msgid "posts search results" msgstr "نتائج البحث عن المنتجات" -#: core/models.py:76 +#: engine/core/models.py:75 msgid "" "Represents a group of attributes, which can be hierarchical. This class is " "used to manage and organize attribute groups. An attribute group can have a " @@ -1457,23 +1497,23 @@ msgstr "" "يشكل بنية هرمية. يمكن أن يكون هذا مفيدًا لتصنيف السمات وإدارتها بشكل أكثر " "فعالية في النظام المعقد." -#: core/models.py:92 +#: engine/core/models.py:91 msgid "parent of this group" msgstr "والد هذه المجموعة" -#: core/models.py:93 +#: engine/core/models.py:92 msgid "parent attribute group" msgstr "مجموعة السمات الرئيسية" -#: core/models.py:97 core/models.py:98 +#: engine/core/models.py:96 engine/core/models.py:97 msgid "attribute group's name" msgstr "اسم مجموعة السمات" -#: core/models.py:106 core/models.py:716 +#: engine/core/models.py:105 engine/core/models.py:727 msgid "attribute group" msgstr "مجموعة السمات" -#: core/models.py:112 +#: engine/core/models.py:111 msgid "" "Represents a vendor entity capable of storing information about external " "vendors and their interaction requirements. The Vendor class is used to " @@ -1487,52 +1527,52 @@ msgstr "" "تفاعلهم. يتم استخدام فئة البائع لتعريف وإدارة المعلومات المتعلقة ببائع " "خارجي. وهو يخزن اسم البائع، وتفاصيل المصادقة المطلوبة للاتصال، والنسبة " "المئوية للترميز المطبقة على المنتجات المسترجعة من البائع. يحتفظ هذا النموذج " -"أيضًا ببيانات وصفية وقيود إضافية، مما يجعله مناسبًا للاستخدام في الأنظمة " -"التي تتفاعل مع البائعين الخارجيين." +"أيضًا ببيانات وصفية وقيود إضافية، مما يجعله مناسبًا للاستخدام في الأنظمة التي " +"تتفاعل مع البائعين الخارجيين." -#: core/models.py:125 +#: engine/core/models.py:124 msgid "stores credentials and endpoints required for vendor communication" msgstr "" "تخزين بيانات الاعتماد ونقاط النهاية المطلوبة لاتصالات واجهة برمجة التطبيقات " "الخاصة بالمورّد" -#: core/models.py:126 +#: engine/core/models.py:125 msgid "authentication info" msgstr "معلومات المصادقة" -#: core/models.py:131 +#: engine/core/models.py:130 msgid "define the markup for products retrieved from this vendor" msgstr "تحديد الترميز للمنتجات المسترجعة من هذا البائع" -#: core/models.py:132 +#: engine/core/models.py:131 msgid "vendor markup percentage" msgstr "نسبة هامش الربح للبائع" -#: core/models.py:136 +#: engine/core/models.py:135 msgid "name of this vendor" msgstr "اسم هذا البائع" -#: core/models.py:137 +#: engine/core/models.py:136 msgid "vendor name" msgstr "اسم البائع" -#: core/models.py:148 +#: engine/core/models.py:147 msgid "response file" msgstr "ملف الاستجابة" -#: core/models.py:149 +#: engine/core/models.py:148 msgid "vendor's last processing response" msgstr "استجابة البائع الأخيرة للمعالجة" -#: core/models.py:155 +#: engine/core/models.py:154 msgid "vendor's integration file path" msgstr "مسار ملف تكامل البائع" -#: core/models.py:156 +#: engine/core/models.py:155 msgid "integration path" msgstr "مسار التكامل" -#: core/models.py:198 +#: engine/core/models.py:197 msgid "" "Represents a product tag used for classifying or identifying products. The " "ProductTag class is designed to uniquely identify and classify products " @@ -1541,48 +1581,48 @@ msgid "" "metadata customization for administrative purposes." msgstr "" "يمثل علامة منتج تُستخدم لتصنيف المنتجات أو تعريفها. صُممت فئة ProductTag " -"لتعريف المنتجات وتصنيفها بشكل فريد من خلال مزيج من معرّف علامة داخلي واسم " -"عرض سهل الاستخدام. وهي تدعم العمليات التي يتم تصديرها من خلال mixins وتوفر " -"تخصيص البيانات الوصفية لأغراض إدارية." +"لتعريف المنتجات وتصنيفها بشكل فريد من خلال مزيج من معرّف علامة داخلي واسم عرض " +"سهل الاستخدام. وهي تدعم العمليات التي يتم تصديرها من خلال mixins وتوفر تخصيص " +"البيانات الوصفية لأغراض إدارية." -#: core/models.py:210 core/models.py:241 +#: engine/core/models.py:209 engine/core/models.py:240 msgid "internal tag identifier for the product tag" msgstr "معرّف العلامة الداخلي لعلامة المنتج" -#: core/models.py:211 core/models.py:242 +#: engine/core/models.py:210 engine/core/models.py:241 msgid "tag name" msgstr "اسم العلامة" -#: core/models.py:215 core/models.py:246 +#: engine/core/models.py:214 engine/core/models.py:245 msgid "user-friendly name for the product tag" msgstr "اسم سهل الاستخدام لعلامة المنتج" -#: core/models.py:216 core/models.py:247 +#: engine/core/models.py:215 engine/core/models.py:246 msgid "tag display name" msgstr "اسم عرض العلامة" -#: core/models.py:224 +#: engine/core/models.py:223 msgid "product tag" msgstr "علامة المنتج" -#: core/models.py:230 +#: engine/core/models.py:229 msgid "" "Represents a category tag used for products. This class models a category " "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 "" -"يمثل علامة فئة تستخدم للمنتجات. تمثل هذه الفئة علامة فئة يمكن استخدامها لربط" -" المنتجات وتصنيفها. وهي تتضمن سمات لمعرف علامة داخلي واسم عرض سهل الاستخدام." +"يمثل علامة فئة تستخدم للمنتجات. تمثل هذه الفئة علامة فئة يمكن استخدامها لربط " +"المنتجات وتصنيفها. وهي تتضمن سمات لمعرف علامة داخلي واسم عرض سهل الاستخدام." -#: core/models.py:255 +#: engine/core/models.py:254 msgid "category tag" msgstr "علامة الفئة" -#: core/models.py:256 core/models.py:328 +#: engine/core/models.py:255 engine/core/models.py:327 msgid "category tags" msgstr "علامات الفئة" -#: core/models.py:261 +#: engine/core/models.py:260 msgid "" "Represents a category entity to organize and group related items in a " "hierarchical structure. Categories may have hierarchical relationships with " @@ -1598,111 +1638,110 @@ msgstr "" "علاقات هرمية مع فئات أخرى، مما يدعم العلاقات بين الأصل والطفل. تتضمن الفئة " "حقول للبيانات الوصفية والتمثيل المرئي، والتي تعمل كأساس للميزات المتعلقة " "بالفئات. تُستخدم هذه الفئة عادةً لتعريف وإدارة فئات المنتجات أو غيرها من " -"التجميعات المماثلة داخل التطبيق، مما يسمح للمستخدمين أو المسؤولين بتحديد اسم" -" الفئات ووصفها وتسلسلها الهرمي، بالإضافة إلى تعيين سمات مثل الصور أو " -"العلامات أو الأولوية." +"التجميعات المماثلة داخل التطبيق، مما يسمح للمستخدمين أو المسؤولين بتحديد اسم " +"الفئات ووصفها وتسلسلها الهرمي، بالإضافة إلى تعيين سمات مثل الصور أو العلامات " +"أو الأولوية." -#: core/models.py:275 +#: engine/core/models.py:274 msgid "upload an image representing this category" msgstr "تحميل صورة تمثل هذه الفئة" -#: core/models.py:278 +#: engine/core/models.py:277 msgid "category image" msgstr "صورة الفئة" -#: core/models.py:283 +#: engine/core/models.py:282 msgid "define a markup percentage for products in this category" msgstr "تحديد نسبة ترميز للمنتجات في هذه الفئة" -#: core/models.py:292 +#: engine/core/models.py:291 msgid "parent of this category to form a hierarchical structure" msgstr "أصل هذه الفئة لتكوين بنية هرمية" -#: core/models.py:293 +#: engine/core/models.py:292 msgid "parent category" msgstr "الفئة الرئيسية" -#: core/models.py:298 +#: engine/core/models.py:297 msgid "category name" msgstr "اسم الفئة" -#: core/models.py:299 +#: engine/core/models.py:298 msgid "provide a name for this category" msgstr "تقديم اسم لهذه الفئة" -#: core/models.py:306 +#: engine/core/models.py:305 msgid "add a detailed description for this category" msgstr "إضافة وصف تفصيلي لهذه الفئة" -#: core/models.py:307 +#: engine/core/models.py:306 msgid "category description" msgstr "وصف الفئة" -#: core/models.py:327 +#: engine/core/models.py:326 msgid "tags that help describe or group this category" msgstr "العلامات التي تساعد في وصف هذه الفئة أو تجميعها" -#: core/models.py:334 core/models.py:489 +#: engine/core/models.py:333 engine/core/models.py:488 msgid "priority" msgstr "الأولوية" -#: core/models.py:432 +#: engine/core/models.py:431 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 "" "يمثل كائن العلامة التجارية في النظام. تتعامل هذه الفئة مع المعلومات والسمات " "المتعلقة بالعلامة التجارية، بما في ذلك اسمها وشعاراتها ووصفها والفئات " "المرتبطة بها وسبيكة فريدة وترتيب الأولوية. يسمح بتنظيم وتمثيل البيانات " "المتعلقة بالعلامة التجارية داخل التطبيق." -#: core/models.py:442 +#: engine/core/models.py:441 msgid "name of this brand" msgstr "اسم هذه العلامة التجارية" -#: core/models.py:443 +#: engine/core/models.py:442 msgid "brand name" msgstr "اسم العلامة التجارية" -#: core/models.py:450 +#: engine/core/models.py:449 msgid "upload a logo representing this brand" msgstr "تحميل شعار يمثل هذه العلامة التجارية" -#: core/models.py:452 +#: engine/core/models.py:451 msgid "brand small image" msgstr "صورة العلامة التجارية الصغيرة" -#: core/models.py:458 +#: engine/core/models.py:457 msgid "upload a big logo representing this brand" msgstr "رفع شعار كبير يمثل هذه العلامة التجارية" -#: core/models.py:460 +#: engine/core/models.py:459 msgid "brand big image" msgstr "صورة كبيرة للعلامة التجارية" -#: core/models.py:465 +#: engine/core/models.py:464 msgid "add a detailed description of the brand" msgstr "إضافة وصف تفصيلي للعلامة التجارية" -#: core/models.py:466 +#: engine/core/models.py:465 msgid "brand description" msgstr "وصف العلامة التجارية" -#: core/models.py:471 +#: engine/core/models.py:470 msgid "optional categories that this brand is associated with" msgstr "الفئات الاختيارية التي ترتبط بها هذه العلامة التجارية" -#: core/models.py:472 +#: engine/core/models.py:471 msgid "associated categories" msgstr "الفئات" -#: core/models.py:502 +#: engine/core/models.py:501 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 " @@ -1714,68 +1753,72 @@ msgstr "" "والأصول الرقمية. وهي جزء من نظام إدارة المخزون للسماح بتتبع وتقييم المنتجات " "المتاحة من مختلف البائعين." -#: core/models.py:514 +#: engine/core/models.py:513 msgid "the vendor supplying this product stock" msgstr "البائع الذي يورد هذا المنتج المخزون" -#: core/models.py:515 +#: engine/core/models.py:514 msgid "associated vendor" msgstr "البائع المرتبط" -#: core/models.py:519 +#: engine/core/models.py:518 msgid "final price to the customer after markups" msgstr "السعر النهائي للعميل بعد هوامش الربح" -#: core/models.py:520 +#: engine/core/models.py:519 msgid "selling price" msgstr "سعر البيع" -#: core/models.py:525 +#: engine/core/models.py:524 msgid "the product associated with this stock entry" msgstr "المنتج المرتبط بإدخال المخزون هذا" -#: core/models.py:526 core/models.py:779 core/models.py:825 -#: core/models.py:1718 +#: engine/core/models.py:525 engine/core/models.py:790 +#: engine/core/models.py:836 engine/core/models.py:1778 msgid "associated product" msgstr "المنتج المرتبط" -#: core/models.py:533 +#: engine/core/models.py:532 msgid "the price paid to the vendor for this product" msgstr "السعر المدفوع للبائع مقابل هذا المنتج" -#: core/models.py:534 +#: engine/core/models.py:533 msgid "vendor purchase price" msgstr "سعر الشراء من البائع" -#: core/models.py:538 +#: engine/core/models.py:537 msgid "available quantity of the product in stock" msgstr "الكمية المتوفرة من المنتج في المخزون" -#: core/models.py:539 +#: engine/core/models.py:538 msgid "quantity in stock" msgstr "الكمية في المخزون" -#: core/models.py:543 +#: engine/core/models.py:542 msgid "vendor-assigned SKU for identifying the product" msgstr "SKU المعين من قبل البائع لتحديد المنتج" -#: core/models.py:544 +#: engine/core/models.py:543 msgid "vendor sku" msgstr "وحدة تخزين البائع" -#: core/models.py:550 +#: engine/core/models.py:549 msgid "digital file associated with this stock if applicable" msgstr "الملف الرقمي المرتبط بهذا المخزون إن أمكن" -#: core/models.py:551 +#: engine/core/models.py:550 msgid "digital file" msgstr "ملف رقمي" -#: core/models.py:560 +#: engine/core/models.py:553 +msgid "system attributes" +msgstr "سمات النظام" + +#: engine/core/models.py:560 msgid "stock entries" msgstr "إدخالات المخزون" -#: core/models.py:565 +#: engine/core/models.py:565 msgid "" "Represents a product with attributes such as category, brand, tags, digital " "status, name, description, part number, and slug. Provides related utility " @@ -1788,68 +1831,68 @@ msgid "" msgstr "" "يمثل منتجًا بخصائص مثل الفئة والعلامة التجارية والعلامات والحالة الرقمية " "والاسم والوصف ورقم الجزء والعلامة التجارية والحالة الرقمية والاسم والوصف " -"ورقم الجزء والسبيكة. يوفر خصائص الأداة المساعدة ذات الصلة لاسترداد التقييمات" -" وعدد الملاحظات والسعر والكمية وإجمالي الطلبات. مصمم للاستخدام في نظام " -"يتعامل مع التجارة الإلكترونية أو إدارة المخزون. تتفاعل هذه الفئة مع النماذج " -"ذات الصلة (مثل الفئة والعلامة التجارية وعلامة المنتج) وتدير التخزين المؤقت " +"ورقم الجزء والسبيكة. يوفر خصائص الأداة المساعدة ذات الصلة لاسترداد التقييمات " +"وعدد الملاحظات والسعر والكمية وإجمالي الطلبات. مصمم للاستخدام في نظام يتعامل " +"مع التجارة الإلكترونية أو إدارة المخزون. تتفاعل هذه الفئة مع النماذج ذات " +"الصلة (مثل الفئة والعلامة التجارية وعلامة المنتج) وتدير التخزين المؤقت " "للخصائص التي يتم الوصول إليها بشكل متكرر لتحسين الأداء. يتم استخدامه لتعريف " "ومعالجة بيانات المنتج والمعلومات المرتبطة به داخل التطبيق." -#: core/models.py:578 +#: engine/core/models.py:578 msgid "category this product belongs to" msgstr "الفئة التي ينتمي إليها هذا المنتج" -#: core/models.py:587 +#: engine/core/models.py:587 msgid "optionally associate this product with a brand" msgstr "ربط هذا المنتج اختياريًا بعلامة تجارية" -#: core/models.py:593 +#: engine/core/models.py:593 msgid "tags that help describe or group this product" msgstr "العلامات التي تساعد في وصف أو تجميع هذا المنتج" -#: core/models.py:598 +#: engine/core/models.py:598 msgid "indicates whether this product is digitally delivered" msgstr "يشير إلى ما إذا كان هذا المنتج يتم تسليمه رقميًا أم لا" -#: core/models.py:599 +#: engine/core/models.py:599 msgid "is product digital" msgstr "هل المنتج رقمي" -#: core/models.py:605 +#: engine/core/models.py:605 msgid "provide a clear identifying name for the product" msgstr "توفير اسم تعريفي واضح للمنتج" -#: core/models.py:606 +#: engine/core/models.py:606 msgid "product name" msgstr "اسم المنتج" -#: core/models.py:612 core/models.py:867 +#: engine/core/models.py:612 engine/core/models.py:878 msgid "add a detailed description of the product" msgstr "إضافة وصف تفصيلي للمنتج" -#: core/models.py:613 +#: engine/core/models.py:613 msgid "product description" msgstr "وصف المنتج" -#: core/models.py:620 +#: engine/core/models.py:620 msgid "part number for this product" msgstr "رقم الجزء لهذا المنتج" -#: core/models.py:621 +#: engine/core/models.py:621 msgid "part number" msgstr "رقم الجزء" -#: core/models.py:640 +#: engine/core/models.py:640 msgid "stock keeping unit for this product" msgstr "وحدة حفظ المخزون لهذا المنتج" -#: core/models.py:702 +#: engine/core/models.py:713 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 "" "يمثل سمة في النظام. تُستخدم هذه الفئة لتعريف السمات وإدارتها، وهي عبارة عن " @@ -1858,89 +1901,89 @@ msgstr "" "من القيم، بما في ذلك السلسلة، والعدد الصحيح، والعائم، والمنطقي، والصفيف، " "والكائن. وهذا يسمح بهيكلة ديناميكية ومرنة للبيانات." -#: core/models.py:715 +#: engine/core/models.py:726 msgid "group of this attribute" msgstr "مجموعة هذه السمة" -#: core/models.py:721 +#: engine/core/models.py:732 msgid "string" msgstr "الخيط" -#: core/models.py:722 +#: engine/core/models.py:733 msgid "integer" msgstr "عدد صحيح" -#: core/models.py:723 +#: engine/core/models.py:734 msgid "float" msgstr "تعويم" -#: core/models.py:724 +#: engine/core/models.py:735 msgid "boolean" msgstr "منطقية" -#: core/models.py:725 +#: engine/core/models.py:736 msgid "array" msgstr "المصفوفة" -#: core/models.py:726 +#: engine/core/models.py:737 msgid "object" msgstr "الكائن" -#: core/models.py:728 +#: engine/core/models.py:739 msgid "type of the attribute's value" msgstr "نوع قيمة السمة" -#: core/models.py:729 +#: engine/core/models.py:740 msgid "value type" msgstr "نوع القيمة" -#: core/models.py:734 +#: engine/core/models.py:745 msgid "name of this attribute" msgstr "اسم هذه السمة" -#: core/models.py:735 +#: engine/core/models.py:746 msgid "attribute's name" msgstr "اسم السمة" -#: core/models.py:740 +#: engine/core/models.py:751 msgid "is filterable" msgstr "قابل للتصفية" -#: core/models.py:741 +#: engine/core/models.py:752 msgid "designates whether this attribute can be used for filtering or not" msgstr "يحدد ما إذا كان يمكن استخدام هذه السمة للتصفية أم لا" -#: core/models.py:753 core/models.py:771 -#: core/templates/digital_order_delivered_email.html:134 +#: engine/core/models.py:764 engine/core/models.py:782 +#: engine/core/templates/digital_order_delivered_email.html:134 msgid "attribute" msgstr "السمة" -#: core/models.py:759 +#: engine/core/models.py:770 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 "" "يمثل قيمة محددة لسمة مرتبطة بمنتج ما. يربط \"السمة\" بـ \"قيمة\" فريدة، مما " "يسمح بتنظيم أفضل وتمثيل ديناميكي لخصائص المنتج." -#: core/models.py:770 +#: engine/core/models.py:781 msgid "attribute of this value" msgstr "سمة هذه القيمة" -#: core/models.py:778 +#: engine/core/models.py:789 msgid "the specific product associated with this attribute's value" msgstr "المنتج المحدد المرتبط بقيمة هذه السمة" -#: core/models.py:784 +#: engine/core/models.py:795 msgid "the specific value for this attribute" msgstr "القيمة المحددة لهذه السمة" -#: core/models.py:797 +#: engine/core/models.py:808 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 "" @@ -1948,210 +1991,209 @@ msgstr "" "بالمنتجات، بما في ذلك وظيفة تحميل ملفات الصور، وربطها بمنتجات معينة، وتحديد " "ترتيب عرضها. وتتضمن أيضًا ميزة إمكانية الوصول مع نص بديل للصور." -#: core/models.py:808 +#: engine/core/models.py:819 msgid "provide alternative text for the image for accessibility" msgstr "توفير نص بديل للصورة لإمكانية الوصول" -#: core/models.py:809 +#: engine/core/models.py:820 msgid "image alt text" msgstr "النص البديل للصورة" -#: core/models.py:812 +#: engine/core/models.py:823 msgid "upload the image file for this product" msgstr "تحميل ملف الصورة لهذا المنتج" -#: core/models.py:813 core/models.py:837 +#: engine/core/models.py:824 engine/core/models.py:848 msgid "product image" msgstr "صورة المنتج" -#: core/models.py:818 +#: engine/core/models.py:829 msgid "determines the order in which images are displayed" msgstr "يحدد الترتيب الذي يتم عرض الصور به" -#: core/models.py:819 +#: engine/core/models.py:830 msgid "display priority" msgstr "أولوية العرض" -#: core/models.py:824 +#: engine/core/models.py:835 msgid "the product that this image represents" msgstr "المنتج الذي تمثله هذه الصورة" -#: core/models.py:838 +#: engine/core/models.py:849 msgid "product images" msgstr "صور المنتج" -#: core/models.py:843 +#: engine/core/models.py:854 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 "" -"يمثل حملة ترويجية للمنتجات ذات الخصم. تُستخدم هذه الفئة لتعريف وإدارة " -"الحملات الترويجية التي تقدم خصمًا على أساس النسبة المئوية للمنتجات. تتضمن " -"الفئة سمات لتعيين معدل الخصم وتوفير تفاصيل حول العرض الترويجي وربطه " -"بالمنتجات القابلة للتطبيق. تتكامل مع كتالوج المنتجات لتحديد العناصر المتأثرة" -" في الحملة." +"يمثل حملة ترويجية للمنتجات ذات الخصم. تُستخدم هذه الفئة لتعريف وإدارة الحملات " +"الترويجية التي تقدم خصمًا على أساس النسبة المئوية للمنتجات. تتضمن الفئة سمات " +"لتعيين معدل الخصم وتوفير تفاصيل حول العرض الترويجي وربطه بالمنتجات القابلة " +"للتطبيق. تتكامل مع كتالوج المنتجات لتحديد العناصر المتأثرة في الحملة." -#: core/models.py:855 +#: engine/core/models.py:866 msgid "percentage discount for the selected products" msgstr "النسبة المئوية للخصم على المنتجات المختارة" -#: core/models.py:856 +#: engine/core/models.py:867 msgid "discount percentage" msgstr "نسبة الخصم" -#: core/models.py:861 +#: engine/core/models.py:872 msgid "provide a unique name for this promotion" msgstr "تقديم اسم فريد لهذا العرض الترويجي" -#: core/models.py:862 +#: engine/core/models.py:873 msgid "promotion name" msgstr "اسم الترقية" -#: core/models.py:868 +#: engine/core/models.py:879 msgid "promotion description" msgstr "وصف الترقية" -#: core/models.py:873 +#: engine/core/models.py:884 msgid "select which products are included in this promotion" msgstr "حدد المنتجات المشمولة في هذا العرض الترويجي" -#: core/models.py:874 +#: engine/core/models.py:885 msgid "included products" msgstr "المنتجات المشمولة" -#: core/models.py:878 +#: engine/core/models.py:889 msgid "promotion" msgstr "الترقية" -#: core/models.py:889 +#: engine/core/models.py:900 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 "" -"يمثل قائمة أمنيات المستخدم لتخزين وإدارة المنتجات المطلوبة. توفر الفئة وظائف" -" لإدارة مجموعة من المنتجات، وتدعم عمليات مثل إضافة المنتجات وإزالتها، " +"يمثل قائمة أمنيات المستخدم لتخزين وإدارة المنتجات المطلوبة. توفر الفئة وظائف " +"لإدارة مجموعة من المنتجات، وتدعم عمليات مثل إضافة المنتجات وإزالتها، " "بالإضافة إلى دعم عمليات إضافة وإزالة منتجات متعددة في وقت واحد." -#: core/models.py:901 +#: engine/core/models.py:912 msgid "products that the user has marked as wanted" msgstr "المنتجات التي حددها المستخدم على أنها مطلوبة" -#: core/models.py:909 +#: engine/core/models.py:920 msgid "user who owns this wishlist" msgstr "المستخدم الذي يمتلك قائمة الرغبات هذه" -#: core/models.py:910 +#: engine/core/models.py:921 msgid "wishlist owner" msgstr "مالك قائمة الرغبات" -#: core/models.py:918 +#: engine/core/models.py:929 msgid "wishlist" msgstr "قائمة الرغبات" -#: core/models.py:960 +#: engine/core/models.py:971 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 "" -"يمثل سجل وثائقي مرتبط بمنتج ما. تُستخدم هذه الفئة لتخزين معلومات حول الأفلام" -" الوثائقية المرتبطة بمنتجات محددة، بما في ذلك تحميلات الملفات وبياناتها " +"يمثل سجل وثائقي مرتبط بمنتج ما. تُستخدم هذه الفئة لتخزين معلومات حول الأفلام " +"الوثائقية المرتبطة بمنتجات محددة، بما في ذلك تحميلات الملفات وبياناتها " "الوصفية. يحتوي على أساليب وخصائص للتعامل مع نوع الملف ومسار التخزين للملفات " "الوثائقية. وهو يوسع الوظائف من مزيج معين ويوفر ميزات مخصصة إضافية." -#: core/models.py:973 +#: engine/core/models.py:984 msgid "documentary" msgstr "فيلم وثائقي" -#: core/models.py:974 +#: engine/core/models.py:985 msgid "documentaries" msgstr "الأفلام الوثائقية" -#: core/models.py:984 +#: engine/core/models.py:995 msgid "unresolved" msgstr "لم يتم حلها" -#: core/models.py:989 +#: engine/core/models.py:1000 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 "" "يمثل كيان عنوان يتضمن تفاصيل الموقع والارتباطات مع المستخدم. يوفر وظائف " "لتخزين البيانات الجغرافية وبيانات العنوان، بالإضافة إلى التكامل مع خدمات " -"الترميز الجغرافي. صُممت هذه الفئة لتخزين معلومات العنوان التفصيلية بما في " -"ذلك مكونات مثل الشارع والمدينة والمنطقة والبلد والموقع الجغرافي (خطوط الطول " +"الترميز الجغرافي. صُممت هذه الفئة لتخزين معلومات العنوان التفصيلية بما في ذلك " +"مكونات مثل الشارع والمدينة والمنطقة والبلد والموقع الجغرافي (خطوط الطول " "والعرض). وهو يدعم التكامل مع واجهات برمجة التطبيقات للترميز الجغرافي، مما " "يتيح تخزين استجابات واجهة برمجة التطبيقات الخام لمزيد من المعالجة أو الفحص. " "تسمح الفئة أيضًا بربط عنوان مع مستخدم، مما يسهل التعامل مع البيانات الشخصية." -#: core/models.py:1004 +#: engine/core/models.py:1015 msgid "address line for the customer" msgstr "سطر العنوان للعميل" -#: core/models.py:1005 +#: engine/core/models.py:1016 msgid "address line" msgstr "سطر العنوان" -#: core/models.py:1007 +#: engine/core/models.py:1018 msgid "street" msgstr "الشارع" -#: core/models.py:1008 +#: engine/core/models.py:1019 msgid "district" msgstr "المنطقة" -#: core/models.py:1009 +#: engine/core/models.py:1020 msgid "city" msgstr "المدينة" -#: core/models.py:1010 +#: engine/core/models.py:1021 msgid "region" msgstr "المنطقة" -#: core/models.py:1011 +#: engine/core/models.py:1022 msgid "postal code" msgstr "الرمز البريدي" -#: core/models.py:1012 +#: engine/core/models.py:1023 msgid "country" msgstr "البلد" -#: core/models.py:1019 +#: engine/core/models.py:1030 msgid "geolocation point: (longitude, latitude)" msgstr "نقطة تحديد الموقع الجغرافي(خط الطول، خط العرض)" -#: core/models.py:1022 +#: engine/core/models.py:1033 msgid "full JSON response from geocoder for this address" msgstr "استجابة JSON كاملة من أداة التشفير الجغرافي لهذا العنوان" -#: core/models.py:1027 +#: engine/core/models.py:1038 msgid "stored JSON response from the geocoding service" msgstr "استجابة JSON مخزّنة من خدمة الترميز الجغرافي" -#: core/models.py:1035 +#: engine/core/models.py:1046 msgid "address" msgstr "العنوان" -#: core/models.py:1036 +#: engine/core/models.py:1047 msgid "addresses" msgstr "العناوين" -#: core/models.py:1048 +#: engine/core/models.py:1059 msgid "" "Represents a promotional code that can be used for discounts, managing its " "validity, type of discount, and application. The PromoCode class stores " @@ -2160,100 +2202,99 @@ 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 بتخزين تفاصيل حول الرمز الترويجي، بما في " +"ذلك معرفه الفريد، وخصائص الخصم (المبلغ أو النسبة المئوية)، وفترة الصلاحية، " "والمستخدم المرتبط به (إن وجد)، وحالة استخدامه. ويتضمن وظيفة للتحقق من صحة " "الرمز الترويجي وتطبيقه على الطلب مع ضمان استيفاء القيود." -#: core/models.py:1062 +#: engine/core/models.py:1073 msgid "unique code used by a user to redeem a discount" msgstr "الرمز الفريد الذي يستخدمه المستخدم لاسترداد قيمة الخصم" -#: core/models.py:1063 +#: engine/core/models.py:1074 msgid "promo code identifier" msgstr "معرّف الرمز الترويجي" -#: core/models.py:1070 +#: engine/core/models.py:1081 msgid "fixed discount amount applied if percent is not used" msgstr "مبلغ الخصم الثابت المطبق في حالة عدم استخدام النسبة المئوية" -#: core/models.py:1071 +#: engine/core/models.py:1082 msgid "fixed discount amount" msgstr "مبلغ الخصم الثابت" -#: core/models.py:1077 +#: engine/core/models.py:1088 msgid "percentage discount applied if fixed amount is not used" msgstr "النسبة المئوية للخصم المطبق في حالة عدم استخدام مبلغ ثابت" -#: core/models.py:1078 +#: engine/core/models.py:1089 msgid "percentage discount" msgstr "النسبة المئوية للخصم" -#: core/models.py:1083 +#: engine/core/models.py:1094 msgid "timestamp when the promocode expires" msgstr "الطابع الزمني عند انتهاء صلاحية الرمز الترويجي" -#: core/models.py:1084 +#: engine/core/models.py:1095 msgid "end validity time" msgstr "وقت انتهاء الصلاحية" -#: core/models.py:1089 +#: engine/core/models.py:1100 msgid "timestamp from which this promocode is valid" msgstr "الطابع الزمني الذي يكون هذا الرمز الترويجي صالحاً منه" -#: core/models.py:1090 +#: engine/core/models.py:1101 msgid "start validity time" msgstr "وقت بدء الصلاحية" -#: core/models.py:1095 +#: engine/core/models.py:1106 msgid "timestamp when the promocode was used, blank if not used yet" -msgstr "" -"الطابع الزمني عند استخدام الرمز الترويجي، فارغ إذا لم يتم استخدامه بعد" +msgstr "الطابع الزمني عند استخدام الرمز الترويجي، فارغ إذا لم يتم استخدامه بعد" -#: core/models.py:1096 +#: engine/core/models.py:1107 msgid "usage timestamp" msgstr "الطابع الزمني للاستخدام" -#: core/models.py:1101 +#: engine/core/models.py:1112 msgid "user assigned to this promocode if applicable" msgstr "المستخدم المعين لهذا الرمز الترويجي إن أمكن" -#: core/models.py:1102 +#: engine/core/models.py:1113 msgid "assigned user" msgstr "المستخدم المعين" -#: core/models.py:1109 +#: engine/core/models.py:1120 msgid "promo code" msgstr "الرمز الترويجي" -#: core/models.py:1110 +#: engine/core/models.py:1121 msgid "promo codes" msgstr "الرموز الترويجية" -#: core/models.py:1125 +#: engine/core/models.py:1136 msgid "" "only one type of discount should be defined (amount or percent), but not " "both or neither." msgstr "" -"يجب تحديد نوع واحد فقط من الخصم (المبلغ أو النسبة المئوية)، وليس كلا النوعين" -" أو لا هذا ولا ذاك." +"يجب تحديد نوع واحد فقط من الخصم (المبلغ أو النسبة المئوية)، وليس كلا النوعين " +"أو لا هذا ولا ذاك." -#: core/models.py:1146 +#: engine/core/models.py:1157 msgid "promocode already used" msgstr "تم استخدام الرمز الترويجي بالفعل" -#: core/models.py:1162 +#: engine/core/models.py:1173 #, python-brace-format msgid "invalid discount type for promocode {self.uuid}" msgstr "نوع الخصم غير صالح للرمز الترويجي {self.uuid}" -#: core/models.py:1171 +#: engine/core/models.py:1182 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 "" @@ -2263,149 +2304,187 @@ msgstr "" "مرتبطة، ويمكن تطبيق العروض الترويجية، وتعيين العناوين، وتحديث تفاصيل الشحن " "أو الفوترة. وبالمثل، تدعم الوظيفة إدارة المنتجات في دورة حياة الطلب." -#: core/models.py:1188 +#: engine/core/models.py:1199 msgid "the billing address used for this order" msgstr "عنوان إرسال الفواتير المستخدم لهذا الطلب" -#: core/models.py:1196 +#: engine/core/models.py:1207 msgid "optional promo code applied to this order" msgstr "الرمز الترويجي الاختياري المطبق على هذا الطلب" -#: core/models.py:1197 +#: engine/core/models.py:1208 msgid "applied promo code" msgstr "الرمز الترويجي المطبق" -#: core/models.py:1205 +#: engine/core/models.py:1216 msgid "the shipping address used for this order" msgstr "عنوان الشحن المستخدم لهذا الطلب" -#: core/models.py:1206 +#: engine/core/models.py:1217 msgid "shipping address" msgstr "عنوان الشحن" -#: core/models.py:1212 +#: engine/core/models.py:1223 msgid "current status of the order in its lifecycle" msgstr "الحالة الحالية للطلب في دورة حياته" -#: core/models.py:1213 +#: engine/core/models.py:1224 msgid "order status" msgstr "حالة الطلب" -#: core/models.py:1218 core/models.py:1695 +#: engine/core/models.py:1229 engine/core/models.py:1755 msgid "json structure of notifications to display to users" msgstr "" "بنية JSON للإشعارات التي سيتم عرضها للمستخدمين، في واجهة مستخدم المشرف، يتم " "استخدام عرض الجدول" -#: core/models.py:1224 +#: engine/core/models.py:1235 msgid "json representation of order attributes for this order" msgstr "تمثيل JSON لسمات الطلب لهذا الطلب" -#: core/models.py:1230 +#: engine/core/models.py:1241 msgid "the user who placed the order" msgstr "المستخدم الذي قدم الطلب" -#: core/models.py:1231 +#: engine/core/models.py:1242 msgid "user" msgstr "المستخدم" -#: core/models.py:1237 +#: engine/core/models.py:1248 msgid "the timestamp when the order was finalized" msgstr "الطابع الزمني عند الانتهاء من الطلب" -#: core/models.py:1238 +#: engine/core/models.py:1249 msgid "buy time" msgstr "وقت الشراء" -#: core/models.py:1245 +#: engine/core/models.py:1256 msgid "a human-readable identifier for the order" msgstr "معرّف يمكن قراءته بواسطة البشر للطلب" -#: core/models.py:1246 +#: engine/core/models.py:1257 msgid "human readable id" msgstr "معرّف يمكن قراءته من قبل البشر" -#: core/models.py:1252 +#: engine/core/models.py:1263 msgid "order" msgstr "الطلب" -#: core/models.py:1294 +#: engine/core/models.py:1305 msgid "a user must have only one pending order at a time" msgstr "يجب أن يكون لدى المستخدم طلب واحد فقط معلق في كل مرة!" -#: core/models.py:1326 +#: engine/core/models.py:1337 msgid "you cannot add products to an order that is not a pending one" msgstr "لا يمكنك إضافة منتجات إلى طلب غير معلق إلى طلب غير معلق" -#: core/models.py:1331 +#: engine/core/models.py:1342 msgid "you cannot add inactive products to order" msgstr "لا يمكنك إضافة منتجات غير نشطة للطلب" -#: core/models.py:1348 +#: engine/core/models.py:1359 msgid "you cannot add more products than available in stock" msgstr "لا يمكنك إضافة منتجات أكثر من المتوفرة في المخزون" -#: core/models.py:1370 core/models.py:1395 core/models.py:1403 +#: engine/core/models.py:1381 engine/core/models.py:1406 +#: engine/core/models.py:1414 msgid "you cannot remove products from an order that is not a pending one" msgstr "لا يمكنك إزالة المنتجات من طلب غير معلق من طلب غير معلق" -#: core/models.py:1391 +#: engine/core/models.py:1402 #, python-brace-format msgid "{name} does not exist with query <{query}>" msgstr "{name} غير موجود مع الاستعلام <{query}>!" -#: core/models.py:1423 +#: engine/core/models.py:1434 msgid "promocode does not exist" msgstr "الرمز الترويجي غير موجود" -#: core/models.py:1429 +#: engine/core/models.py:1440 msgid "you can only buy physical products with shipping address specified" msgstr "يمكنك فقط شراء المنتجات المادية مع تحديد عنوان الشحن فقط!" -#: core/models.py:1448 +#: engine/core/models.py:1459 msgid "address does not exist" msgstr "العنوان غير موجود" -#: core/models.py:1469 core/models.py:1538 +#: engine/core/models.py:1480 engine/core/models.py:1549 msgid "you can not buy at this moment, please try again in a few minutes" msgstr "لا يمكنك الشراء في هذه اللحظة، يرجى المحاولة مرة أخرى بعد بضع دقائق." -#: core/models.py:1472 core/models.py:1534 +#: engine/core/models.py:1483 engine/core/models.py:1545 msgid "invalid force value" msgstr "قيمة القوة غير صالحة" -#: core/models.py:1478 core/models.py:1541 +#: engine/core/models.py:1489 engine/core/models.py:1552 msgid "you cannot purchase an empty order!" msgstr "لا يمكنك شراء طلبية فارغة!" -#: core/models.py:1497 +#: engine/core/models.py:1508 msgid "you cannot buy an order without a user" msgstr "لا يمكنك شراء طلب بدون مستخدم!" -#: core/models.py:1511 +#: engine/core/models.py:1522 msgid "a user without a balance cannot buy with balance" msgstr "المستخدم بدون رصيد لا يمكنه الشراء بالرصيد!" -#: core/models.py:1516 +#: engine/core/models.py:1527 msgid "insufficient funds to complete the order" msgstr "عدم كفاية الأموال لإكمال الطلب" -#: core/models.py:1550 +#: engine/core/models.py:1561 msgid "" "you cannot buy without registration, please provide the following " "information: customer name, customer email, customer phone number" msgstr "" -"لا يمكنك الشراء بدون تسجيل، يرجى تقديم المعلومات التالية: اسم العميل، البريد" -" الإلكتروني للعميل، رقم هاتف العميل" +"لا يمكنك الشراء بدون تسجيل، يرجى تقديم المعلومات التالية: اسم العميل، البريد " +"الإلكتروني للعميل، رقم هاتف العميل" -#: core/models.py:1559 +#: engine/core/models.py:1570 #, python-brace-format msgid "" "invalid payment method: {payment_method} from {available_payment_methods}" msgstr "" "طريقة الدفع غير صالحة: {payment_method} من {available_payment_methods}!" -#: core/models.py:1668 +#: engine/core/models.py:1685 +msgid "" +"Manages user feedback for products. This class is designed to capture and " +"store user feedback for specific products that they have purchased. It " +"contains attributes to store user comments, a reference to the related " +"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:1697 +msgid "user-provided comments about their experience with the product" +msgstr "التعليقات المقدمة من المستخدمين حول تجربتهم مع المنتج" + +#: engine/core/models.py:1698 +msgid "feedback comments" +msgstr "تعليقات على الملاحظات" + +#: engine/core/models.py:1705 +msgid "references the specific product in an order that this feedback is about" +msgstr "الإشارة إلى المنتج المحدد في الطلب الذي تدور حوله هذه الملاحظات" + +#: engine/core/models.py:1706 +msgid "related order product" +msgstr "منتجات الطلبات ذات الصلة" + +#: engine/core/models.py:1711 +msgid "user-assigned rating for the product" +msgstr "التصنيف المعين من قبل المستخدم للمنتج" + +#: engine/core/models.py:1712 +msgid "product rating" +msgstr "تصنيف المنتج" + +#: engine/core/models.py:1728 msgid "" "Represents products associated with orders and their attributes. The " "OrderProduct model maintains information about a product that is part of an " @@ -2420,245 +2499,204 @@ msgstr "" "يمثل المنتجات المرتبطة بالطلبات وسماتها. يحتفظ نموذج OrderProduct بمعلومات " "حول المنتج الذي هو جزء من الطلب، بما في ذلك تفاصيل مثل سعر الشراء والكمية " "وسمات المنتج وحالته. يدير الإشعارات للمستخدم والمسؤولين ويتعامل مع عمليات " -"مثل إرجاع رصيد المنتج أو إضافة ملاحظات. يوفر هذا النموذج أيضًا أساليب وخصائص" -" تدعم منطق العمل، مثل حساب السعر الإجمالي أو إنشاء عنوان URL للتنزيل " -"للمنتجات الرقمية. يتكامل النموذج مع نموذجي الطلب والمنتج ويخزن مرجعًا لهما." +"مثل إرجاع رصيد المنتج أو إضافة ملاحظات. يوفر هذا النموذج أيضًا أساليب وخصائص " +"تدعم منطق العمل، مثل حساب السعر الإجمالي أو إنشاء عنوان URL للتنزيل للمنتجات " +"الرقمية. يتكامل النموذج مع نموذجي الطلب والمنتج ويخزن مرجعًا لهما." -#: core/models.py:1683 +#: engine/core/models.py:1743 msgid "the price paid by the customer for this product at purchase time" msgstr "السعر الذي دفعه العميل لهذا المنتج وقت الشراء" -#: core/models.py:1684 +#: engine/core/models.py:1744 msgid "purchase price at order time" msgstr "سعر الشراء وقت الطلب" -#: core/models.py:1689 +#: engine/core/models.py:1749 msgid "internal comments for admins about this ordered product" msgstr "تعليقات داخلية للمسؤولين حول هذا المنتج المطلوب" -#: core/models.py:1690 +#: engine/core/models.py:1750 msgid "internal comments" msgstr "التعليقات الداخلية" -#: core/models.py:1696 +#: engine/core/models.py:1756 msgid "user notifications" msgstr "إشعارات المستخدم" -#: core/models.py:1701 +#: engine/core/models.py:1761 msgid "json representation of this item's attributes" msgstr "تمثيل JSON لسمات هذا العنصر" -#: core/models.py:1702 +#: engine/core/models.py:1762 msgid "ordered product attributes" msgstr "سمات المنتج المطلوبة" -#: core/models.py:1707 +#: engine/core/models.py:1767 msgid "reference to the parent order that contains this product" msgstr "الإشارة إلى الطلب الأصلي الذي يحتوي على هذا المنتج" -#: core/models.py:1708 +#: engine/core/models.py:1768 msgid "parent order" msgstr "ترتيب الوالدين" -#: core/models.py:1717 +#: engine/core/models.py:1777 msgid "the specific product associated with this order line" msgstr "المنتج المحدد المرتبط بخط الطلب هذا" -#: core/models.py:1724 +#: engine/core/models.py:1784 msgid "quantity of this specific product in the order" msgstr "كمية هذا المنتج المحدد في الطلب" -#: core/models.py:1725 +#: engine/core/models.py:1785 msgid "product quantity" msgstr "كمية المنتج" -#: core/models.py:1732 +#: engine/core/models.py:1792 msgid "current status of this product in the order" msgstr "الحالة الحالية لهذا المنتج بالترتيب" -#: core/models.py:1733 +#: engine/core/models.py:1793 msgid "product line status" msgstr "حالة خط الإنتاج" -#: core/models.py:1798 +#: engine/core/models.py:1858 msgid "order product must have an order" msgstr "يجب أن يكون لـ Orderproduct طلب مرتبط به!" -#: core/models.py:1800 +#: engine/core/models.py:1860 #, python-brace-format msgid "wrong action specified for feedback: {action}" msgstr "تم تحديد إجراء خاطئ للتغذية الراجعة: {action}!" -#: core/models.py:1814 +#: engine/core/models.py:1874 msgid "you cannot feedback an order which is not received" msgstr "لا يمكنك التعليق على طلب لم يتم استلامه" -#: core/models.py:1820 +#: engine/core/models.py:1880 msgid "name" msgstr "الاسم" -#: core/models.py:1821 +#: engine/core/models.py:1881 msgid "URL of the integration" msgstr "رابط التكامل" -#: core/models.py:1822 +#: engine/core/models.py:1882 msgid "authentication credentials" msgstr "بيانات اعتماد المصادقة" -#: core/models.py:1844 +#: engine/core/models.py:1904 msgid "you can only have one default CRM provider" msgstr "يمكن أن يكون لديك موفر CRM افتراضي واحد فقط" -#: core/models.py:1854 +#: engine/core/models.py:1914 msgid "CRM" msgstr "إدارة علاقات العملاء" -#: core/models.py:1855 +#: engine/core/models.py:1915 msgid "CRMs" msgstr "إدارة علاقات العملاء" -#: core/models.py:1867 +#: engine/core/models.py:1927 msgid "order CRM link" msgstr "رابط إدارة علاقات العملاء الخاصة بالطلب" -#: core/models.py:1868 +#: engine/core/models.py:1928 msgid "orders CRM links" msgstr "روابط إدارة علاقات العملاء الخاصة بالطلبات" -#: core/models.py:1873 +#: engine/core/models.py:1933 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 لتنزيل الأصل عندما " +"يكون الطلب المرتبط في حالة مكتملة." -#: core/models.py:1887 +#: engine/core/models.py:1947 msgid "download" msgstr "تنزيل" -#: core/models.py:1888 +#: engine/core/models.py:1948 msgid "downloads" msgstr "التنزيلات" -#: core/models.py:1902 -msgid "" -"Manages user feedback for products. This class is designed to capture and " -"store user feedback for specific products that they have purchased. It " -"contains attributes to store user comments, a reference to the related " -"product in the order, and a user-assigned rating. The class uses database " -"fields to effectively model and manage feedback data." -msgstr "" -"يدير ملاحظات المستخدمين للمنتجات. تم تصميم هذه الفئة لالتقاط وتخزين تعليقات " -"المستخدمين لمنتجات محددة قاموا بشرائها. وهو يحتوي على سمات لتخزين تعليقات " -"المستخدم، ومرجع إلى المنتج ذي الصلة في الطلب، وتقييم معين من قبل المستخدم. " -"يستخدم الفصل حقول قاعدة البيانات لنمذجة وإدارة بيانات الملاحظات بشكل فعال." - -#: core/models.py:1914 -msgid "user-provided comments about their experience with the product" -msgstr "التعليقات المقدمة من المستخدمين حول تجربتهم مع المنتج" - -#: core/models.py:1915 -msgid "feedback comments" -msgstr "تعليقات على الملاحظات" - -#: core/models.py:1922 -msgid "" -"references the specific product in an order that this feedback is about" -msgstr "الإشارة إلى المنتج المحدد في الطلب الذي تدور حوله هذه الملاحظات" - -#: core/models.py:1923 -msgid "related order product" -msgstr "منتجات الطلبات ذات الصلة" - -#: core/models.py:1928 -msgid "user-assigned rating for the product" -msgstr "التصنيف المعين من قبل المستخدم للمنتج" - -#: core/models.py:1929 -msgid "product rating" -msgstr "تصنيف المنتج" - -#: core/serializers/utility.py:89 +#: engine/core/serializers/utility.py:89 msgid "" "you must provide a comment, rating, and order product uuid to add feedback." msgstr "يجب عليك تقديم تعليق، وتقييم، وطلب المنتج uuid لإضافة ملاحظاتك." -#: core/signals.py:73 -msgid "error during promocode creation: {e!s}" -msgstr "خطأ أثناء إنشاء الرمز الترويجي: {e!s}" - -#: core/sitemaps.py:25 +#: engine/core/sitemaps.py:25 msgid "Home" msgstr "الصفحة الرئيسية" -#: core/sitemaps.py:30 +#: engine/core/sitemaps.py:30 msgid "Contact Us" msgstr "اتصل بنا" -#: core/sitemaps.py:35 +#: engine/core/sitemaps.py:35 msgid "About Us" msgstr "نبذة عنا" -#: core/templates/digital_order_created_email.html:7 -#: core/templates/digital_order_created_email.html:100 -#: core/templates/digital_order_delivered_email.html:6 -#: core/templates/shipped_order_created_email.html:7 -#: core/templates/shipped_order_created_email.html:99 -#: core/templates/shipped_order_delivered_email.html:7 -#: core/templates/shipped_order_delivered_email.html:99 +#: engine/core/templates/digital_order_created_email.html:7 +#: engine/core/templates/digital_order_created_email.html:100 +#: engine/core/templates/digital_order_delivered_email.html:6 +#: engine/core/templates/shipped_order_created_email.html:7 +#: engine/core/templates/shipped_order_created_email.html:99 +#: engine/core/templates/shipped_order_delivered_email.html:7 +#: engine/core/templates/shipped_order_delivered_email.html:99 msgid "order confirmation" msgstr "تأكيد الطلب" -#: core/templates/digital_order_created_email.html:95 -#: core/templates/digital_order_delivered_email.html:94 -#: core/templates/promocode_granted_email.html:94 -#: core/templates/shipped_order_created_email.html:94 -#: core/templates/shipped_order_delivered_email.html:94 +#: engine/core/templates/digital_order_created_email.html:95 +#: engine/core/templates/digital_order_delivered_email.html:94 +#: engine/core/templates/promocode_granted_email.html:94 +#: engine/core/templates/shipped_order_created_email.html:94 +#: engine/core/templates/shipped_order_delivered_email.html:94 msgid "logo" msgstr "الشعار" -#: core/templates/digital_order_created_email.html:101 -#: core/templates/shipped_order_created_email.html:100 -#: core/templates/shipped_order_delivered_email.html:100 +#: engine/core/templates/digital_order_created_email.html:101 +#: engine/core/templates/shipped_order_created_email.html:100 +#: engine/core/templates/shipped_order_delivered_email.html:100 #, python-format msgid "hello %(order.user.first_name)s," msgstr "مرحباً %(order.user.first_name)s," -#: core/templates/digital_order_created_email.html:102 +#: engine/core/templates/digital_order_created_email.html:102 #, 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! يسعدنا إبلاغك بأننا قد أخذنا طلبك في العمل. " +"فيما يلي تفاصيل طلبك:" -#: core/templates/digital_order_created_email.html:112 -#: core/templates/digital_order_delivered_email.html:110 -#: core/templates/shipped_order_created_email.html:110 -#: core/templates/shipped_order_delivered_email.html:110 +#: engine/core/templates/digital_order_created_email.html:112 +#: engine/core/templates/digital_order_delivered_email.html:110 +#: engine/core/templates/shipped_order_created_email.html:110 +#: engine/core/templates/shipped_order_delivered_email.html:110 msgid "total" msgstr "الإجمالي" -#: core/templates/digital_order_created_email.html:125 -#: core/templates/digital_order_delivered_email.html:157 -#: core/templates/shipped_order_created_email.html:127 -#: core/templates/shipped_order_delivered_email.html:127 +#: engine/core/templates/digital_order_created_email.html:125 +#: engine/core/templates/digital_order_delivered_email.html:157 +#: engine/core/templates/shipped_order_created_email.html:127 +#: engine/core/templates/shipped_order_delivered_email.html:127 msgid "total price" msgstr "السعر الإجمالي" -#: core/templates/digital_order_created_email.html:131 -#: core/templates/shipped_order_created_email.html:140 -#: core/templates/shipped_order_delivered_email.html:140 +#: engine/core/templates/digital_order_created_email.html:131 +#: engine/core/templates/shipped_order_created_email.html:140 +#: engine/core/templates/shipped_order_delivered_email.html:140 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" @@ -2667,35 +2705,35 @@ msgstr "" "إذا كانت لديك أي أسئلة، فلا تتردد في الاتصال بدعمنا على " "%(config.EMAIL_HOST_USER)s." -#: core/templates/digital_order_created_email.html:133 +#: engine/core/templates/digital_order_created_email.html:133 #, python-format msgid "best regards,
the %(config.PROJECT_NAME)s team" msgstr "مع أطيب تحياتي،
فريق %(config.PROJECT_NAME)s" -#: core/templates/digital_order_created_email.html:139 -#: core/templates/digital_order_delivered_email.html:171 -#: core/templates/promocode_granted_email.html:114 +#: engine/core/templates/digital_order_created_email.html:139 +#: engine/core/templates/digital_order_delivered_email.html:171 +#: engine/core/templates/promocode_granted_email.html:114 msgid "all rights reserved" msgstr "جميع الحقوق محفوظة" -#: core/templates/digital_order_delivered_email.html:99 +#: engine/core/templates/digital_order_delivered_email.html:99 msgid "order delivered" msgstr "تم تسليم الطلب" -#: core/templates/digital_order_delivered_email.html:100 -#: core/templates/promocode_granted_email.html:100 +#: engine/core/templates/digital_order_delivered_email.html:100 +#: engine/core/templates/promocode_granted_email.html:100 #, python-format msgid "hello %(user_first_name)s," msgstr "مرحباً %(user_first_name)s," -#: core/templates/digital_order_delivered_email.html:101 +#: engine/core/templates/digital_order_delivered_email.html:101 #, python-format msgid "" "we have successfully processed your order №%(order_uuid)s! below are the\n" " details of your order:" msgstr "لقد قمنا بمعالجة طلبك بنجاح №%(order_uuid)s! فيما يلي تفاصيل طلبك:" -#: core/templates/digital_order_delivered_email.html:128 +#: engine/core/templates/digital_order_delivered_email.html:128 msgid "" "additional\n" " information" @@ -2703,13 +2741,13 @@ msgstr "" "معلومات إضافية\n" " معلومات إضافية" -#: core/templates/digital_order_delivered_email.html:137 -#: core/templates/json_table_widget.html:6 +#: engine/core/templates/digital_order_delivered_email.html:137 +#: engine/core/templates/json_table_widget.html:6 msgid "value" msgstr "القيمة" -#: core/templates/digital_order_delivered_email.html:163 -#: core/templates/promocode_granted_email.html:106 +#: engine/core/templates/digital_order_delivered_email.html:163 +#: engine/core/templates/promocode_granted_email.html:106 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" @@ -2717,26 +2755,26 @@ msgid "" msgstr "" "إذا كانت لديك أي أسئلة، فلا تتردد في الاتصال بدعمنا على %(contact_email)s." -#: core/templates/digital_order_delivered_email.html:165 -#: core/templates/promocode_granted_email.html:108 +#: engine/core/templates/digital_order_delivered_email.html:165 +#: engine/core/templates/promocode_granted_email.html:108 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "مع أطيب تحياتي،
فريق %(project_name)s" -#: core/templates/json_table_widget.html:5 +#: engine/core/templates/json_table_widget.html:5 msgid "key" msgstr "المفتاح" -#: core/templates/json_table_widget.html:40 +#: engine/core/templates/json_table_widget.html:40 msgid "Add Row" msgstr "إضافة صف" -#: core/templates/promocode_granted_email.html:6 -#: core/templates/promocode_granted_email.html:99 +#: engine/core/templates/promocode_granted_email.html:6 +#: engine/core/templates/promocode_granted_email.html:99 msgid "promocode granted" msgstr "الرمز الترويجي الممنوح" -#: core/templates/promocode_granted_email.html:101 +#: engine/core/templates/promocode_granted_email.html:101 msgid "" "Thank you for staying with us! We have granted you with a promocode\n" " for " @@ -2744,31 +2782,32 @@ msgstr "" "شكراً لك على إقامتك معنا! لقد منحناك رمزاً ترويجياً\n" " لـ" -#: core/templates/shipped_order_created_email.html:101 -#: core/templates/shipped_order_delivered_email.html:101 +#: 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 "شكرًا لك على طلبك! يسعدنا تأكيد طلبك. فيما يلي تفاصيل طلبك:" -#: core/templates/shipped_order_created_email.html:123 -#: core/templates/shipped_order_delivered_email.html:123 +#: engine/core/templates/shipped_order_created_email.html:123 +#: engine/core/templates/shipped_order_delivered_email.html:123 msgid "shipping price" msgstr "سعر الشحن" -#: core/templates/shipped_order_created_email.html:133 -#: core/templates/shipped_order_delivered_email.html:133 +#: engine/core/templates/shipped_order_created_email.html:133 +#: engine/core/templates/shipped_order_delivered_email.html:133 msgid "your order will be delivered to the following address:" msgstr "سيتم توصيل طلبك إلى العنوان التالي:" -#: core/templates/shipped_order_created_email.html:142 -#: core/templates/shipped_order_delivered_email.html:142 +#: engine/core/templates/shipped_order_created_email.html:142 +#: engine/core/templates/shipped_order_delivered_email.html:142 #, python-format msgid "best regards,
The %(config.PROJECT_NAME)s team" msgstr "مع أطيب تحياتي،
فريق %(config.PROJECT_NAME)s" -#: core/templates/shipped_order_created_email.html:147 -#: core/templates/shipped_order_delivered_email.html:147 +#: engine/core/templates/shipped_order_created_email.html:147 +#: engine/core/templates/shipped_order_delivered_email.html:147 msgid "" "all rights\n" " reserved" @@ -2776,48 +2815,48 @@ msgstr "" "جميع الحقوق\n" " محفوظة" -#: core/utils/caching.py:44 +#: engine/core/utils/caching.py:44 msgid "both data and timeout are required" msgstr "كل من البيانات والمهلة مطلوبة" -#: core/utils/caching.py:46 +#: engine/core/utils/caching.py:46 msgid "invalid timeout value, it must be between 0 and 216000 seconds" msgstr "قيمة المهلة غير صالحة، يجب أن تكون بين 0 و216000 ثانية" -#: core/utils/emailing.py:27 +#: engine/core/utils/emailing.py:27 #, python-brace-format msgid "{config.PROJECT_NAME} | contact us initiated" msgstr "{config.PROJECT_NAME} | بادر بالاتصال بنا" -#: core/utils/emailing.py:73 +#: engine/core/utils/emailing.py:73 #, python-brace-format msgid "{config.PROJECT_NAME} | order confirmation" msgstr "{config.PROJECT_NAME} | تأكيد الطلب" -#: core/utils/emailing.py:105 +#: engine/core/utils/emailing.py:105 #, python-brace-format msgid "{config.PROJECT_NAME} | order delivered" msgstr "{config.PROJECT_NAME} | طلبية تم تسليمها" -#: core/utils/emailing.py:188 +#: engine/core/utils/emailing.py:188 #, python-brace-format msgid "{config.PROJECT_NAME} | promocode granted" msgstr "{config.PROJECT_NAME} | الرمز الترويجي الممنوح" -#: core/utils/messages.py:3 +#: engine/core/utils/messages.py:3 msgid "you do not have permission to perform this action." msgstr "ليس لديك إذن لتنفيذ هذا الإجراء." -#: core/utils/nominatim.py:8 +#: engine/core/utils/nominatim.py:8 msgid "NOMINATIM_URL must be configured." msgstr "يجب تكوين معلمة NOMINATIM_URL!" -#: core/validators.py:16 +#: engine/core/validators.py:16 #, 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} بكسل!" -#: core/views.py:72 +#: engine/core/views.py:71 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." @@ -2825,7 +2864,7 @@ msgstr "" "يتعامل مع طلب فهرس خريطة الموقع ويعيد استجابة XML. يضمن أن تتضمن الاستجابة " "رأس نوع المحتوى المناسب ل XML." -#: core/views.py:87 +#: engine/core/views.py:86 msgid "" "Handles the detailed view response for a sitemap. This function processes " "the request, fetches the appropriate sitemap detail response, and sets the " @@ -2834,16 +2873,16 @@ msgstr "" "يعالج استجابة العرض التفصيلي لخريطة الموقع. تقوم هذه الدالة بمعالجة الطلب، " "وجلب استجابة تفاصيل خريطة الموقع المناسبة، وتعيين رأس نوع المحتوى ل XML." -#: core/views.py:116 +#: engine/core/views.py:115 msgid "" "Returns a list of supported languages and their corresponding information." msgstr "إرجاع قائمة باللغات المدعومة والمعلومات الخاصة بها." -#: core/views.py:148 +#: engine/core/views.py:147 msgid "Returns the parameters of the website as a JSON object." msgstr "إرجاع معلمات الموقع الإلكتروني ككائن JSON." -#: core/views.py:167 +#: engine/core/views.py:166 msgid "" "Handles cache operations such as reading and setting cache data with a " "specified key and timeout." @@ -2851,11 +2890,11 @@ msgstr "" "يعالج عمليات ذاكرة التخزين المؤقت مثل قراءة بيانات ذاكرة التخزين المؤقت " "وتعيينها بمفتاح ومهلة محددة." -#: core/views.py:194 +#: engine/core/views.py:193 msgid "Handles `contact us` form submissions." msgstr "يتعامل مع عمليات إرسال نموذج \"اتصل بنا\"." -#: core/views.py:215 +#: engine/core/views.py:214 msgid "" "Handles requests for processing and validating URLs from incoming POST " "requests." @@ -2863,65 +2902,73 @@ msgstr "" "يعالج طلبات معالجة عناوين URL والتحقق من صحة عناوين URL من طلبات POST " "الواردة." -#: core/views.py:255 +#: engine/core/views.py:254 msgid "Handles global search queries." msgstr "يتعامل مع استعلامات البحث العامة." -#: core/views.py:270 +#: engine/core/views.py:269 msgid "Handles the logic of buying as a business without registration." msgstr "يتعامل بمنطق الشراء كشركة تجارية دون تسجيل." -#: core/views.py:306 +#: engine/core/views.py:305 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 للإشارة إلى أن " +"المورد غير متوفر." -#: core/views.py:316 +#: engine/core/views.py:315 msgid "order_product_uuid is required" msgstr "الطلب_برو_منتج_uuid مطلوب" -#: core/views.py:322 +#: engine/core/views.py:321 msgid "you can only download the digital asset once" msgstr "يمكنك تنزيل الأصل الرقمي مرة واحدة فقط" -#: core/views.py:325 +#: engine/core/views.py:324 msgid "the order must be paid before downloading the digital asset" msgstr "يجب دفع الطلب قبل تنزيل الأصل الرقمي" -#: core/views.py:331 +#: engine/core/views.py:330 msgid "the order product does not have a product" msgstr "لا يحتوي منتج الطلب على منتج" -#: core/views.py:369 +#: engine/core/views.py:368 msgid "favicon not found" msgstr "الرمز المفضل غير موجود" -#: core/views.py:374 +#: engine/core/views.py:373 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 للإشارة إلى " +"أن المورد غير متوفر." -#: core/views.py:386 +#: engine/core/views.py:385 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." -#: core/views.py:399 +#: engine/core/views.py:398 msgid "Returns current version of the eVibes. " msgstr "إرجاع الإصدار الحالي من eVibes." -#: core/viewsets.py:137 +#: engine/core/viewsets.py:137 msgid "" "Defines a viewset for managing Evibes-related operations. The EvibesViewSet " "class inherits from ModelViewSet and provides functionality for handling " @@ -2929,25 +2976,24 @@ msgid "" "serializer classes based on the current action, customizable permissions, " "and rendering formats." msgstr "" -"يحدد مجموعة طرق عرض لإدارة العمليات المتعلقة ب Evibes. يرث صنف EvibesViewSet" -" من ModelViewSet ويوفر وظائف للتعامل مع الإجراءات والعمليات على كيانات " -"Evibes. وتتضمن دعمًا لفئات المتسلسلات الديناميكية استنادًا إلى الإجراء " -"الحالي، والأذونات القابلة للتخصيص، وتنسيقات العرض." +"يحدد مجموعة طرق عرض لإدارة العمليات المتعلقة ب Evibes. يرث صنف EvibesViewSet " +"من ModelViewSet ويوفر وظائف للتعامل مع الإجراءات والعمليات على كيانات " +"Evibes. وتتضمن دعمًا لفئات المتسلسلات الديناميكية استنادًا إلى الإجراء الحالي، " +"والأذونات القابلة للتخصيص، وتنسيقات العرض." -#: core/viewsets.py:157 +#: engine/core/viewsets.py:157 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." -#: core/viewsets.py:176 +#: engine/core/viewsets.py:176 msgid "" "Handles operations related to Attribute objects within the application. " "Provides a set of API endpoints to interact with Attribute data. This class " @@ -2962,21 +3008,20 @@ msgstr "" "البيانات التي يتم إرجاعها، مثل التصفية حسب حقول معينة أو استرجاع معلومات " "مفصلة مقابل معلومات مبسطة حسب الطلب." -#: core/viewsets.py:195 +#: engine/core/viewsets.py:195 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." -#: core/viewsets.py:214 +#: engine/core/viewsets.py:214 msgid "" "Manages views for Category-related operations. The CategoryViewSet class is " "responsible for handling operations related to the Category model in the " @@ -2985,11 +3030,11 @@ msgid "" "can access specific data." msgstr "" "يدير طرق العرض للعمليات المتعلقة بالفئة. فئة CategoryViewSet مسؤولة عن " -"التعامل مع العمليات المتعلقة بنموذج الفئة في النظام. وهي تدعم استرجاع بيانات" -" الفئة وتصفيتها وتسلسلها. تفرض مجموعة طرق العرض أيضًا الأذونات لضمان وصول " +"التعامل مع العمليات المتعلقة بنموذج الفئة في النظام. وهي تدعم استرجاع بيانات " +"الفئة وتصفيتها وتسلسلها. تفرض مجموعة طرق العرض أيضًا الأذونات لضمان وصول " "المستخدمين المصرح لهم فقط إلى بيانات محددة." -#: core/viewsets.py:326 +#: engine/core/viewsets.py:326 msgid "" "Represents a viewset for managing Brand instances. This class provides " "functionality for querying, filtering, and serializing Brand objects. It " @@ -3001,7 +3046,7 @@ msgstr "" "Django's ViewSet لتبسيط تنفيذ نقاط نهاية واجهة برمجة التطبيقات لكائنات " "العلامة التجارية." -#: core/viewsets.py:438 +#: engine/core/viewsets.py:438 msgid "" "Manages operations related to the `Product` model in the system. This class " "provides a viewset for managing products, including their filtering, " @@ -3017,7 +3062,7 @@ msgstr "" "عمل Django REST لعمليات RESTful API. يتضمن أساليب لاسترجاع تفاصيل المنتج، " "وتطبيق الأذونات، والوصول إلى الملاحظات ذات الصلة بمنتج ما." -#: core/viewsets.py:568 +#: engine/core/viewsets.py:568 msgid "" "Represents a viewset for managing Vendor objects. This viewset allows " "fetching, filtering, and serializing Vendor data. It defines the queryset, " @@ -3026,35 +3071,34 @@ msgid "" "Vendor-related resources through the Django REST framework." msgstr "" "يمثل مجموعة طرق عرض لإدارة كائنات المورد. تسمح مجموعة العرض هذه بجلب بيانات " -"البائع وتصفيتها وتسلسلها. وهي تُعرِّف مجموعة الاستعلام، وتكوينات التصفية، " -"وفئات أداة التسلسل المستخدمة للتعامل مع الإجراءات المختلفة. الغرض من هذه " -"الفئة هو توفير وصول مبسط إلى الموارد المتعلقة بالمورد من خلال إطار عمل " -"Django REST." +"البائع وتصفيتها وتسلسلها. وهي تُعرِّف مجموعة الاستعلام، وتكوينات التصفية، وفئات " +"أداة التسلسل المستخدمة للتعامل مع الإجراءات المختلفة. الغرض من هذه الفئة هو " +"توفير وصول مبسط إلى الموارد المتعلقة بالمورد من خلال إطار عمل Django REST." -#: core/viewsets.py:588 +#: engine/core/viewsets.py:588 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 `EvibesViewSet` and makes " "use of Django's filtering system for querying data." msgstr "" "تمثيل مجموعة عرض تتعامل مع كائنات الملاحظات. تدير هذه الفئة العمليات " "المتعلقة بكائنات الملاحظات، بما في ذلك الإدراج والتصفية واسترجاع التفاصيل. " "الغرض من مجموعة العرض هذه هو توفير متسلسلات مختلفة لإجراءات مختلفة وتنفيذ " -"معالجة قائمة على الأذونات لكائنات الملاحظات التي يمكن الوصول إليها. وهي توسع" -" \"مجموعة عرض الملاحظات\" الأساسية وتستفيد من نظام تصفية Django للاستعلام عن" -" البيانات." +"معالجة قائمة على الأذونات لكائنات الملاحظات التي يمكن الوصول إليها. وهي توسع " +"\"مجموعة عرض الملاحظات\" الأساسية وتستفيد من نظام تصفية Django للاستعلام عن " +"البيانات." -#: core/viewsets.py:615 +#: engine/core/viewsets.py:615 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 لإدارة الطلبات والعمليات ذات الصلة. توفر هذه الفئة وظائف لاسترداد " @@ -3064,12 +3108,12 @@ msgstr "" "عليه. يستخدم ViewSet العديد من المتسلسلات بناءً على الإجراء المحدد الذي يتم " "تنفيذه ويفرض الأذونات وفقًا لذلك أثناء التفاعل مع بيانات الطلبات." -#: core/viewsets.py:813 +#: engine/core/viewsets.py:813 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. تتيح مجموعة طرق العرض هذه " @@ -3077,11 +3121,11 @@ msgstr "" "من الأذونات، وتبديل المتسلسل بناءً على الإجراء المطلوب. بالإضافة إلى ذلك، " "توفر إجراءً مفصلاً للتعامل مع الملاحظات على مثيلات OrderProduct" -#: core/viewsets.py:867 +#: engine/core/viewsets.py:867 msgid "Manages operations related to Product images in the application. " msgstr "يدير العمليات المتعلقة بصور المنتج في التطبيق." -#: core/viewsets.py:880 +#: engine/core/viewsets.py:880 msgid "" "Manages the retrieval and handling of PromoCode instances through various " "API actions." @@ -3089,32 +3133,32 @@ msgstr "" "يدير استرداد مثيلات PromoCode ومعالجتها من خلال إجراءات واجهة برمجة " "التطبيقات المختلفة." -#: core/viewsets.py:902 +#: engine/core/viewsets.py:902 msgid "Represents a view set for managing promotions. " msgstr "يمثل مجموعة عرض لإدارة الترقيات." -#: core/viewsets.py:915 +#: engine/core/viewsets.py:915 msgid "Handles operations related to Stock data in the system." msgstr "يتعامل مع العمليات المتعلقة ببيانات المخزون في النظام." -#: core/viewsets.py:929 +#: engine/core/viewsets.py:929 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 لإدارة عمليات قائمة الرغبات. توفر مجموعة طرق عرض قائمة الأمنيات نقاط " +"نهاية للتفاعل مع قائمة أمنيات المستخدم، مما يسمح باسترجاع المنتجات وتعديلها " +"وتخصيصها ضمن قائمة الأمنيات. تسهل مجموعة العرض هذه وظائف مثل الإضافة " "والإزالة والإجراءات المجمعة لمنتجات قائمة الرغبات. يتم دمج عمليات التحقق من " "الأذونات للتأكد من أن المستخدمين يمكنهم فقط إدارة قوائم الرغبات الخاصة بهم " "ما لم يتم منح أذونات صريحة." -#: core/viewsets.py:1044 +#: engine/core/viewsets.py:1044 msgid "" "This class provides viewset functionality for managing `Address` objects. " "The AddressViewSet class enables CRUD operations, filtering, and custom " @@ -3127,12 +3171,12 @@ msgstr "" "العناوين. وتتضمن سلوكيات متخصصة لطرق HTTP المختلفة، وتجاوزات المتسلسل، " "ومعالجة الأذونات بناءً على سياق الطلب." -#: core/viewsets.py:1111 +#: engine/core/viewsets.py:1111 #, python-brace-format msgid "Geocoding error: {e}" msgstr "خطأ في الترميز الجغرافي: {e}" -#: core/viewsets.py:1119 +#: engine/core/viewsets.py:1119 msgid "" "Handles operations related to Product Tags within the application. This " "class provides functionality for retrieving, filtering, and serializing " diff --git a/engine/core/locale/cs_CZ/LC_MESSAGES/django.mo b/engine/core/locale/cs_CZ/LC_MESSAGES/django.mo new file mode 100644 index 00000000..78b6b9bc Binary files /dev/null and b/engine/core/locale/cs_CZ/LC_MESSAGES/django.mo differ diff --git a/core/locale/cs_CZ/LC_MESSAGES/django.po b/engine/core/locale/cs_CZ/LC_MESSAGES/django.po similarity index 69% rename from core/locale/cs_CZ/LC_MESSAGES/django.po rename to engine/core/locale/cs_CZ/LC_MESSAGES/django.po index 6d462d69..09c63379 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,179 +13,181 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: core/abstract.py:12 +#: engine/core/abstract.py:12 msgid "unique id" msgstr "Jedinečné ID" -#: core/abstract.py:13 +#: engine/core/abstract.py:13 msgid "unique id is used to surely identify any database object" msgstr "" "Jedinečné ID slouží k jisté identifikaci jakéhokoli databázového objektu." -#: core/abstract.py:20 +#: engine/core/abstract.py:20 msgid "is active" msgstr "Je aktivní" -#: core/abstract.py:21 +#: engine/core/abstract.py:21 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í." -#: core/abstract.py:23 core/choices.py:18 +#: engine/core/abstract.py:23 engine/core/choices.py:18 msgid "created" msgstr "Vytvořeno" -#: core/abstract.py:23 +#: engine/core/abstract.py:23 msgid "when the object first appeared on the database" msgstr "Kdy se objekt poprvé objevil v databázi" -#: core/abstract.py:24 +#: engine/core/abstract.py:24 msgid "modified" msgstr "Upraveno" -#: core/abstract.py:24 +#: engine/core/abstract.py:24 msgid "when the object was last modified" msgstr "Kdy byl objekt naposledy upraven" -#: core/admin.py:68 +#: engine/core/admin.py:68 msgid "translations" msgstr "Překlady" -#: core/admin.py:72 +#: engine/core/admin.py:72 msgid "general" msgstr "Obecné" -#: core/admin.py:74 +#: engine/core/admin.py:74 msgid "relations" msgstr "Vztahy" -#: core/admin.py:76 +#: engine/core/admin.py:76 msgid "additional info" msgstr "další informace" -#: core/admin.py:94 +#: engine/core/admin.py:94 msgid "metadata" msgstr "Metadata" -#: core/admin.py:101 +#: engine/core/admin.py:101 msgid "timestamps" msgstr "Časová razítka" -#: core/admin.py:116 +#: engine/core/admin.py:116 #, python-format msgid "activate selected %(verbose_name_plural)s" msgstr "Aktivace vybraného %(verbose_name_plural)s" -#: core/admin.py:121 +#: engine/core/admin.py:121 msgid "selected items have been activated." msgstr "Vybrané položky byly aktivovány!" -#: core/admin.py:127 +#: engine/core/admin.py:127 #, python-format msgid "deactivate selected %(verbose_name_plural)s" msgstr "Deaktivace vybraných %(verbose_name_plural)s" -#: core/admin.py:132 +#: engine/core/admin.py:132 msgid "selected items have been deactivated." msgstr "Vybrané položky byly deaktivovány!" -#: core/admin.py:144 core/graphene/object_types.py:582 -#: core/graphene/object_types.py:589 core/models.py:783 core/models.py:791 +#: engine/core/admin.py:144 engine/core/graphene/object_types.py:586 +#: engine/core/graphene/object_types.py:593 engine/core/models.py:794 +#: engine/core/models.py:802 msgid "attribute value" msgstr "Hodnota atributu" -#: core/admin.py:145 core/graphene/object_types.py:75 core/models.py:792 +#: engine/core/admin.py:145 engine/core/graphene/object_types.py:75 +#: engine/core/models.py:803 msgid "attribute values" msgstr "Hodnoty atributů" -#: core/admin.py:156 +#: engine/core/admin.py:156 msgid "image" msgstr "Obrázek" -#: core/admin.py:157 core/graphene/object_types.py:474 +#: engine/core/admin.py:157 engine/core/graphene/object_types.py:474 msgid "images" msgstr "Obrázky" -#: core/admin.py:168 core/models.py:559 +#: engine/core/admin.py:169 engine/core/models.py:559 msgid "stock" msgstr "Stock" -#: core/admin.py:169 core/graphene/object_types.py:636 +#: engine/core/admin.py:170 engine/core/graphene/object_types.py:640 msgid "stocks" msgstr "Zásoby" -#: core/admin.py:182 core/models.py:1744 +#: engine/core/admin.py:183 engine/core/models.py:1804 msgid "order product" msgstr "Objednat produkt" -#: core/admin.py:183 core/graphene/object_types.py:389 core/models.py:1745 +#: engine/core/admin.py:184 engine/core/graphene/object_types.py:389 +#: engine/core/models.py:1805 msgid "order products" msgstr "Objednat produkty" -#: core/admin.py:196 core/admin.py:197 +#: engine/core/admin.py:197 engine/core/admin.py:198 msgid "children" msgstr "Děti" -#: core/admin.py:965 +#: engine/core/admin.py:969 msgid "Config" msgstr "Konfigurace" -#: core/apps.py:8 +#: engine/core/apps.py:8 msgid "core" msgstr "Jádro" -#: core/choices.py:4 core/choices.py:20 +#: engine/core/choices.py:4 engine/core/choices.py:20 msgid "finished" msgstr "Dokončeno" -#: core/choices.py:5 core/choices.py:19 +#: engine/core/choices.py:5 engine/core/choices.py:19 msgid "delivering" msgstr "Poskytování služeb" -#: core/choices.py:6 +#: engine/core/choices.py:6 msgid "delivered" msgstr "Doručeno na" -#: core/choices.py:7 +#: engine/core/choices.py:7 msgid "canceled" msgstr "Zrušeno" -#: core/choices.py:8 core/choices.py:16 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ý" -#: core/choices.py:9 core/choices.py:15 +#: engine/core/choices.py:9 engine/core/choices.py:15 msgid "pending" msgstr "Čeká se na" -#: core/choices.py:10 +#: engine/core/choices.py:10 msgid "accepted" msgstr "Přijato" -#: core/choices.py:11 +#: engine/core/choices.py:11 msgid "money returned" msgstr "Vrácené peníze" -#: core/choices.py:17 +#: engine/core/choices.py:17 msgid "payment" msgstr "Platba" -#: core/choices.py:21 +#: engine/core/choices.py:21 msgid "momental" msgstr "Momental" -#: core/choices.py:24 +#: engine/core/choices.py:24 msgid "successful" msgstr "Úspěšné" -#: core/docs/drf/views.py:17 core/graphene/mutations.py:38 +#: engine/core/docs/drf/views.py:17 engine/core/graphene/mutations.py:38 msgid "cache I/O" msgstr "Vstup/výstup mezipaměti" -#: core/docs/drf/views.py:19 +#: engine/core/docs/drf/views.py:19 msgid "" "apply only a key to read permitted data from cache.\n" "apply key, data and timeout with authentication to write data to cache." @@ -193,32 +195,32 @@ msgstr "" "Použijte pouze klíč pro čtení povolených dat z mezipaměti.\n" "Pro zápis dat do mezipaměti použijte klíč, data a časový limit s ověřením." -#: core/docs/drf/views.py:32 +#: engine/core/docs/drf/views.py:32 msgid "get a list of supported languages" msgstr "Získat seznam podporovaných jazyků" -#: core/docs/drf/views.py:41 +#: engine/core/docs/drf/views.py:41 msgid "get application's exposable parameters" msgstr "Získání vystavitelných parametrů aplikace" -#: core/docs/drf/views.py:48 +#: engine/core/docs/drf/views.py:48 msgid "send a message to the support team" msgstr "Odeslání zprávy týmu podpory" -#: core/docs/drf/views.py:59 core/graphene/mutations.py:58 +#: engine/core/docs/drf/views.py:59 engine/core/graphene/mutations.py:58 msgid "request a CORSed URL" msgstr "Vyžádejte si adresu URL s protokolem CORS. Povoleno pouze https." -#: core/docs/drf/views.py:85 +#: engine/core/docs/drf/views.py:85 msgid "global search endpoint to query across project's tables" msgstr "" "Globální koncový bod vyhledávání pro dotazování napříč tabulkami projektu" -#: core/docs/drf/views.py:91 +#: engine/core/docs/drf/views.py:91 msgid "purchase an order as a business" msgstr "Zakoupit objednávku jako firma" -#: core/docs/drf/views.py:98 +#: engine/core/docs/drf/views.py:98 msgid "" "purchase an order as a business, using the provided `products` with " "`product_uuid` and `attributes`." @@ -226,250 +228,253 @@ msgstr "" "Zakoupit objednávku jako podnik s použitím zadaných `produktů` s " "`product_uuid` a `atributy`." -#: core/docs/drf/viewsets.py:58 +#: engine/core/docs/drf/viewsets.py:58 msgid "list all attribute groups (simple view)" msgstr "Seznam všech skupin atributů (jednoduché zobrazení)" -#: core/docs/drf/viewsets.py:62 +#: engine/core/docs/drf/viewsets.py:62 msgid "retrieve a single attribute group (detailed view)" msgstr "Získání jedné skupiny atributů (podrobné zobrazení)" -#: core/docs/drf/viewsets.py:66 +#: engine/core/docs/drf/viewsets.py:66 msgid "create an attribute group" msgstr "Vytvoření skupiny atributů" -#: core/docs/drf/viewsets.py:70 +#: engine/core/docs/drf/viewsets.py:70 msgid "delete an attribute group" msgstr "Odstranění skupiny atributů" -#: core/docs/drf/viewsets.py:74 +#: engine/core/docs/drf/viewsets.py:74 msgid "rewrite an existing attribute group saving non-editables" msgstr "" "Přepsání existující skupiny atributů s uložením neupravitelných položek" -#: core/docs/drf/viewsets.py:78 -msgid "" -"rewrite some fields of an existing attribute group saving non-editables" +#: engine/core/docs/drf/viewsets.py:78 +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" -#: core/docs/drf/viewsets.py:85 +#: engine/core/docs/drf/viewsets.py:85 msgid "list all attributes (simple view)" msgstr "Seznam všech atributů (jednoduché zobrazení)" -#: core/docs/drf/viewsets.py:89 +#: engine/core/docs/drf/viewsets.py:89 msgid "retrieve a single attribute (detailed view)" msgstr "Získání jednoho atributu (podrobné zobrazení)" -#: core/docs/drf/viewsets.py:93 +#: engine/core/docs/drf/viewsets.py:93 msgid "create an attribute" msgstr "Vytvoření atributu" -#: core/docs/drf/viewsets.py:97 +#: engine/core/docs/drf/viewsets.py:97 msgid "delete an attribute" msgstr "Odstranění atributu" -#: core/docs/drf/viewsets.py:101 +#: engine/core/docs/drf/viewsets.py:101 msgid "rewrite an existing attribute saving non-editables" msgstr "Přepsat existující atribut a uložit neupravitelné položky" -#: core/docs/drf/viewsets.py:105 +#: engine/core/docs/drf/viewsets.py:105 msgid "rewrite some fields of an existing attribute saving non-editables" msgstr "" "Přepsání některých polí existujícího atributu s uložením neupravitelných " "položek" -#: core/docs/drf/viewsets.py:112 +#: engine/core/docs/drf/viewsets.py:112 msgid "list all attribute values (simple view)" msgstr "Seznam všech hodnot atributů (jednoduché zobrazení)" -#: core/docs/drf/viewsets.py:116 +#: engine/core/docs/drf/viewsets.py:116 msgid "retrieve a single attribute value (detailed view)" msgstr "Získání jedné hodnoty atributu (podrobné zobrazení)" -#: core/docs/drf/viewsets.py:120 +#: engine/core/docs/drf/viewsets.py:120 msgid "create an attribute value" msgstr "Vytvoření hodnoty atributu" -#: core/docs/drf/viewsets.py:124 +#: engine/core/docs/drf/viewsets.py:124 msgid "delete an attribute value" msgstr "Odstranění hodnoty atributu" -#: core/docs/drf/viewsets.py:128 +#: engine/core/docs/drf/viewsets.py:128 msgid "rewrite an existing attribute value saving non-editables" msgstr "Přepsání existující hodnoty atributu uložením neupravitelných položek" -#: core/docs/drf/viewsets.py:132 -msgid "" -"rewrite some fields of an existing attribute value saving non-editables" +#: engine/core/docs/drf/viewsets.py:132 +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" -#: core/docs/drf/viewsets.py:139 core/docs/drf/viewsets.py:140 +#: engine/core/docs/drf/viewsets.py:139 engine/core/docs/drf/viewsets.py:140 msgid "list all categories (simple view)" msgstr "Seznam všech kategorií (jednoduché zobrazení)" -#: core/docs/drf/viewsets.py:144 core/docs/drf/viewsets.py:145 +#: engine/core/docs/drf/viewsets.py:144 engine/core/docs/drf/viewsets.py:145 msgid "retrieve a single category (detailed view)" msgstr "Vyhledání jedné kategorie (podrobné zobrazení)" -#: core/docs/drf/viewsets.py:149 core/docs/drf/viewsets.py:150 +#: engine/core/docs/drf/viewsets.py:150 engine/core/docs/drf/viewsets.py:183 +msgid "Category UUID or slug" +msgstr "UUID nebo slug kategorie" + +#: engine/core/docs/drf/viewsets.py:157 engine/core/docs/drf/viewsets.py:158 msgid "create a category" msgstr "Vytvoření kategorie" -#: core/docs/drf/viewsets.py:154 core/docs/drf/viewsets.py:155 +#: engine/core/docs/drf/viewsets.py:162 engine/core/docs/drf/viewsets.py:163 msgid "delete a category" msgstr "Odstranění kategorie" -#: core/docs/drf/viewsets.py:159 core/docs/drf/viewsets.py:160 +#: engine/core/docs/drf/viewsets.py:167 engine/core/docs/drf/viewsets.py:168 msgid "rewrite an existing category saving non-editables" msgstr "Přepsání existující kategorie ukládající neupravitelné položky" -#: core/docs/drf/viewsets.py:164 core/docs/drf/viewsets.py:165 +#: engine/core/docs/drf/viewsets.py:172 engine/core/docs/drf/viewsets.py:173 msgid "rewrite some fields of an existing category saving non-editables" msgstr "" "Přepsat některá pole existující kategorie a uložit neupravitelné položky" -#: core/docs/drf/viewsets.py:169 core/docs/drf/viewsets.py:501 -#: core/graphene/object_types.py:117 core/graphene/object_types.py:207 -#: core/graphene/object_types.py:482 +#: engine/core/docs/drf/viewsets.py:177 engine/core/docs/drf/viewsets.py:517 +#: engine/core/graphene/object_types.py:117 +#: engine/core/graphene/object_types.py:207 +#: engine/core/graphene/object_types.py:482 msgid "SEO Meta snapshot" msgstr "Meta snímek SEO" -#: core/docs/drf/viewsets.py:170 +#: engine/core/docs/drf/viewsets.py:178 msgid "returns a snapshot of the category's SEO meta data" msgstr "Vrací snímek meta dat SEO kategorie." -#: core/docs/drf/viewsets.py:175 -msgid "Category UUID or slug" -msgstr "UUID nebo slug kategorie" - -#: core/docs/drf/viewsets.py:188 +#: engine/core/docs/drf/viewsets.py:196 msgid "list all orders (simple view)" msgstr "Seznam všech kategorií (jednoduché zobrazení)" -#: core/docs/drf/viewsets.py:189 +#: engine/core/docs/drf/viewsets.py:197 msgid "for non-staff users, only their own orders are returned." msgstr "" "Uživatelům, kteří nejsou zaměstnanci, se vracejí pouze jejich vlastní " "objednávky." -#: core/docs/drf/viewsets.py:195 +#: engine/core/docs/drf/viewsets.py:203 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" -#: core/docs/drf/viewsets.py:202 +#: engine/core/docs/drf/viewsets.py:210 msgid "Filter orders with buy_time >= this ISO 8601 datetime" msgstr "Filtrování příkazů s buy_time >= toto datum ISO 8601" -#: core/docs/drf/viewsets.py:207 +#: engine/core/docs/drf/viewsets.py:215 msgid "Filter orders with buy_time <= this ISO 8601 datetime" msgstr "Filtrování objednávek s buy_time <= toto ISO 8601 datetime" -#: core/docs/drf/viewsets.py:212 +#: engine/core/docs/drf/viewsets.py:220 msgid "Filter by exact order UUID" msgstr "Filtrování podle přesné objednávky UUID" -#: core/docs/drf/viewsets.py:217 +#: engine/core/docs/drf/viewsets.py:225 msgid "Filter by exact human-readable order ID" msgstr "Filtrování podle přesného lidsky čitelného ID objednávky" -#: core/docs/drf/viewsets.py:222 +#: engine/core/docs/drf/viewsets.py:230 msgid "Filter by user's email (case-insensitive exact match)" msgstr "" "Filtrování podle e-mailu uživatele (přesná shoda bez rozlišení velkých a " "malých písmen)" -#: core/docs/drf/viewsets.py:227 +#: engine/core/docs/drf/viewsets.py:235 msgid "Filter by user's UUID" msgstr "Filtrování podle UUID uživatele" -#: core/docs/drf/viewsets.py:232 +#: engine/core/docs/drf/viewsets.py:240 msgid "Filter by order status (case-insensitive substring match)" msgstr "" "Filtrování podle stavu objednávky (shoda podřetězce bez rozlišování velkých " "a malých písmen)" -#: core/docs/drf/viewsets.py:238 +#: engine/core/docs/drf/viewsets.py:246 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é " "řazení použijte předponu \"-\" (např. \"-buy_time\")." -#: core/docs/drf/viewsets.py:247 +#: engine/core/docs/drf/viewsets.py:255 msgid "retrieve a single order (detailed view)" msgstr "Vyhledání jedné kategorie (podrobné zobrazení)" -#: core/docs/drf/viewsets.py:251 +#: engine/core/docs/drf/viewsets.py:260 +msgid "Order UUID or human-readable id" +msgstr "Objednávka UUID nebo lidsky čitelné ID" + +#: engine/core/docs/drf/viewsets.py:267 msgid "create an order" msgstr "Vytvoření atributu" -#: core/docs/drf/viewsets.py:252 +#: engine/core/docs/drf/viewsets.py:268 msgid "doesn't work for non-staff users." msgstr "Nefunguje pro uživatele, kteří nejsou zaměstnanci." -#: core/docs/drf/viewsets.py:256 +#: engine/core/docs/drf/viewsets.py:272 msgid "delete an order" msgstr "Odstranění atributu" -#: core/docs/drf/viewsets.py:260 +#: engine/core/docs/drf/viewsets.py:276 msgid "rewrite an existing order saving non-editables" msgstr "Přepsání existující kategorie ukládající neupravitelné položky" -#: core/docs/drf/viewsets.py:264 +#: engine/core/docs/drf/viewsets.py:280 msgid "rewrite some fields of an existing order saving non-editables" msgstr "" "Přepsat některá pole existující kategorie a uložit neupravitelné položky" -#: core/docs/drf/viewsets.py:268 +#: engine/core/docs/drf/viewsets.py:284 msgid "purchase an order" msgstr "Nákupní cena v době objednávky" -#: core/docs/drf/viewsets.py:270 +#: engine/core/docs/drf/viewsets.py:286 msgid "" "finalizes the order purchase. if `force_balance` is used, the purchase is " "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." -#: core/docs/drf/viewsets.py:282 core/graphene/mutations.py:335 +#: engine/core/docs/drf/viewsets.py:298 engine/core/graphene/mutations.py:335 msgid "purchase an order without account creation" msgstr "zakoupení objednávky bez vytvoření účtu" -#: core/docs/drf/viewsets.py:283 +#: engine/core/docs/drf/viewsets.py:299 msgid "finalizes the order purchase for a non-registered user." msgstr "dokončí nákup objednávky pro neregistrovaného uživatele." -#: core/docs/drf/viewsets.py:291 +#: engine/core/docs/drf/viewsets.py:307 msgid "add product to order" msgstr "Přidání produktu do objednávky" -#: core/docs/drf/viewsets.py:292 +#: engine/core/docs/drf/viewsets.py:308 msgid "" "adds a product to an order using the provided `product_uuid` and " "`attributes`." msgstr "" "Přidá produkt do objednávky pomocí zadaného `product_uuid` a `attributes`." -#: core/docs/drf/viewsets.py:297 +#: engine/core/docs/drf/viewsets.py:313 msgid "add a list of products to order, quantities will not count" msgstr "Přidat seznam produktů k objednání, množství se nezapočítává." -#: core/docs/drf/viewsets.py:298 +#: engine/core/docs/drf/viewsets.py:314 msgid "" "adds a list of products to an order using the provided `product_uuid` and " "`attributes`." @@ -477,22 +482,22 @@ msgstr "" "Přidá seznam produktů do objednávky pomocí zadaného `product_uuid` a " "`attributes`." -#: core/docs/drf/viewsets.py:303 +#: engine/core/docs/drf/viewsets.py:319 msgid "remove product from order" msgstr "Odstranění produktu z objednávky" -#: core/docs/drf/viewsets.py:304 +#: engine/core/docs/drf/viewsets.py:320 msgid "" "removes a product from an order using the provided `product_uuid` and " "`attributes`." msgstr "" "Odebere produkt z objednávky pomocí zadaného `product_uuid` a `attributes`." -#: core/docs/drf/viewsets.py:309 +#: engine/core/docs/drf/viewsets.py:325 msgid "remove product from order, quantities will not count" msgstr "Odstranění produktu z objednávky, množství se nezapočítává" -#: core/docs/drf/viewsets.py:310 +#: engine/core/docs/drf/viewsets.py:326 msgid "" "removes a list of products from an order using the provided `product_uuid` " "and `attributes`" @@ -500,787 +505,808 @@ msgstr "" "Odebere seznam produktů z objednávky pomocí zadaného `product_uuid` a " "`attributes`." -#: core/docs/drf/viewsets.py:318 +#: engine/core/docs/drf/viewsets.py:334 msgid "list all wishlists (simple view)" msgstr "Seznam všech atributů (jednoduché zobrazení)" -#: core/docs/drf/viewsets.py:319 +#: engine/core/docs/drf/viewsets.py:335 msgid "for non-staff users, only their own wishlists are returned." msgstr "" "Uživatelům, kteří nejsou zaměstnanci, se vrátí pouze jejich vlastní seznamy " "přání." -#: core/docs/drf/viewsets.py:323 +#: engine/core/docs/drf/viewsets.py:339 msgid "retrieve a single wishlist (detailed view)" msgstr "Získání jednoho atributu (podrobné zobrazení)" -#: core/docs/drf/viewsets.py:327 +#: engine/core/docs/drf/viewsets.py:343 msgid "create an wishlist" msgstr "Vytvoření atributu" -#: core/docs/drf/viewsets.py:328 +#: engine/core/docs/drf/viewsets.py:344 msgid "Doesn't work for non-staff users." msgstr "Nefunguje pro uživatele, kteří nejsou zaměstnanci." -#: core/docs/drf/viewsets.py:332 +#: engine/core/docs/drf/viewsets.py:348 msgid "delete an wishlist" msgstr "Odstranění atributu" -#: core/docs/drf/viewsets.py:336 +#: engine/core/docs/drf/viewsets.py:352 msgid "rewrite an existing wishlist saving non-editables" msgstr "Přepsat existující atribut a uložit neupravitelné položky" -#: core/docs/drf/viewsets.py:340 +#: engine/core/docs/drf/viewsets.py:356 msgid "rewrite some fields of an existing wishlist saving non-editables" msgstr "" "Přepsání některých polí existujícího atributu s uložením neupravitelných " "položek" -#: core/docs/drf/viewsets.py:344 +#: engine/core/docs/drf/viewsets.py:360 msgid "add product to wishlist" msgstr "Přidání produktu do objednávky" -#: core/docs/drf/viewsets.py:345 +#: engine/core/docs/drf/viewsets.py:361 msgid "adds a product to an wishlist using the provided `product_uuid`" msgstr "Přidá produkt do seznamu přání pomocí zadaného `product_uuid`." -#: core/docs/drf/viewsets.py:350 +#: engine/core/docs/drf/viewsets.py:366 msgid "remove product from wishlist" msgstr "Odstranění produktu ze seznamu přání" -#: core/docs/drf/viewsets.py:351 +#: engine/core/docs/drf/viewsets.py:367 msgid "removes a product from an wishlist using the provided `product_uuid`" msgstr "Odebere produkt ze seznamu přání pomocí zadaného `product_uuid`." -#: core/docs/drf/viewsets.py:356 +#: engine/core/docs/drf/viewsets.py:372 msgid "add many products to wishlist" msgstr "Přidání mnoha produktů do seznamu přání" -#: core/docs/drf/viewsets.py:357 +#: engine/core/docs/drf/viewsets.py:373 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`." -#: core/docs/drf/viewsets.py:362 +#: engine/core/docs/drf/viewsets.py:378 msgid "remove many products from wishlist" msgstr "Odstranění produktu z objednávky" -#: core/docs/drf/viewsets.py:363 +#: engine/core/docs/drf/viewsets.py:379 msgid "" "removes many products from an wishlist using the provided `product_uuids`" msgstr "" "Odebere mnoho produktů ze seznamu přání pomocí zadaných `product_uuids`." -#: core/docs/drf/viewsets.py:370 +#: engine/core/docs/drf/viewsets.py:386 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`" -#: core/docs/drf/viewsets.py:386 core/docs/drf/viewsets.py:387 +#: engine/core/docs/drf/viewsets.py:402 engine/core/docs/drf/viewsets.py:403 msgid "list all products (simple view)" msgstr "Seznam všech produktů (jednoduché zobrazení)" -#: core/docs/drf/viewsets.py:392 +#: engine/core/docs/drf/viewsets.py:408 msgid "(exact) Product UUID" msgstr "(přesně) UUID produktu" -#: core/docs/drf/viewsets.py:399 +#: engine/core/docs/drf/viewsets.py:415 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" -#: core/docs/drf/viewsets.py:413 core/docs/drf/viewsets.py:414 +#: engine/core/docs/drf/viewsets.py:429 engine/core/docs/drf/viewsets.py:430 msgid "retrieve a single product (detailed view)" msgstr "Vyhledání jednoho produktu (podrobné zobrazení)" -#: core/docs/drf/viewsets.py:419 core/docs/drf/viewsets.py:443 -#: core/docs/drf/viewsets.py:459 core/docs/drf/viewsets.py:475 -#: core/docs/drf/viewsets.py:491 core/docs/drf/viewsets.py:507 +#: engine/core/docs/drf/viewsets.py:435 engine/core/docs/drf/viewsets.py:459 +#: engine/core/docs/drf/viewsets.py:475 engine/core/docs/drf/viewsets.py:491 +#: engine/core/docs/drf/viewsets.py:507 engine/core/docs/drf/viewsets.py:523 msgid "Product UUID or slug" msgstr "Identifikátor UUID produktu nebo Slug" -#: core/docs/drf/viewsets.py:429 core/docs/drf/viewsets.py:430 +#: engine/core/docs/drf/viewsets.py:445 engine/core/docs/drf/viewsets.py:446 msgid "create a product" msgstr "Vytvoření produktu" -#: core/docs/drf/viewsets.py:437 core/docs/drf/viewsets.py:438 +#: engine/core/docs/drf/viewsets.py:453 engine/core/docs/drf/viewsets.py:454 msgid "rewrite an existing product, preserving non-editable fields" msgstr "" "Přepsání existujícího produktu se zachováním polí, která nelze editovat" -#: core/docs/drf/viewsets.py:453 core/docs/drf/viewsets.py:454 +#: engine/core/docs/drf/viewsets.py:469 engine/core/docs/drf/viewsets.py:470 msgid "" "update some fields of an existing product, preserving non-editable fields" msgstr "" "Aktualizace některých polí existujícího produktu se zachováním polí, která " "nelze upravovat." -#: core/docs/drf/viewsets.py:469 core/docs/drf/viewsets.py:470 +#: engine/core/docs/drf/viewsets.py:485 engine/core/docs/drf/viewsets.py:486 msgid "delete a product" msgstr "Odstranění produktu" -#: core/docs/drf/viewsets.py:485 core/docs/drf/viewsets.py:486 +#: engine/core/docs/drf/viewsets.py:501 engine/core/docs/drf/viewsets.py:502 msgid "lists all permitted feedbacks for a product" msgstr "seznam všech povolených zpětných vazeb pro produkt" -#: core/docs/drf/viewsets.py:502 +#: engine/core/docs/drf/viewsets.py:518 msgid "returns a snapshot of the product's SEO meta data" msgstr "Vrátí snímek meta dat SEO produktu." -#: core/docs/drf/viewsets.py:520 +#: engine/core/docs/drf/viewsets.py:536 msgid "list all addresses" msgstr "Seznam všech adres" -#: core/docs/drf/viewsets.py:527 +#: engine/core/docs/drf/viewsets.py:543 msgid "retrieve a single address" msgstr "Získání jedné adresy" -#: core/docs/drf/viewsets.py:534 +#: engine/core/docs/drf/viewsets.py:550 msgid "create a new address" msgstr "Vytvoření nové adresy" -#: core/docs/drf/viewsets.py:542 +#: engine/core/docs/drf/viewsets.py:558 msgid "delete an address" msgstr "Odstranění adresy" -#: core/docs/drf/viewsets.py:549 +#: engine/core/docs/drf/viewsets.py:565 msgid "update an entire address" msgstr "Aktualizace celé adresy" -#: core/docs/drf/viewsets.py:557 +#: engine/core/docs/drf/viewsets.py:573 msgid "partially update an address" msgstr "Částečná aktualizace adresy" -#: core/docs/drf/viewsets.py:565 +#: engine/core/docs/drf/viewsets.py:581 msgid "autocomplete address suggestions" msgstr "Automatické dokončování zadávání adresy" -#: core/docs/drf/viewsets.py:570 +#: engine/core/docs/drf/viewsets.py:586 msgid "raw data query string, please append with data from geo-IP endpoint" msgstr "" "Řetězec dotazu na nezpracovaná data, doplňte prosím data z koncového bodu " "geo-IP" -#: core/docs/drf/viewsets.py:576 +#: engine/core/docs/drf/viewsets.py:592 msgid "limit the results amount, 1 < limit < 10, default: 5" msgstr "omezuje množství výsledků, 1 < limit < 10, výchozí: 5" -#: core/docs/drf/viewsets.py:589 +#: engine/core/docs/drf/viewsets.py:605 msgid "list all feedbacks (simple view)" msgstr "seznam všech ohlasů (jednoduché zobrazení)" -#: core/docs/drf/viewsets.py:593 +#: engine/core/docs/drf/viewsets.py:609 msgid "retrieve a single feedback (detailed view)" msgstr "načtení jedné zpětné vazby (podrobné zobrazení)." -#: core/docs/drf/viewsets.py:597 +#: engine/core/docs/drf/viewsets.py:613 msgid "create a feedback" msgstr "vytvořit zpětnou vazbu" -#: core/docs/drf/viewsets.py:601 +#: engine/core/docs/drf/viewsets.py:617 msgid "delete a feedback" msgstr "odstranit zpětnou vazbu" -#: core/docs/drf/viewsets.py:605 +#: engine/core/docs/drf/viewsets.py:621 msgid "rewrite an existing feedback saving non-editables" msgstr "přepsat existující zpětnou vazbu a uložit neupravitelné položky." -#: core/docs/drf/viewsets.py:609 +#: engine/core/docs/drf/viewsets.py:625 msgid "rewrite some fields of an existing feedback saving non-editables" msgstr "" "Přepsat některá pole existující kategorie a uložit neupravitelné položky" -#: core/docs/drf/viewsets.py:616 +#: engine/core/docs/drf/viewsets.py:632 msgid "list all order–product relations (simple view)" msgstr "seznam všech vztahů objednávka-produkt (jednoduché zobrazení)" -#: core/docs/drf/viewsets.py:623 +#: engine/core/docs/drf/viewsets.py:639 msgid "retrieve a single order–product relation (detailed view)" msgstr "načtení jednoho vztahu zakázka-produkt (podrobné zobrazení)" -#: core/docs/drf/viewsets.py:630 +#: engine/core/docs/drf/viewsets.py:646 msgid "create a new order–product relation" msgstr "vytvořit nový vztah objednávka-produkt" -#: core/docs/drf/viewsets.py:637 +#: engine/core/docs/drf/viewsets.py:653 msgid "replace an existing order–product relation" msgstr "nahradit existující vztah objednávka-produkt" -#: core/docs/drf/viewsets.py:644 +#: engine/core/docs/drf/viewsets.py:660 msgid "partially update an existing order–product relation" msgstr "částečně aktualizovat existující vztah objednávka-produkt" -#: core/docs/drf/viewsets.py:651 +#: engine/core/docs/drf/viewsets.py:667 msgid "delete an order–product relation" msgstr "odstranit vztah objednávka-produkt" -#: core/docs/drf/viewsets.py:658 +#: engine/core/docs/drf/viewsets.py:674 msgid "add or remove feedback on an order–product relation" msgstr "přidat nebo odebrat zpětnou vazbu na vztah objednávka-produkt." -#: core/docs/drf/viewsets.py:672 +#: engine/core/docs/drf/viewsets.py:688 msgid "list all brands (simple view)" msgstr "Seznam všech značek (jednoduché zobrazení)" -#: core/docs/drf/viewsets.py:676 +#: engine/core/docs/drf/viewsets.py:692 msgid "retrieve a single brand (detailed view)" msgstr "Získání jedné značky (podrobné zobrazení)" -#: core/docs/drf/viewsets.py:680 +#: engine/core/docs/drf/viewsets.py:697 engine/core/docs/drf/viewsets.py:725 +msgid "Brand UUID or slug" +msgstr "Značka UUID nebo slimák" + +#: engine/core/docs/drf/viewsets.py:704 msgid "create a brand" msgstr "Vytvoření značky" -#: core/docs/drf/viewsets.py:684 +#: engine/core/docs/drf/viewsets.py:708 msgid "delete a brand" msgstr "Odstranění značky" -#: core/docs/drf/viewsets.py:688 +#: engine/core/docs/drf/viewsets.py:712 msgid "rewrite an existing brand saving non-editables" msgstr "Přepsání existující značky s uložením neupravitelných položek" -#: core/docs/drf/viewsets.py:692 +#: engine/core/docs/drf/viewsets.py:716 msgid "rewrite some fields of an existing brand saving non-editables" msgstr "" "Přepsat některá pole existující kategorie a uložit neupravitelné položky" -#: core/docs/drf/viewsets.py:696 +#: engine/core/docs/drf/viewsets.py:720 msgid "SEO Meta snapshot for brand" msgstr "SEO Meta snímek pro značku" -#: core/docs/drf/viewsets.py:703 +#: engine/core/docs/drf/viewsets.py:735 msgid "list all vendors (simple view)" msgstr "Seznam všech prodejců (jednoduché zobrazení)" -#: core/docs/drf/viewsets.py:707 +#: engine/core/docs/drf/viewsets.py:739 msgid "retrieve a single vendor (detailed view)" msgstr "Získání jednoho prodejce (podrobné zobrazení)" -#: core/docs/drf/viewsets.py:711 +#: engine/core/docs/drf/viewsets.py:743 msgid "create a vendor" msgstr "Vytvoření prodejce" -#: core/docs/drf/viewsets.py:715 +#: engine/core/docs/drf/viewsets.py:747 msgid "delete a vendor" msgstr "Odstranění prodejce" -#: core/docs/drf/viewsets.py:719 +#: engine/core/docs/drf/viewsets.py:751 msgid "rewrite an existing vendor saving non-editables" msgstr "Přepsání existujícího dodavatele s uložením neupravitelných položek" -#: core/docs/drf/viewsets.py:723 +#: engine/core/docs/drf/viewsets.py:755 msgid "rewrite some fields of an existing vendor saving non-editables" msgstr "" "Přepsat některá pole existující kategorie a uložit neupravitelné položky" -#: core/docs/drf/viewsets.py:730 +#: engine/core/docs/drf/viewsets.py:762 msgid "list all product images (simple view)" msgstr "Seznam všech obrázků produktu (jednoduché zobrazení)" -#: core/docs/drf/viewsets.py:734 +#: engine/core/docs/drf/viewsets.py:766 msgid "retrieve a single product image (detailed view)" msgstr "Získání jednoho obrázku produktu (podrobné zobrazení)" -#: core/docs/drf/viewsets.py:738 +#: engine/core/docs/drf/viewsets.py:770 msgid "create a product image" msgstr "Vytvoření obrázku produktu" -#: core/docs/drf/viewsets.py:742 +#: engine/core/docs/drf/viewsets.py:774 msgid "delete a product image" msgstr "Odstranění obrázku produktu" -#: core/docs/drf/viewsets.py:746 +#: engine/core/docs/drf/viewsets.py:778 msgid "rewrite an existing product image saving non-editables" msgstr "" "Přepsání existujícího obrázku produktu s uložením neupravitelných položek" -#: core/docs/drf/viewsets.py:750 +#: engine/core/docs/drf/viewsets.py:782 msgid "rewrite some fields of an existing product image saving non-editables" msgstr "" "Přepsat některá pole existující kategorie a uložit neupravitelné položky" -#: core/docs/drf/viewsets.py:757 +#: engine/core/docs/drf/viewsets.py:789 msgid "list all promo codes (simple view)" msgstr "Seznam všech propagačních kódů (jednoduché zobrazení)" -#: core/docs/drf/viewsets.py:761 +#: engine/core/docs/drf/viewsets.py:793 msgid "retrieve a single promo code (detailed view)" msgstr "Získání jednoho propagačního kódu (podrobné zobrazení)" -#: core/docs/drf/viewsets.py:765 +#: engine/core/docs/drf/viewsets.py:797 msgid "create a promo code" msgstr "Vytvoření propagačního kódu" -#: core/docs/drf/viewsets.py:769 +#: engine/core/docs/drf/viewsets.py:801 msgid "delete a promo code" msgstr "Odstranění propagačního kódu" -#: core/docs/drf/viewsets.py:773 +#: engine/core/docs/drf/viewsets.py:805 msgid "rewrite an existing promo code saving non-editables" msgstr "Přepsání stávajícího propagačního kódu, který není určen k úpravám" -#: core/docs/drf/viewsets.py:777 +#: engine/core/docs/drf/viewsets.py:809 msgid "rewrite some fields of an existing promo code saving non-editables" msgstr "" "Přepsat některá pole existující kategorie a uložit neupravitelné položky" -#: core/docs/drf/viewsets.py:784 +#: engine/core/docs/drf/viewsets.py:816 msgid "list all promotions (simple view)" msgstr "Seznam všech propagačních akcí (jednoduché zobrazení)" -#: core/docs/drf/viewsets.py:788 +#: engine/core/docs/drf/viewsets.py:820 msgid "retrieve a single promotion (detailed view)" msgstr "Získání jednoho povýšení (podrobné zobrazení)" -#: core/docs/drf/viewsets.py:792 +#: engine/core/docs/drf/viewsets.py:824 msgid "create a promotion" msgstr "Vytvořit propagaci" -#: core/docs/drf/viewsets.py:796 +#: engine/core/docs/drf/viewsets.py:828 msgid "delete a promotion" msgstr "Odstranění povýšení" -#: core/docs/drf/viewsets.py:800 +#: engine/core/docs/drf/viewsets.py:832 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" -#: core/docs/drf/viewsets.py:804 +#: engine/core/docs/drf/viewsets.py:836 msgid "rewrite some fields of an existing promotion saving non-editables" msgstr "" "Přepsat některá pole existující kategorie a uložit neupravitelné položky" -#: core/docs/drf/viewsets.py:811 +#: engine/core/docs/drf/viewsets.py:843 msgid "list all stocks (simple view)" msgstr "Seznam všech zásob (jednoduché zobrazení)" -#: core/docs/drf/viewsets.py:815 +#: engine/core/docs/drf/viewsets.py:847 msgid "retrieve a single stock (detailed view)" msgstr "Získání jedné zásoby (podrobné zobrazení)" -#: core/docs/drf/viewsets.py:819 +#: engine/core/docs/drf/viewsets.py:851 msgid "create a stock record" msgstr "Vytvoření skladového záznamu" -#: core/docs/drf/viewsets.py:823 +#: engine/core/docs/drf/viewsets.py:855 msgid "delete a stock record" msgstr "Odstranění skladového záznamu" -#: core/docs/drf/viewsets.py:827 +#: engine/core/docs/drf/viewsets.py:859 msgid "rewrite an existing stock record saving non-editables" msgstr "" "Přepsání existujícího skladového záznamu s uložením neupravitelných položek" -#: core/docs/drf/viewsets.py:831 +#: engine/core/docs/drf/viewsets.py:863 msgid "rewrite some fields of an existing stock record saving non-editables" msgstr "" "Přepsat některá pole existující kategorie a uložit neupravitelné položky" -#: core/docs/drf/viewsets.py:838 +#: engine/core/docs/drf/viewsets.py:870 msgid "list all product tags (simple view)" msgstr "Seznam všech značek produktu (jednoduché zobrazení)" -#: core/docs/drf/viewsets.py:842 +#: engine/core/docs/drf/viewsets.py:874 msgid "retrieve a single product tag (detailed view)" msgstr "Získání jedné značky produktu (podrobné zobrazení)" -#: core/docs/drf/viewsets.py:846 +#: engine/core/docs/drf/viewsets.py:878 msgid "create a product tag" msgstr "Vytvoření značky produktu" -#: core/docs/drf/viewsets.py:850 +#: engine/core/docs/drf/viewsets.py:882 msgid "delete a product tag" msgstr "Odstranění značky produktu" -#: core/docs/drf/viewsets.py:854 +#: engine/core/docs/drf/viewsets.py:886 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" -#: core/docs/drf/viewsets.py:858 +#: engine/core/docs/drf/viewsets.py:890 msgid "rewrite some fields of an existing product tag saving non-editables" msgstr "" "Přepsat některá pole existující kategorie a uložit neupravitelné položky" -#: core/elasticsearch/__init__.py:118 core/elasticsearch/__init__.py:550 +#: engine/core/elasticsearch/__init__.py:122 +#: engine/core/elasticsearch/__init__.py:570 msgid "no search term provided." msgstr "Nebyl zadán žádný vyhledávací termín." -#: core/filters.py:69 core/filters.py:412 core/filters.py:539 +#: engine/core/filters.py:69 engine/core/filters.py:426 +#: engine/core/filters.py:553 msgid "Search" msgstr "Vyhledávání" -#: core/filters.py:70 core/filters.py:569 core/filters.py:598 +#: engine/core/filters.py:70 engine/core/filters.py:583 +#: engine/core/filters.py:612 msgid "UUID" msgstr "UUID" -#: core/filters.py:71 core/filters.py:414 core/filters.py:541 +#: engine/core/filters.py:71 engine/core/filters.py:428 +#: engine/core/filters.py:555 msgid "Name" msgstr "Název" -#: core/filters.py:72 core/filters.py:543 +#: engine/core/filters.py:72 engine/core/filters.py:557 msgid "Categories" msgstr "Kategorie" -#: core/filters.py:74 +#: engine/core/filters.py:74 msgid "Categories Slugs" msgstr "Kategorie Slimáci" -#: core/filters.py:75 core/filters.py:422 +#: engine/core/filters.py:75 engine/core/filters.py:436 msgid "Tags" msgstr "Štítky" -#: core/filters.py:76 +#: engine/core/filters.py:76 msgid "Min Price" msgstr "Minimální cena" -#: core/filters.py:77 +#: engine/core/filters.py:77 msgid "Max Price" msgstr "Max Price" -#: core/filters.py:78 +#: engine/core/filters.py:78 msgid "Is Active" msgstr "Je aktivní" -#: core/filters.py:79 +#: engine/core/filters.py:79 msgid "Brand" msgstr "Značka" -#: core/filters.py:80 +#: engine/core/filters.py:80 msgid "Attributes" msgstr "Atributy" -#: core/filters.py:81 +#: engine/core/filters.py:81 msgid "Quantity" msgstr "Množství" -#: core/filters.py:82 core/filters.py:416 core/filters.py:542 -#: core/models.py:322 core/models.py:483 core/models.py:637 +#: engine/core/filters.py:82 engine/core/filters.py:430 +#: engine/core/filters.py:556 engine/core/models.py:321 +#: engine/core/models.py:482 engine/core/models.py:637 msgid "Slug" msgstr "Slug" -#: core/filters.py:83 +#: engine/core/filters.py:83 msgid "Is Digital" msgstr "Je digitální" -#: core/filters.py:84 +#: engine/core/filters.py:84 msgid "Include sub-categories" msgstr "Zahrnout podkategorie" -#: core/filters.py:87 +#: engine/core/filters.py:87 msgid "Include personal ordered" msgstr "Zahrnout osobně objednané produkty" -#: core/filters.py:89 core/models.py:641 +#: engine/core/filters.py:89 engine/core/models.py:641 msgid "SKU" msgstr "SKU" -#: core/filters.py:173 +#: engine/core/filters.py:184 msgid "there must be a category_uuid to use include_subcategories flag" msgstr "" "Pro použití příznaku include_subcategories musí existovat category_uuid." -#: core/filters.py:339 +#: engine/core/filters.py:353 msgid "Search (ID, product name or part number)" msgstr "Vyhledávání (ID, název produktu nebo číslo dílu)" -#: core/filters.py:342 +#: engine/core/filters.py:356 msgid "Bought after (inclusive)" msgstr "Koupeno po (včetně)" -#: core/filters.py:343 +#: engine/core/filters.py:357 msgid "Bought before (inclusive)" msgstr "Koupeno před (včetně)" -#: core/filters.py:346 core/filters.py:393 core/filters.py:600 +#: engine/core/filters.py:360 engine/core/filters.py:407 +#: engine/core/filters.py:614 msgid "User email" msgstr "E-mail uživatele" -#: core/filters.py:347 core/filters.py:394 core/filters.py:578 -#: core/filters.py:599 +#: engine/core/filters.py:361 engine/core/filters.py:408 +#: engine/core/filters.py:592 engine/core/filters.py:613 msgid "User UUID" msgstr "UUID uživatele" -#: core/filters.py:348 +#: engine/core/filters.py:362 msgid "Status" msgstr "Stav" -#: core/filters.py:352 +#: engine/core/filters.py:366 msgid "Human Readable ID" msgstr "Lidsky čitelné ID" -#: core/filters.py:415 +#: engine/core/filters.py:429 msgid "Parent" msgstr "Rodič" -#: core/filters.py:419 +#: engine/core/filters.py:433 msgid "Whole category(has at least 1 product or not)" msgstr "Celá kategorie (má nebo nemá alespoň 1 produkt)" -#: core/filters.py:423 +#: engine/core/filters.py:437 msgid "Level" msgstr "Úroveň" -#: core/filters.py:573 +#: engine/core/filters.py:587 msgid "Product UUID" msgstr "UUID produktu" -#: core/graphene/mutations.py:41 +#: engine/core/graphene/mutations.py:41 msgid "key to look for in or set into the cache" msgstr "Klíč k vyhledání v keši nebo nastavení do keše" -#: core/graphene/mutations.py:42 +#: engine/core/graphene/mutations.py:42 msgid "data to store in cache" msgstr "Data k uložení do mezipaměti" -#: core/graphene/mutations.py:45 +#: engine/core/graphene/mutations.py:45 msgid "timeout in seconds to set the data for into the cache" msgstr "Časový limit v sekundách pro nastavení dat do mezipaměti" -#: core/graphene/mutations.py:48 +#: engine/core/graphene/mutations.py:48 msgid "cached data" msgstr "Data uložená v mezipaměti" -#: core/graphene/mutations.py:63 +#: engine/core/graphene/mutations.py:63 msgid "camelized JSON data from the requested URL" msgstr "Kamelizovaná data JSON z požadované adresy URL" -#: core/graphene/mutations.py:68 core/views.py:232 +#: engine/core/graphene/mutations.py:68 engine/core/views.py:231 msgid "only URLs starting with http(s):// are allowed" msgstr "Povoleny jsou pouze adresy URL začínající http(s)://." -#: core/graphene/mutations.py:84 +#: engine/core/graphene/mutations.py:84 msgid "add a product to the order" msgstr "Přidání produktu do objednávky" -#: core/graphene/mutations.py:105 core/graphene/mutations.py:132 -#: core/graphene/mutations.py:240 core/graphene/mutations.py:288 +#: engine/core/graphene/mutations.py:105 engine/core/graphene/mutations.py:132 +#: engine/core/graphene/mutations.py:240 engine/core/graphene/mutations.py:288 #, python-brace-format msgid "order {order_uuid} not found" msgstr "Objednávka {order_uuid} nebyla nalezena!" -#: core/graphene/mutations.py:111 core/graphene/mutations.py:160 +#: engine/core/graphene/mutations.py:111 engine/core/graphene/mutations.py:160 msgid "remove a product from the order" msgstr "Odstranění produktu z objednávky" -#: core/graphene/mutations.py:138 +#: engine/core/graphene/mutations.py:138 msgid "remove all products from the order" msgstr "Odstranění všech produktů z objednávky" -#: core/graphene/mutations.py:183 +#: engine/core/graphene/mutations.py:183 msgid "buy an order" msgstr "Koupit objednávku" -#: core/graphene/mutations.py:212 core/graphene/mutations.py:266 +#: engine/core/graphene/mutations.py:212 engine/core/graphene/mutations.py:266 msgid "please provide either order_uuid or order_hr_id - mutually exclusive" msgstr "Zadejte prosím order_uuid nebo order_hr_id - vzájemně se vylučují!" -#: core/graphene/mutations.py:237 core/graphene/mutations.py:502 -#: core/graphene/mutations.py:544 core/viewsets.py:704 +#: engine/core/graphene/mutations.py:237 engine/core/graphene/mutations.py:502 +#: engine/core/graphene/mutations.py:544 engine/core/viewsets.py:704 msgid "wrong type came from order.buy() method: {type(instance)!s}" msgstr "Z metody order.buy() pochází nesprávný typ: {type(instance)!s}" -#: core/graphene/mutations.py:246 +#: engine/core/graphene/mutations.py:246 msgid "perform an action on a list of products in the order" msgstr "Provedení akce na seznamu produktů v objednávce" -#: core/graphene/mutations.py:251 +#: engine/core/graphene/mutations.py:251 msgid "remove/add" msgstr "Odebrat/přidat" -#: core/graphene/mutations.py:283 core/graphene/mutations.py:324 +#: engine/core/graphene/mutations.py:283 engine/core/graphene/mutations.py:324 msgid "action must be either add or remove" msgstr "Akce musí být buď \"přidat\", nebo \"odebrat\"!" -#: core/graphene/mutations.py:294 +#: engine/core/graphene/mutations.py:294 msgid "perform an action on a list of products in the wishlist" msgstr "Provedení akce na seznamu produktů v seznamu přání" -#: core/graphene/mutations.py:312 +#: engine/core/graphene/mutations.py:312 msgid "please provide wishlist_uuid value" msgstr "Zadejte prosím hodnotu `wishlist_uuid`." -#: core/graphene/mutations.py:329 core/graphene/mutations.py:405 -#: core/graphene/mutations.py:433 core/graphene/mutations.py:461 -#: core/graphene/mutations.py:505 +#: engine/core/graphene/mutations.py:329 engine/core/graphene/mutations.py:405 +#: engine/core/graphene/mutations.py:433 engine/core/graphene/mutations.py:461 +#: engine/core/graphene/mutations.py:505 #, python-brace-format msgid "wishlist {wishlist_uuid} not found" msgstr "Seznam přání {wishlist_uuid} nenalezen!" -#: core/graphene/mutations.py:383 +#: engine/core/graphene/mutations.py:383 msgid "add a product to the wishlist" msgstr "Přidání produktu do objednávky" -#: core/graphene/mutations.py:411 +#: engine/core/graphene/mutations.py:411 msgid "remove a product from the wishlist" msgstr "Odstranění produktu z objednávky" -#: core/graphene/mutations.py:439 +#: engine/core/graphene/mutations.py:439 msgid "remove all products from the wishlist" msgstr "Odstranění produktu z objednávky" -#: core/graphene/mutations.py:467 +#: engine/core/graphene/mutations.py:467 msgid "buy all products from the wishlist" msgstr "Odstranění produktu z objednávky" -#: core/graphene/mutations.py:511 +#: engine/core/graphene/mutations.py:511 msgid "buy a product" msgstr "Koupit objednávku" -#: core/graphene/mutations.py:517 +#: engine/core/graphene/mutations.py:517 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." -#: core/graphene/mutations.py:550 +#: engine/core/graphene/mutations.py:550 msgid "add or delete a feedback for orderproduct" msgstr "Přidání nebo odstranění zpětné vazby pro objednávkuprodukt" -#: core/graphene/mutations.py:574 +#: engine/core/graphene/mutations.py:574 msgid "action must be either `add` or `remove`" msgstr "Akce musí být buď `add` nebo `remove`!" -#: core/graphene/mutations.py:577 +#: engine/core/graphene/mutations.py:577 #, python-brace-format msgid "order product {order_product_uuid} not found" msgstr "Orderproduct {order_product_uuid} nenalezen!" -#: core/graphene/mutations.py:644 +#: engine/core/graphene/mutations.py:644 msgid "original address string provided by the user" msgstr "Původní řetězec adresy zadaný uživatelem" -#: core/graphene/mutations.py:680 core/models.py:930 core/models.py:943 -#: core/models.py:1358 core/models.py:1387 core/models.py:1412 -#: core/viewsets.py:707 +#: engine/core/graphene/mutations.py:680 engine/core/models.py:941 +#: engine/core/models.py:954 engine/core/models.py:1369 +#: engine/core/models.py:1398 engine/core/models.py:1423 +#: engine/core/viewsets.py:707 #, python-brace-format msgid "{name} does not exist: {uuid}" msgstr "{name} neexistuje: {uuid}!" -#: core/graphene/mutations.py:694 +#: engine/core/graphene/mutations.py:694 msgid "limit must be between 1 and 10" msgstr "Limit musí být mezi 1 a 10" -#: core/graphene/mutations.py:743 +#: engine/core/graphene/mutations.py:743 msgid "elasticsearch - works like a charm" msgstr "ElasticSearch - funguje jako kouzlo" -#: core/graphene/object_types.py:82 core/graphene/object_types.py:370 -#: core/graphene/object_types.py:417 core/models.py:754 core/models.py:1225 -#: core/models.py:1823 +#: engine/core/graphene/object_types.py:82 +#: engine/core/graphene/object_types.py:370 +#: engine/core/graphene/object_types.py:417 engine/core/models.py:765 +#: engine/core/models.py:1236 engine/core/models.py:1883 msgid "attributes" msgstr "Atributy" -#: core/graphene/object_types.py:95 +#: engine/core/graphene/object_types.py:95 msgid "grouped attributes" msgstr "Seskupené atributy" -#: core/graphene/object_types.py:102 +#: engine/core/graphene/object_types.py:102 msgid "groups of attributes" msgstr "Skupiny atributů" -#: core/graphene/object_types.py:116 core/graphene/object_types.py:193 -#: core/graphene/object_types.py:223 core/models.py:426 +#: engine/core/graphene/object_types.py:116 +#: engine/core/graphene/object_types.py:193 +#: engine/core/graphene/object_types.py:223 engine/core/models.py:425 msgid "categories" msgstr "Kategorie" -#: core/graphene/object_types.py:124 core/models.py:497 +#: engine/core/graphene/object_types.py:124 engine/core/models.py:496 msgid "brands" msgstr "Značky" -#: core/graphene/object_types.py:195 +#: engine/core/graphene/object_types.py:195 msgid "category image url" msgstr "Kategorie" -#: core/graphene/object_types.py:196 core/graphene/object_types.py:317 -#: core/models.py:284 +#: engine/core/graphene/object_types.py:196 +#: engine/core/graphene/object_types.py:317 engine/core/models.py:283 msgid "markup percentage" msgstr "Procento přirážky" -#: core/graphene/object_types.py:199 +#: engine/core/graphene/object_types.py:199 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." -#: core/graphene/object_types.py:203 -msgid "" -"minimum and maximum prices for products in this category, if available." +#: engine/core/graphene/object_types.py:203 +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." -#: core/graphene/object_types.py:205 +#: engine/core/graphene/object_types.py:205 msgid "tags for this category" msgstr "Štítky pro tuto kategorii" -#: core/graphene/object_types.py:206 +#: engine/core/graphene/object_types.py:206 msgid "products in this category" msgstr "Produkty v této kategorii" -#: core/graphene/object_types.py:324 core/models.py:189 +#: engine/core/graphene/object_types.py:324 engine/core/models.py:188 msgid "vendors" msgstr "Prodejci" -#: core/graphene/object_types.py:328 +#: engine/core/graphene/object_types.py:328 msgid "Latitude (Y coordinate)" msgstr "Zeměpisná šířka (souřadnice Y)" -#: core/graphene/object_types.py:329 +#: engine/core/graphene/object_types.py:329 msgid "Longitude (X coordinate)" msgstr "Zeměpisná délka (souřadnice X)" -#: core/graphene/object_types.py:358 +#: engine/core/graphene/object_types.py:358 msgid "comment" msgstr "Jak na to" -#: core/graphene/object_types.py:359 core/graphene/object_types.py:483 +#: engine/core/graphene/object_types.py:359 +#: engine/core/graphene/object_types.py:483 msgid "rating value from 1 to 10, inclusive, or 0 if not set." msgstr "Hodnota hodnocení od 1 do 10 včetně nebo 0, pokud není nastaveno." -#: core/graphene/object_types.py:366 +#: engine/core/graphene/object_types.py:366 msgid "represents feedback from a user." msgstr "Představuje zpětnou vazbu od uživatele." -#: core/graphene/object_types.py:371 core/graphene/object_types.py:418 -#: core/models.py:1219 +#: engine/core/graphene/object_types.py:371 +#: engine/core/graphene/object_types.py:418 engine/core/models.py:1230 msgid "notifications" msgstr "Oznámení" -#: core/graphene/object_types.py:372 +#: engine/core/graphene/object_types.py:372 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é" -#: core/graphene/object_types.py:373 core/models.py:1939 +#: engine/core/graphene/object_types.py:373 engine/core/models.py:1722 msgid "feedback" msgstr "Zpětná vazba" -#: core/graphene/object_types.py:407 +#: engine/core/graphene/object_types.py:407 msgid "a list of order products in this order" msgstr "Seznam objednaných produktů v tomto pořadí" -#: core/graphene/object_types.py:409 core/models.py:1189 +#: engine/core/graphene/object_types.py:409 engine/core/models.py:1200 msgid "billing address" msgstr "Fakturační adresa" -#: core/graphene/object_types.py:412 +#: engine/core/graphene/object_types.py:412 msgid "" "shipping address for this order, leave blank if same as billing address or " "if not applicable" @@ -1288,201 +1314,209 @@ msgstr "" "Dodací adresa pro tuto objednávku, pokud je stejná jako fakturační adresa " "nebo pokud není použitelná, ponechte prázdné." -#: core/graphene/object_types.py:414 +#: engine/core/graphene/object_types.py:414 msgid "total price of this order" msgstr "Celková cena této objednávky" -#: core/graphene/object_types.py:415 +#: engine/core/graphene/object_types.py:415 msgid "total quantity of products in order" msgstr "Celkové množství objednaných produktů" -#: core/graphene/object_types.py:416 +#: engine/core/graphene/object_types.py:416 msgid "are all products in the order digital" msgstr "Jsou všechny produkty v objednávce digitální" -#: core/graphene/object_types.py:419 +#: engine/core/graphene/object_types.py:419 msgid "transactions for this order" msgstr "Transakce pro tuto objednávku" -#: core/graphene/object_types.py:438 core/models.py:1253 +#: engine/core/graphene/object_types.py:438 engine/core/models.py:1264 msgid "orders" msgstr "Objednávky" -#: core/graphene/object_types.py:459 +#: engine/core/graphene/object_types.py:459 msgid "image url" msgstr "Adresa URL obrázku" -#: core/graphene/object_types.py:466 +#: engine/core/graphene/object_types.py:466 msgid "product's images" msgstr "Obrázky produktu" -#: core/graphene/object_types.py:473 core/models.py:425 core/models.py:579 +#: engine/core/graphene/object_types.py:473 engine/core/models.py:424 +#: engine/core/models.py:579 msgid "category" msgstr "Kategorie" -#: core/graphene/object_types.py:475 core/models.py:1940 +#: engine/core/graphene/object_types.py:475 engine/core/models.py:1723 msgid "feedbacks" msgstr "Zpětná vazba" -#: core/graphene/object_types.py:476 core/models.py:496 core/models.py:588 +#: engine/core/graphene/object_types.py:476 engine/core/models.py:495 +#: engine/core/models.py:588 msgid "brand" msgstr "Značka" -#: core/graphene/object_types.py:477 core/models.py:107 +#: engine/core/graphene/object_types.py:477 engine/core/models.py:106 msgid "attribute groups" msgstr "Skupiny atributů" -#: core/graphene/object_types.py:478 -#: core/templates/digital_order_created_email.html:111 -#: core/templates/digital_order_delivered_email.html:109 -#: core/templates/shipped_order_created_email.html:109 -#: core/templates/shipped_order_delivered_email.html:109 +#: engine/core/graphene/object_types.py:478 +#: engine/core/templates/digital_order_created_email.html:111 +#: engine/core/templates/digital_order_delivered_email.html:109 +#: engine/core/templates/shipped_order_created_email.html:109 +#: engine/core/templates/shipped_order_delivered_email.html:109 msgid "price" msgstr "Cena" -#: core/graphene/object_types.py:479 -#: core/templates/digital_order_created_email.html:110 -#: core/templates/digital_order_delivered_email.html:108 -#: core/templates/shipped_order_created_email.html:108 -#: core/templates/shipped_order_delivered_email.html:108 +#: engine/core/graphene/object_types.py:479 +#: engine/core/templates/digital_order_created_email.html:110 +#: engine/core/templates/digital_order_delivered_email.html:108 +#: engine/core/templates/shipped_order_created_email.html:108 +#: engine/core/templates/shipped_order_delivered_email.html:108 msgid "quantity" msgstr "Množství" -#: core/graphene/object_types.py:480 +#: engine/core/graphene/object_types.py:480 msgid "number of feedbacks" msgstr "Počet zpětných vazeb" -#: core/graphene/object_types.py:481 +#: engine/core/graphene/object_types.py:481 msgid "only available for personal orders" msgstr "Produkty jsou k dispozici pouze pro osobní objednávky" -#: core/graphene/object_types.py:507 core/models.py:651 +#: engine/core/graphene/object_types.py:484 +msgid "discount price" +msgstr "Cena se slevou" + +#: engine/core/graphene/object_types.py:508 engine/core/models.py:651 msgid "products" msgstr "Produkty" -#: core/graphene/object_types.py:607 +#: engine/core/graphene/object_types.py:611 msgid "promocodes" msgstr "Propagační kódy" -#: core/graphene/object_types.py:617 +#: engine/core/graphene/object_types.py:621 msgid "products on sale" msgstr "Produkty v prodeji" -#: core/graphene/object_types.py:624 core/models.py:879 +#: engine/core/graphene/object_types.py:628 engine/core/models.py:890 msgid "promotions" msgstr "Propagační akce" -#: core/graphene/object_types.py:628 core/models.py:188 +#: engine/core/graphene/object_types.py:632 engine/core/models.py:187 msgid "vendor" msgstr "Prodejce" -#: core/graphene/object_types.py:629 core/models.py:650 -#: core/templates/digital_order_created_email.html:109 -#: core/templates/digital_order_delivered_email.html:107 -#: core/templates/shipped_order_created_email.html:107 -#: core/templates/shipped_order_delivered_email.html:107 +#: engine/core/graphene/object_types.py:633 engine/core/models.py:650 +#: 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 +#: engine/core/templates/shipped_order_delivered_email.html:107 msgid "product" msgstr "Produkt" -#: core/graphene/object_types.py:640 core/models.py:902 +#: engine/core/graphene/object_types.py:644 engine/core/models.py:913 msgid "wishlisted products" msgstr "Produkty uvedené na seznamu přání" -#: core/graphene/object_types.py:646 core/models.py:919 +#: engine/core/graphene/object_types.py:650 engine/core/models.py:930 msgid "wishlists" msgstr "Seznamy přání" -#: core/graphene/object_types.py:650 +#: engine/core/graphene/object_types.py:654 msgid "tagged products" msgstr "Produkty s příznakem" -#: core/graphene/object_types.py:657 core/models.py:225 core/models.py:594 +#: engine/core/graphene/object_types.py:661 engine/core/models.py:224 +#: engine/core/models.py:594 msgid "product tags" msgstr "Štítky produktu" -#: core/graphene/object_types.py:661 +#: engine/core/graphene/object_types.py:665 msgid "tagged categories" msgstr "Kategorie s příznakem" -#: core/graphene/object_types.py:668 +#: engine/core/graphene/object_types.py:672 msgid "categories tags" msgstr "Štítky kategorií" -#: core/graphene/object_types.py:672 +#: engine/core/graphene/object_types.py:676 msgid "project name" msgstr "Název projektu" -#: core/graphene/object_types.py:673 +#: engine/core/graphene/object_types.py:677 msgid "company email" msgstr "E-mail společnosti" -#: core/graphene/object_types.py:674 +#: engine/core/graphene/object_types.py:678 msgid "company name" msgstr "Název společnosti" -#: core/graphene/object_types.py:675 +#: engine/core/graphene/object_types.py:679 msgid "company address" msgstr "Adresa společnosti" -#: core/graphene/object_types.py:676 +#: engine/core/graphene/object_types.py:680 msgid "company phone number" msgstr "Telefonní číslo společnosti" -#: core/graphene/object_types.py:677 +#: engine/core/graphene/object_types.py:681 msgid "email from, sometimes it must be used instead of host user value" msgstr "" "'email from', někdy se musí použít místo hodnoty hostitelského uživatele." -#: core/graphene/object_types.py:678 +#: engine/core/graphene/object_types.py:682 msgid "email host user" msgstr "Uživatel hostitelského e-mailu" -#: core/graphene/object_types.py:679 +#: engine/core/graphene/object_types.py:683 msgid "maximum amount for payment" msgstr "Maximální částka pro platbu" -#: core/graphene/object_types.py:680 +#: engine/core/graphene/object_types.py:684 msgid "minimum amount for payment" msgstr "Minimální částka pro platbu" -#: core/graphene/object_types.py:681 +#: engine/core/graphene/object_types.py:685 msgid "analytics data" msgstr "Analytická data" -#: core/graphene/object_types.py:682 +#: engine/core/graphene/object_types.py:686 msgid "advertisement data" msgstr "Reklamní údaje" -#: core/graphene/object_types.py:685 +#: engine/core/graphene/object_types.py:689 msgid "company configuration" msgstr "Konfigurace" -#: core/graphene/object_types.py:689 +#: engine/core/graphene/object_types.py:693 msgid "language code" msgstr "Kód jazyka" -#: core/graphene/object_types.py:690 +#: engine/core/graphene/object_types.py:694 msgid "language name" msgstr "Název jazyka" -#: core/graphene/object_types.py:691 +#: engine/core/graphene/object_types.py:695 msgid "language flag, if exists :)" msgstr "Příznak jazyka, pokud existuje :)" -#: core/graphene/object_types.py:694 +#: engine/core/graphene/object_types.py:698 msgid "supported languages" msgstr "Získat seznam podporovaných jazyků" -#: core/graphene/object_types.py:725 core/graphene/object_types.py:726 -#: core/graphene/object_types.py:727 +#: engine/core/graphene/object_types.py:729 +#: engine/core/graphene/object_types.py:730 +#: engine/core/graphene/object_types.py:731 msgid "products search results" msgstr "Výsledky vyhledávání produktů" -#: core/graphene/object_types.py:728 +#: engine/core/graphene/object_types.py:732 msgid "posts search results" msgstr "Výsledky vyhledávání produktů" -#: core/models.py:76 +#: engine/core/models.py:75 msgid "" "Represents a group of attributes, which can be hierarchical. This class is " "used to manage and organize attribute groups. An attribute group can have a " @@ -1495,23 +1529,23 @@ msgstr "" "užitečné pro efektivnější kategorizaci a správu atributů v komplexním " "systému." -#: core/models.py:92 +#: engine/core/models.py:91 msgid "parent of this group" msgstr "Rodič této skupiny" -#: core/models.py:93 +#: engine/core/models.py:92 msgid "parent attribute group" msgstr "Nadřazená skupina atributů" -#: core/models.py:97 core/models.py:98 +#: engine/core/models.py:96 engine/core/models.py:97 msgid "attribute group's name" msgstr "Název skupiny atributů" -#: core/models.py:106 core/models.py:716 +#: engine/core/models.py:105 engine/core/models.py:727 msgid "attribute group" msgstr "Skupina atributů" -#: core/models.py:112 +#: engine/core/models.py:111 msgid "" "Represents a vendor entity capable of storing information about external " "vendors and their interaction requirements. The Vendor class is used to " @@ -1525,53 +1559,53 @@ 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." -#: core/models.py:125 +#: engine/core/models.py:124 msgid "stores credentials and endpoints required for vendor communication" msgstr "" "Ukládá pověření a koncové body potřebné pro komunikaci s rozhraním API " "dodavatele." -#: core/models.py:126 +#: engine/core/models.py:125 msgid "authentication info" msgstr "Informace o ověřování" -#: core/models.py:131 +#: engine/core/models.py:130 msgid "define the markup for products retrieved from this vendor" msgstr "Definice přirážky pro produkty získané od tohoto dodavatele" -#: core/models.py:132 +#: engine/core/models.py:131 msgid "vendor markup percentage" msgstr "Procento přirážky prodejce" -#: core/models.py:136 +#: engine/core/models.py:135 msgid "name of this vendor" msgstr "Název tohoto prodejce" -#: core/models.py:137 +#: engine/core/models.py:136 msgid "vendor name" msgstr "Název prodejce" -#: core/models.py:148 +#: engine/core/models.py:147 msgid "response file" msgstr "soubor s odpovědí" -#: core/models.py:149 +#: engine/core/models.py:148 msgid "vendor's last processing response" msgstr "poslední odpověď prodejce na zpracování" -#: core/models.py:155 +#: engine/core/models.py:154 msgid "vendor's integration file path" msgstr "Cesta k integračnímu souboru prodejce" -#: core/models.py:156 +#: engine/core/models.py:155 msgid "integration path" msgstr "Cesta integrace" -#: core/models.py:198 +#: engine/core/models.py:197 msgid "" "Represents a product tag used for classifying or identifying products. The " "ProductTag class is designed to uniquely identify and classify products " @@ -1585,27 +1619,27 @@ msgstr "" "přívětivého zobrazovacího názvu. Podporuje operace exportované " "prostřednictvím mixinů a poskytuje přizpůsobení metadat pro účely správy." -#: core/models.py:210 core/models.py:241 +#: engine/core/models.py:209 engine/core/models.py:240 msgid "internal tag identifier for the product tag" msgstr "Interní identifikátor značky produktu" -#: core/models.py:211 core/models.py:242 +#: engine/core/models.py:210 engine/core/models.py:241 msgid "tag name" msgstr "Název štítku" -#: core/models.py:215 core/models.py:246 +#: engine/core/models.py:214 engine/core/models.py:245 msgid "user-friendly name for the product tag" msgstr "Uživatelsky přívětivý název pro značku produktu" -#: core/models.py:216 core/models.py:247 +#: engine/core/models.py:215 engine/core/models.py:246 msgid "tag display name" msgstr "Zobrazení názvu štítku" -#: core/models.py:224 +#: engine/core/models.py:223 msgid "product tag" msgstr "Štítek produktu" -#: core/models.py:230 +#: engine/core/models.py:229 msgid "" "Represents a category tag used for products. This class models a category " "tag that can be used to associate and classify products. It includes " @@ -1616,15 +1650,15 @@ msgstr "" "Obsahuje atributy pro interní identifikátor značky a uživatelsky přívětivý " "zobrazovací název." -#: core/models.py:255 +#: engine/core/models.py:254 msgid "category tag" msgstr "značka kategorie" -#: core/models.py:256 core/models.py:328 +#: engine/core/models.py:255 engine/core/models.py:327 msgid "category tags" msgstr "štítky kategorií" -#: core/models.py:261 +#: engine/core/models.py:260 msgid "" "Represents a category entity to organize and group related items in a " "hierarchical structure. Categories may have hierarchical relationships with " @@ -1641,112 +1675,111 @@ 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." -#: core/models.py:275 +#: engine/core/models.py:274 msgid "upload an image representing this category" msgstr "Nahrát obrázek reprezentující tuto kategorii" -#: core/models.py:278 +#: engine/core/models.py:277 msgid "category image" msgstr "Obrázek kategorie" -#: core/models.py:283 +#: engine/core/models.py:282 msgid "define a markup percentage for products in this category" msgstr "Definovat procento přirážky pro produkty v této kategorii." -#: core/models.py:292 +#: engine/core/models.py:291 msgid "parent of this category to form a hierarchical structure" msgstr "Nadřízený této kategorie, který tvoří hierarchickou strukturu." -#: core/models.py:293 +#: engine/core/models.py:292 msgid "parent category" msgstr "Nadřazená kategorie" -#: core/models.py:298 +#: engine/core/models.py:297 msgid "category name" msgstr "Název kategorie" -#: core/models.py:299 +#: engine/core/models.py:298 msgid "provide a name for this category" msgstr "Uveďte název této kategorie" -#: core/models.py:306 +#: engine/core/models.py:305 msgid "add a detailed description for this category" msgstr "Přidejte podrobný popis této kategorie" -#: core/models.py:307 +#: engine/core/models.py:306 msgid "category description" msgstr "Popis kategorie" -#: core/models.py:327 +#: engine/core/models.py:326 msgid "tags that help describe or group this category" msgstr "značky, které pomáhají popsat nebo seskupit tuto kategorii" -#: core/models.py:334 core/models.py:489 +#: engine/core/models.py:333 engine/core/models.py:488 msgid "priority" msgstr "Priorita" -#: core/models.py:432 +#: engine/core/models.py:431 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, " "přidružených kategorií, jedinečného slugu a pořadí důležitosti. Umožňuje " "organizaci a reprezentaci dat souvisejících se značkou v rámci aplikace." -#: core/models.py:442 +#: engine/core/models.py:441 msgid "name of this brand" msgstr "Název této značky" -#: core/models.py:443 +#: engine/core/models.py:442 msgid "brand name" msgstr "Název značky" -#: core/models.py:450 +#: engine/core/models.py:449 msgid "upload a logo representing this brand" msgstr "Nahrát logo reprezentující tuto značku" -#: core/models.py:452 +#: engine/core/models.py:451 msgid "brand small image" msgstr "Malý obrázek značky" -#: core/models.py:458 +#: engine/core/models.py:457 msgid "upload a big logo representing this brand" msgstr "Nahrát velké logo reprezentující tuto značku" -#: core/models.py:460 +#: engine/core/models.py:459 msgid "brand big image" msgstr "Velká image značky" -#: core/models.py:465 +#: engine/core/models.py:464 msgid "add a detailed description of the brand" msgstr "Přidejte podrobný popis značky" -#: core/models.py:466 +#: engine/core/models.py:465 msgid "brand description" msgstr "Popis značky" -#: core/models.py:471 +#: engine/core/models.py:470 msgid "optional categories that this brand is associated with" msgstr "Volitelné kategorie, se kterými je tato značka spojena" -#: core/models.py:472 +#: engine/core/models.py:471 msgid "associated categories" msgstr "Kategorie" -#: core/models.py:502 +#: engine/core/models.py:501 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 " @@ -1759,68 +1792,72 @@ msgstr "" "zásob, který umožňuje sledovat a vyhodnocovat produkty dostupné od různých " "dodavatelů." -#: core/models.py:514 +#: engine/core/models.py:513 msgid "the vendor supplying this product stock" msgstr "Prodejce dodávající tento výrobek na sklad" -#: core/models.py:515 +#: engine/core/models.py:514 msgid "associated vendor" msgstr "Přidružený prodejce" -#: core/models.py:519 +#: engine/core/models.py:518 msgid "final price to the customer after markups" msgstr "Konečná cena pro zákazníka po přirážkách" -#: core/models.py:520 +#: engine/core/models.py:519 msgid "selling price" msgstr "Prodejní cena" -#: core/models.py:525 +#: engine/core/models.py:524 msgid "the product associated with this stock entry" msgstr "Produkt spojený s touto skladovou položkou" -#: core/models.py:526 core/models.py:779 core/models.py:825 -#: core/models.py:1718 +#: engine/core/models.py:525 engine/core/models.py:790 +#: engine/core/models.py:836 engine/core/models.py:1778 msgid "associated product" msgstr "Související produkt" -#: core/models.py:533 +#: engine/core/models.py:532 msgid "the price paid to the vendor for this product" msgstr "Cena zaplacená prodejci za tento výrobek" -#: core/models.py:534 +#: engine/core/models.py:533 msgid "vendor purchase price" msgstr "Kupní cena prodejce" -#: core/models.py:538 +#: engine/core/models.py:537 msgid "available quantity of the product in stock" msgstr "Dostupné množství produktu na skladě" -#: core/models.py:539 +#: engine/core/models.py:538 msgid "quantity in stock" msgstr "Množství na skladě" -#: core/models.py:543 +#: engine/core/models.py:542 msgid "vendor-assigned SKU for identifying the product" msgstr "SKU přidělený prodejcem pro identifikaci výrobku" -#: core/models.py:544 +#: engine/core/models.py:543 msgid "vendor sku" msgstr "SKU prodejce" -#: core/models.py:550 +#: engine/core/models.py:549 msgid "digital file associated with this stock if applicable" msgstr "Digitální soubor spojený s touto zásobou, je-li to vhodné" -#: core/models.py:551 +#: engine/core/models.py:550 msgid "digital file" msgstr "Digitální soubor" -#: core/models.py:560 +#: engine/core/models.py:553 +msgid "system attributes" +msgstr "Atributy systému" + +#: engine/core/models.py:560 msgid "stock entries" msgstr "Zápisy do zásob" -#: core/models.py:565 +#: engine/core/models.py:565 msgid "" "Represents a product with attributes such as category, brand, tags, digital " "status, name, description, part number, and slug. Provides related utility " @@ -1835,67 +1872,67 @@ 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." -#: core/models.py:578 +#: engine/core/models.py:578 msgid "category this product belongs to" msgstr "Kategorie, do které tento produkt patří" -#: core/models.py:587 +#: engine/core/models.py:587 msgid "optionally associate this product with a brand" msgstr "Volitelně přiřadit tento produkt ke značce" -#: core/models.py:593 +#: engine/core/models.py:593 msgid "tags that help describe or group this product" msgstr "Značky, které pomáhají popsat nebo seskupit tento produkt" -#: core/models.py:598 +#: engine/core/models.py:598 msgid "indicates whether this product is digitally delivered" msgstr "Označuje, zda je tento produkt dodáván digitálně" -#: core/models.py:599 +#: engine/core/models.py:599 msgid "is product digital" msgstr "Je produkt digitální" -#: core/models.py:605 +#: engine/core/models.py:605 msgid "provide a clear identifying name for the product" msgstr "Uveďte jasný identifikační název výrobku" -#: core/models.py:606 +#: engine/core/models.py:606 msgid "product name" msgstr "Název produktu" -#: core/models.py:612 core/models.py:867 +#: engine/core/models.py:612 engine/core/models.py:878 msgid "add a detailed description of the product" msgstr "Přidejte podrobný popis produktu" -#: core/models.py:613 +#: engine/core/models.py:613 msgid "product description" msgstr "Popis produktu" -#: core/models.py:620 +#: engine/core/models.py:620 msgid "part number for this product" msgstr "Číslo dílu pro tento produkt" -#: core/models.py:621 +#: engine/core/models.py:621 msgid "part number" msgstr "Číslo dílu" -#: core/models.py:640 +#: engine/core/models.py:640 msgid "stock keeping unit for this product" msgstr "Skladová jednotka pro tento produkt" -#: core/models.py:702 +#: engine/core/models.py:713 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ě " @@ -1905,179 +1942,179 @@ msgstr "" "booleanu, pole a objektu. To umožňuje dynamické a flexibilní strukturování " "dat." -#: core/models.py:715 +#: engine/core/models.py:726 msgid "group of this attribute" msgstr "Skupina tohoto atributu" -#: core/models.py:721 +#: engine/core/models.py:732 msgid "string" msgstr "Řetězec" -#: core/models.py:722 +#: engine/core/models.py:733 msgid "integer" msgstr "Celé číslo" -#: core/models.py:723 +#: engine/core/models.py:734 msgid "float" msgstr "Float" -#: core/models.py:724 +#: engine/core/models.py:735 msgid "boolean" msgstr "Boolean" -#: core/models.py:725 +#: engine/core/models.py:736 msgid "array" msgstr "Pole" -#: core/models.py:726 +#: engine/core/models.py:737 msgid "object" msgstr "Objekt" -#: core/models.py:728 +#: engine/core/models.py:739 msgid "type of the attribute's value" msgstr "Typ hodnoty atributu" -#: core/models.py:729 +#: engine/core/models.py:740 msgid "value type" msgstr "Typ hodnoty" -#: core/models.py:734 +#: engine/core/models.py:745 msgid "name of this attribute" msgstr "Název tohoto atributu" -#: core/models.py:735 +#: engine/core/models.py:746 msgid "attribute's name" msgstr "Název atributu" -#: core/models.py:740 +#: engine/core/models.py:751 msgid "is filterable" msgstr "je filtrovatelný" -#: core/models.py:741 +#: engine/core/models.py:752 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." -#: core/models.py:753 core/models.py:771 -#: core/templates/digital_order_delivered_email.html:134 +#: engine/core/models.py:764 engine/core/models.py:782 +#: engine/core/templates/digital_order_delivered_email.html:134 msgid "attribute" msgstr "Atribut" -#: core/models.py:759 +#: engine/core/models.py:770 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." -#: core/models.py:770 +#: engine/core/models.py:781 msgid "attribute of this value" msgstr "Atribut této hodnoty" -#: core/models.py:778 +#: engine/core/models.py:789 msgid "the specific product associated with this attribute's value" msgstr "Konkrétní produkt spojený s hodnotou tohoto atributu" -#: core/models.py:784 +#: engine/core/models.py:795 msgid "the specific value for this attribute" msgstr "Konkrétní hodnota tohoto atributu" -#: core/models.py:797 +#: engine/core/models.py:808 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." -#: core/models.py:808 +#: engine/core/models.py:819 msgid "provide alternative text for the image for accessibility" msgstr "Poskytněte alternativní text k obrázku kvůli přístupnosti." -#: core/models.py:809 +#: engine/core/models.py:820 msgid "image alt text" msgstr "Text alt obrázku" -#: core/models.py:812 +#: engine/core/models.py:823 msgid "upload the image file for this product" msgstr "Nahrát soubor s obrázkem tohoto produktu" -#: core/models.py:813 core/models.py:837 +#: engine/core/models.py:824 engine/core/models.py:848 msgid "product image" msgstr "Obrázek produktu" -#: core/models.py:818 +#: engine/core/models.py:829 msgid "determines the order in which images are displayed" msgstr "Určuje pořadí, v jakém se obrázky zobrazují." -#: core/models.py:819 +#: engine/core/models.py:830 msgid "display priority" msgstr "Priorita zobrazení" -#: core/models.py:824 +#: engine/core/models.py:835 msgid "the product that this image represents" msgstr "Výrobek, který tento obrázek představuje" -#: core/models.py:838 +#: engine/core/models.py:849 msgid "product images" msgstr "Obrázky produktů" -#: core/models.py:843 +#: engine/core/models.py:854 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á." -#: core/models.py:855 +#: engine/core/models.py:866 msgid "percentage discount for the selected products" msgstr "Procentuální sleva na vybrané produkty" -#: core/models.py:856 +#: engine/core/models.py:867 msgid "discount percentage" msgstr "Procento slevy" -#: core/models.py:861 +#: engine/core/models.py:872 msgid "provide a unique name for this promotion" msgstr "Uveďte jedinečný název této propagační akce" -#: core/models.py:862 +#: engine/core/models.py:873 msgid "promotion name" msgstr "Název akce" -#: core/models.py:868 +#: engine/core/models.py:879 msgid "promotion description" msgstr "Popis propagace" -#: core/models.py:873 +#: engine/core/models.py:884 msgid "select which products are included in this promotion" msgstr "Vyberte, které produkty jsou zahrnuty do této akce" -#: core/models.py:874 +#: engine/core/models.py:885 msgid "included products" msgstr "Zahrnuté produkty" -#: core/models.py:878 +#: engine/core/models.py:889 msgid "promotion" msgstr "Propagace" -#: core/models.py:889 +#: engine/core/models.py:900 msgid "" "Represents a user's wishlist for storing and managing desired products. The " "class provides functionality to manage a collection of products, supporting " @@ -2089,30 +2126,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." -#: core/models.py:901 +#: engine/core/models.py:912 msgid "products that the user has marked as wanted" msgstr "Výrobky, které uživatel označil jako požadované" -#: core/models.py:909 +#: engine/core/models.py:920 msgid "user who owns this wishlist" msgstr "Uživatel, který vlastní tento seznam přání" -#: core/models.py:910 +#: engine/core/models.py:921 msgid "wishlist owner" msgstr "Majitel seznamu přání" -#: core/models.py:918 +#: engine/core/models.py:929 msgid "wishlist" msgstr "Seznam přání" -#: core/models.py:960 +#: engine/core/models.py:971 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, " @@ -2120,91 +2157,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." -#: core/models.py:973 +#: engine/core/models.py:984 msgid "documentary" msgstr "Dokumentární film" -#: core/models.py:974 +#: engine/core/models.py:985 msgid "documentaries" msgstr "Dokumentární filmy" -#: core/models.py:984 +#: engine/core/models.py:995 msgid "unresolved" msgstr "Nevyřešené" -#: core/models.py:989 +#: engine/core/models.py:1000 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." -#: core/models.py:1004 +#: engine/core/models.py:1015 msgid "address line for the customer" msgstr "Adresní řádek pro zákazníka" -#: core/models.py:1005 +#: engine/core/models.py:1016 msgid "address line" msgstr "Adresní řádek" -#: core/models.py:1007 +#: engine/core/models.py:1018 msgid "street" msgstr "Ulice" -#: core/models.py:1008 +#: engine/core/models.py:1019 msgid "district" msgstr "Okres" -#: core/models.py:1009 +#: engine/core/models.py:1020 msgid "city" msgstr "Město" -#: core/models.py:1010 +#: engine/core/models.py:1021 msgid "region" msgstr "Region" -#: core/models.py:1011 +#: engine/core/models.py:1022 msgid "postal code" msgstr "Poštovní směrovací číslo" -#: core/models.py:1012 +#: engine/core/models.py:1023 msgid "country" msgstr "Země" -#: core/models.py:1019 +#: engine/core/models.py:1030 msgid "geolocation point: (longitude, latitude)" msgstr "Geolokace Bod(Zeměpisná délka, Zeměpisná šířka)" -#: core/models.py:1022 +#: engine/core/models.py:1033 msgid "full JSON response from geocoder for this address" msgstr "Úplná odpověď JSON z geokodéru pro tuto adresu" -#: core/models.py:1027 +#: engine/core/models.py:1038 msgid "stored JSON response from the geocoding service" msgstr "Uložená odpověď JSON ze služby geokódování" -#: core/models.py:1035 +#: engine/core/models.py:1046 msgid "address" msgstr "Adresa" -#: core/models.py:1036 +#: engine/core/models.py:1047 msgid "addresses" msgstr "Adresy" -#: core/models.py:1048 +#: engine/core/models.py:1059 msgid "" "Represents a promotional code that can be used for discounts, managing its " "validity, type of discount, and application. The PromoCode class stores " @@ -2220,71 +2257,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í." -#: core/models.py:1062 +#: engine/core/models.py:1073 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." -#: core/models.py:1063 +#: engine/core/models.py:1074 msgid "promo code identifier" msgstr "Identifikátor propagačního kódu" -#: core/models.py:1070 +#: engine/core/models.py:1081 msgid "fixed discount amount applied if percent is not used" msgstr "Pevná výše slevy, pokud není použito procento" -#: core/models.py:1071 +#: engine/core/models.py:1082 msgid "fixed discount amount" msgstr "Pevná výše slevy" -#: core/models.py:1077 +#: engine/core/models.py:1088 msgid "percentage discount applied if fixed amount is not used" msgstr "Procentuální sleva uplatněná v případě nevyužití pevné částky" -#: core/models.py:1078 +#: engine/core/models.py:1089 msgid "percentage discount" msgstr "Procentuální sleva" -#: core/models.py:1083 +#: engine/core/models.py:1094 msgid "timestamp when the promocode expires" msgstr "Časové razítko ukončení platnosti promokódu" -#: core/models.py:1084 +#: engine/core/models.py:1095 msgid "end validity time" msgstr "Doba ukončení platnosti" -#: core/models.py:1089 +#: engine/core/models.py:1100 msgid "timestamp from which this promocode is valid" msgstr "Časové razítko, od kterého je tento promokód platný" -#: core/models.py:1090 +#: engine/core/models.py:1101 msgid "start validity time" msgstr "Čas zahájení platnosti" -#: core/models.py:1095 +#: engine/core/models.py:1106 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." -#: core/models.py:1096 +#: engine/core/models.py:1107 msgid "usage timestamp" msgstr "Časové razítko použití" -#: core/models.py:1101 +#: engine/core/models.py:1112 msgid "user assigned to this promocode if applicable" msgstr "Uživatel přiřazený k tomuto promokódu, je-li to relevantní" -#: core/models.py:1102 +#: engine/core/models.py:1113 msgid "assigned user" msgstr "Přiřazený uživatel" -#: core/models.py:1109 +#: engine/core/models.py:1120 msgid "promo code" msgstr "Propagační kód" -#: core/models.py:1110 +#: engine/core/models.py:1121 msgid "promo codes" msgstr "Propagační kódy" -#: core/models.py:1125 +#: engine/core/models.py:1136 msgid "" "only one type of discount should be defined (amount or percent), but not " "both or neither." @@ -2292,21 +2329,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." -#: core/models.py:1146 +#: engine/core/models.py:1157 msgid "promocode already used" msgstr "Promo kód byl již použit" -#: core/models.py:1162 +#: engine/core/models.py:1173 #, python-brace-format msgid "invalid discount type for promocode {self.uuid}" msgstr "Neplatný typ slevy pro promokód {self.uuid}!" -#: core/models.py:1171 +#: engine/core/models.py:1182 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 "" @@ -2318,136 +2355,136 @@ msgstr "" "fakturaci. Stejně tak funkce podporuje správu produktů v životním cyklu " "objednávky." -#: core/models.py:1188 +#: engine/core/models.py:1199 msgid "the billing address used for this order" msgstr "Fakturační adresa použitá pro tuto objednávku" -#: core/models.py:1196 +#: engine/core/models.py:1207 msgid "optional promo code applied to this order" msgstr "Volitelný promo kód použitý na tuto objednávku" -#: core/models.py:1197 +#: engine/core/models.py:1208 msgid "applied promo code" msgstr "Použitý promo kód" -#: core/models.py:1205 +#: engine/core/models.py:1216 msgid "the shipping address used for this order" msgstr "Dodací adresa použitá pro tuto objednávku" -#: core/models.py:1206 +#: engine/core/models.py:1217 msgid "shipping address" msgstr "Dodací adresa" -#: core/models.py:1212 +#: engine/core/models.py:1223 msgid "current status of the order in its lifecycle" msgstr "Aktuální stav zakázky v jejím životním cyklu" -#: core/models.py:1213 +#: engine/core/models.py:1224 msgid "order status" msgstr "Stav objednávky" -#: core/models.py:1218 core/models.py:1695 +#: engine/core/models.py:1229 engine/core/models.py:1755 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í." -#: core/models.py:1224 +#: engine/core/models.py:1235 msgid "json representation of order attributes for this order" msgstr "JSON reprezentace atributů objednávky pro tuto objednávku" -#: core/models.py:1230 +#: engine/core/models.py:1241 msgid "the user who placed the order" msgstr "Uživatel, který zadal objednávku" -#: core/models.py:1231 +#: engine/core/models.py:1242 msgid "user" msgstr "Uživatel" -#: core/models.py:1237 +#: engine/core/models.py:1248 msgid "the timestamp when the order was finalized" msgstr "Časové razítko, kdy byla objednávka dokončena." -#: core/models.py:1238 +#: engine/core/models.py:1249 msgid "buy time" msgstr "Kupte si čas" -#: core/models.py:1245 +#: engine/core/models.py:1256 msgid "a human-readable identifier for the order" msgstr "Lidsky čitelný identifikátor objednávky" -#: core/models.py:1246 +#: engine/core/models.py:1257 msgid "human readable id" msgstr "lidsky čitelné ID" -#: core/models.py:1252 +#: engine/core/models.py:1263 msgid "order" msgstr "Objednávka" -#: core/models.py:1294 +#: engine/core/models.py:1305 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!" -#: core/models.py:1326 +#: engine/core/models.py:1337 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." -#: core/models.py:1331 +#: engine/core/models.py:1342 msgid "you cannot add inactive products to order" msgstr "Do objednávky nelze přidat neaktivní produkty" -#: core/models.py:1348 +#: engine/core/models.py:1359 msgid "you cannot add more products than available in stock" msgstr "Nelze přidat více produktů, než je dostupné na skladě" -#: core/models.py:1370 core/models.py:1395 core/models.py:1403 +#: engine/core/models.py:1381 engine/core/models.py:1406 +#: engine/core/models.py:1414 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á." -#: core/models.py:1391 +#: engine/core/models.py:1402 #, python-brace-format msgid "{name} does not exist with query <{query}>" msgstr "{name} neexistuje s dotazem <{query}>!" -#: core/models.py:1423 +#: engine/core/models.py:1434 msgid "promocode does not exist" msgstr "Promo kód neexistuje" -#: core/models.py:1429 +#: engine/core/models.py:1440 msgid "you can only buy physical products with shipping address specified" msgstr "Fyzické produkty můžete zakoupit pouze se zadanou dodací adresou!" -#: core/models.py:1448 +#: engine/core/models.py:1459 msgid "address does not exist" msgstr "Adresa neexistuje" -#: core/models.py:1469 core/models.py:1538 +#: engine/core/models.py:1480 engine/core/models.py:1549 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." -#: core/models.py:1472 core/models.py:1534 +#: engine/core/models.py:1483 engine/core/models.py:1545 msgid "invalid force value" msgstr "Neplatná hodnota síly" -#: core/models.py:1478 core/models.py:1541 +#: engine/core/models.py:1489 engine/core/models.py:1552 msgid "you cannot purchase an empty order!" msgstr "Nelze zakoupit prázdnou objednávku!" -#: core/models.py:1497 +#: engine/core/models.py:1508 msgid "you cannot buy an order without a user" msgstr "Bez uživatele nelze objednávku zakoupit!" -#: core/models.py:1511 +#: engine/core/models.py:1522 msgid "a user without a balance cannot buy with balance" msgstr "Uživatel bez zůstatku nemůže nakupovat se zůstatkem!" -#: core/models.py:1516 +#: engine/core/models.py:1527 msgid "insufficient funds to complete the order" msgstr "Nedostatek finančních prostředků na dokončení objednávky" -#: core/models.py:1550 +#: engine/core/models.py:1561 msgid "" "you cannot buy without registration, please provide the following " "information: customer name, customer email, customer phone number" @@ -2455,14 +2492,54 @@ 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." -#: core/models.py:1559 +#: engine/core/models.py:1570 #, python-brace-format msgid "" "invalid payment method: {payment_method} from {available_payment_methods}" msgstr "" "Neplatný způsob platby: {payment_method} z {available_payment_methods}!" -#: core/models.py:1668 +#: engine/core/models.py:1685 +msgid "" +"Manages user feedback for products. This class is designed to capture and " +"store user feedback for specific products that they have purchased. It " +"contains attributes to store user comments, a reference to the related " +"product in the order, and a user-assigned rating. The class uses database " +"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 " +"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:1697 +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:1698 +msgid "feedback comments" +msgstr "Zpětná vazba" + +#: engine/core/models.py:1705 +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:1706 +msgid "related order product" +msgstr "Související objednávka produktu" + +#: engine/core/models.py:1711 +msgid "user-assigned rating for the product" +msgstr "Hodnocení produktu přidělené uživatelem" + +#: engine/core/models.py:1712 +msgid "product rating" +msgstr "Hodnocení produktu" + +#: engine/core/models.py:1728 msgid "" "Represents products associated with orders and their attributes. The " "OrderProduct model maintains information about a product that is part of an " @@ -2484,115 +2561,115 @@ msgstr "" "produktů. Model se integruje s modely objednávek a produktů a ukládá na ně " "odkaz." -#: core/models.py:1683 +#: engine/core/models.py:1743 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." -#: core/models.py:1684 +#: engine/core/models.py:1744 msgid "purchase price at order time" msgstr "Nákupní cena v době objednávky" -#: core/models.py:1689 +#: engine/core/models.py:1749 msgid "internal comments for admins about this ordered product" msgstr "Interní komentáře pro administrátory k tomuto objednanému produktu" -#: core/models.py:1690 +#: engine/core/models.py:1750 msgid "internal comments" msgstr "Interní připomínky" -#: core/models.py:1696 +#: engine/core/models.py:1756 msgid "user notifications" msgstr "Oznámení uživatele" -#: core/models.py:1701 +#: engine/core/models.py:1761 msgid "json representation of this item's attributes" msgstr "JSON reprezentace atributů této položky" -#: core/models.py:1702 +#: engine/core/models.py:1762 msgid "ordered product attributes" msgstr "Objednané atributy produktu" -#: core/models.py:1707 +#: engine/core/models.py:1767 msgid "reference to the parent order that contains this product" msgstr "Odkaz na nadřazenou objednávku, která obsahuje tento produkt" -#: core/models.py:1708 +#: engine/core/models.py:1768 msgid "parent order" msgstr "Objednávka rodičů" -#: core/models.py:1717 +#: engine/core/models.py:1777 msgid "the specific product associated with this order line" msgstr "Konkrétní produkt spojený s touto objednávkou" -#: core/models.py:1724 +#: engine/core/models.py:1784 msgid "quantity of this specific product in the order" msgstr "Množství tohoto konkrétního produktu v objednávce" -#: core/models.py:1725 +#: engine/core/models.py:1785 msgid "product quantity" msgstr "Množství produktu" -#: core/models.py:1732 +#: engine/core/models.py:1792 msgid "current status of this product in the order" msgstr "Aktuální stav tohoto produktu v objednávce" -#: core/models.py:1733 +#: engine/core/models.py:1793 msgid "product line status" msgstr "Stav produktové řady" -#: core/models.py:1798 +#: engine/core/models.py:1858 msgid "order product must have an order" msgstr "Orderproduct musí mít přiřazenou objednávku!" -#: core/models.py:1800 +#: engine/core/models.py:1860 #, python-brace-format msgid "wrong action specified for feedback: {action}" msgstr "Špatně zadaná akce pro zpětnou vazbu: {action}!" -#: core/models.py:1814 +#: engine/core/models.py:1874 msgid "you cannot feedback an order which is not received" msgstr "nelze poskytnout zpětnou vazbu na objednávku, která nebyla přijata" -#: core/models.py:1820 +#: engine/core/models.py:1880 msgid "name" msgstr "Název" -#: core/models.py:1821 +#: engine/core/models.py:1881 msgid "URL of the integration" msgstr "Adresa URL integrace" -#: core/models.py:1822 +#: engine/core/models.py:1882 msgid "authentication credentials" msgstr "Ověřovací pověření" -#: core/models.py:1844 +#: engine/core/models.py:1904 msgid "you can only have one default CRM provider" msgstr "Můžete mít pouze jednoho výchozího poskytovatele CRM" -#: core/models.py:1854 +#: engine/core/models.py:1914 msgid "CRM" msgstr "CRM" -#: core/models.py:1855 +#: engine/core/models.py:1915 msgid "CRMs" msgstr "CRM" -#: core/models.py:1867 +#: engine/core/models.py:1927 msgid "order CRM link" msgstr "Odkaz na CRM objednávky" -#: core/models.py:1868 +#: engine/core/models.py:1928 msgid "orders CRM links" msgstr "Odkazy CRM objednávek" -#: core/models.py:1873 +#: engine/core/models.py:1933 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 " @@ -2601,130 +2678,86 @@ 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." -#: core/models.py:1887 +#: engine/core/models.py:1947 msgid "download" msgstr "Stáhnout" -#: core/models.py:1888 +#: engine/core/models.py:1948 msgid "downloads" msgstr "Ke stažení na" -#: core/models.py:1902 -msgid "" -"Manages user feedback for products. This class is designed to capture and " -"store user feedback for specific products that they have purchased. It " -"contains attributes to store user comments, a reference to the related " -"product in the order, and a user-assigned rating. The class uses database " -"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 " -"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." - -#: core/models.py:1914 -msgid "user-provided comments about their experience with the product" -msgstr "Komentáře uživatelů o jejich zkušenostech s produktem" - -#: core/models.py:1915 -msgid "feedback comments" -msgstr "Zpětná vazba" - -#: core/models.py:1922 -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á." - -#: core/models.py:1923 -msgid "related order product" -msgstr "Související objednávka produktu" - -#: core/models.py:1928 -msgid "user-assigned rating for the product" -msgstr "Hodnocení produktu přidělené uživatelem" - -#: core/models.py:1929 -msgid "product rating" -msgstr "Hodnocení produktu" - -#: core/serializers/utility.py:89 +#: engine/core/serializers/utility.py:89 msgid "" "you must provide a comment, rating, and order product uuid to add feedback." msgstr "" "pro přidání zpětné vazby musíte uvést komentář, hodnocení a uuid produktu." -#: core/signals.py:73 -msgid "error during promocode creation: {e!s}" -msgstr "Chyba při vytváření promokódu: {e!s}" - -#: core/sitemaps.py:25 +#: engine/core/sitemaps.py:25 msgid "Home" msgstr "Home" -#: core/sitemaps.py:30 +#: engine/core/sitemaps.py:30 msgid "Contact Us" msgstr "Kontaktujte nás" -#: core/sitemaps.py:35 +#: engine/core/sitemaps.py:35 msgid "About Us" msgstr "O nás" -#: core/templates/digital_order_created_email.html:7 -#: core/templates/digital_order_created_email.html:100 -#: core/templates/digital_order_delivered_email.html:6 -#: core/templates/shipped_order_created_email.html:7 -#: core/templates/shipped_order_created_email.html:99 -#: core/templates/shipped_order_delivered_email.html:7 -#: core/templates/shipped_order_delivered_email.html:99 +#: engine/core/templates/digital_order_created_email.html:7 +#: engine/core/templates/digital_order_created_email.html:100 +#: engine/core/templates/digital_order_delivered_email.html:6 +#: engine/core/templates/shipped_order_created_email.html:7 +#: engine/core/templates/shipped_order_created_email.html:99 +#: engine/core/templates/shipped_order_delivered_email.html:7 +#: engine/core/templates/shipped_order_delivered_email.html:99 msgid "order confirmation" msgstr "Potvrzení objednávky" -#: core/templates/digital_order_created_email.html:95 -#: core/templates/digital_order_delivered_email.html:94 -#: core/templates/promocode_granted_email.html:94 -#: core/templates/shipped_order_created_email.html:94 -#: core/templates/shipped_order_delivered_email.html:94 +#: engine/core/templates/digital_order_created_email.html:95 +#: engine/core/templates/digital_order_delivered_email.html:94 +#: engine/core/templates/promocode_granted_email.html:94 +#: engine/core/templates/shipped_order_created_email.html:94 +#: engine/core/templates/shipped_order_delivered_email.html:94 msgid "logo" msgstr "Logo" -#: core/templates/digital_order_created_email.html:101 -#: core/templates/shipped_order_created_email.html:100 -#: core/templates/shipped_order_delivered_email.html:100 +#: engine/core/templates/digital_order_created_email.html:101 +#: engine/core/templates/shipped_order_created_email.html:100 +#: engine/core/templates/shipped_order_delivered_email.html:100 #, python-format msgid "hello %(order.user.first_name)s," msgstr "Ahoj %(order.user.first_name)s," -#: core/templates/digital_order_created_email.html:102 +#: engine/core/templates/digital_order_created_email.html:102 #, 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, " "že jsme Vaši objednávku převzali do práce. Níže jsou uvedeny údaje o vaší " "objednávce:" -#: core/templates/digital_order_created_email.html:112 -#: core/templates/digital_order_delivered_email.html:110 -#: core/templates/shipped_order_created_email.html:110 -#: core/templates/shipped_order_delivered_email.html:110 +#: engine/core/templates/digital_order_created_email.html:112 +#: engine/core/templates/digital_order_delivered_email.html:110 +#: engine/core/templates/shipped_order_created_email.html:110 +#: engine/core/templates/shipped_order_delivered_email.html:110 msgid "total" msgstr "Celkem" -#: core/templates/digital_order_created_email.html:125 -#: core/templates/digital_order_delivered_email.html:157 -#: core/templates/shipped_order_created_email.html:127 -#: core/templates/shipped_order_delivered_email.html:127 +#: engine/core/templates/digital_order_created_email.html:125 +#: engine/core/templates/digital_order_delivered_email.html:157 +#: engine/core/templates/shipped_order_created_email.html:127 +#: engine/core/templates/shipped_order_delivered_email.html:127 msgid "total price" msgstr "Celková cena" -#: core/templates/digital_order_created_email.html:131 -#: core/templates/shipped_order_created_email.html:140 -#: core/templates/shipped_order_delivered_email.html:140 +#: engine/core/templates/digital_order_created_email.html:131 +#: engine/core/templates/shipped_order_created_email.html:140 +#: engine/core/templates/shipped_order_delivered_email.html:140 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" @@ -2733,28 +2766,28 @@ msgstr "" "V případě dotazů se obraťte na naši podporu na adrese " "%(config.EMAIL_HOST_USER)s." -#: core/templates/digital_order_created_email.html:133 +#: engine/core/templates/digital_order_created_email.html:133 #, python-format msgid "best regards,
the %(config.PROJECT_NAME)s team" msgstr "S pozdravem,
tým %(config.PROJECT_NAME)s" -#: core/templates/digital_order_created_email.html:139 -#: core/templates/digital_order_delivered_email.html:171 -#: core/templates/promocode_granted_email.html:114 +#: engine/core/templates/digital_order_created_email.html:139 +#: engine/core/templates/digital_order_delivered_email.html:171 +#: engine/core/templates/promocode_granted_email.html:114 msgid "all rights reserved" msgstr "Všechna práva vyhrazena" -#: core/templates/digital_order_delivered_email.html:99 +#: engine/core/templates/digital_order_delivered_email.html:99 msgid "order delivered" msgstr "Dodaná objednávka" -#: core/templates/digital_order_delivered_email.html:100 -#: core/templates/promocode_granted_email.html:100 +#: engine/core/templates/digital_order_delivered_email.html:100 +#: engine/core/templates/promocode_granted_email.html:100 #, python-format msgid "hello %(user_first_name)s," msgstr "Ahoj %(user_first_name)s," -#: core/templates/digital_order_delivered_email.html:101 +#: engine/core/templates/digital_order_delivered_email.html:101 #, python-format msgid "" "we have successfully processed your order №%(order_uuid)s! below are the\n" @@ -2763,7 +2796,7 @@ msgstr "" "Úspěšně jsme zpracovali vaši objednávku №%(order_uuid)s! Níže jsou uvedeny " "podrobnosti vaší objednávky:" -#: core/templates/digital_order_delivered_email.html:128 +#: engine/core/templates/digital_order_delivered_email.html:128 msgid "" "additional\n" " information" @@ -2771,13 +2804,13 @@ msgstr "" "další\n" " informace" -#: core/templates/digital_order_delivered_email.html:137 -#: core/templates/json_table_widget.html:6 +#: engine/core/templates/digital_order_delivered_email.html:137 +#: engine/core/templates/json_table_widget.html:6 msgid "value" msgstr "Hodnota" -#: core/templates/digital_order_delivered_email.html:163 -#: core/templates/promocode_granted_email.html:106 +#: engine/core/templates/digital_order_delivered_email.html:163 +#: engine/core/templates/promocode_granted_email.html:106 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" @@ -2786,26 +2819,26 @@ msgstr "" "V případě dotazů se můžete obrátit na naši podporu na adrese " "%(contact_email)s." -#: core/templates/digital_order_delivered_email.html:165 -#: core/templates/promocode_granted_email.html:108 +#: engine/core/templates/digital_order_delivered_email.html:165 +#: engine/core/templates/promocode_granted_email.html:108 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "S pozdravem,
tým %(project_name)s" -#: core/templates/json_table_widget.html:5 +#: engine/core/templates/json_table_widget.html:5 msgid "key" msgstr "Klíč" -#: core/templates/json_table_widget.html:40 +#: engine/core/templates/json_table_widget.html:40 msgid "Add Row" msgstr "Přidat řádek" -#: core/templates/promocode_granted_email.html:6 -#: core/templates/promocode_granted_email.html:99 +#: engine/core/templates/promocode_granted_email.html:6 +#: engine/core/templates/promocode_granted_email.html:99 msgid "promocode granted" msgstr "Udělený propagační kód" -#: core/templates/promocode_granted_email.html:101 +#: engine/core/templates/promocode_granted_email.html:101 msgid "" "Thank you for staying with us! We have granted you with a promocode\n" " for " @@ -2813,33 +2846,34 @@ msgstr "" "Děkujeme, že jste s námi zůstali! Udělili jsme vám promocode\n" " pro" -#: core/templates/shipped_order_created_email.html:101 -#: core/templates/shipped_order_delivered_email.html:101 +#: 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 " "jsou uvedeny údaje o vaší objednávce:" -#: core/templates/shipped_order_created_email.html:123 -#: core/templates/shipped_order_delivered_email.html:123 +#: engine/core/templates/shipped_order_created_email.html:123 +#: engine/core/templates/shipped_order_delivered_email.html:123 msgid "shipping price" msgstr "Cena přepravy" -#: core/templates/shipped_order_created_email.html:133 -#: core/templates/shipped_order_delivered_email.html:133 +#: engine/core/templates/shipped_order_created_email.html:133 +#: engine/core/templates/shipped_order_delivered_email.html:133 msgid "your order will be delivered to the following address:" msgstr "Vaše objednávka bude doručena na následující adresu:" -#: core/templates/shipped_order_created_email.html:142 -#: core/templates/shipped_order_delivered_email.html:142 +#: engine/core/templates/shipped_order_created_email.html:142 +#: engine/core/templates/shipped_order_delivered_email.html:142 #, python-format msgid "best regards,
The %(config.PROJECT_NAME)s team" msgstr "S pozdravem,
Tým %(config.PROJECT_NAME)s" -#: core/templates/shipped_order_created_email.html:147 -#: core/templates/shipped_order_delivered_email.html:147 +#: engine/core/templates/shipped_order_created_email.html:147 +#: engine/core/templates/shipped_order_delivered_email.html:147 msgid "" "all rights\n" " reserved" @@ -2847,49 +2881,49 @@ msgstr "" "všechna práva\n" " vyhrazeno" -#: core/utils/caching.py:44 +#: engine/core/utils/caching.py:44 msgid "both data and timeout are required" msgstr "Jsou vyžadována data i časový limit" -#: core/utils/caching.py:46 +#: engine/core/utils/caching.py:46 msgid "invalid timeout value, it must be between 0 and 216000 seconds" msgstr "Nesprávná hodnota timeoutu, musí být v rozmezí 0 až 216000 sekund." -#: core/utils/emailing.py:27 +#: engine/core/utils/emailing.py:27 #, python-brace-format msgid "{config.PROJECT_NAME} | contact us initiated" msgstr "{config.PROJECT_NAME} | kontaktujte nás inicioval" -#: core/utils/emailing.py:73 +#: engine/core/utils/emailing.py:73 #, python-brace-format msgid "{config.PROJECT_NAME} | order confirmation" msgstr "{config.PROJECT_NAME} | Potvrzení objednávky" -#: core/utils/emailing.py:105 +#: engine/core/utils/emailing.py:105 #, python-brace-format msgid "{config.PROJECT_NAME} | order delivered" msgstr "{config.PROJECT_NAME} | Objednávka doručena" -#: core/utils/emailing.py:188 +#: engine/core/utils/emailing.py:188 #, python-brace-format msgid "{config.PROJECT_NAME} | promocode granted" msgstr "{config.PROJECT_NAME} | promocode uděleno" -#: core/utils/messages.py:3 +#: engine/core/utils/messages.py:3 msgid "you do not have permission to perform this action." msgstr "K provedení této akce nemáte oprávnění." -#: core/utils/nominatim.py:8 +#: engine/core/utils/nominatim.py:8 msgid "NOMINATIM_URL must be configured." msgstr "Parametr NOMINATIM_URL musí být nakonfigurován!" -#: core/validators.py:16 +#: engine/core/validators.py:16 #, python-brace-format msgid "image dimensions should not exceed w{max_width} x h{max_height} pixels" msgstr "" "Rozměry obrázku by neměly přesáhnout w{max_width} x h{max_height} pixelů." -#: core/views.py:72 +#: engine/core/views.py:71 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." @@ -2897,7 +2931,7 @@ msgstr "" "Zpracuje požadavek na index mapy stránek a vrátí odpověď XML. Zajistí, aby " "odpověď obsahovala odpovídající hlavičku typu obsahu XML." -#: core/views.py:87 +#: engine/core/views.py:86 msgid "" "Handles the detailed view response for a sitemap. This function processes " "the request, fetches the appropriate sitemap detail response, and sets the " @@ -2907,28 +2941,28 @@ msgstr "" "požadavek, načte příslušnou podrobnou odpověď mapy stránek a nastaví " "hlavičku Content-Type pro XML." -#: core/views.py:116 +#: engine/core/views.py:115 msgid "" "Returns a list of supported languages and their corresponding information." msgstr "Vrátí seznam podporovaných jazyků a odpovídajících informací." -#: core/views.py:148 +#: engine/core/views.py:147 msgid "Returns the parameters of the website as a JSON object." msgstr "Vrátí parametry webové stránky jako objekt JSON." -#: core/views.py:167 +#: engine/core/views.py:166 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." -#: core/views.py:194 +#: engine/core/views.py:193 msgid "Handles `contact us` form submissions." msgstr "Zpracovává odeslání formuláře `contact us`." -#: core/views.py:215 +#: engine/core/views.py:214 msgid "" "Handles requests for processing and validating URLs from incoming POST " "requests." @@ -2936,66 +2970,74 @@ msgstr "" "Zpracovává požadavky na zpracování a ověřování adres URL z příchozích " "požadavků POST." -#: core/views.py:255 +#: engine/core/views.py:254 msgid "Handles global search queries." msgstr "Zpracovává globální vyhledávací dotazy." -#: core/views.py:270 +#: engine/core/views.py:269 msgid "Handles the logic of buying as a business without registration." msgstr "Řeší logiku nákupu jako firmy bez registrace." -#: core/views.py:306 +#: engine/core/views.py:305 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." -#: core/views.py:316 +#: engine/core/views.py:315 msgid "order_product_uuid is required" msgstr "order_product_uuid je povinné" -#: core/views.py:322 +#: engine/core/views.py:321 msgid "you can only download the digital asset once" msgstr "Digitální aktivum můžete stáhnout pouze jednou" -#: core/views.py:325 +#: engine/core/views.py:324 msgid "the order must be paid before downloading the digital asset" msgstr "objednávka musí být zaplacena před stažením digitálního aktiva." -#: core/views.py:331 +#: engine/core/views.py:330 msgid "the order product does not have a product" msgstr "Objednaný produkt nemá produkt" -#: core/views.py:369 +#: engine/core/views.py:368 msgid "favicon not found" msgstr "favicon nebyl nalezen" -#: core/views.py:374 +#: engine/core/views.py:373 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." -#: core/views.py:386 +#: engine/core/views.py:385 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." -#: core/views.py:399 +#: engine/core/views.py:398 msgid "Returns current version of the eVibes. " msgstr "Vrací aktuální verzi systému eVibes." -#: core/viewsets.py:137 +#: engine/core/viewsets.py:137 msgid "" "Defines a viewset for managing Evibes-related operations. The EvibesViewSet " "class inherits from ModelViewSet and provides functionality for handling " @@ -3006,16 +3048,14 @@ 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í." +"na základě aktuální akce, přizpůsobitelných oprávnění a formátů vykreslování." -#: core/viewsets.py:157 +#: engine/core/viewsets.py:157 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 " @@ -3023,7 +3063,7 @@ msgstr "" "standardizovaný způsob zpracování požadavků a odpovědí pro data " "AttributeGroup." -#: core/viewsets.py:176 +#: engine/core/viewsets.py:176 msgid "" "Handles operations related to Attribute objects within the application. " "Provides a set of API endpoints to interact with Attribute data. This class " @@ -3039,13 +3079,13 @@ msgstr "" "konkrétních polí nebo získávání podrobných a zjednodušených informací v " "závislosti na požadavku." -#: core/viewsets.py:195 +#: engine/core/viewsets.py:195 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ů " @@ -3053,7 +3093,7 @@ msgstr "" "pro různé akce používá příslušné serializátory. Možnosti filtrování jsou " "poskytovány prostřednictvím DjangoFilterBackend." -#: core/viewsets.py:214 +#: engine/core/viewsets.py:214 msgid "" "Manages views for Category-related operations. The CategoryViewSet class is " "responsible for handling operations related to the Category model in the " @@ -3067,7 +3107,7 @@ msgstr "" "kategorie. Sada pohledů také vynucuje oprávnění, aby zajistila, že ke " "konkrétním datům budou mít přístup pouze oprávnění uživatelé." -#: core/viewsets.py:326 +#: engine/core/viewsets.py:326 msgid "" "Represents a viewset for managing Brand instances. This class provides " "functionality for querying, filtering, and serializing Brand objects. It " @@ -3079,7 +3119,7 @@ msgstr "" "rámec ViewSet Djanga pro zjednodušení implementace koncových bodů API pro " "objekty Brand." -#: core/viewsets.py:438 +#: engine/core/viewsets.py:438 msgid "" "Manages operations related to the `Product` model in the system. This class " "provides a viewset for managing products, including their filtering, " @@ -3094,10 +3134,10 @@ msgstr "" "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 " "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." -#: core/viewsets.py:568 +#: engine/core/viewsets.py:568 msgid "" "Represents a viewset for managing Vendor objects. This viewset allows " "fetching, filtering, and serializing Vendor data. It defines the queryset, " @@ -3111,13 +3151,13 @@ msgstr "" "různých akcí. Účelem této třídy je poskytnout zjednodušený přístup ke " "zdrojům souvisejícím s Vendorem prostřednictvím rámce Django REST." -#: core/viewsets.py:588 +#: engine/core/viewsets.py:588 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 `EvibesViewSet` and makes " "use of Django's filtering system for querying data." msgstr "" "Reprezentace sady zobrazení, která zpracovává objekty zpětné vazby. Tato " @@ -3127,43 +3167,43 @@ msgstr "" "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." -#: core/viewsets.py:615 +#: engine/core/viewsets.py:615 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." -#: core/viewsets.py:813 +#: engine/core/viewsets.py:813 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" -#: core/viewsets.py:867 +#: engine/core/viewsets.py:867 msgid "Manages operations related to Product images in the application. " msgstr "Spravuje operace související s obrázky produktů v aplikaci." -#: core/viewsets.py:880 +#: engine/core/viewsets.py:880 msgid "" "Manages the retrieval and handling of PromoCode instances through various " "API actions." @@ -3171,20 +3211,20 @@ msgstr "" "Spravuje načítání a zpracování instancí PromoCode prostřednictvím různých " "akcí API." -#: core/viewsets.py:902 +#: engine/core/viewsets.py:902 msgid "Represents a view set for managing promotions. " msgstr "Představuje sadu zobrazení pro správu povýšení." -#: core/viewsets.py:915 +#: engine/core/viewsets.py:915 msgid "Handles operations related to Stock data in the system." msgstr "Zpracovává operace související s údaji o zásobách v systému." -#: core/viewsets.py:929 +#: engine/core/viewsets.py:929 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." @@ -3197,7 +3237,7 @@ msgstr "" "uživatelé mohou spravovat pouze své vlastní seznamy přání, pokud jim nejsou " "udělena výslovná oprávnění." -#: core/viewsets.py:1044 +#: engine/core/viewsets.py:1044 msgid "" "This class provides viewset functionality for managing `Address` objects. " "The AddressViewSet class enables CRUD operations, filtering, and custom " @@ -3205,18 +3245,18 @@ 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." -#: core/viewsets.py:1111 +#: engine/core/viewsets.py:1111 #, python-brace-format msgid "Geocoding error: {e}" msgstr "Chyba v zeměpisném kódování: {e}" -#: core/viewsets.py:1119 +#: engine/core/viewsets.py:1119 msgid "" "Handles operations related to Product Tags within the application. This " "class provides functionality for retrieving, filtering, and serializing " @@ -3227,5 +3267,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 new file mode 100644 index 00000000..ebe10c5d Binary files /dev/null and b/engine/core/locale/da_DK/LC_MESSAGES/django.mo differ diff --git a/core/locale/da_DK/LC_MESSAGES/django.po b/engine/core/locale/da_DK/LC_MESSAGES/django.po similarity index 68% rename from core/locale/da_DK/LC_MESSAGES/django.po rename to engine/core/locale/da_DK/LC_MESSAGES/django.po index 9cf8f65a..fc0273a9 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,210 +13,213 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: core/abstract.py:12 +#: engine/core/abstract.py:12 msgid "unique id" msgstr "Unikt ID" -#: core/abstract.py:13 +#: engine/core/abstract.py:13 msgid "unique id is used to surely identify any database object" msgstr "Unikt ID bruges til sikkert at identificere ethvert databaseobjekt" -#: core/abstract.py:20 +#: engine/core/abstract.py:20 msgid "is active" msgstr "Er aktiv" -#: core/abstract.py:21 +#: engine/core/abstract.py:21 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." -#: core/abstract.py:23 core/choices.py:18 +#: engine/core/abstract.py:23 engine/core/choices.py:18 msgid "created" msgstr "Oprettet" -#: core/abstract.py:23 +#: engine/core/abstract.py:23 msgid "when the object first appeared on the database" msgstr "Da objektet første gang dukkede op i databasen" -#: core/abstract.py:24 +#: engine/core/abstract.py:24 msgid "modified" msgstr "Modificeret" -#: core/abstract.py:24 +#: engine/core/abstract.py:24 msgid "when the object was last modified" msgstr "Hvornår objektet sidst blev redigeret" -#: core/admin.py:68 +#: engine/core/admin.py:68 msgid "translations" msgstr "Oversættelser" -#: core/admin.py:72 +#: engine/core/admin.py:72 msgid "general" msgstr "Generelt" -#: core/admin.py:74 +#: engine/core/admin.py:74 msgid "relations" msgstr "Relationer" -#: core/admin.py:76 +#: engine/core/admin.py:76 msgid "additional info" msgstr "Yderligere info" -#: core/admin.py:94 +#: engine/core/admin.py:94 msgid "metadata" msgstr "Metadata" -#: core/admin.py:101 +#: engine/core/admin.py:101 msgid "timestamps" msgstr "Tidsstempler" -#: core/admin.py:116 +#: engine/core/admin.py:116 #, python-format msgid "activate selected %(verbose_name_plural)s" msgstr "Aktivér valgt %(verbose_name_plural)s." -#: core/admin.py:121 +#: engine/core/admin.py:121 msgid "selected items have been activated." msgstr "Udvalgte varer er blevet aktiveret!" -#: core/admin.py:127 +#: engine/core/admin.py:127 #, python-format msgid "deactivate selected %(verbose_name_plural)s" msgstr "Deaktiver valgte %(verbose_name_plural)s." -#: core/admin.py:132 +#: engine/core/admin.py:132 msgid "selected items have been deactivated." msgstr "Udvalgte varer er blevet deaktiveret!" -#: core/admin.py:144 core/graphene/object_types.py:582 -#: core/graphene/object_types.py:589 core/models.py:783 core/models.py:791 +#: engine/core/admin.py:144 engine/core/graphene/object_types.py:586 +#: engine/core/graphene/object_types.py:593 engine/core/models.py:794 +#: engine/core/models.py:802 msgid "attribute value" msgstr "Attributværdi" -#: core/admin.py:145 core/graphene/object_types.py:75 core/models.py:792 +#: engine/core/admin.py:145 engine/core/graphene/object_types.py:75 +#: engine/core/models.py:803 msgid "attribute values" msgstr "Attributværdier" -#: core/admin.py:156 +#: engine/core/admin.py:156 msgid "image" msgstr "Billede" -#: core/admin.py:157 core/graphene/object_types.py:474 +#: engine/core/admin.py:157 engine/core/graphene/object_types.py:474 msgid "images" msgstr "Billeder" -#: core/admin.py:168 core/models.py:559 +#: engine/core/admin.py:169 engine/core/models.py:559 msgid "stock" msgstr "Lager" -#: core/admin.py:169 core/graphene/object_types.py:636 +#: engine/core/admin.py:170 engine/core/graphene/object_types.py:640 msgid "stocks" msgstr "Aktier" -#: core/admin.py:182 core/models.py:1744 +#: engine/core/admin.py:183 engine/core/models.py:1804 msgid "order product" msgstr "Bestil produkt" -#: core/admin.py:183 core/graphene/object_types.py:389 core/models.py:1745 +#: engine/core/admin.py:184 engine/core/graphene/object_types.py:389 +#: engine/core/models.py:1805 msgid "order products" msgstr "Bestil produkter" -#: core/admin.py:196 core/admin.py:197 +#: engine/core/admin.py:197 engine/core/admin.py:198 msgid "children" msgstr "Børn" -#: core/admin.py:965 +#: engine/core/admin.py:969 msgid "Config" msgstr "Konfig" -#: core/apps.py:8 +#: engine/core/apps.py:8 msgid "core" msgstr "Kerne" -#: core/choices.py:4 core/choices.py:20 +#: engine/core/choices.py:4 engine/core/choices.py:20 msgid "finished" msgstr "Færdig" -#: core/choices.py:5 core/choices.py:19 +#: engine/core/choices.py:5 engine/core/choices.py:19 msgid "delivering" msgstr "Leverer" -#: core/choices.py:6 +#: engine/core/choices.py:6 msgid "delivered" msgstr "Leveret" -#: core/choices.py:7 +#: engine/core/choices.py:7 msgid "canceled" msgstr "Annulleret" -#: core/choices.py:8 core/choices.py:16 core/choices.py:24 +#: engine/core/choices.py:8 engine/core/choices.py:16 engine/core/choices.py:24 msgid "failed" msgstr "Mislykket" -#: core/choices.py:9 core/choices.py:15 +#: engine/core/choices.py:9 engine/core/choices.py:15 msgid "pending" msgstr "Afventer" -#: core/choices.py:10 +#: engine/core/choices.py:10 msgid "accepted" msgstr "Accepteret" -#: core/choices.py:11 +#: engine/core/choices.py:11 msgid "money returned" msgstr "Penge returneret" -#: core/choices.py:17 +#: engine/core/choices.py:17 msgid "payment" msgstr "Betaling" -#: core/choices.py:21 +#: engine/core/choices.py:21 msgid "momental" msgstr "Momental" -#: core/choices.py:24 +#: engine/core/choices.py:24 msgid "successful" msgstr "Succesfuld" -#: core/docs/drf/views.py:17 core/graphene/mutations.py:38 +#: engine/core/docs/drf/views.py:17 engine/core/graphene/mutations.py:38 msgid "cache I/O" msgstr "Cache-I/O" -#: core/docs/drf/views.py:19 +#: engine/core/docs/drf/views.py:19 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 "" "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." -#: core/docs/drf/views.py:32 +#: engine/core/docs/drf/views.py:32 msgid "get a list of supported languages" msgstr "Få en liste over understøttede sprog" -#: core/docs/drf/views.py:41 +#: engine/core/docs/drf/views.py:41 msgid "get application's exposable parameters" msgstr "Hent applikationens eksponerbare parametre" -#: core/docs/drf/views.py:48 +#: engine/core/docs/drf/views.py:48 msgid "send a message to the support team" msgstr "Send en besked til supportteamet" -#: core/docs/drf/views.py:59 core/graphene/mutations.py:58 +#: engine/core/docs/drf/views.py:59 engine/core/graphene/mutations.py:58 msgid "request a CORSed URL" msgstr "Anmod om en CORSed URL. Kun https er tilladt." -#: core/docs/drf/views.py:85 +#: engine/core/docs/drf/views.py:85 msgid "global search endpoint to query across project's tables" msgstr "Globalt søgepunkt til at søge på tværs af projektets tabeller" -#: core/docs/drf/views.py:91 +#: engine/core/docs/drf/views.py:91 msgid "purchase an order as a business" msgstr "Køb en ordre som virksomhed" -#: core/docs/drf/views.py:98 +#: engine/core/docs/drf/views.py:98 msgid "" "purchase an order as a business, using the provided `products` with " "`product_uuid` and `attributes`." @@ -224,216 +227,218 @@ msgstr "" "Køb en ordre som en virksomhed ved hjælp af de angivne `produkter` med " "`produkt_uuid` og `attributter`." -#: core/docs/drf/viewsets.py:58 +#: engine/core/docs/drf/viewsets.py:58 msgid "list all attribute groups (simple view)" msgstr "Liste over alle attributgrupper (simpel visning)" -#: core/docs/drf/viewsets.py:62 +#: engine/core/docs/drf/viewsets.py:62 msgid "retrieve a single attribute group (detailed view)" msgstr "Hent en enkelt attributgruppe (detaljeret visning)" -#: core/docs/drf/viewsets.py:66 +#: engine/core/docs/drf/viewsets.py:66 msgid "create an attribute group" msgstr "Opret en attributgruppe" -#: core/docs/drf/viewsets.py:70 +#: engine/core/docs/drf/viewsets.py:70 msgid "delete an attribute group" msgstr "Slet en attributgruppe" -#: core/docs/drf/viewsets.py:74 +#: engine/core/docs/drf/viewsets.py:74 msgid "rewrite an existing attribute group saving non-editables" msgstr "" "Omskriv en eksisterende attributgruppe, der gemmer ikke-redigerbare " "attributter" -#: core/docs/drf/viewsets.py:78 -msgid "" -"rewrite some fields of an existing attribute group saving non-editables" +#: engine/core/docs/drf/viewsets.py:78 +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" -#: core/docs/drf/viewsets.py:85 +#: engine/core/docs/drf/viewsets.py:85 msgid "list all attributes (simple view)" msgstr "Liste over alle attributter (simpel visning)" -#: core/docs/drf/viewsets.py:89 +#: engine/core/docs/drf/viewsets.py:89 msgid "retrieve a single attribute (detailed view)" msgstr "Hent en enkelt attribut (detaljeret visning)" -#: core/docs/drf/viewsets.py:93 +#: engine/core/docs/drf/viewsets.py:93 msgid "create an attribute" msgstr "Opret en attribut" -#: core/docs/drf/viewsets.py:97 +#: engine/core/docs/drf/viewsets.py:97 msgid "delete an attribute" msgstr "Slet en attribut" -#: core/docs/drf/viewsets.py:101 +#: engine/core/docs/drf/viewsets.py:101 msgid "rewrite an existing attribute saving non-editables" msgstr "Omskriv en eksisterende attribut, der gemmer ikke-redigerbare filer" -#: core/docs/drf/viewsets.py:105 +#: engine/core/docs/drf/viewsets.py:105 msgid "rewrite some fields of an existing attribute saving non-editables" msgstr "" "Omskriv nogle felter i en eksisterende attribut og gem ikke-redigerbare " "felter" -#: core/docs/drf/viewsets.py:112 +#: engine/core/docs/drf/viewsets.py:112 msgid "list all attribute values (simple view)" msgstr "Liste over alle attributværdier (simpel visning)" -#: core/docs/drf/viewsets.py:116 +#: engine/core/docs/drf/viewsets.py:116 msgid "retrieve a single attribute value (detailed view)" msgstr "Hent en enkelt attributværdi (detaljeret visning)" -#: core/docs/drf/viewsets.py:120 +#: engine/core/docs/drf/viewsets.py:120 msgid "create an attribute value" msgstr "Opret en attributværdi" -#: core/docs/drf/viewsets.py:124 +#: engine/core/docs/drf/viewsets.py:124 msgid "delete an attribute value" msgstr "Slet en attributværdi" -#: core/docs/drf/viewsets.py:128 +#: engine/core/docs/drf/viewsets.py:128 msgid "rewrite an existing attribute value saving non-editables" msgstr "" "Omskriv en eksisterende attributværdi, der gemmer ikke-redigerbare filer" -#: core/docs/drf/viewsets.py:132 -msgid "" -"rewrite some fields of an existing attribute value saving non-editables" +#: engine/core/docs/drf/viewsets.py:132 +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" -#: core/docs/drf/viewsets.py:139 core/docs/drf/viewsets.py:140 +#: engine/core/docs/drf/viewsets.py:139 engine/core/docs/drf/viewsets.py:140 msgid "list all categories (simple view)" msgstr "Liste over alle kategorier (enkel visning)" -#: core/docs/drf/viewsets.py:144 core/docs/drf/viewsets.py:145 +#: engine/core/docs/drf/viewsets.py:144 engine/core/docs/drf/viewsets.py:145 msgid "retrieve a single category (detailed view)" msgstr "Hent en enkelt kategori (detaljeret visning)" -#: core/docs/drf/viewsets.py:149 core/docs/drf/viewsets.py:150 +#: engine/core/docs/drf/viewsets.py:150 engine/core/docs/drf/viewsets.py:183 +msgid "Category UUID or slug" +msgstr "Kategori UUID eller slug" + +#: engine/core/docs/drf/viewsets.py:157 engine/core/docs/drf/viewsets.py:158 msgid "create a category" msgstr "Opret en kategori" -#: core/docs/drf/viewsets.py:154 core/docs/drf/viewsets.py:155 +#: engine/core/docs/drf/viewsets.py:162 engine/core/docs/drf/viewsets.py:163 msgid "delete a category" msgstr "Slet en kategori" -#: core/docs/drf/viewsets.py:159 core/docs/drf/viewsets.py:160 +#: engine/core/docs/drf/viewsets.py:167 engine/core/docs/drf/viewsets.py:168 msgid "rewrite an existing category saving non-editables" msgstr "Omskriv en eksisterende kategori, der gemmer ikke-redigerbare filer" -#: core/docs/drf/viewsets.py:164 core/docs/drf/viewsets.py:165 +#: engine/core/docs/drf/viewsets.py:172 engine/core/docs/drf/viewsets.py:173 msgid "rewrite some fields of an existing category saving non-editables" msgstr "" "Omskriv nogle felter i en eksisterende kategori og gem ikke-redigerbare " "felter" -#: core/docs/drf/viewsets.py:169 core/docs/drf/viewsets.py:501 -#: core/graphene/object_types.py:117 core/graphene/object_types.py:207 -#: core/graphene/object_types.py:482 +#: engine/core/docs/drf/viewsets.py:177 engine/core/docs/drf/viewsets.py:517 +#: engine/core/graphene/object_types.py:117 +#: engine/core/graphene/object_types.py:207 +#: engine/core/graphene/object_types.py:482 msgid "SEO Meta snapshot" msgstr "SEO-meta-snapshot" -#: core/docs/drf/viewsets.py:170 +#: engine/core/docs/drf/viewsets.py:178 msgid "returns a snapshot of the category's SEO meta data" msgstr "Returnerer et øjebliksbillede af kategoriens SEO-metadata" -#: core/docs/drf/viewsets.py:175 -msgid "Category UUID or slug" -msgstr "Kategori UUID eller slug" - -#: core/docs/drf/viewsets.py:188 +#: engine/core/docs/drf/viewsets.py:196 msgid "list all orders (simple view)" msgstr "Liste over alle kategorier (enkel visning)" -#: core/docs/drf/viewsets.py:189 +#: engine/core/docs/drf/viewsets.py:197 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." -#: core/docs/drf/viewsets.py:195 +#: engine/core/docs/drf/viewsets.py:203 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" -#: core/docs/drf/viewsets.py:202 +#: engine/core/docs/drf/viewsets.py:210 msgid "Filter orders with buy_time >= this ISO 8601 datetime" msgstr "Filtrer ordrer med buy_time >= denne ISO 8601 datetime" -#: core/docs/drf/viewsets.py:207 +#: engine/core/docs/drf/viewsets.py:215 msgid "Filter orders with buy_time <= this ISO 8601 datetime" msgstr "Filtrer ordrer med buy_time <= denne ISO 8601 datetime" -#: core/docs/drf/viewsets.py:212 +#: engine/core/docs/drf/viewsets.py:220 msgid "Filter by exact order UUID" msgstr "Filtrer efter nøjagtig ordre-UUID" -#: core/docs/drf/viewsets.py:217 +#: engine/core/docs/drf/viewsets.py:225 msgid "Filter by exact human-readable order ID" msgstr "Filtrer efter nøjagtigt menneskeligt læsbart ordre-ID" -#: core/docs/drf/viewsets.py:222 +#: engine/core/docs/drf/viewsets.py:230 msgid "Filter by user's email (case-insensitive exact match)" msgstr "Filtrer efter brugerens e-mail (case-insensitive exact match)" -#: core/docs/drf/viewsets.py:227 +#: engine/core/docs/drf/viewsets.py:235 msgid "Filter by user's UUID" msgstr "Filtrer efter brugerens UUID" -#: core/docs/drf/viewsets.py:232 +#: engine/core/docs/drf/viewsets.py:240 msgid "Filter by order status (case-insensitive substring match)" msgstr "Filtrer efter ordrestatus (case-insensitive substring match)" -#: core/docs/drf/viewsets.py:238 +#: engine/core/docs/drf/viewsets.py:246 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')." -#: core/docs/drf/viewsets.py:247 +#: engine/core/docs/drf/viewsets.py:255 msgid "retrieve a single order (detailed view)" msgstr "Hent en enkelt kategori (detaljeret visning)" -#: core/docs/drf/viewsets.py:251 +#: engine/core/docs/drf/viewsets.py:260 +msgid "Order UUID or human-readable id" +msgstr "Bestil UUID eller menneskeligt læsbart id" + +#: engine/core/docs/drf/viewsets.py:267 msgid "create an order" msgstr "Opret en attribut" -#: core/docs/drf/viewsets.py:252 +#: engine/core/docs/drf/viewsets.py:268 msgid "doesn't work for non-staff users." msgstr "Virker ikke for ikke-ansatte brugere." -#: core/docs/drf/viewsets.py:256 +#: engine/core/docs/drf/viewsets.py:272 msgid "delete an order" msgstr "Slet en attribut" -#: core/docs/drf/viewsets.py:260 +#: engine/core/docs/drf/viewsets.py:276 msgid "rewrite an existing order saving non-editables" msgstr "Omskriv en eksisterende kategori, der gemmer ikke-redigerbare filer" -#: core/docs/drf/viewsets.py:264 +#: engine/core/docs/drf/viewsets.py:280 msgid "rewrite some fields of an existing order saving non-editables" msgstr "" "Omskriv nogle felter i en eksisterende kategori og gem ikke-redigerbare " "felter" -#: core/docs/drf/viewsets.py:268 +#: engine/core/docs/drf/viewsets.py:284 msgid "purchase an order" msgstr "Købspris på bestillingstidspunktet" -#: core/docs/drf/viewsets.py:270 +#: engine/core/docs/drf/viewsets.py:286 msgid "" "finalizes the order purchase. if `force_balance` is used, the purchase is " "completed using the user's balance; if `force_payment` is used, a " @@ -443,19 +448,19 @@ msgstr "" "ved hjælp af brugerens saldo; hvis `force_payment` bruges, igangsættes en " "transaktion." -#: core/docs/drf/viewsets.py:282 core/graphene/mutations.py:335 +#: engine/core/docs/drf/viewsets.py:298 engine/core/graphene/mutations.py:335 msgid "purchase an order without account creation" msgstr "Køb en ordre uden at oprette en konto" -#: core/docs/drf/viewsets.py:283 +#: engine/core/docs/drf/viewsets.py:299 msgid "finalizes the order purchase for a non-registered user." msgstr "afslutter ordrekøbet for en ikke-registreret bruger." -#: core/docs/drf/viewsets.py:291 +#: engine/core/docs/drf/viewsets.py:307 msgid "add product to order" msgstr "Tilføj et produkt til ordren" -#: core/docs/drf/viewsets.py:292 +#: engine/core/docs/drf/viewsets.py:308 msgid "" "adds a product to an order using the provided `product_uuid` and " "`attributes`." @@ -463,11 +468,11 @@ msgstr "" "Tilføjer et produkt til en ordre ved hjælp af de angivne `product_uuid` og " "`attributes`." -#: core/docs/drf/viewsets.py:297 +#: engine/core/docs/drf/viewsets.py:313 msgid "add a list of products to order, quantities will not count" msgstr "Tilføj en liste med produkter til bestilling, antal tæller ikke med" -#: core/docs/drf/viewsets.py:298 +#: engine/core/docs/drf/viewsets.py:314 msgid "" "adds a list of products to an order using the provided `product_uuid` and " "`attributes`." @@ -475,11 +480,11 @@ msgstr "" "Tilføjer en liste af produkter til en ordre ved hjælp af de angivne " "`product_uuid` og `attributes`." -#: core/docs/drf/viewsets.py:303 +#: engine/core/docs/drf/viewsets.py:319 msgid "remove product from order" msgstr "Fjern et produkt fra ordren" -#: core/docs/drf/viewsets.py:304 +#: engine/core/docs/drf/viewsets.py:320 msgid "" "removes a product from an order using the provided `product_uuid` and " "`attributes`." @@ -487,11 +492,11 @@ msgstr "" "Fjerner et produkt fra en ordre ved hjælp af de angivne `product_uuid` og " "`attributes`." -#: core/docs/drf/viewsets.py:309 +#: engine/core/docs/drf/viewsets.py:325 msgid "remove product from order, quantities will not count" msgstr "Fjern et produkt fra ordren, mængderne tæller ikke med" -#: core/docs/drf/viewsets.py:310 +#: engine/core/docs/drf/viewsets.py:326 msgid "" "removes a list of products from an order using the provided `product_uuid` " "and `attributes`" @@ -499,798 +504,821 @@ msgstr "" "Fjerner en liste af produkter fra en ordre ved hjælp af de angivne " "`product_uuid` og `attributes`." -#: core/docs/drf/viewsets.py:318 +#: engine/core/docs/drf/viewsets.py:334 msgid "list all wishlists (simple view)" msgstr "Liste over alle attributter (simpel visning)" -#: core/docs/drf/viewsets.py:319 +#: engine/core/docs/drf/viewsets.py:335 msgid "for non-staff users, only their own wishlists are returned." msgstr "" "For ikke-ansatte brugere er det kun deres egne ønskelister, der returneres." -#: core/docs/drf/viewsets.py:323 +#: engine/core/docs/drf/viewsets.py:339 msgid "retrieve a single wishlist (detailed view)" msgstr "Hent en enkelt attribut (detaljeret visning)" -#: core/docs/drf/viewsets.py:327 +#: engine/core/docs/drf/viewsets.py:343 msgid "create an wishlist" msgstr "Opret en attribut" -#: core/docs/drf/viewsets.py:328 +#: engine/core/docs/drf/viewsets.py:344 msgid "Doesn't work for non-staff users." msgstr "Virker ikke for ikke-ansatte brugere." -#: core/docs/drf/viewsets.py:332 +#: engine/core/docs/drf/viewsets.py:348 msgid "delete an wishlist" msgstr "Slet en attribut" -#: core/docs/drf/viewsets.py:336 +#: engine/core/docs/drf/viewsets.py:352 msgid "rewrite an existing wishlist saving non-editables" msgstr "Omskriv en eksisterende attribut, der gemmer ikke-redigerbare filer" -#: core/docs/drf/viewsets.py:340 +#: engine/core/docs/drf/viewsets.py:356 msgid "rewrite some fields of an existing wishlist saving non-editables" msgstr "" "Omskriv nogle felter i en eksisterende attribut og gem ikke-redigerbare " "felter" -#: core/docs/drf/viewsets.py:344 +#: engine/core/docs/drf/viewsets.py:360 msgid "add product to wishlist" msgstr "Tilføj et produkt til ordren" -#: core/docs/drf/viewsets.py:345 +#: engine/core/docs/drf/viewsets.py:361 msgid "adds a product to an wishlist using the provided `product_uuid`" msgstr "" "Tilføjer et produkt til en ønskeliste ved hjælp af den angivne " "`product_uuid`." -#: core/docs/drf/viewsets.py:350 +#: engine/core/docs/drf/viewsets.py:366 msgid "remove product from wishlist" msgstr "Fjern et produkt fra ønskelisten" -#: core/docs/drf/viewsets.py:351 +#: engine/core/docs/drf/viewsets.py:367 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`." -#: core/docs/drf/viewsets.py:356 +#: engine/core/docs/drf/viewsets.py:372 msgid "add many products to wishlist" msgstr "Tilføj mange produkter til ønskelisten" -#: core/docs/drf/viewsets.py:357 +#: engine/core/docs/drf/viewsets.py:373 msgid "adds many products to an wishlist using the provided `product_uuids`" msgstr "" "Tilføjer mange produkter til en ønskeliste ved hjælp af de angivne " "`product_uuids`." -#: core/docs/drf/viewsets.py:362 +#: engine/core/docs/drf/viewsets.py:378 msgid "remove many products from wishlist" msgstr "Fjern et produkt fra ordren" -#: core/docs/drf/viewsets.py:363 +#: engine/core/docs/drf/viewsets.py:379 msgid "" "removes many products from an wishlist using the provided `product_uuids`" msgstr "" "Fjerner mange produkter fra en ønskeliste ved hjælp af de angivne " "`product_uuids`." -#: core/docs/drf/viewsets.py:370 +#: engine/core/docs/drf/viewsets.py:386 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`." -#: core/docs/drf/viewsets.py:386 core/docs/drf/viewsets.py:387 +#: engine/core/docs/drf/viewsets.py:402 engine/core/docs/drf/viewsets.py:403 msgid "list all products (simple view)" msgstr "Liste over alle produkter (enkel visning)" -#: core/docs/drf/viewsets.py:392 +#: engine/core/docs/drf/viewsets.py:408 msgid "(exact) Product UUID" msgstr "(præcis) Produkt-UUID" -#: core/docs/drf/viewsets.py:399 +#: engine/core/docs/drf/viewsets.py:415 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" -#: core/docs/drf/viewsets.py:413 core/docs/drf/viewsets.py:414 +#: engine/core/docs/drf/viewsets.py:429 engine/core/docs/drf/viewsets.py:430 msgid "retrieve a single product (detailed view)" msgstr "Hent et enkelt produkt (detaljeret visning)" -#: core/docs/drf/viewsets.py:419 core/docs/drf/viewsets.py:443 -#: core/docs/drf/viewsets.py:459 core/docs/drf/viewsets.py:475 -#: core/docs/drf/viewsets.py:491 core/docs/drf/viewsets.py:507 +#: engine/core/docs/drf/viewsets.py:435 engine/core/docs/drf/viewsets.py:459 +#: engine/core/docs/drf/viewsets.py:475 engine/core/docs/drf/viewsets.py:491 +#: engine/core/docs/drf/viewsets.py:507 engine/core/docs/drf/viewsets.py:523 msgid "Product UUID or slug" msgstr "Produkt UUID eller Slug" -#: core/docs/drf/viewsets.py:429 core/docs/drf/viewsets.py:430 +#: engine/core/docs/drf/viewsets.py:445 engine/core/docs/drf/viewsets.py:446 msgid "create a product" msgstr "Opret et produkt" -#: core/docs/drf/viewsets.py:437 core/docs/drf/viewsets.py:438 +#: engine/core/docs/drf/viewsets.py:453 engine/core/docs/drf/viewsets.py:454 msgid "rewrite an existing product, preserving non-editable fields" msgstr "Omskriv et eksisterende produkt og bevar ikke-redigerbare felter" -#: core/docs/drf/viewsets.py:453 core/docs/drf/viewsets.py:454 +#: engine/core/docs/drf/viewsets.py:469 engine/core/docs/drf/viewsets.py:470 msgid "" "update some fields of an existing product, preserving non-editable fields" msgstr "" "Opdater nogle felter i et eksisterende produkt og bevar ikke-redigerbare " "felter" -#: core/docs/drf/viewsets.py:469 core/docs/drf/viewsets.py:470 +#: engine/core/docs/drf/viewsets.py:485 engine/core/docs/drf/viewsets.py:486 msgid "delete a product" msgstr "Slet et produkt" -#: core/docs/drf/viewsets.py:485 core/docs/drf/viewsets.py:486 +#: engine/core/docs/drf/viewsets.py:501 engine/core/docs/drf/viewsets.py:502 msgid "lists all permitted feedbacks for a product" msgstr "viser alle tilladte tilbagemeldinger for et produkt" -#: core/docs/drf/viewsets.py:502 +#: engine/core/docs/drf/viewsets.py:518 msgid "returns a snapshot of the product's SEO meta data" msgstr "Returnerer et øjebliksbillede af produktets SEO-metadata" -#: core/docs/drf/viewsets.py:520 +#: engine/core/docs/drf/viewsets.py:536 msgid "list all addresses" msgstr "Angiv alle adresser" -#: core/docs/drf/viewsets.py:527 +#: engine/core/docs/drf/viewsets.py:543 msgid "retrieve a single address" msgstr "Hent en enkelt adresse" -#: core/docs/drf/viewsets.py:534 +#: engine/core/docs/drf/viewsets.py:550 msgid "create a new address" msgstr "Opret en ny adresse" -#: core/docs/drf/viewsets.py:542 +#: engine/core/docs/drf/viewsets.py:558 msgid "delete an address" msgstr "Slet en adresse" -#: core/docs/drf/viewsets.py:549 +#: engine/core/docs/drf/viewsets.py:565 msgid "update an entire address" msgstr "Opdater en hel adresse" -#: core/docs/drf/viewsets.py:557 +#: engine/core/docs/drf/viewsets.py:573 msgid "partially update an address" msgstr "Delvis opdatering af en adresse" -#: core/docs/drf/viewsets.py:565 +#: engine/core/docs/drf/viewsets.py:581 msgid "autocomplete address suggestions" msgstr "Automatisk udfyldning af adresseinput" -#: core/docs/drf/viewsets.py:570 +#: engine/core/docs/drf/viewsets.py:586 msgid "raw data query string, please append with data from geo-IP endpoint" msgstr "Rå dataforespørgselsstreng, tilføj venligst data fra geo-IP-slutpunkt" -#: core/docs/drf/viewsets.py:576 +#: engine/core/docs/drf/viewsets.py:592 msgid "limit the results amount, 1 < limit < 10, default: 5" msgstr "begrænser mængden af resultater, 1 < grænse < 10, standard: 5" -#: core/docs/drf/viewsets.py:589 +#: engine/core/docs/drf/viewsets.py:605 msgid "list all feedbacks (simple view)" msgstr "Vis alle tilbagemeldinger (enkel visning)" -#: core/docs/drf/viewsets.py:593 +#: engine/core/docs/drf/viewsets.py:609 msgid "retrieve a single feedback (detailed view)" msgstr "Hent en enkelt feedback (detaljeret visning)" -#: core/docs/drf/viewsets.py:597 +#: engine/core/docs/drf/viewsets.py:613 msgid "create a feedback" msgstr "skab en feedback" -#: core/docs/drf/viewsets.py:601 +#: engine/core/docs/drf/viewsets.py:617 msgid "delete a feedback" msgstr "Slet en tilbagemelding" -#: core/docs/drf/viewsets.py:605 +#: engine/core/docs/drf/viewsets.py:621 msgid "rewrite an existing feedback saving non-editables" msgstr "omskriv en eksisterende feedback, der gemmer ikke-redigerbare filer" -#: core/docs/drf/viewsets.py:609 +#: engine/core/docs/drf/viewsets.py:625 msgid "rewrite some fields of an existing feedback saving non-editables" msgstr "" "Omskriv nogle felter i en eksisterende kategori og gem ikke-redigerbare " "felter" -#: core/docs/drf/viewsets.py:616 +#: engine/core/docs/drf/viewsets.py:632 msgid "list all order–product relations (simple view)" msgstr "liste alle ordre-produkt-relationer (simpel visning)" -#: core/docs/drf/viewsets.py:623 +#: engine/core/docs/drf/viewsets.py:639 msgid "retrieve a single order–product relation (detailed view)" msgstr "Hent en enkelt ordre-produkt-relation (detaljeret visning)" -#: core/docs/drf/viewsets.py:630 +#: engine/core/docs/drf/viewsets.py:646 msgid "create a new order–product relation" msgstr "Opret en ny ordre-produkt-relation" -#: core/docs/drf/viewsets.py:637 +#: engine/core/docs/drf/viewsets.py:653 msgid "replace an existing order–product relation" msgstr "erstatte en eksisterende ordre-produkt-relation" -#: core/docs/drf/viewsets.py:644 +#: engine/core/docs/drf/viewsets.py:660 msgid "partially update an existing order–product relation" msgstr "delvist opdatere en eksisterende ordre-produkt-relation" -#: core/docs/drf/viewsets.py:651 +#: engine/core/docs/drf/viewsets.py:667 msgid "delete an order–product relation" msgstr "slette en ordre-produkt-relation" -#: core/docs/drf/viewsets.py:658 +#: engine/core/docs/drf/viewsets.py:674 msgid "add or remove feedback on an order–product relation" msgstr "tilføje eller fjerne feedback på en ordre-produkt-relation" -#: core/docs/drf/viewsets.py:672 +#: engine/core/docs/drf/viewsets.py:688 msgid "list all brands (simple view)" msgstr "Liste over alle mærker (enkel visning)" -#: core/docs/drf/viewsets.py:676 +#: engine/core/docs/drf/viewsets.py:692 msgid "retrieve a single brand (detailed view)" msgstr "Hent et enkelt mærke (detaljeret visning)" -#: core/docs/drf/viewsets.py:680 +#: engine/core/docs/drf/viewsets.py:697 engine/core/docs/drf/viewsets.py:725 +msgid "Brand UUID or slug" +msgstr "Brand UUID eller slug" + +#: engine/core/docs/drf/viewsets.py:704 msgid "create a brand" msgstr "Skab et brand" -#: core/docs/drf/viewsets.py:684 +#: engine/core/docs/drf/viewsets.py:708 msgid "delete a brand" msgstr "Slet et brand" -#: core/docs/drf/viewsets.py:688 +#: engine/core/docs/drf/viewsets.py:712 msgid "rewrite an existing brand saving non-editables" msgstr "Omskrivning af et eksisterende brand, der gemmer non-editables" -#: core/docs/drf/viewsets.py:692 +#: engine/core/docs/drf/viewsets.py:716 msgid "rewrite some fields of an existing brand saving non-editables" msgstr "" "Omskriv nogle felter i en eksisterende kategori og gem ikke-redigerbare " "felter" -#: core/docs/drf/viewsets.py:696 +#: engine/core/docs/drf/viewsets.py:720 msgid "SEO Meta snapshot for brand" msgstr "SEO-meta-snapshot for brand" -#: core/docs/drf/viewsets.py:703 +#: engine/core/docs/drf/viewsets.py:735 msgid "list all vendors (simple view)" msgstr "Liste over alle leverandører (enkel visning)" -#: core/docs/drf/viewsets.py:707 +#: engine/core/docs/drf/viewsets.py:739 msgid "retrieve a single vendor (detailed view)" msgstr "Hent en enkelt leverandør (detaljeret visning)" -#: core/docs/drf/viewsets.py:711 +#: engine/core/docs/drf/viewsets.py:743 msgid "create a vendor" msgstr "Opret en leverandør" -#: core/docs/drf/viewsets.py:715 +#: engine/core/docs/drf/viewsets.py:747 msgid "delete a vendor" msgstr "Slet en leverandør" -#: core/docs/drf/viewsets.py:719 +#: engine/core/docs/drf/viewsets.py:751 msgid "rewrite an existing vendor saving non-editables" msgstr "Omskriv en eksisterende leverandør, der gemmer ikke-redigerbare filer" -#: core/docs/drf/viewsets.py:723 +#: engine/core/docs/drf/viewsets.py:755 msgid "rewrite some fields of an existing vendor saving non-editables" msgstr "" "Omskriv nogle felter i en eksisterende kategori og gem ikke-redigerbare " "felter" -#: core/docs/drf/viewsets.py:730 +#: engine/core/docs/drf/viewsets.py:762 msgid "list all product images (simple view)" msgstr "Vis alle produktbilleder (enkel visning)" -#: core/docs/drf/viewsets.py:734 +#: engine/core/docs/drf/viewsets.py:766 msgid "retrieve a single product image (detailed view)" msgstr "Hent et enkelt produktbillede (detaljeret visning)" -#: core/docs/drf/viewsets.py:738 +#: engine/core/docs/drf/viewsets.py:770 msgid "create a product image" msgstr "Skab et produktbillede" -#: core/docs/drf/viewsets.py:742 +#: engine/core/docs/drf/viewsets.py:774 msgid "delete a product image" msgstr "Slet et produktbillede" -#: core/docs/drf/viewsets.py:746 +#: engine/core/docs/drf/viewsets.py:778 msgid "rewrite an existing product image saving non-editables" msgstr "" "Omskriv et eksisterende produktbillede og gem ikke-redigerbare elementer" -#: core/docs/drf/viewsets.py:750 +#: engine/core/docs/drf/viewsets.py:782 msgid "rewrite some fields of an existing product image saving non-editables" msgstr "" "Omskriv nogle felter i en eksisterende kategori og gem ikke-redigerbare " "felter" -#: core/docs/drf/viewsets.py:757 +#: engine/core/docs/drf/viewsets.py:789 msgid "list all promo codes (simple view)" msgstr "Liste over alle kampagnekoder (enkel visning)" -#: core/docs/drf/viewsets.py:761 +#: engine/core/docs/drf/viewsets.py:793 msgid "retrieve a single promo code (detailed view)" msgstr "Hent en enkelt kampagnekode (detaljeret visning)" -#: core/docs/drf/viewsets.py:765 +#: engine/core/docs/drf/viewsets.py:797 msgid "create a promo code" msgstr "Opret en kampagnekode" -#: core/docs/drf/viewsets.py:769 +#: engine/core/docs/drf/viewsets.py:801 msgid "delete a promo code" msgstr "Slet en kampagnekode" -#: core/docs/drf/viewsets.py:773 +#: engine/core/docs/drf/viewsets.py:805 msgid "rewrite an existing promo code saving non-editables" msgstr "Omskriv en eksisterende kampagnekode og gem ikke-redigerbare koder" -#: core/docs/drf/viewsets.py:777 +#: engine/core/docs/drf/viewsets.py:809 msgid "rewrite some fields of an existing promo code saving non-editables" msgstr "" "Omskriv nogle felter i en eksisterende kategori og gem ikke-redigerbare " "felter" -#: core/docs/drf/viewsets.py:784 +#: engine/core/docs/drf/viewsets.py:816 msgid "list all promotions (simple view)" msgstr "Liste over alle kampagner (enkel visning)" -#: core/docs/drf/viewsets.py:788 +#: engine/core/docs/drf/viewsets.py:820 msgid "retrieve a single promotion (detailed view)" msgstr "Hent en enkelt forfremmelse (detaljeret visning)" -#: core/docs/drf/viewsets.py:792 +#: engine/core/docs/drf/viewsets.py:824 msgid "create a promotion" msgstr "Opret en kampagne" -#: core/docs/drf/viewsets.py:796 +#: engine/core/docs/drf/viewsets.py:828 msgid "delete a promotion" msgstr "Slet en forfremmelse" -#: core/docs/drf/viewsets.py:800 +#: engine/core/docs/drf/viewsets.py:832 msgid "rewrite an existing promotion saving non-editables" msgstr "Omskriv en eksisterende kampagne og gem ikke-redigerbare elementer" -#: core/docs/drf/viewsets.py:804 +#: engine/core/docs/drf/viewsets.py:836 msgid "rewrite some fields of an existing promotion saving non-editables" msgstr "" "Omskriv nogle felter i en eksisterende kategori og gem ikke-redigerbare " "felter" -#: core/docs/drf/viewsets.py:811 +#: engine/core/docs/drf/viewsets.py:843 msgid "list all stocks (simple view)" msgstr "Liste over alle aktier (enkel visning)" -#: core/docs/drf/viewsets.py:815 +#: engine/core/docs/drf/viewsets.py:847 msgid "retrieve a single stock (detailed view)" msgstr "Hent et enkelt lager (detaljeret visning)" -#: core/docs/drf/viewsets.py:819 +#: engine/core/docs/drf/viewsets.py:851 msgid "create a stock record" msgstr "Opret en lagerpost" -#: core/docs/drf/viewsets.py:823 +#: engine/core/docs/drf/viewsets.py:855 msgid "delete a stock record" msgstr "Slet en lagerpost" -#: core/docs/drf/viewsets.py:827 +#: engine/core/docs/drf/viewsets.py:859 msgid "rewrite an existing stock record saving non-editables" msgstr "Omskriv en eksisterende lagerpost og gem ikke-redigerbare varer" -#: core/docs/drf/viewsets.py:831 +#: engine/core/docs/drf/viewsets.py:863 msgid "rewrite some fields of an existing stock record saving non-editables" msgstr "" "Omskriv nogle felter i en eksisterende kategori og gem ikke-redigerbare " "felter" -#: core/docs/drf/viewsets.py:838 +#: engine/core/docs/drf/viewsets.py:870 msgid "list all product tags (simple view)" msgstr "Liste over alle produkttags (enkel visning)" -#: core/docs/drf/viewsets.py:842 +#: engine/core/docs/drf/viewsets.py:874 msgid "retrieve a single product tag (detailed view)" msgstr "Hent et enkelt produkttag (detaljeret visning)" -#: core/docs/drf/viewsets.py:846 +#: engine/core/docs/drf/viewsets.py:878 msgid "create a product tag" msgstr "Opret et produkttag" -#: core/docs/drf/viewsets.py:850 +#: engine/core/docs/drf/viewsets.py:882 msgid "delete a product tag" msgstr "Slet et produkttag" -#: core/docs/drf/viewsets.py:854 +#: engine/core/docs/drf/viewsets.py:886 msgid "rewrite an existing product tag saving non-editables" msgstr "Omskriv et eksisterende produkttag og gem ikke-redigerbare ting" -#: core/docs/drf/viewsets.py:858 +#: engine/core/docs/drf/viewsets.py:890 msgid "rewrite some fields of an existing product tag saving non-editables" msgstr "" "Omskriv nogle felter i en eksisterende kategori og gem ikke-redigerbare " "felter" -#: core/elasticsearch/__init__.py:118 core/elasticsearch/__init__.py:550 +#: engine/core/elasticsearch/__init__.py:122 +#: engine/core/elasticsearch/__init__.py:570 msgid "no search term provided." msgstr "Der er ikke angivet noget søgeord." -#: core/filters.py:69 core/filters.py:412 core/filters.py:539 +#: engine/core/filters.py:69 engine/core/filters.py:426 +#: engine/core/filters.py:553 msgid "Search" msgstr "Søg efter" -#: core/filters.py:70 core/filters.py:569 core/filters.py:598 +#: engine/core/filters.py:70 engine/core/filters.py:583 +#: engine/core/filters.py:612 msgid "UUID" msgstr "UUID" -#: core/filters.py:71 core/filters.py:414 core/filters.py:541 +#: engine/core/filters.py:71 engine/core/filters.py:428 +#: engine/core/filters.py:555 msgid "Name" msgstr "Navn" -#: core/filters.py:72 core/filters.py:543 +#: engine/core/filters.py:72 engine/core/filters.py:557 msgid "Categories" msgstr "Kategorier" -#: core/filters.py:74 +#: engine/core/filters.py:74 msgid "Categories Slugs" msgstr "Kategorier Snegle" -#: core/filters.py:75 core/filters.py:422 +#: engine/core/filters.py:75 engine/core/filters.py:436 msgid "Tags" msgstr "Tags" -#: core/filters.py:76 +#: engine/core/filters.py:76 msgid "Min Price" msgstr "Min. pris" -#: core/filters.py:77 +#: engine/core/filters.py:77 msgid "Max Price" msgstr "Maks. pris" -#: core/filters.py:78 +#: engine/core/filters.py:78 msgid "Is Active" msgstr "Er aktiv" -#: core/filters.py:79 +#: engine/core/filters.py:79 msgid "Brand" msgstr "Brand" -#: core/filters.py:80 +#: engine/core/filters.py:80 msgid "Attributes" msgstr "Egenskaber" -#: core/filters.py:81 +#: engine/core/filters.py:81 msgid "Quantity" msgstr "Mængde" -#: core/filters.py:82 core/filters.py:416 core/filters.py:542 -#: core/models.py:322 core/models.py:483 core/models.py:637 +#: engine/core/filters.py:82 engine/core/filters.py:430 +#: engine/core/filters.py:556 engine/core/models.py:321 +#: engine/core/models.py:482 engine/core/models.py:637 msgid "Slug" msgstr "Snegl" -#: core/filters.py:83 +#: engine/core/filters.py:83 msgid "Is Digital" msgstr "Er digital" -#: core/filters.py:84 +#: engine/core/filters.py:84 msgid "Include sub-categories" msgstr "Inkluder underkategorier" -#: core/filters.py:87 +#: engine/core/filters.py:87 msgid "Include personal ordered" msgstr "Inkluder personligt bestilte produkter" -#: core/filters.py:89 core/models.py:641 +#: engine/core/filters.py:89 engine/core/models.py:641 msgid "SKU" msgstr "VARENUMMER" -#: core/filters.py:173 +#: engine/core/filters.py:184 msgid "there must be a category_uuid to use include_subcategories flag" msgstr "" "Der skal være en category_uuid for at bruge include_subcategories-flaget" -#: core/filters.py:339 +#: engine/core/filters.py:353 msgid "Search (ID, product name or part number)" msgstr "Søg (ID, produktnavn eller reservedelsnummer)" -#: core/filters.py:342 +#: engine/core/filters.py:356 msgid "Bought after (inclusive)" msgstr "Købt efter (inklusive)" -#: core/filters.py:343 +#: engine/core/filters.py:357 msgid "Bought before (inclusive)" msgstr "Købt før (inklusive)" -#: core/filters.py:346 core/filters.py:393 core/filters.py:600 +#: engine/core/filters.py:360 engine/core/filters.py:407 +#: engine/core/filters.py:614 msgid "User email" msgstr "Brugerens e-mail" -#: core/filters.py:347 core/filters.py:394 core/filters.py:578 -#: core/filters.py:599 +#: engine/core/filters.py:361 engine/core/filters.py:408 +#: engine/core/filters.py:592 engine/core/filters.py:613 msgid "User UUID" msgstr "Bruger UUID" -#: core/filters.py:348 +#: engine/core/filters.py:362 msgid "Status" msgstr "Status" -#: core/filters.py:352 +#: engine/core/filters.py:366 msgid "Human Readable ID" msgstr "Menneskeligt læsbart ID" -#: core/filters.py:415 +#: engine/core/filters.py:429 msgid "Parent" msgstr "Forælder" -#: core/filters.py:419 +#: engine/core/filters.py:433 msgid "Whole category(has at least 1 product or not)" msgstr "Hele kategorien (har mindst 1 produkt eller ej)" -#: core/filters.py:423 +#: engine/core/filters.py:437 msgid "Level" msgstr "Niveau" -#: core/filters.py:573 +#: engine/core/filters.py:587 msgid "Product UUID" msgstr "Produkt UUID" -#: core/graphene/mutations.py:41 +#: engine/core/graphene/mutations.py:41 msgid "key to look for in or set into the cache" msgstr "Nøgle til at lede efter i eller lægge i cachen" -#: core/graphene/mutations.py:42 +#: engine/core/graphene/mutations.py:42 msgid "data to store in cache" msgstr "Data, der skal gemmes i cachen" -#: core/graphene/mutations.py:45 +#: engine/core/graphene/mutations.py:45 msgid "timeout in seconds to set the data for into the cache" msgstr "Timeout i sekunder for at lægge data i cachen" -#: core/graphene/mutations.py:48 +#: engine/core/graphene/mutations.py:48 msgid "cached data" msgstr "Cachelagrede data" -#: core/graphene/mutations.py:63 +#: engine/core/graphene/mutations.py:63 msgid "camelized JSON data from the requested URL" msgstr "Cameliserede JSON-data fra den ønskede URL" -#: core/graphene/mutations.py:68 core/views.py:232 +#: engine/core/graphene/mutations.py:68 engine/core/views.py:231 msgid "only URLs starting with http(s):// are allowed" msgstr "Kun URL'er, der starter med http(s)://, er tilladt." -#: core/graphene/mutations.py:84 +#: engine/core/graphene/mutations.py:84 msgid "add a product to the order" msgstr "Tilføj et produkt til ordren" -#: core/graphene/mutations.py:105 core/graphene/mutations.py:132 -#: core/graphene/mutations.py:240 core/graphene/mutations.py:288 +#: engine/core/graphene/mutations.py:105 engine/core/graphene/mutations.py:132 +#: engine/core/graphene/mutations.py:240 engine/core/graphene/mutations.py:288 #, python-brace-format msgid "order {order_uuid} not found" msgstr "Ordre {order_uuid} ikke fundet!" -#: core/graphene/mutations.py:111 core/graphene/mutations.py:160 +#: engine/core/graphene/mutations.py:111 engine/core/graphene/mutations.py:160 msgid "remove a product from the order" msgstr "Fjern et produkt fra ordren" -#: core/graphene/mutations.py:138 +#: engine/core/graphene/mutations.py:138 msgid "remove all products from the order" msgstr "Fjern alle produkter fra ordren" -#: core/graphene/mutations.py:183 +#: engine/core/graphene/mutations.py:183 msgid "buy an order" msgstr "Køb en ordre" -#: core/graphene/mutations.py:212 core/graphene/mutations.py:266 +#: engine/core/graphene/mutations.py:212 engine/core/graphene/mutations.py:266 msgid "please provide either order_uuid or order_hr_id - mutually exclusive" msgstr "Angiv enten order_uuid eller order_hr_id - det udelukker hinanden!" -#: core/graphene/mutations.py:237 core/graphene/mutations.py:502 -#: core/graphene/mutations.py:544 core/viewsets.py:704 +#: engine/core/graphene/mutations.py:237 engine/core/graphene/mutations.py:502 +#: engine/core/graphene/mutations.py:544 engine/core/viewsets.py:704 msgid "wrong type came from order.buy() method: {type(instance)!s}" msgstr "Forkert type kom fra metoden order.buy(): {type(instance)!s}" -#: core/graphene/mutations.py:246 +#: engine/core/graphene/mutations.py:246 msgid "perform an action on a list of products in the order" msgstr "Udfør en handling på en liste af produkter i ordren" -#: core/graphene/mutations.py:251 +#: engine/core/graphene/mutations.py:251 msgid "remove/add" msgstr "Fjern/tilføj" -#: core/graphene/mutations.py:283 core/graphene/mutations.py:324 +#: engine/core/graphene/mutations.py:283 engine/core/graphene/mutations.py:324 msgid "action must be either add or remove" msgstr "Handlingen skal være enten \"tilføj\" eller \"fjern\"!" -#: core/graphene/mutations.py:294 +#: engine/core/graphene/mutations.py:294 msgid "perform an action on a list of products in the wishlist" msgstr "Udfør en handling på en liste af produkter i ønskelisten" -#: core/graphene/mutations.py:312 +#: engine/core/graphene/mutations.py:312 msgid "please provide wishlist_uuid value" msgstr "Angiv venligst værdien `wishlist_uuid`." -#: core/graphene/mutations.py:329 core/graphene/mutations.py:405 -#: core/graphene/mutations.py:433 core/graphene/mutations.py:461 -#: core/graphene/mutations.py:505 +#: engine/core/graphene/mutations.py:329 engine/core/graphene/mutations.py:405 +#: engine/core/graphene/mutations.py:433 engine/core/graphene/mutations.py:461 +#: engine/core/graphene/mutations.py:505 #, python-brace-format msgid "wishlist {wishlist_uuid} not found" msgstr "Ønskeliste {wishlist_uuid} ikke fundet!" -#: core/graphene/mutations.py:383 +#: engine/core/graphene/mutations.py:383 msgid "add a product to the wishlist" msgstr "Tilføj et produkt til ordren" -#: core/graphene/mutations.py:411 +#: engine/core/graphene/mutations.py:411 msgid "remove a product from the wishlist" msgstr "Fjern et produkt fra ordren" -#: core/graphene/mutations.py:439 +#: engine/core/graphene/mutations.py:439 msgid "remove all products from the wishlist" msgstr "Fjern et produkt fra ordren" -#: core/graphene/mutations.py:467 +#: engine/core/graphene/mutations.py:467 msgid "buy all products from the wishlist" msgstr "Fjern et produkt fra ordren" -#: core/graphene/mutations.py:511 +#: engine/core/graphene/mutations.py:511 msgid "buy a product" msgstr "Køb en ordre" -#: core/graphene/mutations.py:517 +#: engine/core/graphene/mutations.py:517 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" -#: core/graphene/mutations.py:550 +#: engine/core/graphene/mutations.py:550 msgid "add or delete a feedback for orderproduct" msgstr "Tilføj eller slet en feedback til ordreproduktet" -#: core/graphene/mutations.py:574 +#: engine/core/graphene/mutations.py:574 msgid "action must be either `add` or `remove`" msgstr "Handlingen skal være enten `add` eller `remove`!" -#: core/graphene/mutations.py:577 +#: engine/core/graphene/mutations.py:577 #, python-brace-format msgid "order product {order_product_uuid} not found" msgstr "Ordreprodukt {order_product_uuid} ikke fundet!" -#: core/graphene/mutations.py:644 +#: engine/core/graphene/mutations.py:644 msgid "original address string provided by the user" msgstr "Original adressestreng leveret af brugeren" -#: core/graphene/mutations.py:680 core/models.py:930 core/models.py:943 -#: core/models.py:1358 core/models.py:1387 core/models.py:1412 -#: core/viewsets.py:707 +#: engine/core/graphene/mutations.py:680 engine/core/models.py:941 +#: engine/core/models.py:954 engine/core/models.py:1369 +#: engine/core/models.py:1398 engine/core/models.py:1423 +#: engine/core/viewsets.py:707 #, python-brace-format msgid "{name} does not exist: {uuid}" msgstr "{name} findes ikke: {uuid}!" -#: core/graphene/mutations.py:694 +#: engine/core/graphene/mutations.py:694 msgid "limit must be between 1 and 10" msgstr "Grænsen skal være mellem 1 og 10" -#: core/graphene/mutations.py:743 +#: engine/core/graphene/mutations.py:743 msgid "elasticsearch - works like a charm" msgstr "ElasticSearch - fungerer som en charme" -#: core/graphene/object_types.py:82 core/graphene/object_types.py:370 -#: core/graphene/object_types.py:417 core/models.py:754 core/models.py:1225 -#: core/models.py:1823 +#: engine/core/graphene/object_types.py:82 +#: engine/core/graphene/object_types.py:370 +#: engine/core/graphene/object_types.py:417 engine/core/models.py:765 +#: engine/core/models.py:1236 engine/core/models.py:1883 msgid "attributes" msgstr "Egenskaber" -#: core/graphene/object_types.py:95 +#: engine/core/graphene/object_types.py:95 msgid "grouped attributes" msgstr "Grupperede attributter" -#: core/graphene/object_types.py:102 +#: engine/core/graphene/object_types.py:102 msgid "groups of attributes" msgstr "Grupper af attributter" -#: core/graphene/object_types.py:116 core/graphene/object_types.py:193 -#: core/graphene/object_types.py:223 core/models.py:426 +#: engine/core/graphene/object_types.py:116 +#: engine/core/graphene/object_types.py:193 +#: engine/core/graphene/object_types.py:223 engine/core/models.py:425 msgid "categories" msgstr "Kategorier" -#: core/graphene/object_types.py:124 core/models.py:497 +#: engine/core/graphene/object_types.py:124 engine/core/models.py:496 msgid "brands" msgstr "Mærker" -#: core/graphene/object_types.py:195 +#: engine/core/graphene/object_types.py:195 msgid "category image url" msgstr "Kategorier" -#: core/graphene/object_types.py:196 core/graphene/object_types.py:317 -#: core/models.py:284 +#: engine/core/graphene/object_types.py:196 +#: engine/core/graphene/object_types.py:317 engine/core/models.py:283 msgid "markup percentage" msgstr "Markup-procentdel" -#: core/graphene/object_types.py:199 +#: engine/core/graphene/object_types.py:199 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." -#: core/graphene/object_types.py:203 -msgid "" -"minimum and maximum prices for products in this category, if available." +#: engine/core/graphene/object_types.py:203 +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." -#: core/graphene/object_types.py:205 +#: engine/core/graphene/object_types.py:205 msgid "tags for this category" msgstr "Tags for denne kategori" -#: core/graphene/object_types.py:206 +#: engine/core/graphene/object_types.py:206 msgid "products in this category" msgstr "Produkter i denne kategori" -#: core/graphene/object_types.py:324 core/models.py:189 +#: engine/core/graphene/object_types.py:324 engine/core/models.py:188 msgid "vendors" msgstr "Leverandører" -#: core/graphene/object_types.py:328 +#: engine/core/graphene/object_types.py:328 msgid "Latitude (Y coordinate)" msgstr "Breddegrad (Y-koordinat)" -#: core/graphene/object_types.py:329 +#: engine/core/graphene/object_types.py:329 msgid "Longitude (X coordinate)" msgstr "Længdegrad (X-koordinat)" -#: core/graphene/object_types.py:358 +#: engine/core/graphene/object_types.py:358 msgid "comment" msgstr "Sådan gør du" -#: core/graphene/object_types.py:359 core/graphene/object_types.py:483 +#: engine/core/graphene/object_types.py:359 +#: engine/core/graphene/object_types.py:483 msgid "rating value from 1 to 10, inclusive, or 0 if not set." msgstr "" "Vurderingsværdi fra 1 til 10, inklusive, eller 0, hvis den ikke er " "indstillet." -#: core/graphene/object_types.py:366 +#: engine/core/graphene/object_types.py:366 msgid "represents feedback from a user." msgstr "Repræsenterer feedback fra en bruger." -#: core/graphene/object_types.py:371 core/graphene/object_types.py:418 -#: core/models.py:1219 +#: engine/core/graphene/object_types.py:371 +#: engine/core/graphene/object_types.py:418 engine/core/models.py:1230 msgid "notifications" msgstr "Meddelelser" -#: core/graphene/object_types.py:372 +#: engine/core/graphene/object_types.py:372 msgid "download url for this order product if applicable" msgstr "Download url for dette ordreprodukt, hvis det er relevant" -#: core/graphene/object_types.py:373 core/models.py:1939 +#: engine/core/graphene/object_types.py:373 engine/core/models.py:1722 msgid "feedback" msgstr "Feedback" -#: core/graphene/object_types.py:407 +#: engine/core/graphene/object_types.py:407 msgid "a list of order products in this order" msgstr "En liste over bestillingsprodukter i denne ordre" -#: core/graphene/object_types.py:409 core/models.py:1189 +#: engine/core/graphene/object_types.py:409 engine/core/models.py:1200 msgid "billing address" msgstr "Faktureringsadresse" -#: core/graphene/object_types.py:412 +#: engine/core/graphene/object_types.py:412 msgid "" "shipping address for this order, leave blank if same as billing address or " "if not applicable" @@ -1298,201 +1326,209 @@ msgstr "" "Leveringsadresse for denne ordre, lad den være tom, hvis den er den samme " "som faktureringsadressen, eller hvis den ikke er relevant" -#: core/graphene/object_types.py:414 +#: engine/core/graphene/object_types.py:414 msgid "total price of this order" msgstr "Samlet pris for denne ordre" -#: core/graphene/object_types.py:415 +#: engine/core/graphene/object_types.py:415 msgid "total quantity of products in order" msgstr "Samlet antal produkter i ordren" -#: core/graphene/object_types.py:416 +#: engine/core/graphene/object_types.py:416 msgid "are all products in the order digital" msgstr "Er alle produkterne i ordren digitale?" -#: core/graphene/object_types.py:419 +#: engine/core/graphene/object_types.py:419 msgid "transactions for this order" msgstr "Transaktioner for denne ordre" -#: core/graphene/object_types.py:438 core/models.py:1253 +#: engine/core/graphene/object_types.py:438 engine/core/models.py:1264 msgid "orders" msgstr "Bestillinger" -#: core/graphene/object_types.py:459 +#: engine/core/graphene/object_types.py:459 msgid "image url" msgstr "Billed-URL" -#: core/graphene/object_types.py:466 +#: engine/core/graphene/object_types.py:466 msgid "product's images" msgstr "Produktets billeder" -#: core/graphene/object_types.py:473 core/models.py:425 core/models.py:579 +#: engine/core/graphene/object_types.py:473 engine/core/models.py:424 +#: engine/core/models.py:579 msgid "category" msgstr "Kategori" -#: core/graphene/object_types.py:475 core/models.py:1940 +#: engine/core/graphene/object_types.py:475 engine/core/models.py:1723 msgid "feedbacks" msgstr "Tilbagemeldinger" -#: core/graphene/object_types.py:476 core/models.py:496 core/models.py:588 +#: engine/core/graphene/object_types.py:476 engine/core/models.py:495 +#: engine/core/models.py:588 msgid "brand" msgstr "Brand" -#: core/graphene/object_types.py:477 core/models.py:107 +#: engine/core/graphene/object_types.py:477 engine/core/models.py:106 msgid "attribute groups" msgstr "Attributgrupper" -#: core/graphene/object_types.py:478 -#: core/templates/digital_order_created_email.html:111 -#: core/templates/digital_order_delivered_email.html:109 -#: core/templates/shipped_order_created_email.html:109 -#: core/templates/shipped_order_delivered_email.html:109 +#: engine/core/graphene/object_types.py:478 +#: engine/core/templates/digital_order_created_email.html:111 +#: engine/core/templates/digital_order_delivered_email.html:109 +#: engine/core/templates/shipped_order_created_email.html:109 +#: engine/core/templates/shipped_order_delivered_email.html:109 msgid "price" msgstr "Pris" -#: core/graphene/object_types.py:479 -#: core/templates/digital_order_created_email.html:110 -#: core/templates/digital_order_delivered_email.html:108 -#: core/templates/shipped_order_created_email.html:108 -#: core/templates/shipped_order_delivered_email.html:108 +#: engine/core/graphene/object_types.py:479 +#: engine/core/templates/digital_order_created_email.html:110 +#: engine/core/templates/digital_order_delivered_email.html:108 +#: engine/core/templates/shipped_order_created_email.html:108 +#: engine/core/templates/shipped_order_delivered_email.html:108 msgid "quantity" msgstr "Mængde" -#: core/graphene/object_types.py:480 +#: engine/core/graphene/object_types.py:480 msgid "number of feedbacks" msgstr "Antal tilbagemeldinger" -#: core/graphene/object_types.py:481 +#: engine/core/graphene/object_types.py:481 msgid "only available for personal orders" msgstr "Produkter kun tilgængelige for personlige bestillinger" -#: core/graphene/object_types.py:507 core/models.py:651 +#: engine/core/graphene/object_types.py:484 +msgid "discount price" +msgstr "Rabatpris" + +#: engine/core/graphene/object_types.py:508 engine/core/models.py:651 msgid "products" msgstr "Produkter" -#: core/graphene/object_types.py:607 +#: engine/core/graphene/object_types.py:611 msgid "promocodes" msgstr "Promokoder" -#: core/graphene/object_types.py:617 +#: engine/core/graphene/object_types.py:621 msgid "products on sale" msgstr "Produkter til salg" -#: core/graphene/object_types.py:624 core/models.py:879 +#: engine/core/graphene/object_types.py:628 engine/core/models.py:890 msgid "promotions" msgstr "Kampagner" -#: core/graphene/object_types.py:628 core/models.py:188 +#: engine/core/graphene/object_types.py:632 engine/core/models.py:187 msgid "vendor" msgstr "Leverandør" -#: core/graphene/object_types.py:629 core/models.py:650 -#: core/templates/digital_order_created_email.html:109 -#: core/templates/digital_order_delivered_email.html:107 -#: core/templates/shipped_order_created_email.html:107 -#: core/templates/shipped_order_delivered_email.html:107 +#: engine/core/graphene/object_types.py:633 engine/core/models.py:650 +#: 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 +#: engine/core/templates/shipped_order_delivered_email.html:107 msgid "product" msgstr "Produkt" -#: core/graphene/object_types.py:640 core/models.py:902 +#: engine/core/graphene/object_types.py:644 engine/core/models.py:913 msgid "wishlisted products" msgstr "Produkter på ønskelisten" -#: core/graphene/object_types.py:646 core/models.py:919 +#: engine/core/graphene/object_types.py:650 engine/core/models.py:930 msgid "wishlists" msgstr "Ønskelister" -#: core/graphene/object_types.py:650 +#: engine/core/graphene/object_types.py:654 msgid "tagged products" msgstr "Mærkede produkter" -#: core/graphene/object_types.py:657 core/models.py:225 core/models.py:594 +#: engine/core/graphene/object_types.py:661 engine/core/models.py:224 +#: engine/core/models.py:594 msgid "product tags" msgstr "Produktmærker" -#: core/graphene/object_types.py:661 +#: engine/core/graphene/object_types.py:665 msgid "tagged categories" msgstr "Tagged kategorier" -#: core/graphene/object_types.py:668 +#: engine/core/graphene/object_types.py:672 msgid "categories tags" msgstr "Kategoriernes tags" -#: core/graphene/object_types.py:672 +#: engine/core/graphene/object_types.py:676 msgid "project name" msgstr "Projektets navn" -#: core/graphene/object_types.py:673 +#: engine/core/graphene/object_types.py:677 msgid "company email" msgstr "Virksomhedens e-mail" -#: core/graphene/object_types.py:674 +#: engine/core/graphene/object_types.py:678 msgid "company name" msgstr "Virksomhedens navn" -#: core/graphene/object_types.py:675 +#: engine/core/graphene/object_types.py:679 msgid "company address" msgstr "Virksomhedens adresse" -#: core/graphene/object_types.py:676 +#: engine/core/graphene/object_types.py:680 msgid "company phone number" msgstr "Virksomhedens telefonnummer" -#: core/graphene/object_types.py:677 +#: engine/core/graphene/object_types.py:681 msgid "email from, sometimes it must be used instead of host user value" msgstr "" "'e-mail fra', nogle gange skal den bruges i stedet for værtsbrugerværdien" -#: core/graphene/object_types.py:678 +#: engine/core/graphene/object_types.py:682 msgid "email host user" msgstr "E-mail-værtsbruger" -#: core/graphene/object_types.py:679 +#: engine/core/graphene/object_types.py:683 msgid "maximum amount for payment" msgstr "Maksimalt beløb til betaling" -#: core/graphene/object_types.py:680 +#: engine/core/graphene/object_types.py:684 msgid "minimum amount for payment" msgstr "Minimumsbeløb for betaling" -#: core/graphene/object_types.py:681 +#: engine/core/graphene/object_types.py:685 msgid "analytics data" msgstr "Analytiske data" -#: core/graphene/object_types.py:682 +#: engine/core/graphene/object_types.py:686 msgid "advertisement data" msgstr "Data om reklamer" -#: core/graphene/object_types.py:685 +#: engine/core/graphene/object_types.py:689 msgid "company configuration" msgstr "Konfiguration" -#: core/graphene/object_types.py:689 +#: engine/core/graphene/object_types.py:693 msgid "language code" msgstr "Sprogkode" -#: core/graphene/object_types.py:690 +#: engine/core/graphene/object_types.py:694 msgid "language name" msgstr "Sprogets navn" -#: core/graphene/object_types.py:691 +#: engine/core/graphene/object_types.py:695 msgid "language flag, if exists :)" msgstr "Sprogflag, hvis det findes :)" -#: core/graphene/object_types.py:694 +#: engine/core/graphene/object_types.py:698 msgid "supported languages" msgstr "Få en liste over understøttede sprog" -#: core/graphene/object_types.py:725 core/graphene/object_types.py:726 -#: core/graphene/object_types.py:727 +#: engine/core/graphene/object_types.py:729 +#: engine/core/graphene/object_types.py:730 +#: engine/core/graphene/object_types.py:731 msgid "products search results" msgstr "Søgeresultater for produkter" -#: core/graphene/object_types.py:728 +#: engine/core/graphene/object_types.py:732 msgid "posts search results" msgstr "Søgeresultater for produkter" -#: core/models.py:76 +#: engine/core/models.py:75 msgid "" "Represents a group of attributes, which can be hierarchical. This class is " "used to manage and organize attribute groups. An attribute group can have a " @@ -1505,23 +1541,23 @@ msgstr "" "struktur. Dette kan være nyttigt til at kategorisere og styre attributter " "mere effektivt i et komplekst system." -#: core/models.py:92 +#: engine/core/models.py:91 msgid "parent of this group" msgstr "Forælder til denne gruppe" -#: core/models.py:93 +#: engine/core/models.py:92 msgid "parent attribute group" msgstr "Overordnet attributgruppe" -#: core/models.py:97 core/models.py:98 +#: engine/core/models.py:96 engine/core/models.py:97 msgid "attribute group's name" msgstr "Attributgruppens navn" -#: core/models.py:106 core/models.py:716 +#: engine/core/models.py:105 engine/core/models.py:727 msgid "attribute group" msgstr "Attributgruppe" -#: core/models.py:112 +#: engine/core/models.py:111 msgid "" "Represents a vendor entity capable of storing information about external " "vendors and their interaction requirements. The Vendor class is used to " @@ -1533,56 +1569,56 @@ 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." -#: core/models.py:125 +#: engine/core/models.py:124 msgid "stores credentials and endpoints required for vendor communication" msgstr "" "Gemmer legitimationsoplysninger og slutpunkter, der er nødvendige for " "leverandørens API-kommunikation" -#: core/models.py:126 +#: engine/core/models.py:125 msgid "authentication info" msgstr "Oplysninger om godkendelse" -#: core/models.py:131 +#: engine/core/models.py:130 msgid "define the markup for products retrieved from this vendor" msgstr "Definer markeringen for produkter, der hentes fra denne leverandør" -#: core/models.py:132 +#: engine/core/models.py:131 msgid "vendor markup percentage" msgstr "Sælgerens markup-procentdel" -#: core/models.py:136 +#: engine/core/models.py:135 msgid "name of this vendor" msgstr "Navn på denne leverandør" -#: core/models.py:137 +#: engine/core/models.py:136 msgid "vendor name" msgstr "Leverandørens navn" -#: core/models.py:148 +#: engine/core/models.py:147 msgid "response file" msgstr "Svarfil" -#: core/models.py:149 +#: engine/core/models.py:148 msgid "vendor's last processing response" msgstr "leverandørens sidste behandlingssvar" -#: core/models.py:155 +#: engine/core/models.py:154 msgid "vendor's integration file path" msgstr "Leverandørens sti til integrationsfilen" -#: core/models.py:156 +#: engine/core/models.py:155 msgid "integration path" msgstr "Integrationsvej" -#: core/models.py:198 +#: engine/core/models.py:197 msgid "" "Represents a product tag used for classifying or identifying products. The " "ProductTag class is designed to uniquely identify and classify products " @@ -1594,30 +1630,30 @@ 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." -#: core/models.py:210 core/models.py:241 +#: engine/core/models.py:209 engine/core/models.py:240 msgid "internal tag identifier for the product tag" msgstr "Intern tag-identifikator for produkttagget" -#: core/models.py:211 core/models.py:242 +#: engine/core/models.py:210 engine/core/models.py:241 msgid "tag name" msgstr "Tag-navn" -#: core/models.py:215 core/models.py:246 +#: engine/core/models.py:214 engine/core/models.py:245 msgid "user-friendly name for the product tag" msgstr "Brugervenligt navn til produktmærket" -#: core/models.py:216 core/models.py:247 +#: engine/core/models.py:215 engine/core/models.py:246 msgid "tag display name" msgstr "Navn på tag-visning" -#: core/models.py:224 +#: engine/core/models.py:223 msgid "product tag" msgstr "Produktmærke" -#: core/models.py:230 +#: engine/core/models.py:229 msgid "" "Represents a category tag used for products. This class models a category " "tag that can be used to associate and classify products. It includes " @@ -1628,15 +1664,15 @@ msgstr "" "produkter. Den indeholder attributter til en intern tag-identifikator og et " "brugervenligt visningsnavn." -#: core/models.py:255 +#: engine/core/models.py:254 msgid "category tag" msgstr "Kategori-tag" -#: core/models.py:256 core/models.py:328 +#: engine/core/models.py:255 engine/core/models.py:327 msgid "category tags" msgstr "Kategori-tags" -#: core/models.py:261 +#: engine/core/models.py:260 msgid "" "Represents a category entity to organize and group related items in a " "hierarchical structure. Categories may have hierarchical relationships with " @@ -1654,112 +1690,111 @@ 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." -#: core/models.py:275 +#: engine/core/models.py:274 msgid "upload an image representing this category" msgstr "Upload et billede, der repræsenterer denne kategori" -#: core/models.py:278 +#: engine/core/models.py:277 msgid "category image" msgstr "Kategori billede" -#: core/models.py:283 +#: engine/core/models.py:282 msgid "define a markup percentage for products in this category" msgstr "Definer en markup-procentdel for produkter i denne kategori" -#: core/models.py:292 +#: engine/core/models.py:291 msgid "parent of this category to form a hierarchical structure" msgstr "Forælder til denne kategori for at danne en hierarkisk struktur" -#: core/models.py:293 +#: engine/core/models.py:292 msgid "parent category" msgstr "Overordnet kategori" -#: core/models.py:298 +#: engine/core/models.py:297 msgid "category name" msgstr "Navn på kategori" -#: core/models.py:299 +#: engine/core/models.py:298 msgid "provide a name for this category" msgstr "Giv et navn til denne kategori" -#: core/models.py:306 +#: engine/core/models.py:305 msgid "add a detailed description for this category" msgstr "Tilføj en detaljeret beskrivelse af denne kategori" -#: core/models.py:307 +#: engine/core/models.py:306 msgid "category description" msgstr "Beskrivelse af kategori" -#: core/models.py:327 +#: engine/core/models.py:326 msgid "tags that help describe or group this category" msgstr "tags, der hjælper med at beskrive eller gruppere denne kategori" -#: core/models.py:334 core/models.py:489 +#: engine/core/models.py:333 engine/core/models.py:488 msgid "priority" msgstr "Prioritet" -#: core/models.py:432 +#: engine/core/models.py:431 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." -#: core/models.py:442 +#: engine/core/models.py:441 msgid "name of this brand" msgstr "Navnet på dette mærke" -#: core/models.py:443 +#: engine/core/models.py:442 msgid "brand name" msgstr "Varemærke" -#: core/models.py:450 +#: engine/core/models.py:449 msgid "upload a logo representing this brand" msgstr "Upload et logo, der repræsenterer dette brand" -#: core/models.py:452 +#: engine/core/models.py:451 msgid "brand small image" msgstr "Brandets lille image" -#: core/models.py:458 +#: engine/core/models.py:457 msgid "upload a big logo representing this brand" msgstr "Upload et stort logo, der repræsenterer dette brand" -#: core/models.py:460 +#: engine/core/models.py:459 msgid "brand big image" msgstr "Brandets store image" -#: core/models.py:465 +#: engine/core/models.py:464 msgid "add a detailed description of the brand" msgstr "Tilføj en detaljeret beskrivelse af brandet" -#: core/models.py:466 +#: engine/core/models.py:465 msgid "brand description" msgstr "Varemærkebeskrivelse" -#: core/models.py:471 +#: engine/core/models.py:470 msgid "optional categories that this brand is associated with" msgstr "Valgfrie kategorier, som dette brand er forbundet med" -#: core/models.py:472 +#: engine/core/models.py:471 msgid "associated categories" msgstr "Kategorier" -#: core/models.py:502 +#: engine/core/models.py:501 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 " @@ -1767,73 +1802,77 @@ 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." -#: core/models.py:514 +#: engine/core/models.py:513 msgid "the vendor supplying this product stock" msgstr "Den leverandør, der leverer dette produkt, lagerfører" -#: core/models.py:515 +#: engine/core/models.py:514 msgid "associated vendor" msgstr "Tilknyttet leverandør" -#: core/models.py:519 +#: engine/core/models.py:518 msgid "final price to the customer after markups" msgstr "Endelig pris til kunden efter tillæg" -#: core/models.py:520 +#: engine/core/models.py:519 msgid "selling price" msgstr "Salgspris" -#: core/models.py:525 +#: engine/core/models.py:524 msgid "the product associated with this stock entry" msgstr "Det produkt, der er knyttet til denne lagerpost" -#: core/models.py:526 core/models.py:779 core/models.py:825 -#: core/models.py:1718 +#: engine/core/models.py:525 engine/core/models.py:790 +#: engine/core/models.py:836 engine/core/models.py:1778 msgid "associated product" msgstr "Tilknyttet produkt" -#: core/models.py:533 +#: engine/core/models.py:532 msgid "the price paid to the vendor for this product" msgstr "Den pris, der er betalt til sælgeren for dette produkt" -#: core/models.py:534 +#: engine/core/models.py:533 msgid "vendor purchase price" msgstr "Leverandørens købspris" -#: core/models.py:538 +#: engine/core/models.py:537 msgid "available quantity of the product in stock" msgstr "Tilgængelig mængde af produktet på lager" -#: core/models.py:539 +#: engine/core/models.py:538 msgid "quantity in stock" msgstr "Antal på lager" -#: core/models.py:543 +#: engine/core/models.py:542 msgid "vendor-assigned SKU for identifying the product" msgstr "Leverandørtildelt SKU til identifikation af produktet" -#: core/models.py:544 +#: engine/core/models.py:543 msgid "vendor sku" msgstr "Leverandørens SKU" -#: core/models.py:550 +#: engine/core/models.py:549 msgid "digital file associated with this stock if applicable" msgstr "Digital fil knyttet til dette lager, hvis relevant" -#: core/models.py:551 +#: engine/core/models.py:550 msgid "digital file" msgstr "Digital fil" -#: core/models.py:560 +#: engine/core/models.py:553 +msgid "system attributes" +msgstr "Systemets egenskaber" + +#: engine/core/models.py:560 msgid "stock entries" msgstr "Lagerposteringer" -#: core/models.py:565 +#: engine/core/models.py:565 msgid "" "Represents a product with attributes such as category, brand, tags, digital " "status, name, description, part number, and slug. Provides related utility " @@ -1849,161 +1888,160 @@ 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." -#: core/models.py:578 +#: engine/core/models.py:578 msgid "category this product belongs to" msgstr "Kategori, som dette produkt tilhører" -#: core/models.py:587 +#: engine/core/models.py:587 msgid "optionally associate this product with a brand" msgstr "Tilknyt eventuelt dette produkt til et brand" -#: core/models.py:593 +#: engine/core/models.py:593 msgid "tags that help describe or group this product" msgstr "Tags, der hjælper med at beskrive eller gruppere dette produkt" -#: core/models.py:598 +#: engine/core/models.py:598 msgid "indicates whether this product is digitally delivered" msgstr "Angiver, om dette produkt leveres digitalt" -#: core/models.py:599 +#: engine/core/models.py:599 msgid "is product digital" msgstr "Er produktet digitalt?" -#: core/models.py:605 +#: engine/core/models.py:605 msgid "provide a clear identifying name for the product" msgstr "Giv produktet et klart identificerende navn" -#: core/models.py:606 +#: engine/core/models.py:606 msgid "product name" msgstr "Produktets navn" -#: core/models.py:612 core/models.py:867 +#: engine/core/models.py:612 engine/core/models.py:878 msgid "add a detailed description of the product" msgstr "Tilføj en detaljeret beskrivelse af produktet" -#: core/models.py:613 +#: engine/core/models.py:613 msgid "product description" msgstr "Produktbeskrivelse" -#: core/models.py:620 +#: engine/core/models.py:620 msgid "part number for this product" msgstr "Reservedelsnummer for dette produkt" -#: core/models.py:621 +#: engine/core/models.py:621 msgid "part number" msgstr "Varenummer" -#: core/models.py:640 +#: engine/core/models.py:640 msgid "stock keeping unit for this product" msgstr "Lagerbeholdning for dette produkt" -#: core/models.py:702 +#: engine/core/models.py:713 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." -#: core/models.py:715 +#: engine/core/models.py:726 msgid "group of this attribute" msgstr "Gruppe af denne attribut" -#: core/models.py:721 +#: engine/core/models.py:732 msgid "string" msgstr "Streng" -#: core/models.py:722 +#: engine/core/models.py:733 msgid "integer" msgstr "Heltal" -#: core/models.py:723 +#: engine/core/models.py:734 msgid "float" msgstr "Flyder" -#: core/models.py:724 +#: engine/core/models.py:735 msgid "boolean" msgstr "Boolsk" -#: core/models.py:725 +#: engine/core/models.py:736 msgid "array" msgstr "Array" -#: core/models.py:726 +#: engine/core/models.py:737 msgid "object" msgstr "Objekt" -#: core/models.py:728 +#: engine/core/models.py:739 msgid "type of the attribute's value" msgstr "Type af attributtens værdi" -#: core/models.py:729 +#: engine/core/models.py:740 msgid "value type" msgstr "Værditype" -#: core/models.py:734 +#: engine/core/models.py:745 msgid "name of this attribute" msgstr "Navn på denne attribut" -#: core/models.py:735 +#: engine/core/models.py:746 msgid "attribute's name" msgstr "Attributtens navn" -#: core/models.py:740 +#: engine/core/models.py:751 msgid "is filterable" msgstr "er filtrerbar" -#: core/models.py:741 +#: engine/core/models.py:752 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." -#: core/models.py:753 core/models.py:771 -#: core/templates/digital_order_delivered_email.html:134 +#: engine/core/models.py:764 engine/core/models.py:782 +#: engine/core/templates/digital_order_delivered_email.html:134 msgid "attribute" msgstr "Attribut" -#: core/models.py:759 +#: engine/core/models.py:770 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." -#: core/models.py:770 +#: engine/core/models.py:781 msgid "attribute of this value" msgstr "Attribut for denne værdi" -#: core/models.py:778 +#: engine/core/models.py:789 msgid "the specific product associated with this attribute's value" msgstr "Det specifikke produkt, der er knyttet til denne attributs værdi" -#: core/models.py:784 +#: engine/core/models.py:795 msgid "the specific value for this attribute" msgstr "Den specifikke værdi for denne attribut" -#: core/models.py:797 +#: engine/core/models.py:808 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 "" @@ -2013,46 +2051,46 @@ msgstr "" "specifikke produkter og bestemme deres visningsrækkefølge. Den indeholder " "også en tilgængelighedsfunktion med alternativ tekst til billederne." -#: core/models.py:808 +#: engine/core/models.py:819 msgid "provide alternative text for the image for accessibility" msgstr "Giv alternativ tekst til billedet af hensyn til tilgængeligheden" -#: core/models.py:809 +#: engine/core/models.py:820 msgid "image alt text" msgstr "Billedets alt-tekst" -#: core/models.py:812 +#: engine/core/models.py:823 msgid "upload the image file for this product" msgstr "Upload billedfilen til dette produkt" -#: core/models.py:813 core/models.py:837 +#: engine/core/models.py:824 engine/core/models.py:848 msgid "product image" msgstr "Produktbillede" -#: core/models.py:818 +#: engine/core/models.py:829 msgid "determines the order in which images are displayed" msgstr "Bestemmer den rækkefølge, billederne vises i" -#: core/models.py:819 +#: engine/core/models.py:830 msgid "display priority" msgstr "Skærm-prioritet" -#: core/models.py:824 +#: engine/core/models.py:835 msgid "the product that this image represents" msgstr "Det produkt, som dette billede repræsenterer" -#: core/models.py:838 +#: engine/core/models.py:849 msgid "product images" msgstr "Produktbilleder" -#: core/models.py:843 +#: engine/core/models.py:854 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 " @@ -2061,39 +2099,39 @@ msgstr "" "relevante produkter. Den integreres med produktkataloget for at bestemme de " "berørte varer i kampagnen." -#: core/models.py:855 +#: engine/core/models.py:866 msgid "percentage discount for the selected products" msgstr "Procentvis rabat for de valgte produkter" -#: core/models.py:856 +#: engine/core/models.py:867 msgid "discount percentage" msgstr "Rabatprocent" -#: core/models.py:861 +#: engine/core/models.py:872 msgid "provide a unique name for this promotion" msgstr "Giv et unikt navn til denne kampagne" -#: core/models.py:862 +#: engine/core/models.py:873 msgid "promotion name" msgstr "Navn på kampagne" -#: core/models.py:868 +#: engine/core/models.py:879 msgid "promotion description" msgstr "Beskrivelse af kampagnen" -#: core/models.py:873 +#: engine/core/models.py:884 msgid "select which products are included in this promotion" msgstr "Vælg, hvilke produkter der er inkluderet i denne kampagne" -#: core/models.py:874 +#: engine/core/models.py:885 msgid "included products" msgstr "Inkluderede produkter" -#: core/models.py:878 +#: engine/core/models.py:889 msgid "promotion" msgstr "Forfremmelse" -#: core/models.py:889 +#: engine/core/models.py:900 msgid "" "Represents a user's wishlist for storing and managing desired products. The " "class provides functionality to manage a collection of products, supporting " @@ -2106,30 +2144,30 @@ msgstr "" "produkter samt operationer til at tilføje og fjerne flere produkter på én " "gang." -#: core/models.py:901 +#: engine/core/models.py:912 msgid "products that the user has marked as wanted" msgstr "Produkter, som brugeren har markeret som ønskede" -#: core/models.py:909 +#: engine/core/models.py:920 msgid "user who owns this wishlist" msgstr "Bruger, der ejer denne ønskeliste" -#: core/models.py:910 +#: engine/core/models.py:921 msgid "wishlist owner" msgstr "Ønskelistens ejer" -#: core/models.py:918 +#: engine/core/models.py:929 msgid "wishlist" msgstr "Ønskeliste" -#: core/models.py:960 +#: engine/core/models.py:971 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 " @@ -2138,28 +2176,28 @@ msgstr "" "dokumentarfilerne. Den udvider funktionaliteten fra specifikke mixins og " "giver yderligere brugerdefinerede funktioner." -#: core/models.py:973 +#: engine/core/models.py:984 msgid "documentary" msgstr "Dokumentarfilm" -#: core/models.py:974 +#: engine/core/models.py:985 msgid "documentaries" msgstr "Dokumentarfilm" -#: core/models.py:984 +#: engine/core/models.py:995 msgid "unresolved" msgstr "Uafklaret" -#: core/models.py:989 +#: engine/core/models.py:1000 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 " @@ -2171,59 +2209,59 @@ msgstr "" "Klassen gør det også muligt at knytte en adresse til en bruger, hvilket " "letter personlig datahåndtering." -#: core/models.py:1004 +#: engine/core/models.py:1015 msgid "address line for the customer" msgstr "Adresselinje til kunden" -#: core/models.py:1005 +#: engine/core/models.py:1016 msgid "address line" msgstr "Adresselinje" -#: core/models.py:1007 +#: engine/core/models.py:1018 msgid "street" msgstr "Gade" -#: core/models.py:1008 +#: engine/core/models.py:1019 msgid "district" msgstr "Distrikt" -#: core/models.py:1009 +#: engine/core/models.py:1020 msgid "city" msgstr "By" -#: core/models.py:1010 +#: engine/core/models.py:1021 msgid "region" msgstr "Region" -#: core/models.py:1011 +#: engine/core/models.py:1022 msgid "postal code" msgstr "Postnummer" -#: core/models.py:1012 +#: engine/core/models.py:1023 msgid "country" msgstr "Land" -#: core/models.py:1019 +#: engine/core/models.py:1030 msgid "geolocation point: (longitude, latitude)" msgstr "Geolokaliseringspunkt (længdegrad, breddegrad)" -#: core/models.py:1022 +#: engine/core/models.py:1033 msgid "full JSON response from geocoder for this address" msgstr "Fuldt JSON-svar fra geokoderen for denne adresse" -#: core/models.py:1027 +#: engine/core/models.py:1038 msgid "stored JSON response from the geocoding service" msgstr "Gemt JSON-svar fra geokodningstjenesten" -#: core/models.py:1035 +#: engine/core/models.py:1046 msgid "address" msgstr "Adresse" -#: core/models.py:1036 +#: engine/core/models.py:1047 msgid "addresses" msgstr "Adresser" -#: core/models.py:1048 +#: engine/core/models.py:1059 msgid "" "Represents a promotional code that can be used for discounts, managing its " "validity, type of discount, and application. The PromoCode class stores " @@ -2234,77 +2272,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." -#: core/models.py:1062 +#: engine/core/models.py:1073 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" -#: core/models.py:1063 +#: engine/core/models.py:1074 msgid "promo code identifier" msgstr "Identifikator for kampagnekode" -#: core/models.py:1070 +#: engine/core/models.py:1081 msgid "fixed discount amount applied if percent is not used" msgstr "Fast rabatbeløb anvendes, hvis procent ikke bruges" -#: core/models.py:1071 +#: engine/core/models.py:1082 msgid "fixed discount amount" msgstr "Fast rabatbeløb" -#: core/models.py:1077 +#: engine/core/models.py:1088 msgid "percentage discount applied if fixed amount is not used" msgstr "Procentvis rabat, hvis det faste beløb ikke bruges" -#: core/models.py:1078 +#: engine/core/models.py:1089 msgid "percentage discount" msgstr "Procentvis rabat" -#: core/models.py:1083 +#: engine/core/models.py:1094 msgid "timestamp when the promocode expires" msgstr "Tidsstempel, når promokoden udløber" -#: core/models.py:1084 +#: engine/core/models.py:1095 msgid "end validity time" msgstr "Slut gyldighedstid" -#: core/models.py:1089 +#: engine/core/models.py:1100 msgid "timestamp from which this promocode is valid" msgstr "Tidsstempel, hvorfra denne promokode er gyldig" -#: core/models.py:1090 +#: engine/core/models.py:1101 msgid "start validity time" msgstr "Start gyldighedstid" -#: core/models.py:1095 +#: engine/core/models.py:1106 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" -#: core/models.py:1096 +#: engine/core/models.py:1107 msgid "usage timestamp" msgstr "Tidsstempel for brug" -#: core/models.py:1101 +#: engine/core/models.py:1112 msgid "user assigned to this promocode if applicable" msgstr "Bruger tildelt denne promokode, hvis relevant" -#: core/models.py:1102 +#: engine/core/models.py:1113 msgid "assigned user" msgstr "Tildelt bruger" -#: core/models.py:1109 +#: engine/core/models.py:1120 msgid "promo code" msgstr "Kampagnekode" -#: core/models.py:1110 +#: engine/core/models.py:1121 msgid "promo codes" msgstr "Kampagnekoder" -#: core/models.py:1125 +#: engine/core/models.py:1136 msgid "" "only one type of discount should be defined (amount or percent), but not " "both or neither." @@ -2312,21 +2350,21 @@ msgstr "" "Der skal kun defineres én type rabat (beløb eller procent), men ikke begge " "eller ingen af dem." -#: core/models.py:1146 +#: engine/core/models.py:1157 msgid "promocode already used" msgstr "Promokoden er allerede blevet brugt" -#: core/models.py:1162 +#: engine/core/models.py:1173 #, python-brace-format msgid "invalid discount type for promocode {self.uuid}" msgstr "Ugyldig rabattype for promokode {self.uuid}!" -#: core/models.py:1171 +#: engine/core/models.py:1182 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 "" @@ -2334,142 +2372,141 @@ 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." -#: core/models.py:1188 +#: engine/core/models.py:1199 msgid "the billing address used for this order" msgstr "Den faktureringsadresse, der bruges til denne ordre" -#: core/models.py:1196 +#: engine/core/models.py:1207 msgid "optional promo code applied to this order" msgstr "Valgfri kampagnekode anvendt på denne ordre" -#: core/models.py:1197 +#: engine/core/models.py:1208 msgid "applied promo code" msgstr "Anvendt kampagnekode" -#: core/models.py:1205 +#: engine/core/models.py:1216 msgid "the shipping address used for this order" msgstr "Den leveringsadresse, der er brugt til denne ordre" -#: core/models.py:1206 +#: engine/core/models.py:1217 msgid "shipping address" msgstr "Leveringsadresse" -#: core/models.py:1212 +#: engine/core/models.py:1223 msgid "current status of the order in its lifecycle" msgstr "Ordrens aktuelle status i dens livscyklus" -#: core/models.py:1213 +#: engine/core/models.py:1224 msgid "order status" msgstr "Bestillingsstatus" -#: core/models.py:1218 core/models.py:1695 +#: engine/core/models.py:1229 engine/core/models.py:1755 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" -#: core/models.py:1224 +#: engine/core/models.py:1235 msgid "json representation of order attributes for this order" msgstr "JSON-repræsentation af ordreattributter for denne ordre" -#: core/models.py:1230 +#: engine/core/models.py:1241 msgid "the user who placed the order" msgstr "Den bruger, der har afgivet ordren" -#: core/models.py:1231 +#: engine/core/models.py:1242 msgid "user" msgstr "Bruger" -#: core/models.py:1237 +#: engine/core/models.py:1248 msgid "the timestamp when the order was finalized" msgstr "Tidsstemplet for, hvornår ordren blev afsluttet" -#: core/models.py:1238 +#: engine/core/models.py:1249 msgid "buy time" msgstr "Køb tid" -#: core/models.py:1245 +#: engine/core/models.py:1256 msgid "a human-readable identifier for the order" msgstr "En menneskeligt læsbar identifikator for ordren" -#: core/models.py:1246 +#: engine/core/models.py:1257 msgid "human readable id" msgstr "menneskeligt læsbart ID" -#: core/models.py:1252 +#: engine/core/models.py:1263 msgid "order" msgstr "Bestil" -#: core/models.py:1294 +#: engine/core/models.py:1305 msgid "a user must have only one pending order at a time" msgstr "En bruger må kun have én afventende ordre ad gangen!" -#: core/models.py:1326 +#: engine/core/models.py:1337 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." -#: core/models.py:1331 +#: engine/core/models.py:1342 msgid "you cannot add inactive products to order" msgstr "Du kan ikke tilføje inaktive produkter til en ordre" -#: core/models.py:1348 +#: engine/core/models.py:1359 msgid "you cannot add more products than available in stock" msgstr "Du kan ikke tilføje flere produkter, end der er på lager" -#: core/models.py:1370 core/models.py:1395 core/models.py:1403 +#: engine/core/models.py:1381 engine/core/models.py:1406 +#: engine/core/models.py:1414 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." -#: core/models.py:1391 +#: engine/core/models.py:1402 #, python-brace-format msgid "{name} does not exist with query <{query}>" msgstr "{name} findes ikke med forespørgslen <{query}>!" -#: core/models.py:1423 +#: engine/core/models.py:1434 msgid "promocode does not exist" msgstr "Promokode findes ikke" -#: core/models.py:1429 +#: engine/core/models.py:1440 msgid "you can only buy physical products with shipping address specified" msgstr "Du kan kun købe fysiske produkter med angivet leveringsadresse!" -#: core/models.py:1448 +#: engine/core/models.py:1459 msgid "address does not exist" msgstr "Adressen findes ikke" -#: core/models.py:1469 core/models.py:1538 +#: engine/core/models.py:1480 engine/core/models.py:1549 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." -#: core/models.py:1472 core/models.py:1534 +#: engine/core/models.py:1483 engine/core/models.py:1545 msgid "invalid force value" msgstr "Ugyldig kraftværdi" -#: core/models.py:1478 core/models.py:1541 +#: engine/core/models.py:1489 engine/core/models.py:1552 msgid "you cannot purchase an empty order!" msgstr "Du kan ikke købe en tom ordre!" -#: core/models.py:1497 +#: engine/core/models.py:1508 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." -#: core/models.py:1511 +#: engine/core/models.py:1522 msgid "a user without a balance cannot buy with balance" msgstr "En bruger uden saldo kan ikke købe med saldo!" -#: core/models.py:1516 +#: engine/core/models.py:1527 msgid "insufficient funds to complete the order" msgstr "Utilstrækkelige midler til at gennemføre ordren" -#: core/models.py:1550 +#: engine/core/models.py:1561 msgid "" "you cannot buy without registration, please provide the following " "information: customer name, customer email, customer phone number" @@ -2477,164 +2514,14 @@ msgstr "" "du kan ikke købe uden registrering, angiv venligst følgende oplysninger: " "kundens navn, kundens e-mail, kundens telefonnummer" -#: core/models.py:1559 +#: engine/core/models.py:1570 #, python-brace-format msgid "" "invalid payment method: {payment_method} from {available_payment_methods}" msgstr "" "Ugyldig betalingsmetode: {payment_method} fra {available_payment_methods}!" -#: core/models.py:1668 -msgid "" -"Represents products associated with orders and their attributes. The " -"OrderProduct model maintains information about a product that is part of an " -"order, including details such as purchase price, quantity, product " -"attributes, and status. It manages notifications for the user and " -"administrators and handles operations such as returning the product balance " -"or adding feedback. This model also provides methods and properties that " -"support business logic, such as calculating the total price or generating a " -"download URL for digital products. The model integrates with the Order and " -"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 " -"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 " -"forretningslogik, f.eks. beregning af den samlede pris eller generering af " -"en download-URL for digitale produkter. Modellen integreres med Order- og " -"Product-modellerne og gemmer en reference til dem." - -#: core/models.py:1683 -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" - -#: core/models.py:1684 -msgid "purchase price at order time" -msgstr "Købspris på bestillingstidspunktet" - -#: core/models.py:1689 -msgid "internal comments for admins about this ordered product" -msgstr "Interne kommentarer til administratorer om dette bestilte produkt" - -#: core/models.py:1690 -msgid "internal comments" -msgstr "Interne kommentarer" - -#: core/models.py:1696 -msgid "user notifications" -msgstr "Notifikationer til brugere" - -#: core/models.py:1701 -msgid "json representation of this item's attributes" -msgstr "JSON-repræsentation af dette elements attributter" - -#: core/models.py:1702 -msgid "ordered product attributes" -msgstr "Bestilte produktattributter" - -#: core/models.py:1707 -msgid "reference to the parent order that contains this product" -msgstr "Henvisning til den overordnede ordre, der indeholder dette produkt" - -#: core/models.py:1708 -msgid "parent order" -msgstr "Forældreordre" - -#: core/models.py:1717 -msgid "the specific product associated with this order line" -msgstr "Det specifikke produkt, der er knyttet til denne ordrelinje" - -#: core/models.py:1724 -msgid "quantity of this specific product in the order" -msgstr "Mængde af dette specifikke produkt i ordren" - -#: core/models.py:1725 -msgid "product quantity" -msgstr "Produktmængde" - -#: core/models.py:1732 -msgid "current status of this product in the order" -msgstr "Aktuel status for dette produkt i bestillingen" - -#: core/models.py:1733 -msgid "product line status" -msgstr "Status for produktlinje" - -#: core/models.py:1798 -msgid "order product must have an order" -msgstr "Orderproduct skal have en tilknyttet ordre!" - -#: core/models.py:1800 -#, python-brace-format -msgid "wrong action specified for feedback: {action}" -msgstr "Forkert handling angivet for feedback: {action}!" - -#: core/models.py:1814 -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." - -#: core/models.py:1820 -msgid "name" -msgstr "Navn" - -#: core/models.py:1821 -msgid "URL of the integration" -msgstr "URL til integrationen" - -#: core/models.py:1822 -msgid "authentication credentials" -msgstr "Legitimationsoplysninger til godkendelse" - -#: core/models.py:1844 -msgid "you can only have one default CRM provider" -msgstr "Du kan kun have én standard CRM-udbyder" - -#: core/models.py:1854 -msgid "CRM" -msgstr "CRM" - -#: core/models.py:1855 -msgid "CRMs" -msgstr "CRM'er" - -#: core/models.py:1867 -msgid "order CRM link" -msgstr "Ordrens CRM-link" - -#: core/models.py:1868 -msgid "orders CRM links" -msgstr "Bestillingernes CRM-links" - -#: core/models.py:1873 -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." -msgstr "" -"Repræsenterer downloadfunktionen for digitale aktiver, der er forbundet med " -"ordrer. DigitalAssetDownload-klassen giver mulighed for at administrere og " -"få adgang til downloads relateret til ordreprodukter. Den vedligeholder " -"oplysninger om det tilknyttede ordreprodukt, antallet af downloads, og om " -"aktivet er offentligt synligt. Den indeholder en metode til at generere en " -"URL til download af aktivet, når den tilknyttede ordre har status som " -"afsluttet." - -#: core/models.py:1887 -msgid "download" -msgstr "Download" - -#: core/models.py:1888 -msgid "downloads" -msgstr "Downloads" - -#: core/models.py:1902 +#: engine/core/models.py:1685 msgid "" "Manages user feedback for products. This class is designed to capture and " "store user feedback for specific products that they have purchased. It " @@ -2649,108 +2536,252 @@ msgstr "" "bruger databasefelter til effektivt at modellere og administrere " "feedbackdata." -#: core/models.py:1914 +#: engine/core/models.py:1697 msgid "user-provided comments about their experience with the product" msgstr "Brugernes kommentarer om deres oplevelse med produktet" -#: core/models.py:1915 +#: engine/core/models.py:1698 msgid "feedback comments" msgstr "Kommentarer til feedback" -#: core/models.py:1922 -msgid "" -"references the specific product in an order that this feedback is about" +#: engine/core/models.py:1705 +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" -#: core/models.py:1923 +#: engine/core/models.py:1706 msgid "related order product" msgstr "Relateret ordreprodukt" -#: core/models.py:1928 +#: engine/core/models.py:1711 msgid "user-assigned rating for the product" msgstr "Brugertildelt vurdering af produktet" -#: core/models.py:1929 +#: engine/core/models.py:1712 msgid "product rating" msgstr "Produktvurdering" -#: core/serializers/utility.py:89 +#: engine/core/models.py:1728 +msgid "" +"Represents products associated with orders and their attributes. The " +"OrderProduct model maintains information about a product that is part of an " +"order, including details such as purchase price, quantity, product " +"attributes, and status. It manages notifications for the user and " +"administrators and handles operations such as returning the product balance " +"or adding feedback. This model also provides methods and properties that " +"support business logic, such as calculating the total price or generating a " +"download URL for digital products. The model integrates with the Order and " +"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 " +"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 " +"forretningslogik, f.eks. beregning af den samlede pris eller generering af " +"en download-URL for digitale produkter. Modellen integreres med Order- og " +"Product-modellerne og gemmer en reference til dem." + +#: engine/core/models.py:1743 +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:1744 +msgid "purchase price at order time" +msgstr "Købspris på bestillingstidspunktet" + +#: engine/core/models.py:1749 +msgid "internal comments for admins about this ordered product" +msgstr "Interne kommentarer til administratorer om dette bestilte produkt" + +#: engine/core/models.py:1750 +msgid "internal comments" +msgstr "Interne kommentarer" + +#: engine/core/models.py:1756 +msgid "user notifications" +msgstr "Notifikationer til brugere" + +#: engine/core/models.py:1761 +msgid "json representation of this item's attributes" +msgstr "JSON-repræsentation af dette elements attributter" + +#: engine/core/models.py:1762 +msgid "ordered product attributes" +msgstr "Bestilte produktattributter" + +#: engine/core/models.py:1767 +msgid "reference to the parent order that contains this product" +msgstr "Henvisning til den overordnede ordre, der indeholder dette produkt" + +#: engine/core/models.py:1768 +msgid "parent order" +msgstr "Forældreordre" + +#: engine/core/models.py:1777 +msgid "the specific product associated with this order line" +msgstr "Det specifikke produkt, der er knyttet til denne ordrelinje" + +#: engine/core/models.py:1784 +msgid "quantity of this specific product in the order" +msgstr "Mængde af dette specifikke produkt i ordren" + +#: engine/core/models.py:1785 +msgid "product quantity" +msgstr "Produktmængde" + +#: engine/core/models.py:1792 +msgid "current status of this product in the order" +msgstr "Aktuel status for dette produkt i bestillingen" + +#: engine/core/models.py:1793 +msgid "product line status" +msgstr "Status for produktlinje" + +#: engine/core/models.py:1858 +msgid "order product must have an order" +msgstr "Orderproduct skal have en tilknyttet ordre!" + +#: engine/core/models.py:1860 +#, python-brace-format +msgid "wrong action specified for feedback: {action}" +msgstr "Forkert handling angivet for feedback: {action}!" + +#: engine/core/models.py:1874 +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." + +#: engine/core/models.py:1880 +msgid "name" +msgstr "Navn" + +#: engine/core/models.py:1881 +msgid "URL of the integration" +msgstr "URL til integrationen" + +#: engine/core/models.py:1882 +msgid "authentication credentials" +msgstr "Legitimationsoplysninger til godkendelse" + +#: engine/core/models.py:1904 +msgid "you can only have one default CRM provider" +msgstr "Du kan kun have én standard CRM-udbyder" + +#: engine/core/models.py:1914 +msgid "CRM" +msgstr "CRM" + +#: engine/core/models.py:1915 +msgid "CRMs" +msgstr "CRM'er" + +#: engine/core/models.py:1927 +msgid "order CRM link" +msgstr "Ordrens CRM-link" + +#: engine/core/models.py:1928 +msgid "orders CRM links" +msgstr "Bestillingernes CRM-links" + +#: engine/core/models.py:1933 +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." +msgstr "" +"Repræsenterer downloadfunktionen for digitale aktiver, der er forbundet med " +"ordrer. DigitalAssetDownload-klassen giver mulighed for at administrere og " +"få adgang til downloads relateret til ordreprodukter. Den vedligeholder " +"oplysninger om det tilknyttede ordreprodukt, antallet af downloads, og om " +"aktivet er offentligt synligt. Den indeholder en metode til at generere en " +"URL til download af aktivet, når den tilknyttede ordre har status som " +"afsluttet." + +#: engine/core/models.py:1947 +msgid "download" +msgstr "Download" + +#: engine/core/models.py:1948 +msgid "downloads" +msgstr "Downloads" + +#: engine/core/serializers/utility.py:89 msgid "" "you must provide a comment, rating, and order product uuid to add feedback." msgstr "" "Du skal angive en kommentar, en vurdering og et produkt-uid for at tilføje " "feedback." -#: core/signals.py:73 -msgid "error during promocode creation: {e!s}" -msgstr "Fejl under oprettelse af promokode: {e!s}" - -#: core/sitemaps.py:25 +#: engine/core/sitemaps.py:25 msgid "Home" msgstr "Hjem" -#: core/sitemaps.py:30 +#: engine/core/sitemaps.py:30 msgid "Contact Us" msgstr "Kontakt os" -#: core/sitemaps.py:35 +#: engine/core/sitemaps.py:35 msgid "About Us" msgstr "Om os" -#: core/templates/digital_order_created_email.html:7 -#: core/templates/digital_order_created_email.html:100 -#: core/templates/digital_order_delivered_email.html:6 -#: core/templates/shipped_order_created_email.html:7 -#: core/templates/shipped_order_created_email.html:99 -#: core/templates/shipped_order_delivered_email.html:7 -#: core/templates/shipped_order_delivered_email.html:99 +#: engine/core/templates/digital_order_created_email.html:7 +#: engine/core/templates/digital_order_created_email.html:100 +#: engine/core/templates/digital_order_delivered_email.html:6 +#: engine/core/templates/shipped_order_created_email.html:7 +#: engine/core/templates/shipped_order_created_email.html:99 +#: engine/core/templates/shipped_order_delivered_email.html:7 +#: engine/core/templates/shipped_order_delivered_email.html:99 msgid "order confirmation" msgstr "Ordrebekræftelse" -#: core/templates/digital_order_created_email.html:95 -#: core/templates/digital_order_delivered_email.html:94 -#: core/templates/promocode_granted_email.html:94 -#: core/templates/shipped_order_created_email.html:94 -#: core/templates/shipped_order_delivered_email.html:94 +#: engine/core/templates/digital_order_created_email.html:95 +#: engine/core/templates/digital_order_delivered_email.html:94 +#: engine/core/templates/promocode_granted_email.html:94 +#: engine/core/templates/shipped_order_created_email.html:94 +#: engine/core/templates/shipped_order_delivered_email.html:94 msgid "logo" msgstr "Logo" -#: core/templates/digital_order_created_email.html:101 -#: core/templates/shipped_order_created_email.html:100 -#: core/templates/shipped_order_delivered_email.html:100 +#: engine/core/templates/digital_order_created_email.html:101 +#: engine/core/templates/shipped_order_created_email.html:100 +#: engine/core/templates/shipped_order_delivered_email.html:100 #, python-format msgid "hello %(order.user.first_name)s," msgstr "Hej %(order.user.first_name)s," -#: core/templates/digital_order_created_email.html:102 +#: engine/core/templates/digital_order_created_email.html:102 #, 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, " "at vi har taget din ordre i brug. Nedenfor er detaljerne om din ordre:" -#: core/templates/digital_order_created_email.html:112 -#: core/templates/digital_order_delivered_email.html:110 -#: core/templates/shipped_order_created_email.html:110 -#: core/templates/shipped_order_delivered_email.html:110 +#: engine/core/templates/digital_order_created_email.html:112 +#: engine/core/templates/digital_order_delivered_email.html:110 +#: engine/core/templates/shipped_order_created_email.html:110 +#: engine/core/templates/shipped_order_delivered_email.html:110 msgid "total" msgstr "I alt" -#: core/templates/digital_order_created_email.html:125 -#: core/templates/digital_order_delivered_email.html:157 -#: core/templates/shipped_order_created_email.html:127 -#: core/templates/shipped_order_delivered_email.html:127 +#: engine/core/templates/digital_order_created_email.html:125 +#: engine/core/templates/digital_order_delivered_email.html:157 +#: engine/core/templates/shipped_order_created_email.html:127 +#: engine/core/templates/shipped_order_delivered_email.html:127 msgid "total price" msgstr "Samlet pris" -#: core/templates/digital_order_created_email.html:131 -#: core/templates/shipped_order_created_email.html:140 -#: core/templates/shipped_order_delivered_email.html:140 +#: engine/core/templates/digital_order_created_email.html:131 +#: engine/core/templates/shipped_order_created_email.html:140 +#: engine/core/templates/shipped_order_delivered_email.html:140 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" @@ -2759,28 +2790,28 @@ msgstr "" "Hvis du har spørgsmål, er du velkommen til at kontakte vores support på " "%(config.EMAIL_HOST_USER)s." -#: core/templates/digital_order_created_email.html:133 +#: engine/core/templates/digital_order_created_email.html:133 #, python-format msgid "best regards,
the %(config.PROJECT_NAME)s team" msgstr "Med venlig hilsen,
teamet %(config.PROJECT_NAME)s." -#: core/templates/digital_order_created_email.html:139 -#: core/templates/digital_order_delivered_email.html:171 -#: core/templates/promocode_granted_email.html:114 +#: engine/core/templates/digital_order_created_email.html:139 +#: engine/core/templates/digital_order_delivered_email.html:171 +#: engine/core/templates/promocode_granted_email.html:114 msgid "all rights reserved" msgstr "Alle rettigheder forbeholdes" -#: core/templates/digital_order_delivered_email.html:99 +#: engine/core/templates/digital_order_delivered_email.html:99 msgid "order delivered" msgstr "Order Delivered" -#: core/templates/digital_order_delivered_email.html:100 -#: core/templates/promocode_granted_email.html:100 +#: engine/core/templates/digital_order_delivered_email.html:100 +#: engine/core/templates/promocode_granted_email.html:100 #, python-format msgid "hello %(user_first_name)s," msgstr "Hej %(user_first_name)s," -#: core/templates/digital_order_delivered_email.html:101 +#: engine/core/templates/digital_order_delivered_email.html:101 #, python-format msgid "" "we have successfully processed your order №%(order_uuid)s! below are the\n" @@ -2789,7 +2820,7 @@ msgstr "" "Vi har behandlet din ordre №%(order_uuid)s! Nedenfor er detaljerne om din " "ordre:" -#: core/templates/digital_order_delivered_email.html:128 +#: engine/core/templates/digital_order_delivered_email.html:128 msgid "" "additional\n" " information" @@ -2797,13 +2828,13 @@ msgstr "" "yderligere\n" " oplysninger" -#: core/templates/digital_order_delivered_email.html:137 -#: core/templates/json_table_widget.html:6 +#: engine/core/templates/digital_order_delivered_email.html:137 +#: engine/core/templates/json_table_widget.html:6 msgid "value" msgstr "Værdi" -#: core/templates/digital_order_delivered_email.html:163 -#: core/templates/promocode_granted_email.html:106 +#: engine/core/templates/digital_order_delivered_email.html:163 +#: engine/core/templates/promocode_granted_email.html:106 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" @@ -2812,26 +2843,26 @@ msgstr "" "Hvis du har spørgsmål, er du velkommen til at kontakte vores support på " "%(contact_email)s." -#: core/templates/digital_order_delivered_email.html:165 -#: core/templates/promocode_granted_email.html:108 +#: engine/core/templates/digital_order_delivered_email.html:165 +#: engine/core/templates/promocode_granted_email.html:108 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "Med venlig hilsen,
teamet %(project_name)s." -#: core/templates/json_table_widget.html:5 +#: engine/core/templates/json_table_widget.html:5 msgid "key" msgstr "Nøgle" -#: core/templates/json_table_widget.html:40 +#: engine/core/templates/json_table_widget.html:40 msgid "Add Row" msgstr "Tilføj række" -#: core/templates/promocode_granted_email.html:6 -#: core/templates/promocode_granted_email.html:99 +#: engine/core/templates/promocode_granted_email.html:6 +#: engine/core/templates/promocode_granted_email.html:99 msgid "promocode granted" msgstr "Promokode tildelt" -#: core/templates/promocode_granted_email.html:101 +#: engine/core/templates/promocode_granted_email.html:101 msgid "" "Thank you for staying with us! We have granted you with a promocode\n" " for " @@ -2839,33 +2870,34 @@ msgstr "" "Tak, fordi du bor hos os! Vi har givet dig en promokode\n" " til" -#: core/templates/shipped_order_created_email.html:101 -#: core/templates/shipped_order_delivered_email.html:101 +#: 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 " "er detaljerne om din ordre:" -#: core/templates/shipped_order_created_email.html:123 -#: core/templates/shipped_order_delivered_email.html:123 +#: engine/core/templates/shipped_order_created_email.html:123 +#: engine/core/templates/shipped_order_delivered_email.html:123 msgid "shipping price" msgstr "Forsendelsespris" -#: core/templates/shipped_order_created_email.html:133 -#: core/templates/shipped_order_delivered_email.html:133 +#: engine/core/templates/shipped_order_created_email.html:133 +#: engine/core/templates/shipped_order_delivered_email.html:133 msgid "your order will be delivered to the following address:" msgstr "Din ordre vil blive leveret til følgende adresse:" -#: core/templates/shipped_order_created_email.html:142 -#: core/templates/shipped_order_delivered_email.html:142 +#: engine/core/templates/shipped_order_created_email.html:142 +#: engine/core/templates/shipped_order_delivered_email.html:142 #, python-format msgid "best regards,
The %(config.PROJECT_NAME)s team" msgstr "De bedste hilsner,
The %(config.PROJECT_NAME)s team" -#: core/templates/shipped_order_created_email.html:147 -#: core/templates/shipped_order_delivered_email.html:147 +#: engine/core/templates/shipped_order_created_email.html:147 +#: engine/core/templates/shipped_order_delivered_email.html:147 msgid "" "all rights\n" " reserved" @@ -2873,50 +2905,49 @@ msgstr "" "alle rettigheder\n" " forbeholdt" -#: core/utils/caching.py:44 +#: engine/core/utils/caching.py:44 msgid "both data and timeout are required" msgstr "Både data og timeout er påkrævet" -#: core/utils/caching.py:46 +#: engine/core/utils/caching.py:46 msgid "invalid timeout value, it must be between 0 and 216000 seconds" msgstr "Ugyldig timeout-værdi, den skal være mellem 0 og 216000 sekunder" -#: core/utils/emailing.py:27 +#: engine/core/utils/emailing.py:27 #, python-brace-format msgid "{config.PROJECT_NAME} | contact us initiated" msgstr "{config.PROJECT_NAME} | kontakt os påbegyndt" -#: core/utils/emailing.py:73 +#: engine/core/utils/emailing.py:73 #, python-brace-format msgid "{config.PROJECT_NAME} | order confirmation" msgstr "{config.PROJECT_NAME} | Ordrebekræftelse" -#: core/utils/emailing.py:105 +#: engine/core/utils/emailing.py:105 #, python-brace-format msgid "{config.PROJECT_NAME} | order delivered" msgstr "{config.PROJECT_NAME} | Order Delivered" -#: core/utils/emailing.py:188 +#: engine/core/utils/emailing.py:188 #, python-brace-format msgid "{config.PROJECT_NAME} | promocode granted" msgstr "{config.PROJECT_NAME} | promokode givet" -#: core/utils/messages.py:3 +#: engine/core/utils/messages.py:3 msgid "you do not have permission to perform this action." msgstr "Du har ikke tilladelse til at udføre denne handling." -#: core/utils/nominatim.py:8 +#: engine/core/utils/nominatim.py:8 msgid "NOMINATIM_URL must be configured." msgstr "Parameteren NOMINATIM_URL skal være konfigureret!" -#: core/validators.py:16 +#: engine/core/validators.py:16 #, 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." -#: core/views.py:72 +#: engine/core/views.py:71 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." @@ -2924,7 +2955,7 @@ msgstr "" "Håndterer anmodningen om sitemap-indekset og returnerer et XML-svar. Den " "sikrer, at svaret indeholder den passende indholdstypeheader for XML." -#: core/views.py:87 +#: engine/core/views.py:86 msgid "" "Handles the detailed view response for a sitemap. This function processes " "the request, fetches the appropriate sitemap detail response, and sets the " @@ -2934,17 +2965,17 @@ msgstr "" "behandler anmodningen, henter det relevante sitemap-detaljesvar og " "indstiller Content-Type-headeren til XML." -#: core/views.py:116 +#: engine/core/views.py:115 msgid "" "Returns a list of supported languages and their corresponding information." msgstr "" "Returnerer en liste over understøttede sprog og de tilhørende oplysninger." -#: core/views.py:148 +#: engine/core/views.py:147 msgid "Returns the parameters of the website as a JSON object." msgstr "Returnerer hjemmesidens parametre som et JSON-objekt." -#: core/views.py:167 +#: engine/core/views.py:166 msgid "" "Handles cache operations such as reading and setting cache data with a " "specified key and timeout." @@ -2952,11 +2983,11 @@ msgstr "" "Håndterer cache-operationer som f.eks. læsning og indstilling af cachedata " "med en specificeret nøgle og timeout." -#: core/views.py:194 +#: engine/core/views.py:193 msgid "Handles `contact us` form submissions." msgstr "Håndterer indsendelser af `kontakt os`-formularer." -#: core/views.py:215 +#: engine/core/views.py:214 msgid "" "Handles requests for processing and validating URLs from incoming POST " "requests." @@ -2964,54 +2995,62 @@ msgstr "" "Håndterer anmodninger om behandling og validering af URL'er fra indgående " "POST-anmodninger." -#: core/views.py:255 +#: engine/core/views.py:254 msgid "Handles global search queries." msgstr "Håndterer globale søgeforespørgsler." -#: core/views.py:270 +#: engine/core/views.py:269 msgid "Handles the logic of buying as a business without registration." msgstr "Håndterer logikken i at købe som en virksomhed uden registrering." -#: core/views.py:306 +#: engine/core/views.py:305 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." -#: core/views.py:316 +#: engine/core/views.py:315 msgid "order_product_uuid is required" msgstr "order_product_uuid er påkrævet" -#: core/views.py:322 +#: engine/core/views.py:321 msgid "you can only download the digital asset once" msgstr "Du kan kun downloade det digitale aktiv én gang" -#: core/views.py:325 +#: engine/core/views.py:324 msgid "the order must be paid before downloading the digital asset" msgstr "Ordren skal betales, før det digitale aktiv downloades." -#: core/views.py:331 +#: engine/core/views.py:330 msgid "the order product does not have a product" msgstr "Ordreproduktet har ikke et produkt" -#: core/views.py:369 +#: engine/core/views.py:368 msgid "favicon not found" msgstr "Favicon ikke fundet" -#: core/views.py:374 +#: engine/core/views.py:373 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." -#: core/views.py:386 +#: engine/core/views.py:385 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 " @@ -3019,11 +3058,11 @@ msgstr "" "administratorinterfacets indeksside. Den bruger Djangos `redirect`-funktion " "til at håndtere HTTP-omdirigeringen." -#: core/views.py:399 +#: engine/core/views.py:398 msgid "Returns current version of the eVibes. " msgstr "Returnerer den aktuelle version af eVibes." -#: core/viewsets.py:137 +#: engine/core/viewsets.py:137 msgid "" "Defines a viewset for managing Evibes-related operations. The EvibesViewSet " "class inherits from ModelViewSet and provides functionality for handling " @@ -3037,13 +3076,12 @@ msgstr "" "understøttelse af dynamiske serializer-klasser baseret på den aktuelle " "handling, tilladelser, der kan tilpasses, og gengivelsesformater." -#: core/viewsets.py:157 +#: engine/core/viewsets.py:157 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, " @@ -3051,7 +3089,7 @@ msgstr "" "API-lag og giver en standardiseret måde at behandle anmodninger og svar for " "AttributeGroup-data på." -#: core/viewsets.py:176 +#: engine/core/viewsets.py:176 msgid "" "Handles operations related to Attribute objects within the application. " "Provides a set of API endpoints to interact with Attribute data. This class " @@ -3067,21 +3105,21 @@ msgstr "" "data, f.eks. filtrering efter specifikke felter eller hentning af " "detaljerede eller forenklede oplysninger afhængigt af anmodningen." -#: core/viewsets.py:195 +#: engine/core/viewsets.py:195 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." -#: core/viewsets.py:214 +#: engine/core/viewsets.py:214 msgid "" "Manages views for Category-related operations. The CategoryViewSet class is " "responsible for handling operations related to the Category model in the " @@ -3095,19 +3133,19 @@ msgstr "" "serialisering af kategoridata. ViewSet håndhæver også tilladelser for at " "sikre, at kun autoriserede brugere kan få adgang til specifikke data." -#: core/viewsets.py:326 +#: engine/core/viewsets.py:326 msgid "" "Represents a viewset for managing Brand instances. This class provides " "functionality for querying, filtering, and serializing Brand objects. It " "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." -#: core/viewsets.py:438 +#: engine/core/viewsets.py:438 msgid "" "Manages operations related to the `Product` model in the system. This class " "provides a viewset for managing products, including their filtering, " @@ -3120,12 +3158,12 @@ 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" -" med Django REST-frameworket til RESTful API-operationer. Indeholder metoder" -" til at hente produktoplysninger, anvende tilladelser og få adgang til " +"udvider fra `EvibesViewSet` 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." -#: core/viewsets.py:568 +#: engine/core/viewsets.py:568 msgid "" "Represents a viewset for managing Vendor objects. This viewset allows " "fetching, filtering, and serializing Vendor data. It defines the queryset, " @@ -3133,69 +3171,69 @@ 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." -#: core/viewsets.py:588 +#: engine/core/viewsets.py:588 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 `EvibesViewSet` 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 `EvibesViewSet` og gør brug af Djangos filtreringssystem til at " "forespørge på data." -#: core/viewsets.py:615 +#: engine/core/viewsets.py:615 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 " "baseret på den specifikke handling, der udføres, og håndhæver tilladelser i " "overensstemmelse hermed, mens der interageres med ordredata." -#: core/viewsets.py:813 +#: engine/core/viewsets.py:813 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." -#: core/viewsets.py:867 +#: engine/core/viewsets.py:867 msgid "Manages operations related to Product images in the application. " msgstr "Håndterer operationer relateret til produktbilleder i applikationen." -#: core/viewsets.py:880 +#: engine/core/viewsets.py:880 msgid "" "Manages the retrieval and handling of PromoCode instances through various " "API actions." @@ -3203,20 +3241,20 @@ msgstr "" "Administrerer hentning og håndtering af PromoCode-instanser gennem " "forskellige API-handlinger." -#: core/viewsets.py:902 +#: engine/core/viewsets.py:902 msgid "Represents a view set for managing promotions. " msgstr "Repræsenterer et visningssæt til håndtering af kampagner." -#: core/viewsets.py:915 +#: engine/core/viewsets.py:915 msgid "Handles operations related to Stock data in the system." msgstr "Håndterer operationer relateret til lagerdata i systemet." -#: core/viewsets.py:929 +#: engine/core/viewsets.py:929 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." @@ -3229,7 +3267,7 @@ msgstr "" "integreret for at sikre, at brugere kun kan administrere deres egne " "ønskelister, medmindre der er givet eksplicitte tilladelser." -#: core/viewsets.py:1044 +#: engine/core/viewsets.py:1044 msgid "" "This class provides viewset functionality for managing `Address` objects. " "The AddressViewSet class enables CRUD operations, filtering, and custom " @@ -3237,18 +3275,18 @@ 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." -#: core/viewsets.py:1111 +#: engine/core/viewsets.py:1111 #, python-brace-format msgid "Geocoding error: {e}" msgstr "Fejl i geokodning: {e}" -#: core/viewsets.py:1119 +#: engine/core/viewsets.py:1119 msgid "" "Handles operations related to Product Tags within the application. This " "class provides functionality for retrieving, filtering, and serializing " diff --git a/engine/core/locale/de_DE/LC_MESSAGES/django.mo b/engine/core/locale/de_DE/LC_MESSAGES/django.mo new file mode 100644 index 00000000..5c17f37e Binary files /dev/null and b/engine/core/locale/de_DE/LC_MESSAGES/django.mo differ diff --git a/core/locale/de_DE/LC_MESSAGES/django.po b/engine/core/locale/de_DE/LC_MESSAGES/django.po similarity index 68% rename from core/locale/de_DE/LC_MESSAGES/django.po rename to engine/core/locale/de_DE/LC_MESSAGES/django.po index c3a3145f..8bfe81fb 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,212 +13,216 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: core/abstract.py:12 +#: engine/core/abstract.py:12 msgid "unique id" msgstr "Eindeutige ID" -#: core/abstract.py:13 +#: engine/core/abstract.py:13 msgid "unique id is used to surely identify any database object" msgstr "" "Eindeutige ID wird zur sicheren Identifizierung jedes Datenbankobjekts " "verwendet" -#: core/abstract.py:20 +#: engine/core/abstract.py:20 msgid "is active" msgstr "Ist aktiv" -#: core/abstract.py:21 +#: engine/core/abstract.py:21 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." -#: core/abstract.py:23 core/choices.py:18 +#: engine/core/abstract.py:23 engine/core/choices.py:18 msgid "created" msgstr "Erstellt" -#: core/abstract.py:23 +#: engine/core/abstract.py:23 msgid "when the object first appeared on the database" msgstr "Wann das Objekt zum ersten Mal in der Datenbank erschienen ist" -#: core/abstract.py:24 +#: engine/core/abstract.py:24 msgid "modified" msgstr "Geändert" -#: core/abstract.py:24 +#: engine/core/abstract.py:24 msgid "when the object was last modified" msgstr "Wann das Objekt zuletzt bearbeitet wurde" -#: core/admin.py:68 +#: engine/core/admin.py:68 msgid "translations" msgstr "Übersetzungen" -#: core/admin.py:72 +#: engine/core/admin.py:72 msgid "general" msgstr "Allgemein" -#: core/admin.py:74 +#: engine/core/admin.py:74 msgid "relations" msgstr "Beziehungen" -#: core/admin.py:76 +#: engine/core/admin.py:76 msgid "additional info" msgstr "Zusatzinfo" -#: core/admin.py:94 +#: engine/core/admin.py:94 msgid "metadata" msgstr "Metadaten" -#: core/admin.py:101 +#: engine/core/admin.py:101 msgid "timestamps" msgstr "Zeitstempel" -#: core/admin.py:116 +#: engine/core/admin.py:116 #, python-format msgid "activate selected %(verbose_name_plural)s" msgstr "Ausgewählte %(verbose_name_plural)s aktivieren" -#: core/admin.py:121 +#: engine/core/admin.py:121 msgid "selected items have been activated." msgstr "Ausgewählte Artikel wurden aktiviert!" -#: core/admin.py:127 +#: engine/core/admin.py:127 #, python-format msgid "deactivate selected %(verbose_name_plural)s" msgstr "Ausgewählte %(verbose_name_plural)s deaktivieren" -#: core/admin.py:132 +#: engine/core/admin.py:132 msgid "selected items have been deactivated." msgstr "Ausgewählte Artikel wurden deaktiviert!" -#: core/admin.py:144 core/graphene/object_types.py:582 -#: core/graphene/object_types.py:589 core/models.py:783 core/models.py:791 +#: engine/core/admin.py:144 engine/core/graphene/object_types.py:586 +#: engine/core/graphene/object_types.py:593 engine/core/models.py:794 +#: engine/core/models.py:802 msgid "attribute value" msgstr "Attribut Wert" -#: core/admin.py:145 core/graphene/object_types.py:75 core/models.py:792 +#: engine/core/admin.py:145 engine/core/graphene/object_types.py:75 +#: engine/core/models.py:803 msgid "attribute values" msgstr "Attribut Werte" -#: core/admin.py:156 +#: engine/core/admin.py:156 msgid "image" msgstr "Bild" -#: core/admin.py:157 core/graphene/object_types.py:474 +#: engine/core/admin.py:157 engine/core/graphene/object_types.py:474 msgid "images" msgstr "Bilder" -#: core/admin.py:168 core/models.py:559 +#: engine/core/admin.py:169 engine/core/models.py:559 msgid "stock" msgstr "Lagerbestand" -#: core/admin.py:169 core/graphene/object_types.py:636 +#: engine/core/admin.py:170 engine/core/graphene/object_types.py:640 msgid "stocks" msgstr "Bestände" -#: core/admin.py:182 core/models.py:1744 +#: engine/core/admin.py:183 engine/core/models.py:1804 msgid "order product" msgstr "Produkt bestellen" -#: core/admin.py:183 core/graphene/object_types.py:389 core/models.py:1745 +#: engine/core/admin.py:184 engine/core/graphene/object_types.py:389 +#: engine/core/models.py:1805 msgid "order products" msgstr "Produkte bestellen" -#: core/admin.py:196 core/admin.py:197 +#: engine/core/admin.py:197 engine/core/admin.py:198 msgid "children" msgstr "Kinder" -#: core/admin.py:965 +#: engine/core/admin.py:969 msgid "Config" msgstr "Konfigurieren Sie" -#: core/apps.py:8 +#: engine/core/apps.py:8 msgid "core" msgstr "Kern" -#: core/choices.py:4 core/choices.py:20 +#: engine/core/choices.py:4 engine/core/choices.py:20 msgid "finished" msgstr "Fertige" -#: core/choices.py:5 core/choices.py:19 +#: engine/core/choices.py:5 engine/core/choices.py:19 msgid "delivering" msgstr "Bereitstellung von" -#: core/choices.py:6 +#: engine/core/choices.py:6 msgid "delivered" msgstr "Geliefert" -#: core/choices.py:7 +#: engine/core/choices.py:7 msgid "canceled" msgstr "Abgesagt" -#: core/choices.py:8 core/choices.py:16 core/choices.py:24 +#: engine/core/choices.py:8 engine/core/choices.py:16 engine/core/choices.py:24 msgid "failed" msgstr "Gescheitert" -#: core/choices.py:9 core/choices.py:15 +#: engine/core/choices.py:9 engine/core/choices.py:15 msgid "pending" msgstr "Anhängig" -#: core/choices.py:10 +#: engine/core/choices.py:10 msgid "accepted" msgstr "Angenommen" -#: core/choices.py:11 +#: engine/core/choices.py:11 msgid "money returned" msgstr "Zurückgegebenes Geld" -#: core/choices.py:17 +#: engine/core/choices.py:17 msgid "payment" msgstr "Zahlung" -#: core/choices.py:21 +#: engine/core/choices.py:21 msgid "momental" msgstr "Momente" -#: core/choices.py:24 +#: engine/core/choices.py:24 msgid "successful" msgstr "Erfolgreich" -#: core/docs/drf/views.py:17 core/graphene/mutations.py:38 +#: engine/core/docs/drf/views.py:17 engine/core/graphene/mutations.py:38 msgid "cache I/O" msgstr "Cache I/O" -#: core/docs/drf/views.py:19 +#: engine/core/docs/drf/views.py:19 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." -#: core/docs/drf/views.py:32 +#: engine/core/docs/drf/views.py:32 msgid "get a list of supported languages" msgstr "Eine Liste der unterstützten Sprachen abrufen" -#: core/docs/drf/views.py:41 +#: engine/core/docs/drf/views.py:41 msgid "get application's exposable parameters" msgstr "Abrufen der exponierbaren Parameter der Anwendung" -#: core/docs/drf/views.py:48 +#: engine/core/docs/drf/views.py:48 msgid "send a message to the support team" msgstr "Senden Sie eine Nachricht an das Support-Team" -#: core/docs/drf/views.py:59 core/graphene/mutations.py:58 +#: engine/core/docs/drf/views.py:59 engine/core/graphene/mutations.py:58 msgid "request a CORSed URL" msgstr "Fordern Sie eine CORS-gesicherte URL an. Nur https erlaubt." -#: core/docs/drf/views.py:85 +#: engine/core/docs/drf/views.py:85 msgid "global search endpoint to query across project's tables" msgstr "Globaler Suchendpunkt zur Abfrage aller Tabellen des Projekts" -#: core/docs/drf/views.py:91 +#: engine/core/docs/drf/views.py:91 msgid "purchase an order as a business" msgstr "Eine Bestellung als Unternehmen kaufen" -#: core/docs/drf/views.py:98 +#: engine/core/docs/drf/views.py:98 msgid "" "purchase an order as a business, using the provided `products` with " "`product_uuid` and `attributes`." @@ -226,225 +230,228 @@ msgstr "" "Kauf einer Bestellung als Unternehmen unter Verwendung der angegebenen " "\"Produkte\" mit \"product_uuid\" und \"Attributen\"." -#: core/docs/drf/viewsets.py:58 +#: engine/core/docs/drf/viewsets.py:58 msgid "list all attribute groups (simple view)" msgstr "Alle Attributgruppen auflisten (einfache Ansicht)" -#: core/docs/drf/viewsets.py:62 +#: engine/core/docs/drf/viewsets.py:62 msgid "retrieve a single attribute group (detailed view)" msgstr "Abrufen einer einzelnen Attributgruppe (Detailansicht)" -#: core/docs/drf/viewsets.py:66 +#: engine/core/docs/drf/viewsets.py:66 msgid "create an attribute group" msgstr "Erstellen einer Attributgruppe" -#: core/docs/drf/viewsets.py:70 +#: engine/core/docs/drf/viewsets.py:70 msgid "delete an attribute group" msgstr "Löschen einer Attributgruppe" -#: core/docs/drf/viewsets.py:74 +#: engine/core/docs/drf/viewsets.py:74 msgid "rewrite an existing attribute group saving non-editables" msgstr "" "Umschreiben einer bestehenden Attributgruppe mit Speicherung von Nicht-" "Editierbarkeit" -#: core/docs/drf/viewsets.py:78 -msgid "" -"rewrite some fields of an existing attribute group saving non-editables" +#: engine/core/docs/drf/viewsets.py:78 +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" -#: core/docs/drf/viewsets.py:85 +#: engine/core/docs/drf/viewsets.py:85 msgid "list all attributes (simple view)" msgstr "Alle Attribute auflisten (einfache Ansicht)" -#: core/docs/drf/viewsets.py:89 +#: engine/core/docs/drf/viewsets.py:89 msgid "retrieve a single attribute (detailed view)" msgstr "Ein einzelnes Attribut abrufen (detaillierte Ansicht)" -#: core/docs/drf/viewsets.py:93 +#: engine/core/docs/drf/viewsets.py:93 msgid "create an attribute" msgstr "Ein Attribut erstellen" -#: core/docs/drf/viewsets.py:97 +#: engine/core/docs/drf/viewsets.py:97 msgid "delete an attribute" msgstr "Ein Attribut löschen" -#: core/docs/drf/viewsets.py:101 +#: engine/core/docs/drf/viewsets.py:101 msgid "rewrite an existing attribute saving non-editables" msgstr "" "Umschreiben eines vorhandenen Attributs, wobei nicht editierbare Daten " "gespeichert werden" -#: core/docs/drf/viewsets.py:105 +#: engine/core/docs/drf/viewsets.py:105 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" -#: core/docs/drf/viewsets.py:112 +#: engine/core/docs/drf/viewsets.py:112 msgid "list all attribute values (simple view)" msgstr "Alle Attributwerte auflisten (einfache Ansicht)" -#: core/docs/drf/viewsets.py:116 +#: engine/core/docs/drf/viewsets.py:116 msgid "retrieve a single attribute value (detailed view)" msgstr "Abrufen eines einzelnen Attributwertes (Detailansicht)" -#: core/docs/drf/viewsets.py:120 +#: engine/core/docs/drf/viewsets.py:120 msgid "create an attribute value" msgstr "Einen Attributwert erstellen" -#: core/docs/drf/viewsets.py:124 +#: engine/core/docs/drf/viewsets.py:124 msgid "delete an attribute value" msgstr "Löschen eines Attributwertes" -#: core/docs/drf/viewsets.py:128 +#: engine/core/docs/drf/viewsets.py:128 msgid "rewrite an existing attribute value saving non-editables" msgstr "" "Umschreiben eines vorhandenen Attributwerts mit Speicherung von Nicht-" "Editierbarkeit" -#: core/docs/drf/viewsets.py:132 -msgid "" -"rewrite some fields of an existing attribute value saving non-editables" +#: engine/core/docs/drf/viewsets.py:132 +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" -#: core/docs/drf/viewsets.py:139 core/docs/drf/viewsets.py:140 +#: engine/core/docs/drf/viewsets.py:139 engine/core/docs/drf/viewsets.py:140 msgid "list all categories (simple view)" msgstr "Alle Kategorien auflisten (einfache Ansicht)" -#: core/docs/drf/viewsets.py:144 core/docs/drf/viewsets.py:145 +#: engine/core/docs/drf/viewsets.py:144 engine/core/docs/drf/viewsets.py:145 msgid "retrieve a single category (detailed view)" msgstr "Eine einzelne Kategorie abrufen (detaillierte Ansicht)" -#: core/docs/drf/viewsets.py:149 core/docs/drf/viewsets.py:150 +#: engine/core/docs/drf/viewsets.py:150 engine/core/docs/drf/viewsets.py:183 +msgid "Category UUID or slug" +msgstr "Kategorie UUID oder Slug" + +#: engine/core/docs/drf/viewsets.py:157 engine/core/docs/drf/viewsets.py:158 msgid "create a category" msgstr "Eine Kategorie erstellen" -#: core/docs/drf/viewsets.py:154 core/docs/drf/viewsets.py:155 +#: engine/core/docs/drf/viewsets.py:162 engine/core/docs/drf/viewsets.py:163 msgid "delete a category" msgstr "Eine Kategorie löschen" -#: core/docs/drf/viewsets.py:159 core/docs/drf/viewsets.py:160 +#: engine/core/docs/drf/viewsets.py:167 engine/core/docs/drf/viewsets.py:168 msgid "rewrite an existing category saving non-editables" msgstr "" "Eine bestehende Kategorie umschreiben und dabei Nicht-Editierbares speichern" -#: core/docs/drf/viewsets.py:164 core/docs/drf/viewsets.py:165 +#: engine/core/docs/drf/viewsets.py:172 engine/core/docs/drf/viewsets.py:173 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" -#: core/docs/drf/viewsets.py:169 core/docs/drf/viewsets.py:501 -#: core/graphene/object_types.py:117 core/graphene/object_types.py:207 -#: core/graphene/object_types.py:482 +#: engine/core/docs/drf/viewsets.py:177 engine/core/docs/drf/viewsets.py:517 +#: engine/core/graphene/object_types.py:117 +#: engine/core/graphene/object_types.py:207 +#: engine/core/graphene/object_types.py:482 msgid "SEO Meta snapshot" msgstr "SEO-Meta-Schnappschuss" -#: core/docs/drf/viewsets.py:170 +#: engine/core/docs/drf/viewsets.py:178 msgid "returns a snapshot of the category's SEO meta data" msgstr "Gibt einen Schnappschuss der SEO-Metadaten der Kategorie zurück" -#: core/docs/drf/viewsets.py:175 -msgid "Category UUID or slug" -msgstr "Kategorie UUID oder Slug" - -#: core/docs/drf/viewsets.py:188 +#: engine/core/docs/drf/viewsets.py:196 msgid "list all orders (simple view)" msgstr "Alle Kategorien auflisten (einfache Ansicht)" -#: core/docs/drf/viewsets.py:189 +#: engine/core/docs/drf/viewsets.py:197 msgid "for non-staff users, only their own orders are returned." msgstr "" "Bei Nicht-Mitarbeitern werden nur die eigenen Bestellungen zurückgeschickt." -#: core/docs/drf/viewsets.py:195 +#: engine/core/docs/drf/viewsets.py:203 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" -#: core/docs/drf/viewsets.py:202 +#: engine/core/docs/drf/viewsets.py:210 msgid "Filter orders with buy_time >= this ISO 8601 datetime" msgstr "Aufträge mit Kaufzeitpunkt >= dieser ISO 8601-Datumszeit filtern" -#: core/docs/drf/viewsets.py:207 +#: engine/core/docs/drf/viewsets.py:215 msgid "Filter orders with buy_time <= this ISO 8601 datetime" msgstr "Aufträge mit Kaufzeitpunkt <= dieser ISO 8601-Datumszeit filtern" -#: core/docs/drf/viewsets.py:212 +#: engine/core/docs/drf/viewsets.py:220 msgid "Filter by exact order UUID" msgstr "Filter nach exakter UUID der Bestellung" -#: core/docs/drf/viewsets.py:217 +#: engine/core/docs/drf/viewsets.py:225 msgid "Filter by exact human-readable order ID" msgstr "Filtern nach exakter, von Menschen lesbarer Bestell-ID" -#: core/docs/drf/viewsets.py:222 +#: engine/core/docs/drf/viewsets.py:230 msgid "Filter by user's email (case-insensitive exact match)" msgstr "" "Filter nach der E-Mail des Benutzers (Groß-/Kleinschreibung nicht " "berücksichtigend, exakte Übereinstimmung)" -#: core/docs/drf/viewsets.py:227 +#: engine/core/docs/drf/viewsets.py:235 msgid "Filter by user's UUID" msgstr "Filter nach der UUID des Benutzers" -#: core/docs/drf/viewsets.py:232 +#: engine/core/docs/drf/viewsets.py:240 msgid "Filter by order status (case-insensitive substring match)" msgstr "" "Filter nach Bestellstatus (Groß-/Kleinschreibung nicht berücksichtigende " "Teilstring-Übereinstimmung)" -#: core/docs/drf/viewsets.py:238 +#: engine/core/docs/drf/viewsets.py:246 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 " "(z. B. '-buy_time')." -#: core/docs/drf/viewsets.py:247 +#: engine/core/docs/drf/viewsets.py:255 msgid "retrieve a single order (detailed view)" msgstr "Eine einzelne Kategorie abrufen (detaillierte Ansicht)" -#: core/docs/drf/viewsets.py:251 +#: engine/core/docs/drf/viewsets.py:260 +msgid "Order UUID or human-readable id" +msgstr "Auftrag UUID oder menschenlesbare ID" + +#: engine/core/docs/drf/viewsets.py:267 msgid "create an order" msgstr "Ein Attribut erstellen" -#: core/docs/drf/viewsets.py:252 +#: engine/core/docs/drf/viewsets.py:268 msgid "doesn't work for non-staff users." msgstr "Funktioniert nicht für Benutzer, die nicht zum Personal gehören." -#: core/docs/drf/viewsets.py:256 +#: engine/core/docs/drf/viewsets.py:272 msgid "delete an order" msgstr "Ein Attribut löschen" -#: core/docs/drf/viewsets.py:260 +#: engine/core/docs/drf/viewsets.py:276 msgid "rewrite an existing order saving non-editables" msgstr "" "Eine bestehende Kategorie umschreiben und dabei Nicht-Editierbares speichern" -#: core/docs/drf/viewsets.py:264 +#: engine/core/docs/drf/viewsets.py:280 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" -#: core/docs/drf/viewsets.py:268 +#: engine/core/docs/drf/viewsets.py:284 msgid "purchase an order" msgstr "Einkaufspreis zum Zeitpunkt der Bestellung" -#: core/docs/drf/viewsets.py:270 +#: engine/core/docs/drf/viewsets.py:286 msgid "" "finalizes the order purchase. if `force_balance` is used, the purchase is " "completed using the user's balance; if `force_payment` is used, a " @@ -454,21 +461,20 @@ msgstr "" "wird der Kauf mit dem Guthaben des Benutzers abgeschlossen; bei Verwendung " "von \"force_payment\" wird eine Transaktion ausgelöst." -#: core/docs/drf/viewsets.py:282 core/graphene/mutations.py:335 +#: engine/core/docs/drf/viewsets.py:298 engine/core/graphene/mutations.py:335 msgid "purchase an order without account creation" msgstr "eine Bestellung kaufen, ohne ein Konto anzulegen" -#: core/docs/drf/viewsets.py:283 +#: engine/core/docs/drf/viewsets.py:299 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." -#: core/docs/drf/viewsets.py:291 +#: engine/core/docs/drf/viewsets.py:307 msgid "add product to order" msgstr "Ein Produkt zur Bestellung hinzufügen" -#: core/docs/drf/viewsets.py:292 +#: engine/core/docs/drf/viewsets.py:308 msgid "" "adds a product to an order using the provided `product_uuid` and " "`attributes`." @@ -476,13 +482,13 @@ msgstr "" "Fügt ein Produkt unter Verwendung der angegebenen `product_uuid` und " "`attributes` zu einer Bestellung hinzu." -#: core/docs/drf/viewsets.py:297 +#: engine/core/docs/drf/viewsets.py:313 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" -#: core/docs/drf/viewsets.py:298 +#: engine/core/docs/drf/viewsets.py:314 msgid "" "adds a list of products to an order using the provided `product_uuid` and " "`attributes`." @@ -490,11 +496,11 @@ msgstr "" "Fügt einer Bestellung eine Liste von Produkten unter Verwendung der " "angegebenen `product_uuid` und `attributes` hinzu." -#: core/docs/drf/viewsets.py:303 +#: engine/core/docs/drf/viewsets.py:319 msgid "remove product from order" msgstr "Ein Produkt aus der Bestellung entfernen" -#: core/docs/drf/viewsets.py:304 +#: engine/core/docs/drf/viewsets.py:320 msgid "" "removes a product from an order using the provided `product_uuid` and " "`attributes`." @@ -502,12 +508,12 @@ msgstr "" "Entfernt ein Produkt aus einer Bestellung unter Verwendung der angegebenen " "`product_uuid` und `attributes`." -#: core/docs/drf/viewsets.py:309 +#: engine/core/docs/drf/viewsets.py:325 msgid "remove product from order, quantities will not count" msgstr "" "Ein Produkt aus der Bestellung entfernen, die Mengen werden nicht gezählt" -#: core/docs/drf/viewsets.py:310 +#: engine/core/docs/drf/viewsets.py:326 msgid "" "removes a list of products from an order using the provided `product_uuid` " "and `attributes`" @@ -515,817 +521,841 @@ msgstr "" "Entfernt eine Liste von Produkten aus einer Bestellung unter Verwendung der " "angegebenen `product_uuid` und `attributes`." -#: core/docs/drf/viewsets.py:318 +#: engine/core/docs/drf/viewsets.py:334 msgid "list all wishlists (simple view)" msgstr "Alle Attribute auflisten (einfache Ansicht)" -#: core/docs/drf/viewsets.py:319 +#: engine/core/docs/drf/viewsets.py:335 msgid "for non-staff users, only their own wishlists are returned." msgstr "" "Bei Nicht-Mitarbeitern werden nur ihre eigenen Wunschlisten zurückgegeben." -#: core/docs/drf/viewsets.py:323 +#: engine/core/docs/drf/viewsets.py:339 msgid "retrieve a single wishlist (detailed view)" msgstr "Ein einzelnes Attribut abrufen (detaillierte Ansicht)" -#: core/docs/drf/viewsets.py:327 +#: engine/core/docs/drf/viewsets.py:343 msgid "create an wishlist" msgstr "Ein Attribut erstellen" -#: core/docs/drf/viewsets.py:328 +#: engine/core/docs/drf/viewsets.py:344 msgid "Doesn't work for non-staff users." msgstr "Funktioniert nicht für Benutzer, die nicht zum Personal gehören." -#: core/docs/drf/viewsets.py:332 +#: engine/core/docs/drf/viewsets.py:348 msgid "delete an wishlist" msgstr "Ein Attribut löschen" -#: core/docs/drf/viewsets.py:336 +#: engine/core/docs/drf/viewsets.py:352 msgid "rewrite an existing wishlist saving non-editables" msgstr "" "Umschreiben eines vorhandenen Attributs, wobei nicht editierbare Daten " "gespeichert werden" -#: core/docs/drf/viewsets.py:340 +#: engine/core/docs/drf/viewsets.py:356 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" -#: core/docs/drf/viewsets.py:344 +#: engine/core/docs/drf/viewsets.py:360 msgid "add product to wishlist" msgstr "Ein Produkt zur Bestellung hinzufügen" -#: core/docs/drf/viewsets.py:345 +#: engine/core/docs/drf/viewsets.py:361 msgid "adds a product to an wishlist using the provided `product_uuid`" msgstr "" "Fügt ein Produkt mit der angegebenen `product_uuid` zu einer Wunschliste " "hinzu" -#: core/docs/drf/viewsets.py:350 +#: engine/core/docs/drf/viewsets.py:366 msgid "remove product from wishlist" msgstr "Ein Produkt von der Wunschliste entfernen" -#: core/docs/drf/viewsets.py:351 +#: engine/core/docs/drf/viewsets.py:367 msgid "removes a product from an wishlist using the provided `product_uuid`" msgstr "" "Entfernt ein Produkt aus einer Wunschliste unter Verwendung der angegebenen " "`product_uuid`." -#: core/docs/drf/viewsets.py:356 +#: engine/core/docs/drf/viewsets.py:372 msgid "add many products to wishlist" msgstr "Viele Produkte auf den Wunschzettel setzen" -#: core/docs/drf/viewsets.py:357 +#: engine/core/docs/drf/viewsets.py:373 msgid "adds many products to an wishlist using the provided `product_uuids`" msgstr "" "Fügt einer Wunschliste viele Produkte unter Verwendung der angegebenen " "`product_uuids` hinzu" -#: core/docs/drf/viewsets.py:362 +#: engine/core/docs/drf/viewsets.py:378 msgid "remove many products from wishlist" msgstr "Ein Produkt aus der Bestellung entfernen" -#: core/docs/drf/viewsets.py:363 +#: engine/core/docs/drf/viewsets.py:379 msgid "" "removes many products from an wishlist using the provided `product_uuids`" msgstr "" "Entfernt viele Produkte aus einer Wunschliste unter Verwendung der " "angegebenen `product_uuids`." -#: core/docs/drf/viewsets.py:370 +#: engine/core/docs/drf/viewsets.py:386 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`" -#: core/docs/drf/viewsets.py:386 core/docs/drf/viewsets.py:387 +#: engine/core/docs/drf/viewsets.py:402 engine/core/docs/drf/viewsets.py:403 msgid "list all products (simple view)" msgstr "Alle Produkte auflisten (einfache Ansicht)" -#: core/docs/drf/viewsets.py:392 +#: engine/core/docs/drf/viewsets.py:408 msgid "(exact) Product UUID" msgstr "(genaue) Produkt-UUID" -#: core/docs/drf/viewsets.py:399 +#: engine/core/docs/drf/viewsets.py:415 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" -#: core/docs/drf/viewsets.py:413 core/docs/drf/viewsets.py:414 +#: engine/core/docs/drf/viewsets.py:429 engine/core/docs/drf/viewsets.py:430 msgid "retrieve a single product (detailed view)" msgstr "Ein einzelnes Produkt abrufen (Detailansicht)" -#: core/docs/drf/viewsets.py:419 core/docs/drf/viewsets.py:443 -#: core/docs/drf/viewsets.py:459 core/docs/drf/viewsets.py:475 -#: core/docs/drf/viewsets.py:491 core/docs/drf/viewsets.py:507 +#: engine/core/docs/drf/viewsets.py:435 engine/core/docs/drf/viewsets.py:459 +#: engine/core/docs/drf/viewsets.py:475 engine/core/docs/drf/viewsets.py:491 +#: engine/core/docs/drf/viewsets.py:507 engine/core/docs/drf/viewsets.py:523 msgid "Product UUID or slug" msgstr "Produkt UUID oder Slug" -#: core/docs/drf/viewsets.py:429 core/docs/drf/viewsets.py:430 +#: engine/core/docs/drf/viewsets.py:445 engine/core/docs/drf/viewsets.py:446 msgid "create a product" msgstr "Ein Produkt erstellen" -#: core/docs/drf/viewsets.py:437 core/docs/drf/viewsets.py:438 +#: engine/core/docs/drf/viewsets.py:453 engine/core/docs/drf/viewsets.py:454 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" -#: core/docs/drf/viewsets.py:453 core/docs/drf/viewsets.py:454 +#: engine/core/docs/drf/viewsets.py:469 engine/core/docs/drf/viewsets.py:470 msgid "" "update some fields of an existing product, preserving non-editable fields" msgstr "" "Einige Felder eines bestehenden Produkts aktualisieren, nicht editierbare " "Felder beibehalten" -#: core/docs/drf/viewsets.py:469 core/docs/drf/viewsets.py:470 +#: engine/core/docs/drf/viewsets.py:485 engine/core/docs/drf/viewsets.py:486 msgid "delete a product" msgstr "Ein Produkt löschen" -#: core/docs/drf/viewsets.py:485 core/docs/drf/viewsets.py:486 +#: engine/core/docs/drf/viewsets.py:501 engine/core/docs/drf/viewsets.py:502 msgid "lists all permitted feedbacks for a product" msgstr "listet alle zulässigen Rückmeldungen für ein Produkt auf" -#: core/docs/drf/viewsets.py:502 +#: engine/core/docs/drf/viewsets.py:518 msgid "returns a snapshot of the product's SEO meta data" msgstr "Gibt einen Schnappschuss der SEO-Metadaten des Produkts zurück" -#: core/docs/drf/viewsets.py:520 +#: engine/core/docs/drf/viewsets.py:536 msgid "list all addresses" msgstr "Alle Adressen auflisten" -#: core/docs/drf/viewsets.py:527 +#: engine/core/docs/drf/viewsets.py:543 msgid "retrieve a single address" msgstr "Eine einzelne Adresse abrufen" -#: core/docs/drf/viewsets.py:534 +#: engine/core/docs/drf/viewsets.py:550 msgid "create a new address" msgstr "Eine neue Adresse erstellen" -#: core/docs/drf/viewsets.py:542 +#: engine/core/docs/drf/viewsets.py:558 msgid "delete an address" msgstr "Eine Adresse löschen" -#: core/docs/drf/viewsets.py:549 +#: engine/core/docs/drf/viewsets.py:565 msgid "update an entire address" msgstr "Eine ganze Adresse aktualisieren" -#: core/docs/drf/viewsets.py:557 +#: engine/core/docs/drf/viewsets.py:573 msgid "partially update an address" msgstr "Teilweise Aktualisierung einer Adresse" -#: core/docs/drf/viewsets.py:565 +#: engine/core/docs/drf/viewsets.py:581 msgid "autocomplete address suggestions" msgstr "Autovervollständigung der Adresseingabe" -#: core/docs/drf/viewsets.py:570 +#: engine/core/docs/drf/viewsets.py:586 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" -#: core/docs/drf/viewsets.py:576 +#: engine/core/docs/drf/viewsets.py:592 msgid "limit the results amount, 1 < limit < 10, default: 5" msgstr "begrenzt die Anzahl der Ergebnisse, 1 < Limit < 10, Standard: 5" -#: core/docs/drf/viewsets.py:589 +#: engine/core/docs/drf/viewsets.py:605 msgid "list all feedbacks (simple view)" msgstr "alle Rückmeldungen auflisten (einfache Ansicht)" -#: core/docs/drf/viewsets.py:593 +#: engine/core/docs/drf/viewsets.py:609 msgid "retrieve a single feedback (detailed view)" msgstr "eine einzelne Rückmeldung abrufen (detaillierte Ansicht)" -#: core/docs/drf/viewsets.py:597 +#: engine/core/docs/drf/viewsets.py:613 msgid "create a feedback" msgstr "ein Feedback erstellen" -#: core/docs/drf/viewsets.py:601 +#: engine/core/docs/drf/viewsets.py:617 msgid "delete a feedback" msgstr "eine Rückmeldung löschen" -#: core/docs/drf/viewsets.py:605 +#: engine/core/docs/drf/viewsets.py:621 msgid "rewrite an existing feedback saving non-editables" msgstr "" "Eine bestehende Kategorie umschreiben und dabei Nicht-Editierbares speichern" -#: core/docs/drf/viewsets.py:609 +#: engine/core/docs/drf/viewsets.py:625 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" -#: core/docs/drf/viewsets.py:616 +#: engine/core/docs/drf/viewsets.py:632 msgid "list all order–product relations (simple view)" msgstr "alle Bestell-Produkt-Beziehungen auflisten (einfache Ansicht)" -#: core/docs/drf/viewsets.py:623 +#: engine/core/docs/drf/viewsets.py:639 msgid "retrieve a single order–product relation (detailed view)" msgstr "eine einzelne Auftrag-Produkt-Relation abrufen (Detailansicht)" -#: core/docs/drf/viewsets.py:630 +#: engine/core/docs/drf/viewsets.py:646 msgid "create a new order–product relation" msgstr "eine neue Auftrag-Produkt-Beziehung erstellen" -#: core/docs/drf/viewsets.py:637 +#: engine/core/docs/drf/viewsets.py:653 msgid "replace an existing order–product relation" msgstr "eine bestehende Auftrag-Produkt-Relation ersetzen" -#: core/docs/drf/viewsets.py:644 +#: engine/core/docs/drf/viewsets.py:660 msgid "partially update an existing order–product relation" msgstr "eine bestehende Auftrag-Produkt-Beziehung teilweise aktualisieren" -#: core/docs/drf/viewsets.py:651 +#: engine/core/docs/drf/viewsets.py:667 msgid "delete an order–product relation" msgstr "eine Auftrag-Produkt-Beziehung löschen" -#: core/docs/drf/viewsets.py:658 +#: engine/core/docs/drf/viewsets.py:674 msgid "add or remove feedback on an order–product relation" msgstr "" "Feedback zu einer Bestellung-Produkt-Beziehung hinzufügen oder entfernen" -#: core/docs/drf/viewsets.py:672 +#: engine/core/docs/drf/viewsets.py:688 msgid "list all brands (simple view)" msgstr "Alle Marken auflisten (einfache Ansicht)" -#: core/docs/drf/viewsets.py:676 +#: engine/core/docs/drf/viewsets.py:692 msgid "retrieve a single brand (detailed view)" msgstr "Abrufen einer einzelnen Marke (detaillierte Ansicht)" -#: core/docs/drf/viewsets.py:680 +#: engine/core/docs/drf/viewsets.py:697 engine/core/docs/drf/viewsets.py:725 +msgid "Brand UUID or slug" +msgstr "Marke UUID oder Slug" + +#: engine/core/docs/drf/viewsets.py:704 msgid "create a brand" msgstr "Eine Marke schaffen" -#: core/docs/drf/viewsets.py:684 +#: engine/core/docs/drf/viewsets.py:708 msgid "delete a brand" msgstr "Eine Marke löschen" -#: core/docs/drf/viewsets.py:688 +#: engine/core/docs/drf/viewsets.py:712 msgid "rewrite an existing brand saving non-editables" msgstr "" "Eine bestehende Kategorie umschreiben und dabei Nicht-Editierbares speichern" -#: core/docs/drf/viewsets.py:692 +#: engine/core/docs/drf/viewsets.py:716 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" -#: core/docs/drf/viewsets.py:696 +#: engine/core/docs/drf/viewsets.py:720 msgid "SEO Meta snapshot for brand" msgstr "SEO-Meta-Momentaufnahme für die Marke" -#: core/docs/drf/viewsets.py:703 +#: engine/core/docs/drf/viewsets.py:735 msgid "list all vendors (simple view)" msgstr "Alle Lieferanten auflisten (einfache Ansicht)" -#: core/docs/drf/viewsets.py:707 +#: engine/core/docs/drf/viewsets.py:739 msgid "retrieve a single vendor (detailed view)" msgstr "Abruf eines einzelnen Lieferanten (Detailansicht)" -#: core/docs/drf/viewsets.py:711 +#: engine/core/docs/drf/viewsets.py:743 msgid "create a vendor" msgstr "Einen Verkäufer erstellen" -#: core/docs/drf/viewsets.py:715 +#: engine/core/docs/drf/viewsets.py:747 msgid "delete a vendor" msgstr "Einen Lieferanten löschen" -#: core/docs/drf/viewsets.py:719 +#: engine/core/docs/drf/viewsets.py:751 msgid "rewrite an existing vendor saving non-editables" msgstr "" "Eine bestehende Kategorie umschreiben und dabei Nicht-Editierbares speichern" -#: core/docs/drf/viewsets.py:723 +#: engine/core/docs/drf/viewsets.py:755 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" -#: core/docs/drf/viewsets.py:730 +#: engine/core/docs/drf/viewsets.py:762 msgid "list all product images (simple view)" msgstr "Alle Produktbilder auflisten (einfache Ansicht)" -#: core/docs/drf/viewsets.py:734 +#: engine/core/docs/drf/viewsets.py:766 msgid "retrieve a single product image (detailed view)" msgstr "Abrufen eines einzelnen Produktbildes (Detailansicht)" -#: core/docs/drf/viewsets.py:738 +#: engine/core/docs/drf/viewsets.py:770 msgid "create a product image" msgstr "Ein Produktbild erstellen" -#: core/docs/drf/viewsets.py:742 +#: engine/core/docs/drf/viewsets.py:774 msgid "delete a product image" msgstr "Ein Produktbild löschen" -#: core/docs/drf/viewsets.py:746 +#: engine/core/docs/drf/viewsets.py:778 msgid "rewrite an existing product image saving non-editables" msgstr "" "Eine bestehende Kategorie umschreiben und dabei Nicht-Editierbares speichern" -#: core/docs/drf/viewsets.py:750 +#: engine/core/docs/drf/viewsets.py:782 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" -#: core/docs/drf/viewsets.py:757 +#: engine/core/docs/drf/viewsets.py:789 msgid "list all promo codes (simple view)" msgstr "Alle Promo-Codes auflisten (einfache Ansicht)" -#: core/docs/drf/viewsets.py:761 +#: engine/core/docs/drf/viewsets.py:793 msgid "retrieve a single promo code (detailed view)" msgstr "Einen einzelnen Promo-Code abrufen (Detailansicht)" -#: core/docs/drf/viewsets.py:765 +#: engine/core/docs/drf/viewsets.py:797 msgid "create a promo code" msgstr "Einen Promo-Code erstellen" -#: core/docs/drf/viewsets.py:769 +#: engine/core/docs/drf/viewsets.py:801 msgid "delete a promo code" msgstr "Einen Promo-Code löschen" -#: core/docs/drf/viewsets.py:773 +#: engine/core/docs/drf/viewsets.py:805 msgid "rewrite an existing promo code saving non-editables" msgstr "" "Eine bestehende Kategorie umschreiben und dabei Nicht-Editierbares speichern" -#: core/docs/drf/viewsets.py:777 +#: engine/core/docs/drf/viewsets.py:809 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" -#: core/docs/drf/viewsets.py:784 +#: engine/core/docs/drf/viewsets.py:816 msgid "list all promotions (simple view)" msgstr "Alle Aktionen auflisten (einfache Ansicht)" -#: core/docs/drf/viewsets.py:788 +#: engine/core/docs/drf/viewsets.py:820 msgid "retrieve a single promotion (detailed view)" msgstr "Abrufen einer einzelnen Aktion (Detailansicht)" -#: core/docs/drf/viewsets.py:792 +#: engine/core/docs/drf/viewsets.py:824 msgid "create a promotion" msgstr "Eine Werbeaktion erstellen" -#: core/docs/drf/viewsets.py:796 +#: engine/core/docs/drf/viewsets.py:828 msgid "delete a promotion" msgstr "Eine Aktion löschen" -#: core/docs/drf/viewsets.py:800 +#: engine/core/docs/drf/viewsets.py:832 msgid "rewrite an existing promotion saving non-editables" msgstr "" "Eine bestehende Kategorie umschreiben und dabei Nicht-Editierbares speichern" -#: core/docs/drf/viewsets.py:804 +#: engine/core/docs/drf/viewsets.py:836 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" -#: core/docs/drf/viewsets.py:811 +#: engine/core/docs/drf/viewsets.py:843 msgid "list all stocks (simple view)" msgstr "Alle Bestände auflisten (einfache Ansicht)" -#: core/docs/drf/viewsets.py:815 +#: engine/core/docs/drf/viewsets.py:847 msgid "retrieve a single stock (detailed view)" msgstr "Abruf einer einzelnen Aktie (Detailansicht)" -#: core/docs/drf/viewsets.py:819 +#: engine/core/docs/drf/viewsets.py:851 msgid "create a stock record" msgstr "Einen Bestandssatz erstellen" -#: core/docs/drf/viewsets.py:823 +#: engine/core/docs/drf/viewsets.py:855 msgid "delete a stock record" msgstr "Löschen eines Bestandsdatensatzes" -#: core/docs/drf/viewsets.py:827 +#: engine/core/docs/drf/viewsets.py:859 msgid "rewrite an existing stock record saving non-editables" msgstr "" "Eine bestehende Kategorie umschreiben und dabei Nicht-Editierbares speichern" -#: core/docs/drf/viewsets.py:831 +#: engine/core/docs/drf/viewsets.py:863 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" -#: core/docs/drf/viewsets.py:838 +#: engine/core/docs/drf/viewsets.py:870 msgid "list all product tags (simple view)" msgstr "Alle Produkt-Tags auflisten (einfache Ansicht)" -#: core/docs/drf/viewsets.py:842 +#: engine/core/docs/drf/viewsets.py:874 msgid "retrieve a single product tag (detailed view)" msgstr "Ein einzelnes Produkt-Tag abrufen (detaillierte Ansicht)" -#: core/docs/drf/viewsets.py:846 +#: engine/core/docs/drf/viewsets.py:878 msgid "create a product tag" msgstr "Ein Produkt-Tag erstellen" -#: core/docs/drf/viewsets.py:850 +#: engine/core/docs/drf/viewsets.py:882 msgid "delete a product tag" msgstr "Ein Produkt-Tag löschen" -#: core/docs/drf/viewsets.py:854 +#: engine/core/docs/drf/viewsets.py:886 msgid "rewrite an existing product tag saving non-editables" msgstr "" "Eine bestehende Kategorie umschreiben und dabei Nicht-Editierbares speichern" -#: core/docs/drf/viewsets.py:858 +#: engine/core/docs/drf/viewsets.py:890 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" -#: core/elasticsearch/__init__.py:118 core/elasticsearch/__init__.py:550 +#: engine/core/elasticsearch/__init__.py:122 +#: engine/core/elasticsearch/__init__.py:570 msgid "no search term provided." msgstr "Kein Suchbegriff angegeben." -#: core/filters.py:69 core/filters.py:412 core/filters.py:539 +#: engine/core/filters.py:69 engine/core/filters.py:426 +#: engine/core/filters.py:553 msgid "Search" msgstr "Suche" -#: core/filters.py:70 core/filters.py:569 core/filters.py:598 +#: engine/core/filters.py:70 engine/core/filters.py:583 +#: engine/core/filters.py:612 msgid "UUID" msgstr "UUID" -#: core/filters.py:71 core/filters.py:414 core/filters.py:541 +#: engine/core/filters.py:71 engine/core/filters.py:428 +#: engine/core/filters.py:555 msgid "Name" msgstr "Name" -#: core/filters.py:72 core/filters.py:543 +#: engine/core/filters.py:72 engine/core/filters.py:557 msgid "Categories" msgstr "Kategorien" -#: core/filters.py:74 +#: engine/core/filters.py:74 msgid "Categories Slugs" msgstr "Kategorien Schnecken" -#: core/filters.py:75 core/filters.py:422 +#: engine/core/filters.py:75 engine/core/filters.py:436 msgid "Tags" msgstr "Tags" -#: core/filters.py:76 +#: engine/core/filters.py:76 msgid "Min Price" msgstr "Mindestpreis" -#: core/filters.py:77 +#: engine/core/filters.py:77 msgid "Max Price" msgstr "Maximaler Preis" -#: core/filters.py:78 +#: engine/core/filters.py:78 msgid "Is Active" msgstr "Ist aktiv" -#: core/filters.py:79 +#: engine/core/filters.py:79 msgid "Brand" msgstr "Marke" -#: core/filters.py:80 +#: engine/core/filters.py:80 msgid "Attributes" msgstr "Attribute" -#: core/filters.py:81 +#: engine/core/filters.py:81 msgid "Quantity" msgstr "Menge" -#: core/filters.py:82 core/filters.py:416 core/filters.py:542 -#: core/models.py:322 core/models.py:483 core/models.py:637 +#: engine/core/filters.py:82 engine/core/filters.py:430 +#: engine/core/filters.py:556 engine/core/models.py:321 +#: engine/core/models.py:482 engine/core/models.py:637 msgid "Slug" msgstr "Schnecke" -#: core/filters.py:83 +#: engine/core/filters.py:83 msgid "Is Digital" msgstr "Is Digital" -#: core/filters.py:84 +#: engine/core/filters.py:84 msgid "Include sub-categories" msgstr "Unterkategorien einbeziehen" -#: core/filters.py:87 +#: engine/core/filters.py:87 msgid "Include personal ordered" msgstr "Persönlich bestellte Produkte einbeziehen" -#: core/filters.py:89 core/models.py:641 +#: engine/core/filters.py:89 engine/core/models.py:641 msgid "SKU" msgstr "SKU" -#: core/filters.py:173 +#: engine/core/filters.py:184 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" -#: core/filters.py:339 +#: engine/core/filters.py:353 msgid "Search (ID, product name or part number)" msgstr "Suche (ID, Produktname oder Teilenummer)" -#: core/filters.py:342 +#: engine/core/filters.py:356 msgid "Bought after (inclusive)" msgstr "Gekauft nach (einschließlich)" -#: core/filters.py:343 +#: engine/core/filters.py:357 msgid "Bought before (inclusive)" msgstr "Gekauft vor (einschließlich)" -#: core/filters.py:346 core/filters.py:393 core/filters.py:600 +#: engine/core/filters.py:360 engine/core/filters.py:407 +#: engine/core/filters.py:614 msgid "User email" msgstr "Benutzer-E-Mail" -#: core/filters.py:347 core/filters.py:394 core/filters.py:578 -#: core/filters.py:599 +#: engine/core/filters.py:361 engine/core/filters.py:408 +#: engine/core/filters.py:592 engine/core/filters.py:613 msgid "User UUID" msgstr "User UUID" -#: core/filters.py:348 +#: engine/core/filters.py:362 msgid "Status" msgstr "Status" -#: core/filters.py:352 +#: engine/core/filters.py:366 msgid "Human Readable ID" msgstr "Human Readable ID" -#: core/filters.py:415 +#: engine/core/filters.py:429 msgid "Parent" msgstr "Elternteil" -#: core/filters.py:419 +#: engine/core/filters.py:433 msgid "Whole category(has at least 1 product or not)" msgstr "Gesamte Kategorie (mit oder ohne mindestens 1 Produkt)" -#: core/filters.py:423 +#: engine/core/filters.py:437 msgid "Level" msgstr "Ebene" -#: core/filters.py:573 +#: engine/core/filters.py:587 msgid "Product UUID" msgstr "Produkt UUID" -#: core/graphene/mutations.py:41 +#: engine/core/graphene/mutations.py:41 msgid "key to look for in or set into the cache" msgstr "Schlüssel, der im Cache zu suchen oder in den Cache zu legen ist" -#: core/graphene/mutations.py:42 +#: engine/core/graphene/mutations.py:42 msgid "data to store in cache" msgstr "Im Cache zu speichernde Daten" -#: core/graphene/mutations.py:45 +#: engine/core/graphene/mutations.py:45 msgid "timeout in seconds to set the data for into the cache" msgstr "Timeout in Sekunden, um die Daten in den Cache zu stellen" -#: core/graphene/mutations.py:48 +#: engine/core/graphene/mutations.py:48 msgid "cached data" msgstr "Zwischengespeicherte Daten" -#: core/graphene/mutations.py:63 +#: engine/core/graphene/mutations.py:63 msgid "camelized JSON data from the requested URL" msgstr "Camelized JSON-Daten aus der angeforderten URL" -#: core/graphene/mutations.py:68 core/views.py:232 +#: engine/core/graphene/mutations.py:68 engine/core/views.py:231 msgid "only URLs starting with http(s):// are allowed" msgstr "Nur URLs, die mit http(s):// beginnen, sind zulässig" -#: core/graphene/mutations.py:84 +#: engine/core/graphene/mutations.py:84 msgid "add a product to the order" msgstr "Ein Produkt zur Bestellung hinzufügen" -#: core/graphene/mutations.py:105 core/graphene/mutations.py:132 -#: core/graphene/mutations.py:240 core/graphene/mutations.py:288 +#: engine/core/graphene/mutations.py:105 engine/core/graphene/mutations.py:132 +#: engine/core/graphene/mutations.py:240 engine/core/graphene/mutations.py:288 #, python-brace-format msgid "order {order_uuid} not found" msgstr "Auftrag {order_uuid} nicht gefunden!" -#: core/graphene/mutations.py:111 core/graphene/mutations.py:160 +#: engine/core/graphene/mutations.py:111 engine/core/graphene/mutations.py:160 msgid "remove a product from the order" msgstr "Ein Produkt aus der Bestellung entfernen" -#: core/graphene/mutations.py:138 +#: engine/core/graphene/mutations.py:138 msgid "remove all products from the order" msgstr "Alle Produkte aus der Bestellung entfernen" -#: core/graphene/mutations.py:183 +#: engine/core/graphene/mutations.py:183 msgid "buy an order" msgstr "Eine Bestellung kaufen" -#: core/graphene/mutations.py:212 core/graphene/mutations.py:266 +#: engine/core/graphene/mutations.py:212 engine/core/graphene/mutations.py:266 msgid "please provide either order_uuid or order_hr_id - mutually exclusive" msgstr "" "Bitte geben Sie entweder order_uuid oder order_hr_id an - beide schließen " "sich gegenseitig aus!" -#: core/graphene/mutations.py:237 core/graphene/mutations.py:502 -#: core/graphene/mutations.py:544 core/viewsets.py:704 +#: engine/core/graphene/mutations.py:237 engine/core/graphene/mutations.py:502 +#: engine/core/graphene/mutations.py:544 engine/core/viewsets.py:704 msgid "wrong type came from order.buy() method: {type(instance)!s}" msgstr "Von der Methode order.buy() kam der falsche Typ: {type(instance)!s}" -#: core/graphene/mutations.py:246 +#: engine/core/graphene/mutations.py:246 msgid "perform an action on a list of products in the order" msgstr "Eine Aktion für eine Liste von Produkten in der Bestellung ausführen" -#: core/graphene/mutations.py:251 +#: engine/core/graphene/mutations.py:251 msgid "remove/add" msgstr "Entfernen/Hinzufügen" -#: core/graphene/mutations.py:283 core/graphene/mutations.py:324 +#: engine/core/graphene/mutations.py:283 engine/core/graphene/mutations.py:324 msgid "action must be either add or remove" msgstr "Aktion muss entweder \"Hinzufügen\" oder \"Entfernen\" sein!" -#: core/graphene/mutations.py:294 +#: engine/core/graphene/mutations.py:294 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" -#: core/graphene/mutations.py:312 +#: engine/core/graphene/mutations.py:312 msgid "please provide wishlist_uuid value" msgstr "Bitte geben Sie den Wert `wishlist_uuid` an." -#: core/graphene/mutations.py:329 core/graphene/mutations.py:405 -#: core/graphene/mutations.py:433 core/graphene/mutations.py:461 -#: core/graphene/mutations.py:505 +#: engine/core/graphene/mutations.py:329 engine/core/graphene/mutations.py:405 +#: engine/core/graphene/mutations.py:433 engine/core/graphene/mutations.py:461 +#: engine/core/graphene/mutations.py:505 #, python-brace-format msgid "wishlist {wishlist_uuid} not found" msgstr "Wishlist {wishlist_uuid} nicht gefunden!" -#: core/graphene/mutations.py:383 +#: engine/core/graphene/mutations.py:383 msgid "add a product to the wishlist" msgstr "Ein Produkt zur Bestellung hinzufügen" -#: core/graphene/mutations.py:411 +#: engine/core/graphene/mutations.py:411 msgid "remove a product from the wishlist" msgstr "Ein Produkt aus der Bestellung entfernen" -#: core/graphene/mutations.py:439 +#: engine/core/graphene/mutations.py:439 msgid "remove all products from the wishlist" msgstr "Ein Produkt aus der Bestellung entfernen" -#: core/graphene/mutations.py:467 +#: engine/core/graphene/mutations.py:467 msgid "buy all products from the wishlist" msgstr "Ein Produkt aus der Bestellung entfernen" -#: core/graphene/mutations.py:511 +#: engine/core/graphene/mutations.py:511 msgid "buy a product" msgstr "Eine Bestellung kaufen" -#: core/graphene/mutations.py:517 +#: engine/core/graphene/mutations.py:517 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" -#: core/graphene/mutations.py:550 +#: engine/core/graphene/mutations.py:550 msgid "add or delete a feedback for orderproduct" msgstr "" "Feedback zu einer Bestellung-Produkt-Beziehung hinzufügen oder entfernen" -#: core/graphene/mutations.py:574 +#: engine/core/graphene/mutations.py:574 msgid "action must be either `add` or `remove`" msgstr "Aktion muss entweder `Add` oder `remove` sein!" -#: core/graphene/mutations.py:577 +#: engine/core/graphene/mutations.py:577 #, python-brace-format msgid "order product {order_product_uuid} not found" msgstr "Bestellprodukt {order_product_uuid} nicht gefunden!" -#: core/graphene/mutations.py:644 +#: engine/core/graphene/mutations.py:644 msgid "original address string provided by the user" msgstr "Vom Benutzer angegebene Originaladresse" -#: core/graphene/mutations.py:680 core/models.py:930 core/models.py:943 -#: core/models.py:1358 core/models.py:1387 core/models.py:1412 -#: core/viewsets.py:707 +#: engine/core/graphene/mutations.py:680 engine/core/models.py:941 +#: engine/core/models.py:954 engine/core/models.py:1369 +#: engine/core/models.py:1398 engine/core/models.py:1423 +#: engine/core/viewsets.py:707 #, python-brace-format msgid "{name} does not exist: {uuid}" msgstr "{name} existiert nicht: {uuid}!" -#: core/graphene/mutations.py:694 +#: engine/core/graphene/mutations.py:694 msgid "limit must be between 1 and 10" msgstr "Der Grenzwert muss zwischen 1 und 10 liegen." -#: core/graphene/mutations.py:743 +#: engine/core/graphene/mutations.py:743 msgid "elasticsearch - works like a charm" msgstr "ElasticSearch - funktioniert wie ein Zauber" -#: core/graphene/object_types.py:82 core/graphene/object_types.py:370 -#: core/graphene/object_types.py:417 core/models.py:754 core/models.py:1225 -#: core/models.py:1823 +#: engine/core/graphene/object_types.py:82 +#: engine/core/graphene/object_types.py:370 +#: engine/core/graphene/object_types.py:417 engine/core/models.py:765 +#: engine/core/models.py:1236 engine/core/models.py:1883 msgid "attributes" msgstr "Attribute" -#: core/graphene/object_types.py:95 +#: engine/core/graphene/object_types.py:95 msgid "grouped attributes" msgstr "Gruppierte Attribute" -#: core/graphene/object_types.py:102 +#: engine/core/graphene/object_types.py:102 msgid "groups of attributes" msgstr "Gruppen von Attributen" -#: core/graphene/object_types.py:116 core/graphene/object_types.py:193 -#: core/graphene/object_types.py:223 core/models.py:426 +#: engine/core/graphene/object_types.py:116 +#: engine/core/graphene/object_types.py:193 +#: engine/core/graphene/object_types.py:223 engine/core/models.py:425 msgid "categories" msgstr "Kategorien" -#: core/graphene/object_types.py:124 core/models.py:497 +#: engine/core/graphene/object_types.py:124 engine/core/models.py:496 msgid "brands" msgstr "Marken" -#: core/graphene/object_types.py:195 +#: engine/core/graphene/object_types.py:195 msgid "category image url" msgstr "Kategorien" -#: core/graphene/object_types.py:196 core/graphene/object_types.py:317 -#: core/models.py:284 +#: engine/core/graphene/object_types.py:196 +#: engine/core/graphene/object_types.py:317 engine/core/models.py:283 msgid "markup percentage" msgstr "Markup Percentage" -#: core/graphene/object_types.py:199 +#: engine/core/graphene/object_types.py:199 msgid "which attributes and values can be used for filtering this category." msgstr "" "Welche Attribute und Werte können für die Filterung dieser Kategorie " "verwendet werden." -#: core/graphene/object_types.py:203 -msgid "" -"minimum and maximum prices for products in this category, if available." +#: engine/core/graphene/object_types.py:203 +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." -#: core/graphene/object_types.py:205 +#: engine/core/graphene/object_types.py:205 msgid "tags for this category" msgstr "Tags für diese Kategorie" -#: core/graphene/object_types.py:206 +#: engine/core/graphene/object_types.py:206 msgid "products in this category" msgstr "Produkte in dieser Kategorie" -#: core/graphene/object_types.py:324 core/models.py:189 +#: engine/core/graphene/object_types.py:324 engine/core/models.py:188 msgid "vendors" msgstr "Anbieter" -#: core/graphene/object_types.py:328 +#: engine/core/graphene/object_types.py:328 msgid "Latitude (Y coordinate)" msgstr "Breitengrad (Y-Koordinate)" -#: core/graphene/object_types.py:329 +#: engine/core/graphene/object_types.py:329 msgid "Longitude (X coordinate)" msgstr "Längengrad (X-Koordinate)" -#: core/graphene/object_types.py:358 +#: engine/core/graphene/object_types.py:358 msgid "comment" msgstr "Wie" -#: core/graphene/object_types.py:359 core/graphene/object_types.py:483 +#: engine/core/graphene/object_types.py:359 +#: engine/core/graphene/object_types.py:483 msgid "rating value from 1 to 10, inclusive, or 0 if not set." msgstr "" "Bewertungswert von 1 bis einschließlich 10 oder 0, wenn nicht festgelegt." -#: core/graphene/object_types.py:366 +#: engine/core/graphene/object_types.py:366 msgid "represents feedback from a user." msgstr "Stellt das Feedback eines Benutzers dar." -#: core/graphene/object_types.py:371 core/graphene/object_types.py:418 -#: core/models.py:1219 +#: engine/core/graphene/object_types.py:371 +#: engine/core/graphene/object_types.py:418 engine/core/models.py:1230 msgid "notifications" msgstr "Benachrichtigungen" -#: core/graphene/object_types.py:372 +#: engine/core/graphene/object_types.py:372 msgid "download url for this order product if applicable" msgstr "Download-Url für dieses Bestellprodukt, falls zutreffend" -#: core/graphene/object_types.py:373 core/models.py:1939 +#: engine/core/graphene/object_types.py:373 engine/core/models.py:1722 msgid "feedback" msgstr "Rückmeldung" -#: core/graphene/object_types.py:407 +#: engine/core/graphene/object_types.py:407 msgid "a list of order products in this order" msgstr "Eine Liste der bestellten Produkte in dieser Reihenfolge" -#: core/graphene/object_types.py:409 core/models.py:1189 +#: engine/core/graphene/object_types.py:409 engine/core/models.py:1200 msgid "billing address" msgstr "Rechnungsadresse" -#: core/graphene/object_types.py:412 +#: engine/core/graphene/object_types.py:412 msgid "" "shipping address for this order, leave blank if same as billing address or " "if not applicable" @@ -1333,230 +1363,238 @@ msgstr "" "Lieferadresse für diese Bestellung, leer lassen, wenn sie mit der " "Rechnungsadresse übereinstimmt oder nicht zutrifft" -#: core/graphene/object_types.py:414 +#: engine/core/graphene/object_types.py:414 msgid "total price of this order" msgstr "Gesamtpreis für diese Bestellung" -#: core/graphene/object_types.py:415 +#: engine/core/graphene/object_types.py:415 msgid "total quantity of products in order" msgstr "Gesamtmenge der bestellten Produkte" -#: core/graphene/object_types.py:416 +#: engine/core/graphene/object_types.py:416 msgid "are all products in the order digital" msgstr "Sind alle Produkte in der Bestellung digital" -#: core/graphene/object_types.py:419 +#: engine/core/graphene/object_types.py:419 msgid "transactions for this order" msgstr "Vorgänge für diesen Auftrag" -#: core/graphene/object_types.py:438 core/models.py:1253 +#: engine/core/graphene/object_types.py:438 engine/core/models.py:1264 msgid "orders" msgstr "Bestellungen" -#: core/graphene/object_types.py:459 +#: engine/core/graphene/object_types.py:459 msgid "image url" msgstr "Bild URL" -#: core/graphene/object_types.py:466 +#: engine/core/graphene/object_types.py:466 msgid "product's images" msgstr "Bilder des Produkts" -#: core/graphene/object_types.py:473 core/models.py:425 core/models.py:579 +#: engine/core/graphene/object_types.py:473 engine/core/models.py:424 +#: engine/core/models.py:579 msgid "category" msgstr "Kategorie" -#: core/graphene/object_types.py:475 core/models.py:1940 +#: engine/core/graphene/object_types.py:475 engine/core/models.py:1723 msgid "feedbacks" msgstr "Rückmeldungen" -#: core/graphene/object_types.py:476 core/models.py:496 core/models.py:588 +#: engine/core/graphene/object_types.py:476 engine/core/models.py:495 +#: engine/core/models.py:588 msgid "brand" msgstr "Marke" -#: core/graphene/object_types.py:477 core/models.py:107 +#: engine/core/graphene/object_types.py:477 engine/core/models.py:106 msgid "attribute groups" msgstr "Attribut-Gruppen" -#: core/graphene/object_types.py:478 -#: core/templates/digital_order_created_email.html:111 -#: core/templates/digital_order_delivered_email.html:109 -#: core/templates/shipped_order_created_email.html:109 -#: core/templates/shipped_order_delivered_email.html:109 +#: engine/core/graphene/object_types.py:478 +#: engine/core/templates/digital_order_created_email.html:111 +#: engine/core/templates/digital_order_delivered_email.html:109 +#: engine/core/templates/shipped_order_created_email.html:109 +#: engine/core/templates/shipped_order_delivered_email.html:109 msgid "price" msgstr "Preis" -#: core/graphene/object_types.py:479 -#: core/templates/digital_order_created_email.html:110 -#: core/templates/digital_order_delivered_email.html:108 -#: core/templates/shipped_order_created_email.html:108 -#: core/templates/shipped_order_delivered_email.html:108 +#: engine/core/graphene/object_types.py:479 +#: engine/core/templates/digital_order_created_email.html:110 +#: engine/core/templates/digital_order_delivered_email.html:108 +#: engine/core/templates/shipped_order_created_email.html:108 +#: engine/core/templates/shipped_order_delivered_email.html:108 msgid "quantity" msgstr "Menge" -#: core/graphene/object_types.py:480 +#: engine/core/graphene/object_types.py:480 msgid "number of feedbacks" msgstr "Anzahl der Rückmeldungen" -#: core/graphene/object_types.py:481 +#: engine/core/graphene/object_types.py:481 msgid "only available for personal orders" msgstr "Produkte nur für persönliche Bestellungen verfügbar" -#: core/graphene/object_types.py:507 core/models.py:651 +#: engine/core/graphene/object_types.py:484 +msgid "discount price" +msgstr "Rabattierter Preis" + +#: engine/core/graphene/object_types.py:508 engine/core/models.py:651 msgid "products" msgstr "Produkte" -#: core/graphene/object_types.py:607 +#: engine/core/graphene/object_types.py:611 msgid "promocodes" msgstr "Promocodes" -#: core/graphene/object_types.py:617 +#: engine/core/graphene/object_types.py:621 msgid "products on sale" msgstr "Zum Verkauf stehende Produkte" -#: core/graphene/object_types.py:624 core/models.py:879 +#: engine/core/graphene/object_types.py:628 engine/core/models.py:890 msgid "promotions" msgstr "Werbeaktionen" -#: core/graphene/object_types.py:628 core/models.py:188 +#: engine/core/graphene/object_types.py:632 engine/core/models.py:187 msgid "vendor" msgstr "Anbieter" -#: core/graphene/object_types.py:629 core/models.py:650 -#: core/templates/digital_order_created_email.html:109 -#: core/templates/digital_order_delivered_email.html:107 -#: core/templates/shipped_order_created_email.html:107 -#: core/templates/shipped_order_delivered_email.html:107 +#: engine/core/graphene/object_types.py:633 engine/core/models.py:650 +#: 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 +#: engine/core/templates/shipped_order_delivered_email.html:107 msgid "product" msgstr "Produkt" -#: core/graphene/object_types.py:640 core/models.py:902 +#: engine/core/graphene/object_types.py:644 engine/core/models.py:913 msgid "wishlisted products" msgstr "Auf dem Wunschzettel stehende Produkte" -#: core/graphene/object_types.py:646 core/models.py:919 +#: engine/core/graphene/object_types.py:650 engine/core/models.py:930 msgid "wishlists" msgstr "Wunschzettel" -#: core/graphene/object_types.py:650 +#: engine/core/graphene/object_types.py:654 msgid "tagged products" msgstr "Markierte Produkte" -#: core/graphene/object_types.py:657 core/models.py:225 core/models.py:594 +#: engine/core/graphene/object_types.py:661 engine/core/models.py:224 +#: engine/core/models.py:594 msgid "product tags" msgstr "Produkt-Tags" -#: core/graphene/object_types.py:661 +#: engine/core/graphene/object_types.py:665 msgid "tagged categories" msgstr "Markierte Kategorien" -#: core/graphene/object_types.py:668 +#: engine/core/graphene/object_types.py:672 msgid "categories tags" msgstr "Kategorien'-Tags" -#: core/graphene/object_types.py:672 +#: engine/core/graphene/object_types.py:676 msgid "project name" msgstr "Name des Projekts" -#: core/graphene/object_types.py:673 +#: engine/core/graphene/object_types.py:677 msgid "company email" msgstr "Unternehmen E-Mail" -#: core/graphene/object_types.py:674 +#: engine/core/graphene/object_types.py:678 msgid "company name" msgstr "Name des Unternehmens" -#: core/graphene/object_types.py:675 +#: engine/core/graphene/object_types.py:679 msgid "company address" msgstr "Adresse des Unternehmens" -#: core/graphene/object_types.py:676 +#: engine/core/graphene/object_types.py:680 msgid "company phone number" msgstr "Telefonnummer des Unternehmens" -#: core/graphene/object_types.py:677 +#: engine/core/graphene/object_types.py:681 msgid "email from, sometimes it must be used instead of host user value" msgstr "" "E-Mail von\", muss manchmal anstelle des Host-Benutzerwerts verwendet werden" -#: core/graphene/object_types.py:678 +#: engine/core/graphene/object_types.py:682 msgid "email host user" msgstr "E-Mail-Host-Benutzer" -#: core/graphene/object_types.py:679 +#: engine/core/graphene/object_types.py:683 msgid "maximum amount for payment" msgstr "Höchstbetrag für die Zahlung" -#: core/graphene/object_types.py:680 +#: engine/core/graphene/object_types.py:684 msgid "minimum amount for payment" msgstr "Mindestbetrag für die Zahlung" -#: core/graphene/object_types.py:681 +#: engine/core/graphene/object_types.py:685 msgid "analytics data" msgstr "Analytische Daten" -#: core/graphene/object_types.py:682 +#: engine/core/graphene/object_types.py:686 msgid "advertisement data" msgstr "Advertisement data" -#: core/graphene/object_types.py:685 +#: engine/core/graphene/object_types.py:689 msgid "company configuration" msgstr "Konfiguration" -#: core/graphene/object_types.py:689 +#: engine/core/graphene/object_types.py:693 msgid "language code" msgstr "Sprachcode" -#: core/graphene/object_types.py:690 +#: engine/core/graphene/object_types.py:694 msgid "language name" msgstr "Name der Sprache" -#: core/graphene/object_types.py:691 +#: engine/core/graphene/object_types.py:695 msgid "language flag, if exists :)" msgstr "Sprachflagge, falls vorhanden :)" -#: core/graphene/object_types.py:694 +#: engine/core/graphene/object_types.py:698 msgid "supported languages" msgstr "Eine Liste der unterstützten Sprachen abrufen" -#: core/graphene/object_types.py:725 core/graphene/object_types.py:726 -#: core/graphene/object_types.py:727 +#: engine/core/graphene/object_types.py:729 +#: engine/core/graphene/object_types.py:730 +#: engine/core/graphene/object_types.py:731 msgid "products search results" msgstr "Suchergebnisse für Produkte" -#: core/graphene/object_types.py:728 +#: engine/core/graphene/object_types.py:732 msgid "posts search results" msgstr "Suchergebnisse für Produkte" -#: core/models.py:76 +#: engine/core/models.py:75 msgid "" "Represents a group of attributes, which can be hierarchical. This class is " "used to manage and organize attribute groups. An attribute group can have a " "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." -#: core/models.py:92 +#: engine/core/models.py:91 msgid "parent of this group" msgstr "Elternteil dieser Gruppe" -#: core/models.py:93 +#: engine/core/models.py:92 msgid "parent attribute group" msgstr "Übergeordnete Attributgruppe" -#: core/models.py:97 core/models.py:98 +#: engine/core/models.py:96 engine/core/models.py:97 msgid "attribute group's name" msgstr "Name der Attributgruppe" -#: core/models.py:106 core/models.py:716 +#: engine/core/models.py:105 engine/core/models.py:727 msgid "attribute group" msgstr "Attribut-Gruppe" -#: core/models.py:112 +#: engine/core/models.py:111 msgid "" "Represents a vendor entity capable of storing information about external " "vendors and their interaction requirements. The Vendor class is used to " @@ -1568,58 +1606,58 @@ 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." -#: core/models.py:125 +#: engine/core/models.py:124 msgid "stores credentials and endpoints required for vendor communication" msgstr "" "Speichert Anmeldeinformationen und Endpunkte, die für die API-Kommunikation " "des Anbieters erforderlich sind" -#: core/models.py:126 +#: engine/core/models.py:125 msgid "authentication info" msgstr "Informationen zur Authentifizierung" -#: core/models.py:131 +#: engine/core/models.py:130 msgid "define the markup for products retrieved from this vendor" msgstr "" "Definieren Sie den Aufschlag für Produkte, die von diesem Lieferanten " "bezogen werden" -#: core/models.py:132 +#: engine/core/models.py:131 msgid "vendor markup percentage" msgstr "Prozentualer Aufschlag des Lieferanten" -#: core/models.py:136 +#: engine/core/models.py:135 msgid "name of this vendor" msgstr "Name dieses Anbieters" -#: core/models.py:137 +#: engine/core/models.py:136 msgid "vendor name" msgstr "Name des Anbieters" -#: core/models.py:148 +#: engine/core/models.py:147 msgid "response file" msgstr "Antwortdatei" -#: core/models.py:149 +#: engine/core/models.py:148 msgid "vendor's last processing response" msgstr "die letzte Verarbeitungsantwort des Lieferanten" -#: core/models.py:155 +#: engine/core/models.py:154 msgid "vendor's integration file path" msgstr "Pfad der Integrationsdatei des Anbieters" -#: core/models.py:156 +#: engine/core/models.py:155 msgid "integration path" msgstr "Integrationspfad" -#: core/models.py:198 +#: engine/core/models.py:197 msgid "" "Represents a product tag used for classifying or identifying products. The " "ProductTag class is designed to uniquely identify and classify products " @@ -1627,34 +1665,34 @@ 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." -#: core/models.py:210 core/models.py:241 +#: engine/core/models.py:209 engine/core/models.py:240 msgid "internal tag identifier for the product tag" msgstr "Interner Tag-Identifikator für das Produkt-Tag" -#: core/models.py:211 core/models.py:242 +#: engine/core/models.py:210 engine/core/models.py:241 msgid "tag name" msgstr "Tag name" -#: core/models.py:215 core/models.py:246 +#: engine/core/models.py:214 engine/core/models.py:245 msgid "user-friendly name for the product tag" msgstr "Benutzerfreundlicher Name für den Produktanhänger" -#: core/models.py:216 core/models.py:247 +#: engine/core/models.py:215 engine/core/models.py:246 msgid "tag display name" msgstr "Tag-Anzeigename" -#: core/models.py:224 +#: engine/core/models.py:223 msgid "product tag" msgstr "Produkt-Tag" -#: core/models.py:230 +#: engine/core/models.py:229 msgid "" "Represents a category tag used for products. This class models a category " "tag that can be used to associate and classify products. It includes " @@ -1665,15 +1703,15 @@ msgstr "" "zuzuordnen und zu klassifizieren. Sie enthält Attribute für einen internen " "Tag-Bezeichner und einen benutzerfreundlichen Anzeigenamen." -#: core/models.py:255 +#: engine/core/models.py:254 msgid "category tag" msgstr "Kategorie-Tag" -#: core/models.py:256 core/models.py:328 +#: engine/core/models.py:255 engine/core/models.py:327 msgid "category tags" msgstr "Kategorie-Tags" -#: core/models.py:261 +#: engine/core/models.py:260 msgid "" "Represents a category entity to organize and group related items in a " "hierarchical structure. Categories may have hierarchical relationships with " @@ -1691,64 +1729,63 @@ 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." -#: core/models.py:275 +#: engine/core/models.py:274 msgid "upload an image representing this category" msgstr "Laden Sie ein Bild hoch, das diese Kategorie repräsentiert" -#: core/models.py:278 +#: engine/core/models.py:277 msgid "category image" msgstr "Kategorie Bild" -#: core/models.py:283 +#: engine/core/models.py:282 msgid "define a markup percentage for products in this category" msgstr "" "Definieren Sie einen prozentualen Aufschlag für Produkte in dieser Kategorie" -#: core/models.py:292 +#: engine/core/models.py:291 msgid "parent of this category to form a hierarchical structure" msgstr "" "Übergeordneter dieser Kategorie, um eine hierarchische Struktur zu bilden" -#: core/models.py:293 +#: engine/core/models.py:292 msgid "parent category" msgstr "Übergeordnete Kategorie" -#: core/models.py:298 +#: engine/core/models.py:297 msgid "category name" msgstr "Name der Kategorie" -#: core/models.py:299 +#: engine/core/models.py:298 msgid "provide a name for this category" msgstr "Geben Sie einen Namen für diese Kategorie an" -#: core/models.py:306 +#: engine/core/models.py:305 msgid "add a detailed description for this category" msgstr "Fügen Sie eine detaillierte Beschreibung für diese Kategorie hinzu" -#: core/models.py:307 +#: engine/core/models.py:306 msgid "category description" msgstr "Beschreibung der Kategorie" -#: core/models.py:327 +#: engine/core/models.py:326 msgid "tags that help describe or group this category" msgstr "Tags, die helfen, diese Kategorie zu beschreiben oder zu gruppieren" -#: core/models.py:334 core/models.py:489 +#: engine/core/models.py:333 engine/core/models.py:488 msgid "priority" msgstr "Priorität" -#: core/models.py:432 +#: engine/core/models.py:431 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, " @@ -1756,126 +1793,129 @@ msgstr "" "der Prioritätsreihenfolge. Sie ermöglicht die Organisation und Darstellung " "von markenbezogenen Daten innerhalb der Anwendung." -#: core/models.py:442 +#: engine/core/models.py:441 msgid "name of this brand" msgstr "Name dieser Marke" -#: core/models.py:443 +#: engine/core/models.py:442 msgid "brand name" msgstr "Markenname" -#: core/models.py:450 +#: engine/core/models.py:449 msgid "upload a logo representing this brand" msgstr "Laden Sie ein Logo hoch, das diese Marke repräsentiert" -#: core/models.py:452 +#: engine/core/models.py:451 msgid "brand small image" msgstr "Marke kleines Bild" -#: core/models.py:458 +#: engine/core/models.py:457 msgid "upload a big logo representing this brand" msgstr "Laden Sie ein großes Logo hoch, das diese Marke repräsentiert" -#: core/models.py:460 +#: engine/core/models.py:459 msgid "brand big image" msgstr "Großes Image der Marke" -#: core/models.py:465 +#: engine/core/models.py:464 msgid "add a detailed description of the brand" msgstr "Fügen Sie eine detaillierte Beschreibung der Marke hinzu" -#: core/models.py:466 +#: engine/core/models.py:465 msgid "brand description" msgstr "Beschreibung der Marke" -#: core/models.py:471 +#: engine/core/models.py:470 msgid "optional categories that this brand is associated with" msgstr "" "Optionale Kategorien, mit denen diese Marke in Verbindung gebracht wird" -#: core/models.py:472 +#: engine/core/models.py:471 msgid "associated categories" msgstr "Kategorien" -#: core/models.py:502 +#: engine/core/models.py:501 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." -#: core/models.py:514 +#: engine/core/models.py:513 msgid "the vendor supplying this product stock" msgstr "Der Verkäufer, der dieses Produkt liefert, hat folgende Bestände" -#: core/models.py:515 +#: engine/core/models.py:514 msgid "associated vendor" msgstr "Zugehöriger Anbieter" -#: core/models.py:519 +#: engine/core/models.py:518 msgid "final price to the customer after markups" msgstr "Endpreis für den Kunden nach Aufschlägen" -#: core/models.py:520 +#: engine/core/models.py:519 msgid "selling price" msgstr "Verkaufspreis" -#: core/models.py:525 +#: engine/core/models.py:524 msgid "the product associated with this stock entry" msgstr "Das mit diesem Bestandseintrag verbundene Produkt" -#: core/models.py:526 core/models.py:779 core/models.py:825 -#: core/models.py:1718 +#: engine/core/models.py:525 engine/core/models.py:790 +#: engine/core/models.py:836 engine/core/models.py:1778 msgid "associated product" msgstr "Zugehöriges Produkt" -#: core/models.py:533 +#: engine/core/models.py:532 msgid "the price paid to the vendor for this product" msgstr "Der an den Verkäufer gezahlte Preis für dieses Produkt" -#: core/models.py:534 +#: engine/core/models.py:533 msgid "vendor purchase price" msgstr "Einkaufspreis des Verkäufers" -#: core/models.py:538 +#: engine/core/models.py:537 msgid "available quantity of the product in stock" msgstr "Verfügbare Menge des Produkts auf Lager" -#: core/models.py:539 +#: engine/core/models.py:538 msgid "quantity in stock" msgstr "Vorrätige Menge" -#: core/models.py:543 +#: engine/core/models.py:542 msgid "vendor-assigned SKU for identifying the product" msgstr "Vom Hersteller zugewiesene SKU zur Identifizierung des Produkts" -#: core/models.py:544 +#: engine/core/models.py:543 msgid "vendor sku" msgstr "SKU des Verkäufers" -#: core/models.py:550 +#: engine/core/models.py:549 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" -#: core/models.py:551 +#: engine/core/models.py:550 msgid "digital file" msgstr "Digitale Datei" -#: core/models.py:560 +#: engine/core/models.py:553 +msgid "system attributes" +msgstr "System-Attribute" + +#: engine/core/models.py:560 msgid "stock entries" msgstr "Bestandseinträge" -#: core/models.py:565 +#: engine/core/models.py:565 msgid "" "Represents a product with attributes such as category, brand, tags, digital " "status, name, description, part number, and slug. Provides related utility " @@ -1889,261 +1929,260 @@ 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." -#: core/models.py:578 +#: engine/core/models.py:578 msgid "category this product belongs to" msgstr "Kategorie, zu der dieses Produkt gehört" -#: core/models.py:587 +#: engine/core/models.py:587 msgid "optionally associate this product with a brand" msgstr "Optional können Sie dieses Produkt mit einer Marke verknüpfen" -#: core/models.py:593 +#: engine/core/models.py:593 msgid "tags that help describe or group this product" msgstr "Tags, die helfen, dieses Produkt zu beschreiben oder zu gruppieren" -#: core/models.py:598 +#: engine/core/models.py:598 msgid "indicates whether this product is digitally delivered" msgstr "Gibt an, ob dieses Produkt digital geliefert wird" -#: core/models.py:599 +#: engine/core/models.py:599 msgid "is product digital" msgstr "Ist das Produkt digital" -#: core/models.py:605 +#: engine/core/models.py:605 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." -#: core/models.py:606 +#: engine/core/models.py:606 msgid "product name" msgstr "Name des Produkts" -#: core/models.py:612 core/models.py:867 +#: engine/core/models.py:612 engine/core/models.py:878 msgid "add a detailed description of the product" msgstr "Fügen Sie eine detaillierte Beschreibung des Produkts hinzu" -#: core/models.py:613 +#: engine/core/models.py:613 msgid "product description" msgstr "Beschreibung des Produkts" -#: core/models.py:620 +#: engine/core/models.py:620 msgid "part number for this product" msgstr "Teilenummer für dieses Produkt" -#: core/models.py:621 +#: engine/core/models.py:621 msgid "part number" msgstr "Teilnummer" -#: core/models.py:640 +#: engine/core/models.py:640 msgid "stock keeping unit for this product" msgstr "Lagerhaltende Einheit für dieses Produkt" -#: core/models.py:702 +#: engine/core/models.py:713 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." -#: core/models.py:715 +#: engine/core/models.py:726 msgid "group of this attribute" msgstr "Gruppe dieses Attributs" -#: core/models.py:721 +#: engine/core/models.py:732 msgid "string" msgstr "Zeichenfolge" -#: core/models.py:722 +#: engine/core/models.py:733 msgid "integer" msgstr "Integer" -#: core/models.py:723 +#: engine/core/models.py:734 msgid "float" msgstr "Schwimmer" -#: core/models.py:724 +#: engine/core/models.py:735 msgid "boolean" msgstr "Boolesche" -#: core/models.py:725 +#: engine/core/models.py:736 msgid "array" msgstr "Array" -#: core/models.py:726 +#: engine/core/models.py:737 msgid "object" msgstr "Objekt" -#: core/models.py:728 +#: engine/core/models.py:739 msgid "type of the attribute's value" msgstr "Typ des Attributwerts" -#: core/models.py:729 +#: engine/core/models.py:740 msgid "value type" msgstr "Werttyp" -#: core/models.py:734 +#: engine/core/models.py:745 msgid "name of this attribute" msgstr "Name dieses Attributs" -#: core/models.py:735 +#: engine/core/models.py:746 msgid "attribute's name" msgstr "Name des Attributs" -#: core/models.py:740 +#: engine/core/models.py:751 msgid "is filterable" msgstr "ist filterbar" -#: core/models.py:741 +#: engine/core/models.py:752 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." -#: core/models.py:753 core/models.py:771 -#: core/templates/digital_order_delivered_email.html:134 +#: engine/core/models.py:764 engine/core/models.py:782 +#: engine/core/templates/digital_order_delivered_email.html:134 msgid "attribute" msgstr "Attribut" -#: core/models.py:759 +#: engine/core/models.py:770 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." -#: core/models.py:770 +#: engine/core/models.py:781 msgid "attribute of this value" msgstr "Attribut dieses Wertes" -#: core/models.py:778 +#: engine/core/models.py:789 msgid "the specific product associated with this attribute's value" msgstr "" "Das spezifische Produkt, das mit dem Wert dieses Attributs verbunden ist" -#: core/models.py:784 +#: engine/core/models.py:795 msgid "the specific value for this attribute" msgstr "Der spezifische Wert für dieses Attribut" -#: core/models.py:797 +#: engine/core/models.py:808 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." -#: core/models.py:808 +#: engine/core/models.py:819 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." -#: core/models.py:809 +#: engine/core/models.py:820 msgid "image alt text" msgstr "Bild-Alt-Text" -#: core/models.py:812 +#: engine/core/models.py:823 msgid "upload the image file for this product" msgstr "Laden Sie die Bilddatei für dieses Produkt hoch" -#: core/models.py:813 core/models.py:837 +#: engine/core/models.py:824 engine/core/models.py:848 msgid "product image" msgstr "Produktbild" -#: core/models.py:818 +#: engine/core/models.py:829 msgid "determines the order in which images are displayed" msgstr "Legt die Reihenfolge fest, in der die Bilder angezeigt werden" -#: core/models.py:819 +#: engine/core/models.py:830 msgid "display priority" msgstr "Priorität anzeigen" -#: core/models.py:824 +#: engine/core/models.py:835 msgid "the product that this image represents" msgstr "Das Produkt, das dieses Bild darstellt" -#: core/models.py:838 +#: engine/core/models.py:849 msgid "product images" msgstr "Produktbilder" -#: core/models.py:843 +#: engine/core/models.py:854 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." -#: core/models.py:855 +#: engine/core/models.py:866 msgid "percentage discount for the selected products" msgstr "Prozentualer Rabatt für die ausgewählten Produkte" -#: core/models.py:856 +#: engine/core/models.py:867 msgid "discount percentage" msgstr "Prozentsatz der Ermäßigung" -#: core/models.py:861 +#: engine/core/models.py:872 msgid "provide a unique name for this promotion" msgstr "Geben Sie einen eindeutigen Namen für diese Aktion an" -#: core/models.py:862 +#: engine/core/models.py:873 msgid "promotion name" msgstr "Name der Aktion" -#: core/models.py:868 +#: engine/core/models.py:879 msgid "promotion description" msgstr "Promotion description" -#: core/models.py:873 +#: engine/core/models.py:884 msgid "select which products are included in this promotion" msgstr "Wählen Sie aus, welche Produkte in dieser Aktion enthalten sind" -#: core/models.py:874 +#: engine/core/models.py:885 msgid "included products" msgstr "Enthaltene Produkte" -#: core/models.py:878 +#: engine/core/models.py:889 msgid "promotion" msgstr "Förderung" -#: core/models.py:889 +#: engine/core/models.py:900 msgid "" "Represents a user's wishlist for storing and managing desired products. The " "class provides functionality to manage a collection of products, supporting " @@ -2153,64 +2192,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." -#: core/models.py:901 +#: engine/core/models.py:912 msgid "products that the user has marked as wanted" msgstr "Produkte, die der Benutzer als gewünscht markiert hat" -#: core/models.py:909 +#: engine/core/models.py:920 msgid "user who owns this wishlist" msgstr "Benutzer, dem diese Wunschliste gehört" -#: core/models.py:910 +#: engine/core/models.py:921 msgid "wishlist owner" msgstr "Besitzer der Wishlist" -#: core/models.py:918 +#: engine/core/models.py:929 msgid "wishlist" msgstr "Wunschzettel" -#: core/models.py:960 +#: engine/core/models.py:971 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." -#: core/models.py:973 +#: engine/core/models.py:984 msgid "documentary" msgstr "Dokumentarfilm" -#: core/models.py:974 +#: engine/core/models.py:985 msgid "documentaries" msgstr "Dokumentarfilme" -#: core/models.py:984 +#: engine/core/models.py:995 msgid "unresolved" msgstr "Ungelöst" -#: core/models.py:989 +#: engine/core/models.py:1000 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 " @@ -2223,59 +2262,59 @@ msgstr "" "ermöglicht es auch, eine Adresse mit einem Benutzer zu verknüpfen, was die " "personalisierte Datenverarbeitung erleichtert." -#: core/models.py:1004 +#: engine/core/models.py:1015 msgid "address line for the customer" msgstr "Adresszeile für den Kunden" -#: core/models.py:1005 +#: engine/core/models.py:1016 msgid "address line" msgstr "Adresszeile" -#: core/models.py:1007 +#: engine/core/models.py:1018 msgid "street" msgstr "Straße" -#: core/models.py:1008 +#: engine/core/models.py:1019 msgid "district" msgstr "Bezirk" -#: core/models.py:1009 +#: engine/core/models.py:1020 msgid "city" msgstr "Stadt" -#: core/models.py:1010 +#: engine/core/models.py:1021 msgid "region" msgstr "Region" -#: core/models.py:1011 +#: engine/core/models.py:1022 msgid "postal code" msgstr "Postleitzahl" -#: core/models.py:1012 +#: engine/core/models.py:1023 msgid "country" msgstr "Land" -#: core/models.py:1019 +#: engine/core/models.py:1030 msgid "geolocation point: (longitude, latitude)" msgstr "Geolocation Point(Längengrad, Breitengrad)" -#: core/models.py:1022 +#: engine/core/models.py:1033 msgid "full JSON response from geocoder for this address" msgstr "Vollständige JSON-Antwort vom Geocoder für diese Adresse" -#: core/models.py:1027 +#: engine/core/models.py:1038 msgid "stored JSON response from the geocoding service" msgstr "Gespeicherte JSON-Antwort vom Geokodierungsdienst" -#: core/models.py:1035 +#: engine/core/models.py:1046 msgid "address" msgstr "Adresse" -#: core/models.py:1036 +#: engine/core/models.py:1047 msgid "addresses" msgstr "Adressen" -#: core/models.py:1048 +#: engine/core/models.py:1059 msgid "" "Represents a promotional code that can be used for discounts, managing its " "validity, type of discount, and application. The PromoCode class stores " @@ -2293,76 +2332,75 @@ msgstr "" "Validierung und Anwendung des Promo-Codes auf eine Bestellung, wobei " "sichergestellt wird, dass die Einschränkungen eingehalten werden." -#: core/models.py:1062 +#: engine/core/models.py:1073 msgid "unique code used by a user to redeem a discount" msgstr "" "Einzigartiger Code, den ein Nutzer zum Einlösen eines Rabatts verwendet" -#: core/models.py:1063 +#: engine/core/models.py:1074 msgid "promo code identifier" msgstr "Kennung des Promo-Codes" -#: core/models.py:1070 +#: engine/core/models.py:1081 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" -#: core/models.py:1071 +#: engine/core/models.py:1082 msgid "fixed discount amount" msgstr "Fester Rabattbetrag" -#: core/models.py:1077 +#: engine/core/models.py:1088 msgid "percentage discount applied if fixed amount is not used" msgstr "Prozentualer Rabatt, wenn der Festbetrag nicht verwendet wird" -#: core/models.py:1078 +#: engine/core/models.py:1089 msgid "percentage discount" msgstr "Prozentualer Rabatt" -#: core/models.py:1083 +#: engine/core/models.py:1094 msgid "timestamp when the promocode expires" msgstr "Zeitstempel, wann der Promocode abläuft" -#: core/models.py:1084 +#: engine/core/models.py:1095 msgid "end validity time" msgstr "Ende der Gültigkeitsdauer" -#: core/models.py:1089 +#: engine/core/models.py:1100 msgid "timestamp from which this promocode is valid" msgstr "Zeitstempel, ab dem dieser Promocode gültig ist" -#: core/models.py:1090 +#: engine/core/models.py:1101 msgid "start validity time" msgstr "Beginn der Gültigkeitsdauer" -#: core/models.py:1095 +#: engine/core/models.py:1106 msgid "timestamp when the promocode was used, blank if not used yet" msgstr "" "Zeitstempel, wann der Promocode verwendet wurde, leer, wenn noch nicht " "verwendet" -#: core/models.py:1096 +#: engine/core/models.py:1107 msgid "usage timestamp" msgstr "Zeitstempel der Verwendung" -#: core/models.py:1101 +#: engine/core/models.py:1112 msgid "user assigned to this promocode if applicable" msgstr "Diesem Promocode zugewiesener Benutzer, falls zutreffend" -#: core/models.py:1102 +#: engine/core/models.py:1113 msgid "assigned user" msgstr "Zugewiesener Benutzer" -#: core/models.py:1109 +#: engine/core/models.py:1120 msgid "promo code" msgstr "Promo-Code" -#: core/models.py:1110 +#: engine/core/models.py:1121 msgid "promo codes" msgstr "Promo-Codes" -#: core/models.py:1125 +#: engine/core/models.py:1136 msgid "" "only one type of discount should be defined (amount or percent), but not " "both or neither." @@ -2370,21 +2408,21 @@ msgstr "" "Es sollte nur eine Art von Rabatt definiert werden (Betrag oder " "Prozentsatz), aber nicht beides oder keines von beiden." -#: core/models.py:1146 +#: engine/core/models.py:1157 msgid "promocode already used" msgstr "Promocode wurde bereits verwendet" -#: core/models.py:1162 +#: engine/core/models.py:1173 #, python-brace-format msgid "invalid discount type for promocode {self.uuid}" msgstr "Ungültiger Rabatttyp für den Promocode {self.uuid}!" -#: core/models.py:1171 +#: engine/core/models.py:1182 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 "" @@ -2397,143 +2435,144 @@ msgstr "" "aktualisiert werden. Ebenso unterstützt die Funktionalität die Verwaltung " "der Produkte im Lebenszyklus der Bestellung." -#: core/models.py:1188 +#: engine/core/models.py:1199 msgid "the billing address used for this order" msgstr "Die für diese Bestellung verwendete Rechnungsadresse" -#: core/models.py:1196 +#: engine/core/models.py:1207 msgid "optional promo code applied to this order" msgstr "Optionaler Promo-Code für diese Bestellung" -#: core/models.py:1197 +#: engine/core/models.py:1208 msgid "applied promo code" msgstr "Angewandter Promo-Code" -#: core/models.py:1205 +#: engine/core/models.py:1216 msgid "the shipping address used for this order" msgstr "Die für diese Bestellung verwendete Lieferadresse" -#: core/models.py:1206 +#: engine/core/models.py:1217 msgid "shipping address" msgstr "Lieferadresse" -#: core/models.py:1212 +#: engine/core/models.py:1223 msgid "current status of the order in its lifecycle" msgstr "Aktueller Status des Auftrags in seinem Lebenszyklus" -#: core/models.py:1213 +#: engine/core/models.py:1224 msgid "order status" msgstr "Status der Bestellung" -#: core/models.py:1218 core/models.py:1695 +#: engine/core/models.py:1229 engine/core/models.py:1755 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" -#: core/models.py:1224 +#: engine/core/models.py:1235 msgid "json representation of order attributes for this order" msgstr "JSON-Darstellung der Auftragsattribute für diesen Auftrag" -#: core/models.py:1230 +#: engine/core/models.py:1241 msgid "the user who placed the order" msgstr "Der Benutzer, der die Bestellung aufgegeben hat" -#: core/models.py:1231 +#: engine/core/models.py:1242 msgid "user" msgstr "Benutzer" -#: core/models.py:1237 +#: engine/core/models.py:1248 msgid "the timestamp when the order was finalized" msgstr "Der Zeitstempel, zu dem der Auftrag abgeschlossen wurde" -#: core/models.py:1238 +#: engine/core/models.py:1249 msgid "buy time" msgstr "Zeit kaufen" -#: core/models.py:1245 +#: engine/core/models.py:1256 msgid "a human-readable identifier for the order" msgstr "Ein von Menschen lesbarer Identifikator für den Auftrag" -#: core/models.py:1246 +#: engine/core/models.py:1257 msgid "human readable id" msgstr "menschenlesbare ID" -#: core/models.py:1252 +#: engine/core/models.py:1263 msgid "order" msgstr "Bestellung" -#: core/models.py:1294 +#: engine/core/models.py:1305 msgid "a user must have only one pending order at a time" msgstr "Ein Benutzer darf immer nur einen schwebenden Auftrag haben!" -#: core/models.py:1326 +#: engine/core/models.py:1337 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." -#: core/models.py:1331 +#: engine/core/models.py:1342 msgid "you cannot add inactive products to order" msgstr "Sie können keine inaktiven Produkte zur Bestellung hinzufügen" -#: core/models.py:1348 +#: engine/core/models.py:1359 msgid "you cannot add more products than available in stock" msgstr "Sie können nicht mehr Produkte hinzufügen, als auf Lager sind" -#: core/models.py:1370 core/models.py:1395 core/models.py:1403 +#: engine/core/models.py:1381 engine/core/models.py:1406 +#: engine/core/models.py:1414 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." -#: core/models.py:1391 +#: engine/core/models.py:1402 #, python-brace-format msgid "{name} does not exist with query <{query}>" msgstr "{name} existiert nicht mit Abfrage <{query}>!" -#: core/models.py:1423 +#: engine/core/models.py:1434 msgid "promocode does not exist" msgstr "Promocode existiert nicht" -#: core/models.py:1429 +#: engine/core/models.py:1440 msgid "you can only buy physical products with shipping address specified" msgstr "" "Sie können nur physische Produkte mit angegebener Lieferadresse kaufen!" -#: core/models.py:1448 +#: engine/core/models.py:1459 msgid "address does not exist" msgstr "Adresse ist nicht vorhanden" -#: core/models.py:1469 core/models.py:1538 +#: engine/core/models.py:1480 engine/core/models.py:1549 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." -#: core/models.py:1472 core/models.py:1534 +#: engine/core/models.py:1483 engine/core/models.py:1545 msgid "invalid force value" msgstr "Ungültiger Force-Wert" -#: core/models.py:1478 core/models.py:1541 +#: engine/core/models.py:1489 engine/core/models.py:1552 msgid "you cannot purchase an empty order!" msgstr "Sie können keine leere Bestellung kaufen!" -#: core/models.py:1497 +#: engine/core/models.py:1508 msgid "you cannot buy an order without a user" msgstr "" "Sie können keine Produkte aus einer Bestellung entfernen, die nicht in " "Bearbeitung ist." -#: core/models.py:1511 +#: engine/core/models.py:1522 msgid "a user without a balance cannot buy with balance" msgstr "Ein Benutzer ohne Guthaben kann nicht mit Guthaben kaufen!" -#: core/models.py:1516 +#: engine/core/models.py:1527 msgid "insufficient funds to complete the order" msgstr "Unzureichende Mittel für die Ausführung des Auftrags" -#: core/models.py:1550 +#: engine/core/models.py:1561 msgid "" "you cannot buy without registration, please provide the following " "information: customer name, customer email, customer phone number" @@ -2541,14 +2580,55 @@ msgstr "" "Sie können nicht ohne Registrierung kaufen, bitte geben Sie die folgenden " "Informationen an: Kundenname, Kunden-E-Mail, Kunden-Telefonnummer" -#: core/models.py:1559 +#: engine/core/models.py:1570 #, python-brace-format msgid "" "invalid payment method: {payment_method} from {available_payment_methods}" msgstr "" "Ungültige Zahlungsmethode: {payment_method} von {available_payment_methods}!" -#: core/models.py:1668 +#: engine/core/models.py:1685 +msgid "" +"Manages user feedback for products. This class is designed to capture and " +"store user feedback for specific products that they have purchased. It " +"contains attributes to store user comments, a reference to the related " +"product in the order, and a user-assigned rating. The class uses database " +"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 " +"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:1697 +msgid "user-provided comments about their experience with the product" +msgstr "Kommentare der Nutzer über ihre Erfahrungen mit dem Produkt" + +#: engine/core/models.py:1698 +msgid "feedback comments" +msgstr "Kommentare zum Feedback" + +#: engine/core/models.py:1705 +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" + +#: engine/core/models.py:1706 +msgid "related order product" +msgstr "Produkt zur Bestellung" + +#: engine/core/models.py:1711 +msgid "user-assigned rating for the product" +msgstr "Vom Benutzer zugewiesene Bewertung für das Produkt" + +#: engine/core/models.py:1712 +msgid "product rating" +msgstr "Produktbewertung" + +#: engine/core/models.py:1728 msgid "" "Represents products associated with orders and their attributes. The " "OrderProduct model maintains information about a product that is part of an " @@ -2560,265 +2640,220 @@ 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." -#: core/models.py:1683 +#: engine/core/models.py:1743 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" -#: core/models.py:1684 +#: engine/core/models.py:1744 msgid "purchase price at order time" msgstr "Einkaufspreis zum Zeitpunkt der Bestellung" -#: core/models.py:1689 +#: engine/core/models.py:1749 msgid "internal comments for admins about this ordered product" msgstr "Interne Kommentare für Administratoren zu diesem bestellten Produkt" -#: core/models.py:1690 +#: engine/core/models.py:1750 msgid "internal comments" msgstr "Interne Kommentare" -#: core/models.py:1696 +#: engine/core/models.py:1756 msgid "user notifications" msgstr "Benutzerbenachrichtigungen" -#: core/models.py:1701 +#: engine/core/models.py:1761 msgid "json representation of this item's attributes" msgstr "JSON-Darstellung der Attribute dieses Artikels" -#: core/models.py:1702 +#: engine/core/models.py:1762 msgid "ordered product attributes" msgstr "Bestellte Produktattribute" -#: core/models.py:1707 +#: engine/core/models.py:1767 msgid "reference to the parent order that contains this product" msgstr "Verweis auf den übergeordneten Auftrag, der dieses Produkt enthält" -#: core/models.py:1708 +#: engine/core/models.py:1768 msgid "parent order" msgstr "Übergeordneter Auftrag" -#: core/models.py:1717 +#: engine/core/models.py:1777 msgid "the specific product associated with this order line" msgstr "Das spezifische Produkt, das mit dieser Auftragszeile verbunden ist" -#: core/models.py:1724 +#: engine/core/models.py:1784 msgid "quantity of this specific product in the order" msgstr "Menge dieses spezifischen Produkts in der Bestellung" -#: core/models.py:1725 +#: engine/core/models.py:1785 msgid "product quantity" msgstr "Produktmenge" -#: core/models.py:1732 +#: engine/core/models.py:1792 msgid "current status of this product in the order" msgstr "Aktueller Status dieses Produkts im Auftrag" -#: core/models.py:1733 +#: engine/core/models.py:1793 msgid "product line status" msgstr "Status der Produktlinie" -#: core/models.py:1798 +#: engine/core/models.py:1858 msgid "order product must have an order" msgstr "Das Bestellprodukt muss eine zugehörige Bestellung haben!" -#: core/models.py:1800 +#: engine/core/models.py:1860 #, python-brace-format msgid "wrong action specified for feedback: {action}" msgstr "Falsche Aktion für Feedback angegeben: {action}!" -#: core/models.py:1814 +#: engine/core/models.py:1874 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." -#: core/models.py:1820 +#: engine/core/models.py:1880 msgid "name" msgstr "Name" -#: core/models.py:1821 +#: engine/core/models.py:1881 msgid "URL of the integration" msgstr "URL der Integration" -#: core/models.py:1822 +#: engine/core/models.py:1882 msgid "authentication credentials" msgstr "Anmeldeinformationen zur Authentifizierung" -#: core/models.py:1844 +#: engine/core/models.py:1904 msgid "you can only have one default CRM provider" msgstr "Sie können nur einen Standard-CRM-Anbieter haben" -#: core/models.py:1854 +#: engine/core/models.py:1914 msgid "CRM" msgstr "CRM" -#: core/models.py:1855 +#: engine/core/models.py:1915 msgid "CRMs" msgstr "CRMs" -#: core/models.py:1867 +#: engine/core/models.py:1927 msgid "order CRM link" msgstr "CRM-Link der Bestellung" -#: core/models.py:1868 +#: engine/core/models.py:1928 msgid "orders CRM links" msgstr "CRM-Links der Bestellungen" -#: core/models.py:1873 +#: engine/core/models.py:1933 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." -#: core/models.py:1887 +#: engine/core/models.py:1947 msgid "download" msgstr "Herunterladen" -#: core/models.py:1888 +#: engine/core/models.py:1948 msgid "downloads" msgstr "Herunterladen" -#: core/models.py:1902 -msgid "" -"Manages user feedback for products. This class is designed to capture and " -"store user feedback for specific products that they have purchased. It " -"contains attributes to store user comments, a reference to the related " -"product in the order, and a user-assigned rating. The class uses database " -"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 " -"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." - -#: core/models.py:1914 -msgid "user-provided comments about their experience with the product" -msgstr "Kommentare der Nutzer über ihre Erfahrungen mit dem Produkt" - -#: core/models.py:1915 -msgid "feedback comments" -msgstr "Kommentare zum Feedback" - -#: core/models.py:1922 -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" - -#: core/models.py:1923 -msgid "related order product" -msgstr "Produkt zur Bestellung" - -#: core/models.py:1928 -msgid "user-assigned rating for the product" -msgstr "Vom Benutzer zugewiesene Bewertung für das Produkt" - -#: core/models.py:1929 -msgid "product rating" -msgstr "Produktbewertung" - -#: core/serializers/utility.py:89 +#: engine/core/serializers/utility.py:89 msgid "" "you must provide a comment, rating, and order product uuid to add feedback." msgstr "" "Sie müssen einen Kommentar, eine Bewertung und eine Produktnummer angeben, " "um eine Bewertung abzugeben." -#: core/signals.py:73 -msgid "error during promocode creation: {e!s}" -msgstr "Fehler bei der Erstellung des Promocodes: {e!s}" - -#: core/sitemaps.py:25 +#: engine/core/sitemaps.py:25 msgid "Home" msgstr "Startseite" -#: core/sitemaps.py:30 +#: engine/core/sitemaps.py:30 msgid "Contact Us" msgstr "Kontakt" -#: core/sitemaps.py:35 +#: engine/core/sitemaps.py:35 msgid "About Us" msgstr "Über uns" -#: core/templates/digital_order_created_email.html:7 -#: core/templates/digital_order_created_email.html:100 -#: core/templates/digital_order_delivered_email.html:6 -#: core/templates/shipped_order_created_email.html:7 -#: core/templates/shipped_order_created_email.html:99 -#: core/templates/shipped_order_delivered_email.html:7 -#: core/templates/shipped_order_delivered_email.html:99 +#: engine/core/templates/digital_order_created_email.html:7 +#: engine/core/templates/digital_order_created_email.html:100 +#: engine/core/templates/digital_order_delivered_email.html:6 +#: engine/core/templates/shipped_order_created_email.html:7 +#: engine/core/templates/shipped_order_created_email.html:99 +#: engine/core/templates/shipped_order_delivered_email.html:7 +#: engine/core/templates/shipped_order_delivered_email.html:99 msgid "order confirmation" msgstr "Bestätigung der Bestellung" -#: core/templates/digital_order_created_email.html:95 -#: core/templates/digital_order_delivered_email.html:94 -#: core/templates/promocode_granted_email.html:94 -#: core/templates/shipped_order_created_email.html:94 -#: core/templates/shipped_order_delivered_email.html:94 +#: engine/core/templates/digital_order_created_email.html:95 +#: engine/core/templates/digital_order_delivered_email.html:94 +#: engine/core/templates/promocode_granted_email.html:94 +#: engine/core/templates/shipped_order_created_email.html:94 +#: engine/core/templates/shipped_order_delivered_email.html:94 msgid "logo" msgstr "Logo" -#: core/templates/digital_order_created_email.html:101 -#: core/templates/shipped_order_created_email.html:100 -#: core/templates/shipped_order_delivered_email.html:100 +#: engine/core/templates/digital_order_created_email.html:101 +#: engine/core/templates/shipped_order_created_email.html:100 +#: engine/core/templates/shipped_order_delivered_email.html:100 #, python-format msgid "hello %(order.user.first_name)s," msgstr "Hallo %(order.user.first_name)s," -#: core/templates/digital_order_created_email.html:102 +#: engine/core/templates/digital_order_created_email.html:102 #, 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 " "mitteilen zu können, dass wir Ihre Bestellung in Arbeit genommen haben. " "Nachfolgend finden Sie die Details Ihrer Bestellung:" -#: core/templates/digital_order_created_email.html:112 -#: core/templates/digital_order_delivered_email.html:110 -#: core/templates/shipped_order_created_email.html:110 -#: core/templates/shipped_order_delivered_email.html:110 +#: engine/core/templates/digital_order_created_email.html:112 +#: engine/core/templates/digital_order_delivered_email.html:110 +#: engine/core/templates/shipped_order_created_email.html:110 +#: engine/core/templates/shipped_order_delivered_email.html:110 msgid "total" msgstr "Insgesamt" -#: core/templates/digital_order_created_email.html:125 -#: core/templates/digital_order_delivered_email.html:157 -#: core/templates/shipped_order_created_email.html:127 -#: core/templates/shipped_order_delivered_email.html:127 +#: engine/core/templates/digital_order_created_email.html:125 +#: engine/core/templates/digital_order_delivered_email.html:157 +#: engine/core/templates/shipped_order_created_email.html:127 +#: engine/core/templates/shipped_order_delivered_email.html:127 msgid "total price" msgstr "Gesamtpreis" -#: core/templates/digital_order_created_email.html:131 -#: core/templates/shipped_order_created_email.html:140 -#: core/templates/shipped_order_delivered_email.html:140 +#: engine/core/templates/digital_order_created_email.html:131 +#: engine/core/templates/shipped_order_created_email.html:140 +#: engine/core/templates/shipped_order_delivered_email.html:140 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" @@ -2827,28 +2862,28 @@ msgstr "" "Wenn Sie Fragen haben, wenden Sie sich bitte an unseren Support unter " "%(config.EMAIL_HOST_USER)s." -#: core/templates/digital_order_created_email.html:133 +#: engine/core/templates/digital_order_created_email.html:133 #, python-format msgid "best regards,
the %(config.PROJECT_NAME)s team" msgstr "Mit freundlichen Grüßen,
das %(config.PROJECT_NAME)s-Team" -#: core/templates/digital_order_created_email.html:139 -#: core/templates/digital_order_delivered_email.html:171 -#: core/templates/promocode_granted_email.html:114 +#: engine/core/templates/digital_order_created_email.html:139 +#: engine/core/templates/digital_order_delivered_email.html:171 +#: engine/core/templates/promocode_granted_email.html:114 msgid "all rights reserved" msgstr "Alle Rechte vorbehalten" -#: core/templates/digital_order_delivered_email.html:99 +#: engine/core/templates/digital_order_delivered_email.html:99 msgid "order delivered" msgstr "Bestellung Geliefert" -#: core/templates/digital_order_delivered_email.html:100 -#: core/templates/promocode_granted_email.html:100 +#: engine/core/templates/digital_order_delivered_email.html:100 +#: engine/core/templates/promocode_granted_email.html:100 #, python-format msgid "hello %(user_first_name)s," msgstr "Hallo %(user_first_name)s," -#: core/templates/digital_order_delivered_email.html:101 +#: engine/core/templates/digital_order_delivered_email.html:101 #, python-format msgid "" "we have successfully processed your order №%(order_uuid)s! below are the\n" @@ -2857,7 +2892,7 @@ msgstr "" "Wir haben Ihre Bestellung erfolgreich bearbeitet №%(order_uuid)s! " "Nachstehend finden Sie die Details Ihrer Bestellung:" -#: core/templates/digital_order_delivered_email.html:128 +#: engine/core/templates/digital_order_delivered_email.html:128 msgid "" "additional\n" " information" @@ -2865,13 +2900,13 @@ msgstr "" "zusätzliche\n" " Informationen" -#: core/templates/digital_order_delivered_email.html:137 -#: core/templates/json_table_widget.html:6 +#: engine/core/templates/digital_order_delivered_email.html:137 +#: engine/core/templates/json_table_widget.html:6 msgid "value" msgstr "Wert" -#: core/templates/digital_order_delivered_email.html:163 -#: core/templates/promocode_granted_email.html:106 +#: engine/core/templates/digital_order_delivered_email.html:163 +#: engine/core/templates/promocode_granted_email.html:106 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" @@ -2880,26 +2915,26 @@ msgstr "" "Wenn Sie Fragen haben, wenden Sie sich bitte an unseren Support unter " "%(contact_email)s." -#: core/templates/digital_order_delivered_email.html:165 -#: core/templates/promocode_granted_email.html:108 +#: engine/core/templates/digital_order_delivered_email.html:165 +#: engine/core/templates/promocode_granted_email.html:108 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "Mit freundlichen Grüßen,
das %(project_name)s-Team" -#: core/templates/json_table_widget.html:5 +#: engine/core/templates/json_table_widget.html:5 msgid "key" msgstr "Schlüssel" -#: core/templates/json_table_widget.html:40 +#: engine/core/templates/json_table_widget.html:40 msgid "Add Row" msgstr "Zeile hinzufügen" -#: core/templates/promocode_granted_email.html:6 -#: core/templates/promocode_granted_email.html:99 +#: engine/core/templates/promocode_granted_email.html:6 +#: engine/core/templates/promocode_granted_email.html:99 msgid "promocode granted" msgstr "Promocode granted" -#: core/templates/promocode_granted_email.html:101 +#: engine/core/templates/promocode_granted_email.html:101 msgid "" "Thank you for staying with us! We have granted you with a promocode\n" " for " @@ -2907,33 +2942,34 @@ msgstr "" "Danke, dass Sie bei uns bleiben! Wir haben Ihnen einen Promocode gewährt\n" " für" -#: core/templates/shipped_order_created_email.html:101 -#: core/templates/shipped_order_delivered_email.html:101 +#: 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. " "Nachstehend finden Sie die Details Ihrer Bestellung:" -#: core/templates/shipped_order_created_email.html:123 -#: core/templates/shipped_order_delivered_email.html:123 +#: engine/core/templates/shipped_order_created_email.html:123 +#: engine/core/templates/shipped_order_delivered_email.html:123 msgid "shipping price" msgstr "Versandpreis" -#: core/templates/shipped_order_created_email.html:133 -#: core/templates/shipped_order_delivered_email.html:133 +#: engine/core/templates/shipped_order_created_email.html:133 +#: engine/core/templates/shipped_order_delivered_email.html:133 msgid "your order will be delivered to the following address:" msgstr "Ihre Bestellung wird an die folgende Adresse geliefert:" -#: core/templates/shipped_order_created_email.html:142 -#: core/templates/shipped_order_delivered_email.html:142 +#: engine/core/templates/shipped_order_created_email.html:142 +#: engine/core/templates/shipped_order_delivered_email.html:142 #, python-format msgid "best regards,
The %(config.PROJECT_NAME)s team" msgstr "Mit freundlichen Grüßen,
Das %(config.PROJECT_NAME)s-Team" -#: core/templates/shipped_order_created_email.html:147 -#: core/templates/shipped_order_delivered_email.html:147 +#: engine/core/templates/shipped_order_created_email.html:147 +#: engine/core/templates/shipped_order_delivered_email.html:147 msgid "" "all rights\n" " reserved" @@ -2941,51 +2977,50 @@ msgstr "" "alle Rechte\n" " vorbehalten" -#: core/utils/caching.py:44 +#: engine/core/utils/caching.py:44 msgid "both data and timeout are required" msgstr "Sowohl Daten als auch Timeout sind erforderlich" -#: core/utils/caching.py:46 +#: engine/core/utils/caching.py:46 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" -#: core/utils/emailing.py:27 +#: engine/core/utils/emailing.py:27 #, python-brace-format msgid "{config.PROJECT_NAME} | contact us initiated" msgstr "{config.PROJECT_NAME} | Kontakt eingeleitet" -#: core/utils/emailing.py:73 +#: engine/core/utils/emailing.py:73 #, python-brace-format msgid "{config.PROJECT_NAME} | order confirmation" msgstr "{config.PROJECT_NAME} | Auftragsbestätigung" -#: core/utils/emailing.py:105 +#: engine/core/utils/emailing.py:105 #, python-brace-format msgid "{config.PROJECT_NAME} | order delivered" msgstr "{config.PROJECT_NAME} | Bestellung ausgeliefert" -#: core/utils/emailing.py:188 +#: engine/core/utils/emailing.py:188 #, python-brace-format msgid "{config.PROJECT_NAME} | promocode granted" msgstr "{config.PROJECT_NAME} | Promocode gewährt" -#: core/utils/messages.py:3 +#: engine/core/utils/messages.py:3 msgid "you do not have permission to perform this action." msgstr "Sie haben nicht die Erlaubnis, diese Aktion durchzuführen." -#: core/utils/nominatim.py:8 +#: engine/core/utils/nominatim.py:8 msgid "NOMINATIM_URL must be configured." msgstr "Der Parameter NOMINATIM_URL muss konfiguriert werden!" -#: core/validators.py:16 +#: engine/core/validators.py:16 #, python-brace-format msgid "image dimensions should not exceed w{max_width} x h{max_height} pixels" msgstr "" "Die Bildabmessungen sollten w{max_width} x h{max_height} Pixel nicht " "überschreiten" -#: core/views.py:72 +#: engine/core/views.py:71 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." @@ -2994,7 +3029,7 @@ msgstr "" "zurück. Sie stellt sicher, dass die Antwort den entsprechenden Content-Type-" "Header für XML enthält." -#: core/views.py:87 +#: engine/core/views.py:86 msgid "" "Handles the detailed view response for a sitemap. This function processes " "the request, fetches the appropriate sitemap detail response, and sets the " @@ -3004,18 +3039,18 @@ msgstr "" "Funktion verarbeitet die Anfrage, holt die entsprechende Sitemap-" "Detailantwort ab und setzt den Content-Type-Header für XML." -#: core/views.py:116 +#: engine/core/views.py:115 msgid "" "Returns a list of supported languages and their corresponding information." msgstr "" "Gibt eine Liste der unterstützten Sprachen und der entsprechenden " "Informationen zurück." -#: core/views.py:148 +#: engine/core/views.py:147 msgid "Returns the parameters of the website as a JSON object." msgstr "Gibt die Parameter der Website als JSON-Objekt zurück." -#: core/views.py:167 +#: engine/core/views.py:166 msgid "" "Handles cache operations such as reading and setting cache data with a " "specified key and timeout." @@ -3023,11 +3058,11 @@ msgstr "" "Erledigt Cache-Operationen wie das Lesen und Setzen von Cache-Daten mit " "einem bestimmten Schlüssel und Timeout." -#: core/views.py:194 +#: engine/core/views.py:193 msgid "Handles `contact us` form submissions." msgstr "Verarbeitet Übermittlungen des Formulars \"Kontaktieren Sie uns\"." -#: core/views.py:215 +#: engine/core/views.py:214 msgid "" "Handles requests for processing and validating URLs from incoming POST " "requests." @@ -3035,56 +3070,66 @@ msgstr "" "Bearbeitet Anfragen zur Verarbeitung und Validierung von URLs aus " "eingehenden POST-Anfragen." -#: core/views.py:255 +#: engine/core/views.py:254 msgid "Handles global search queries." msgstr "Bearbeitet globale Suchanfragen." -#: core/views.py:270 +#: engine/core/views.py:269 msgid "Handles the logic of buying as a business without registration." msgstr "Behandelt die Logik des Kaufs als Unternehmen ohne Registrierung." -#: core/views.py:306 +#: engine/core/views.py:305 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." -#: core/views.py:316 +#: engine/core/views.py:315 msgid "order_product_uuid is required" msgstr "order_product_uuid ist erforderlich" -#: core/views.py:322 +#: engine/core/views.py:321 msgid "you can only download the digital asset once" msgstr "Sie können das digitale Asset nur einmal herunterladen" -#: core/views.py:325 +#: engine/core/views.py:324 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" -#: core/views.py:331 +#: engine/core/views.py:330 msgid "the order product does not have a product" msgstr "Das Bestellprodukt hat kein Produkt" -#: core/views.py:369 +#: engine/core/views.py:368 msgid "favicon not found" msgstr "Favicon nicht gefunden" -#: core/views.py:374 +#: engine/core/views.py:373 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." -#: core/views.py:386 +#: engine/core/views.py:385 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 " @@ -3092,11 +3137,11 @@ msgstr "" "Administrationsoberfläche um. Sie verwendet die Funktion `redirect` von " "Django für die Bearbeitung der HTTP-Umleitung." -#: core/views.py:399 +#: engine/core/views.py:398 msgid "Returns current version of the eVibes. " msgstr "Gibt die aktuelle Version von eVibes zurück." -#: core/viewsets.py:137 +#: engine/core/viewsets.py:137 msgid "" "Defines a viewset for managing Evibes-related operations. The EvibesViewSet " "class inherits from ModelViewSet and provides functionality for handling " @@ -3105,26 +3150,25 @@ msgid "" "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 " +"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." -#: core/viewsets.py:157 +#: engine/core/viewsets.py:157 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." -#: core/viewsets.py:176 +#: engine/core/viewsets.py:176 msgid "" "Handles operations related to Attribute objects within the application. " "Provides a set of API endpoints to interact with Attribute data. This class " @@ -3141,22 +3185,22 @@ msgstr "" "oder das Abrufen detaillierter bzw. vereinfachter Informationen je nach " "Anfrage." -#: core/viewsets.py:195 +#: engine/core/viewsets.py:195 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." -#: core/viewsets.py:214 +#: engine/core/viewsets.py:214 msgid "" "Manages views for Category-related operations. The CategoryViewSet class is " "responsible for handling operations related to the Category model in the " @@ -3165,13 +3209,13 @@ 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." -#: core/viewsets.py:326 +#: engine/core/viewsets.py:326 msgid "" "Represents a viewset for managing Brand instances. This class provides " "functionality for querying, filtering, and serializing Brand objects. It " @@ -3183,7 +3227,7 @@ msgstr "" "Objekten. Sie verwendet das ViewSet-Framework von Django, um die " "Implementierung von API-Endpunkten für Brand-Objekte zu vereinfachen." -#: core/viewsets.py:438 +#: engine/core/viewsets.py:438 msgid "" "Manages operations related to the `Product` model in the system. This class " "provides a viewset for managing products, including their filtering, " @@ -3195,14 +3239,14 @@ msgid "" 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 `EvibesViewSet`, 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 " "Rückmeldungen zu einem Produkt." -#: core/viewsets.py:568 +#: engine/core/viewsets.py:568 msgid "" "Represents a viewset for managing Vendor objects. This viewset allows " "fetching, filtering, and serializing Vendor data. It defines the queryset, " @@ -3217,64 +3261,64 @@ msgstr "" "dieser Klasse ist die Bereitstellung eines optimierten Zugriffs auf Vendor-" "Ressourcen über das Django REST-Framework." -#: core/viewsets.py:588 +#: engine/core/viewsets.py:588 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 `EvibesViewSet` 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 " +"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 " "Filtersystem von Django zur Abfrage von Daten." -#: core/viewsets.py:615 +#: engine/core/viewsets.py:615 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 " "Berechtigungen, während es mit den Bestelldaten interagiert." -#: core/viewsets.py:813 +#: engine/core/viewsets.py:813 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" -#: core/viewsets.py:867 +#: engine/core/viewsets.py:867 msgid "Manages operations related to Product images in the application. " msgstr "" "Verwaltet Vorgänge im Zusammenhang mit Produktbildern in der Anwendung." -#: core/viewsets.py:880 +#: engine/core/viewsets.py:880 msgid "" "Manages the retrieval and handling of PromoCode instances through various " "API actions." @@ -3282,34 +3326,34 @@ msgstr "" "Verwaltet den Abruf und die Handhabung von PromoCode-Instanzen durch " "verschiedene API-Aktionen." -#: core/viewsets.py:902 +#: engine/core/viewsets.py:902 msgid "Represents a view set for managing promotions. " msgstr "Stellt ein Ansichtsset für die Verwaltung von Werbeaktionen dar." -#: core/viewsets.py:915 +#: engine/core/viewsets.py:915 msgid "Handles operations related to Stock data in the system." msgstr "Erledigt Vorgänge im Zusammenhang mit Bestandsdaten im System." -#: core/viewsets.py:929 +#: engine/core/viewsets.py:929 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 " "nur ihre eigenen Wunschlisten verwalten können, sofern keine expliziten " "Berechtigungen erteilt wurden." -#: core/viewsets.py:1044 +#: engine/core/viewsets.py:1044 msgid "" "This class provides viewset functionality for managing `Address` objects. " "The AddressViewSet class enables CRUD operations, filtering, and custom " @@ -3318,18 +3362,18 @@ 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." -#: core/viewsets.py:1111 +#: engine/core/viewsets.py:1111 #, python-brace-format msgid "Geocoding error: {e}" msgstr "Geocodierungsfehler: {e}" -#: core/viewsets.py:1119 +#: engine/core/viewsets.py:1119 msgid "" "Handles operations related to Product Tags within the application. This " "class provides functionality for retrieving, filtering, and serializing " @@ -3340,6 +3384,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 new file mode 100644 index 00000000..2ed21f08 Binary files /dev/null and b/engine/core/locale/en_GB/LC_MESSAGES/django.mo differ diff --git a/core/locale/en_GB/LC_MESSAGES/django.po b/engine/core/locale/en_GB/LC_MESSAGES/django.po similarity index 67% rename from core/locale/en_GB/LC_MESSAGES/django.po rename to engine/core/locale/en_GB/LC_MESSAGES/django.po index 284c4577..51c87cb4 100644 --- a/core/locale/en_GB/LC_MESSAGES/django.po +++ b/engine/core/locale/en_GB/LC_MESSAGES/django.po @@ -2,12 +2,12 @@ # Copyright (C) 2025 Egor "fureunoir" Gorbunov # This file is distributed under the same license as the eVibes package. # EGOR GORBUNOV , 2025. -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -17,178 +17,179 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: core/abstract.py:12 +#: engine/core/abstract.py:12 msgid "unique id" msgstr "Unique ID" -#: core/abstract.py:13 +#: engine/core/abstract.py:13 msgid "unique id is used to surely identify any database object" msgstr "Unique ID is used to surely identify any database object" -#: core/abstract.py:20 +#: engine/core/abstract.py:20 msgid "is active" msgstr "Is Active" -#: core/abstract.py:21 +#: engine/core/abstract.py:21 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" -#: core/abstract.py:23 core/choices.py:18 +#: engine/core/abstract.py:23 engine/core/choices.py:18 msgid "created" msgstr "Created" -#: core/abstract.py:23 +#: engine/core/abstract.py:23 msgid "when the object first appeared on the database" msgstr "When the object first appeared on the database" -#: core/abstract.py:24 +#: engine/core/abstract.py:24 msgid "modified" msgstr "Modified" -#: core/abstract.py:24 +#: engine/core/abstract.py:24 msgid "when the object was last modified" msgstr "When the object was last edited" -#: core/admin.py:68 +#: engine/core/admin.py:68 msgid "translations" msgstr "Translations" -#: core/admin.py:72 +#: engine/core/admin.py:72 msgid "general" msgstr "General" -#: core/admin.py:74 +#: engine/core/admin.py:74 msgid "relations" msgstr "Relations" -#: core/admin.py:76 +#: engine/core/admin.py:76 msgid "additional info" msgstr "additional info" -#: core/admin.py:94 +#: engine/core/admin.py:94 msgid "metadata" msgstr "Metadata" -#: core/admin.py:101 +#: engine/core/admin.py:101 msgid "timestamps" msgstr "Timestamps" -#: core/admin.py:116 +#: engine/core/admin.py:116 #, python-format msgid "activate selected %(verbose_name_plural)s" msgstr "Activate selected %(verbose_name_plural)s" -#: core/admin.py:121 +#: engine/core/admin.py:121 msgid "selected items have been activated." msgstr "Selected items have been activated!" -#: core/admin.py:127 +#: engine/core/admin.py:127 #, python-format msgid "deactivate selected %(verbose_name_plural)s" msgstr "Deactivate selected %(verbose_name_plural)s" -#: core/admin.py:132 +#: engine/core/admin.py:132 msgid "selected items have been deactivated." msgstr "Selected items have been deactivated!" -#: core/admin.py:144 core/graphene/object_types.py:582 -#: core/graphene/object_types.py:589 core/models.py:783 core/models.py:791 +#: engine/core/admin.py:144 engine/core/graphene/object_types.py:586 +#: engine/core/graphene/object_types.py:593 engine/core/models.py:794 +#: engine/core/models.py:802 msgid "attribute value" msgstr "Attribute Value" -#: core/admin.py:145 core/graphene/object_types.py:75 core/models.py:792 +#: engine/core/admin.py:145 engine/core/graphene/object_types.py:75 +#: engine/core/models.py:803 msgid "attribute values" msgstr "Attribute Values" -#: core/admin.py:156 +#: engine/core/admin.py:156 msgid "image" msgstr "Image" -#: core/admin.py:157 core/graphene/object_types.py:474 +#: engine/core/admin.py:157 engine/core/graphene/object_types.py:474 msgid "images" msgstr "Images" -#: core/admin.py:168 core/models.py:559 +#: engine/core/admin.py:169 engine/core/models.py:559 msgid "stock" msgstr "Stock" -#: core/admin.py:169 core/graphene/object_types.py:636 +#: engine/core/admin.py:170 engine/core/graphene/object_types.py:640 msgid "stocks" msgstr "Stocks" -#: core/admin.py:182 core/models.py:1744 +#: engine/core/admin.py:183 engine/core/models.py:1804 msgid "order product" msgstr "Order Product" -#: core/admin.py:183 core/graphene/object_types.py:389 core/models.py:1745 +#: engine/core/admin.py:184 engine/core/graphene/object_types.py:389 +#: engine/core/models.py:1805 msgid "order products" msgstr "Order Products" -#: core/admin.py:196 core/admin.py:197 +#: engine/core/admin.py:197 engine/core/admin.py:198 msgid "children" msgstr "Children" -#: core/admin.py:965 +#: engine/core/admin.py:969 msgid "Config" msgstr "Config" -#: core/apps.py:8 +#: engine/core/apps.py:8 msgid "core" msgstr "Core" -#: core/choices.py:4 core/choices.py:20 +#: engine/core/choices.py:4 engine/core/choices.py:20 msgid "finished" msgstr "Finished" -#: core/choices.py:5 core/choices.py:19 +#: engine/core/choices.py:5 engine/core/choices.py:19 msgid "delivering" msgstr "Delivering" -#: core/choices.py:6 +#: engine/core/choices.py:6 msgid "delivered" msgstr "Delivered" -#: core/choices.py:7 +#: engine/core/choices.py:7 msgid "canceled" msgstr "Canceled" -#: core/choices.py:8 core/choices.py:16 core/choices.py:24 +#: engine/core/choices.py:8 engine/core/choices.py:16 engine/core/choices.py:24 msgid "failed" msgstr "Failed" -#: core/choices.py:9 core/choices.py:15 +#: engine/core/choices.py:9 engine/core/choices.py:15 msgid "pending" msgstr "Pending" -#: core/choices.py:10 +#: engine/core/choices.py:10 msgid "accepted" msgstr "Accepted" -#: core/choices.py:11 +#: engine/core/choices.py:11 msgid "money returned" msgstr "Money Returned" -#: core/choices.py:17 +#: engine/core/choices.py:17 msgid "payment" msgstr "Payment" -#: core/choices.py:21 +#: engine/core/choices.py:21 msgid "momental" msgstr "Momental" -#: core/choices.py:24 +#: engine/core/choices.py:24 msgid "successful" msgstr "Successful" -#: core/docs/drf/views.py:17 core/graphene/mutations.py:38 +#: engine/core/docs/drf/views.py:17 engine/core/graphene/mutations.py:38 msgid "cache I/O" msgstr "Cache I/O" -#: core/docs/drf/views.py:19 +#: engine/core/docs/drf/views.py:19 msgid "" "apply only a key to read permitted data from cache.\n" "apply key, data and timeout with authentication to write data to cache." @@ -196,31 +197,31 @@ msgstr "" "Apply only a key to read permitted data from cache.\n" "Apply key, data and timeout with authentication to write data to cache." -#: core/docs/drf/views.py:32 +#: engine/core/docs/drf/views.py:32 msgid "get a list of supported languages" msgstr "Get a list of supported languages" -#: core/docs/drf/views.py:41 +#: engine/core/docs/drf/views.py:41 msgid "get application's exposable parameters" msgstr "Get application's exposable parameters" -#: core/docs/drf/views.py:48 +#: engine/core/docs/drf/views.py:48 msgid "send a message to the support team" msgstr "Send a message to the support team" -#: core/docs/drf/views.py:59 core/graphene/mutations.py:58 +#: engine/core/docs/drf/views.py:59 engine/core/graphene/mutations.py:58 msgid "request a CORSed URL" msgstr "Request a CORSed URL. Only https allowed." -#: core/docs/drf/views.py:85 +#: engine/core/docs/drf/views.py:85 msgid "global search endpoint to query across project's tables" msgstr "Global search endpoint to query across project's tables" -#: core/docs/drf/views.py:91 +#: engine/core/docs/drf/views.py:91 msgid "purchase an order as a business" msgstr "Purchase an order as a Business" -#: core/docs/drf/views.py:98 +#: engine/core/docs/drf/views.py:98 msgid "" "purchase an order as a business, using the provided `products` with " "`product_uuid` and `attributes`." @@ -228,203 +229,206 @@ msgstr "" "Purchase an order as a business, using the provided `products` with " "`product_uuid` and `attributes`." -#: core/docs/drf/viewsets.py:58 +#: engine/core/docs/drf/viewsets.py:58 msgid "list all attribute groups (simple view)" msgstr "List all attribute groups (simple view)" -#: core/docs/drf/viewsets.py:62 +#: engine/core/docs/drf/viewsets.py:62 msgid "retrieve a single attribute group (detailed view)" msgstr "Retrieve a single attribute group (detailed view)" -#: core/docs/drf/viewsets.py:66 +#: engine/core/docs/drf/viewsets.py:66 msgid "create an attribute group" msgstr "Create an attribute group" -#: core/docs/drf/viewsets.py:70 +#: engine/core/docs/drf/viewsets.py:70 msgid "delete an attribute group" msgstr "Delete an attribute group" -#: core/docs/drf/viewsets.py:74 +#: engine/core/docs/drf/viewsets.py:74 msgid "rewrite an existing attribute group saving non-editables" msgstr "Rewrite an existing attribute group saving non-editables" -#: core/docs/drf/viewsets.py:78 -msgid "" -"rewrite some fields of an existing attribute group saving non-editables" +#: engine/core/docs/drf/viewsets.py:78 +msgid "rewrite some fields of an existing attribute group saving non-editables" msgstr "" "Rewrite some fields of an existing attribute group saving non-editables" -#: core/docs/drf/viewsets.py:85 +#: engine/core/docs/drf/viewsets.py:85 msgid "list all attributes (simple view)" msgstr "List all attributes (simple view)" -#: core/docs/drf/viewsets.py:89 +#: engine/core/docs/drf/viewsets.py:89 msgid "retrieve a single attribute (detailed view)" msgstr "Retrieve a single attribute (detailed view)" -#: core/docs/drf/viewsets.py:93 +#: engine/core/docs/drf/viewsets.py:93 msgid "create an attribute" msgstr "Create an attribute" -#: core/docs/drf/viewsets.py:97 +#: engine/core/docs/drf/viewsets.py:97 msgid "delete an attribute" msgstr "Delete an attribute" -#: core/docs/drf/viewsets.py:101 +#: engine/core/docs/drf/viewsets.py:101 msgid "rewrite an existing attribute saving non-editables" msgstr "Rewrite an existing attribute saving non-editables" -#: core/docs/drf/viewsets.py:105 +#: engine/core/docs/drf/viewsets.py:105 msgid "rewrite some fields of an existing attribute saving non-editables" msgstr "Rewrite some fields of an existing attribute saving non-editables" -#: core/docs/drf/viewsets.py:112 +#: engine/core/docs/drf/viewsets.py:112 msgid "list all attribute values (simple view)" msgstr "List all attribute values (simple view)" -#: core/docs/drf/viewsets.py:116 +#: engine/core/docs/drf/viewsets.py:116 msgid "retrieve a single attribute value (detailed view)" msgstr "Retrieve a single attribute value (detailed view)" -#: core/docs/drf/viewsets.py:120 +#: engine/core/docs/drf/viewsets.py:120 msgid "create an attribute value" msgstr "Create an attribute value" -#: core/docs/drf/viewsets.py:124 +#: engine/core/docs/drf/viewsets.py:124 msgid "delete an attribute value" msgstr "Delete an attribute value" -#: core/docs/drf/viewsets.py:128 +#: engine/core/docs/drf/viewsets.py:128 msgid "rewrite an existing attribute value saving non-editables" msgstr "Rewrite an existing attribute value saving non-editables" -#: core/docs/drf/viewsets.py:132 -msgid "" -"rewrite some fields of an existing attribute value saving non-editables" +#: engine/core/docs/drf/viewsets.py:132 +msgid "rewrite some fields of an existing attribute value saving non-editables" msgstr "" "Rewrite some fields of an existing attribute value saving non-editables" -#: core/docs/drf/viewsets.py:139 core/docs/drf/viewsets.py:140 +#: engine/core/docs/drf/viewsets.py:139 engine/core/docs/drf/viewsets.py:140 msgid "list all categories (simple view)" msgstr "List all categories (simple view)" -#: core/docs/drf/viewsets.py:144 core/docs/drf/viewsets.py:145 +#: engine/core/docs/drf/viewsets.py:144 engine/core/docs/drf/viewsets.py:145 msgid "retrieve a single category (detailed view)" msgstr "Retrieve a single category (detailed view)" -#: core/docs/drf/viewsets.py:149 core/docs/drf/viewsets.py:150 -msgid "create a category" -msgstr "Create a category" - -#: core/docs/drf/viewsets.py:154 core/docs/drf/viewsets.py:155 -msgid "delete a category" -msgstr "Delete a category" - -#: core/docs/drf/viewsets.py:159 core/docs/drf/viewsets.py:160 -msgid "rewrite an existing category saving non-editables" -msgstr "Rewrite an existing category saving non-editables" - -#: core/docs/drf/viewsets.py:164 core/docs/drf/viewsets.py:165 -msgid "rewrite some fields of an existing category saving non-editables" -msgstr "Rewrite some fields of an existing category saving non-editables" - -#: core/docs/drf/viewsets.py:169 core/docs/drf/viewsets.py:501 -#: core/graphene/object_types.py:117 core/graphene/object_types.py:207 -#: core/graphene/object_types.py:482 -msgid "SEO Meta snapshot" -msgstr "SEO Meta snapshot" - -#: core/docs/drf/viewsets.py:170 -msgid "returns a snapshot of the category's SEO meta data" -msgstr "Returns a snapshot of the category's SEO meta data" - -#: core/docs/drf/viewsets.py:175 +#: engine/core/docs/drf/viewsets.py:150 engine/core/docs/drf/viewsets.py:183 msgid "Category UUID or slug" msgstr "Category UUID or slug" -#: core/docs/drf/viewsets.py:188 +#: engine/core/docs/drf/viewsets.py:157 engine/core/docs/drf/viewsets.py:158 +msgid "create a category" +msgstr "Create a category" + +#: engine/core/docs/drf/viewsets.py:162 engine/core/docs/drf/viewsets.py:163 +msgid "delete a category" +msgstr "Delete a category" + +#: engine/core/docs/drf/viewsets.py:167 engine/core/docs/drf/viewsets.py:168 +msgid "rewrite an existing category saving non-editables" +msgstr "Rewrite an existing category saving non-editables" + +#: engine/core/docs/drf/viewsets.py:172 engine/core/docs/drf/viewsets.py:173 +msgid "rewrite some fields of an existing category saving non-editables" +msgstr "Rewrite some fields of an existing category saving non-editables" + +#: engine/core/docs/drf/viewsets.py:177 engine/core/docs/drf/viewsets.py:517 +#: engine/core/graphene/object_types.py:117 +#: engine/core/graphene/object_types.py:207 +#: engine/core/graphene/object_types.py:482 +msgid "SEO Meta snapshot" +msgstr "SEO Meta snapshot" + +#: engine/core/docs/drf/viewsets.py:178 +msgid "returns a snapshot of the category's SEO meta data" +msgstr "Returns a snapshot of the category's SEO meta data" + +#: engine/core/docs/drf/viewsets.py:196 msgid "list all orders (simple view)" msgstr "List all categories (simple view)" -#: core/docs/drf/viewsets.py:189 +#: engine/core/docs/drf/viewsets.py:197 msgid "for non-staff users, only their own orders are returned." msgstr "For non-staff users, only their own orders are returned." -#: core/docs/drf/viewsets.py:195 +#: engine/core/docs/drf/viewsets.py:203 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" -#: core/docs/drf/viewsets.py:202 +#: engine/core/docs/drf/viewsets.py:210 msgid "Filter orders with buy_time >= this ISO 8601 datetime" msgstr "Filter orders with buy_time >= this ISO 8601 datetime" -#: core/docs/drf/viewsets.py:207 +#: engine/core/docs/drf/viewsets.py:215 msgid "Filter orders with buy_time <= this ISO 8601 datetime" msgstr "Filter orders with buy_time <= this ISO 8601 datetime" -#: core/docs/drf/viewsets.py:212 +#: engine/core/docs/drf/viewsets.py:220 msgid "Filter by exact order UUID" msgstr "Filter by exact order UUID" -#: core/docs/drf/viewsets.py:217 +#: engine/core/docs/drf/viewsets.py:225 msgid "Filter by exact human-readable order ID" msgstr "Filter by exact human-readable order ID" -#: core/docs/drf/viewsets.py:222 +#: engine/core/docs/drf/viewsets.py:230 msgid "Filter by user's email (case-insensitive exact match)" msgstr "Filter by user's email (case-insensitive exact match)" -#: core/docs/drf/viewsets.py:227 +#: engine/core/docs/drf/viewsets.py:235 msgid "Filter by user's UUID" msgstr "Filter by user's UUID" -#: core/docs/drf/viewsets.py:232 +#: engine/core/docs/drf/viewsets.py:240 msgid "Filter by order status (case-insensitive substring match)" msgstr "Filter by order status (case-insensitive substring match)" -#: core/docs/drf/viewsets.py:238 +#: engine/core/docs/drf/viewsets.py:246 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')." -#: core/docs/drf/viewsets.py:247 +#: engine/core/docs/drf/viewsets.py:255 msgid "retrieve a single order (detailed view)" msgstr "Retrieve a single category (detailed view)" -#: core/docs/drf/viewsets.py:251 +#: engine/core/docs/drf/viewsets.py:260 +msgid "Order UUID or human-readable id" +msgstr "Order UUID or human-readable id" + +#: engine/core/docs/drf/viewsets.py:267 msgid "create an order" msgstr "Create an attribute" -#: core/docs/drf/viewsets.py:252 +#: engine/core/docs/drf/viewsets.py:268 msgid "doesn't work for non-staff users." msgstr "Doesn't work for non-staff users." -#: core/docs/drf/viewsets.py:256 +#: engine/core/docs/drf/viewsets.py:272 msgid "delete an order" msgstr "Delete an attribute" -#: core/docs/drf/viewsets.py:260 +#: engine/core/docs/drf/viewsets.py:276 msgid "rewrite an existing order saving non-editables" msgstr "Rewrite an existing category saving non-editables" -#: core/docs/drf/viewsets.py:264 +#: engine/core/docs/drf/viewsets.py:280 msgid "rewrite some fields of an existing order saving non-editables" msgstr "Rewrite some fields of an existing category saving non-editables" -#: core/docs/drf/viewsets.py:268 +#: engine/core/docs/drf/viewsets.py:284 msgid "purchase an order" msgstr "Purchase price at order time" -#: core/docs/drf/viewsets.py:270 +#: engine/core/docs/drf/viewsets.py:286 msgid "" "finalizes the order purchase. if `force_balance` is used, the purchase is " "completed using the user's balance; if `force_payment` is used, a " @@ -434,19 +438,19 @@ msgstr "" "completed using the user's balance; If `force_payment` is used, a " "transaction is initiated." -#: core/docs/drf/viewsets.py:282 core/graphene/mutations.py:335 +#: engine/core/docs/drf/viewsets.py:298 engine/core/graphene/mutations.py:335 msgid "purchase an order without account creation" msgstr "purchase an order without account creation" -#: core/docs/drf/viewsets.py:283 +#: engine/core/docs/drf/viewsets.py:299 msgid "finalizes the order purchase for a non-registered user." msgstr "finalizes the order purchase for a non-registered user." -#: core/docs/drf/viewsets.py:291 +#: engine/core/docs/drf/viewsets.py:307 msgid "add product to order" msgstr "Add a product to the order" -#: core/docs/drf/viewsets.py:292 +#: engine/core/docs/drf/viewsets.py:308 msgid "" "adds a product to an order using the provided `product_uuid` and " "`attributes`." @@ -454,11 +458,11 @@ msgstr "" "Adds a product to an order using the provided `product_uuid` and " "`attributes`." -#: core/docs/drf/viewsets.py:297 +#: engine/core/docs/drf/viewsets.py:313 msgid "add a list of products to order, quantities will not count" msgstr "Add a list of products to order, quantities will not count" -#: core/docs/drf/viewsets.py:298 +#: engine/core/docs/drf/viewsets.py:314 msgid "" "adds a list of products to an order using the provided `product_uuid` and " "`attributes`." @@ -466,11 +470,11 @@ msgstr "" "Adds a list of products to an order using the provided `product_uuid` and " "`attributes`." -#: core/docs/drf/viewsets.py:303 +#: engine/core/docs/drf/viewsets.py:319 msgid "remove product from order" msgstr "Remove a product from the order" -#: core/docs/drf/viewsets.py:304 +#: engine/core/docs/drf/viewsets.py:320 msgid "" "removes a product from an order using the provided `product_uuid` and " "`attributes`." @@ -478,11 +482,11 @@ msgstr "" "Removes a product from an order using the provided `product_uuid` and " "`attributes`." -#: core/docs/drf/viewsets.py:309 +#: engine/core/docs/drf/viewsets.py:325 msgid "remove product from order, quantities will not count" msgstr "Remove a product from order, quantities will not count" -#: core/docs/drf/viewsets.py:310 +#: engine/core/docs/drf/viewsets.py:326 msgid "" "removes a list of products from an order using the provided `product_uuid` " "and `attributes`" @@ -490,764 +494,789 @@ msgstr "" "Removes a list of products from an order using the provided `product_uuid` " "and `attributes`." -#: core/docs/drf/viewsets.py:318 +#: engine/core/docs/drf/viewsets.py:334 msgid "list all wishlists (simple view)" msgstr "List all attributes (simple view)" -#: core/docs/drf/viewsets.py:319 +#: engine/core/docs/drf/viewsets.py:335 msgid "for non-staff users, only their own wishlists are returned." msgstr "For non-staff users, only their own wishlists are returned." -#: core/docs/drf/viewsets.py:323 +#: engine/core/docs/drf/viewsets.py:339 msgid "retrieve a single wishlist (detailed view)" msgstr "Retrieve a single attribute (detailed view)" -#: core/docs/drf/viewsets.py:327 +#: engine/core/docs/drf/viewsets.py:343 msgid "create an wishlist" msgstr "Create an attribute" -#: core/docs/drf/viewsets.py:328 +#: engine/core/docs/drf/viewsets.py:344 msgid "Doesn't work for non-staff users." msgstr "Doesn't work for non-staff users." -#: core/docs/drf/viewsets.py:332 +#: engine/core/docs/drf/viewsets.py:348 msgid "delete an wishlist" msgstr "Delete an attribute" -#: core/docs/drf/viewsets.py:336 +#: engine/core/docs/drf/viewsets.py:352 msgid "rewrite an existing wishlist saving non-editables" msgstr "Rewrite an existing attribute saving non-editables" -#: core/docs/drf/viewsets.py:340 +#: engine/core/docs/drf/viewsets.py:356 msgid "rewrite some fields of an existing wishlist saving non-editables" msgstr "Rewrite some fields of an existing attribute saving non-editables" -#: core/docs/drf/viewsets.py:344 +#: engine/core/docs/drf/viewsets.py:360 msgid "add product to wishlist" msgstr "Add a product to the order" -#: core/docs/drf/viewsets.py:345 +#: engine/core/docs/drf/viewsets.py:361 msgid "adds a product to an wishlist using the provided `product_uuid`" msgstr "Adds a product to an wishlist using the provided `product_uuid`" -#: core/docs/drf/viewsets.py:350 +#: engine/core/docs/drf/viewsets.py:366 msgid "remove product from wishlist" msgstr "Remove a product from the wishlist" -#: core/docs/drf/viewsets.py:351 +#: engine/core/docs/drf/viewsets.py:367 msgid "removes a product from an wishlist using the provided `product_uuid`" msgstr "Removes a product from an wishlist using the provided `product_uuid`" -#: core/docs/drf/viewsets.py:356 +#: engine/core/docs/drf/viewsets.py:372 msgid "add many products to wishlist" msgstr "Add many products to the wishlist" -#: core/docs/drf/viewsets.py:357 +#: engine/core/docs/drf/viewsets.py:373 msgid "adds many products to an wishlist using the provided `product_uuids`" msgstr "Adds many products to an wishlist using the provided `product_uuids`" -#: core/docs/drf/viewsets.py:362 +#: engine/core/docs/drf/viewsets.py:378 msgid "remove many products from wishlist" msgstr "Remove a product from the order" -#: core/docs/drf/viewsets.py:363 +#: engine/core/docs/drf/viewsets.py:379 msgid "" "removes many products from an wishlist using the provided `product_uuids`" msgstr "" "Removes many products from an wishlist using the provided `product_uuids`" -#: core/docs/drf/viewsets.py:370 +#: engine/core/docs/drf/viewsets.py:386 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`" -#: core/docs/drf/viewsets.py:386 core/docs/drf/viewsets.py:387 +#: engine/core/docs/drf/viewsets.py:402 engine/core/docs/drf/viewsets.py:403 msgid "list all products (simple view)" msgstr "List all products (simple view)" -#: core/docs/drf/viewsets.py:392 +#: engine/core/docs/drf/viewsets.py:408 msgid "(exact) Product UUID" msgstr "(exact) Product UUID" -#: core/docs/drf/viewsets.py:399 +#: engine/core/docs/drf/viewsets.py:415 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" -#: core/docs/drf/viewsets.py:413 core/docs/drf/viewsets.py:414 +#: engine/core/docs/drf/viewsets.py:429 engine/core/docs/drf/viewsets.py:430 msgid "retrieve a single product (detailed view)" msgstr "Retrieve a single product (detailed view)" -#: core/docs/drf/viewsets.py:419 core/docs/drf/viewsets.py:443 -#: core/docs/drf/viewsets.py:459 core/docs/drf/viewsets.py:475 -#: core/docs/drf/viewsets.py:491 core/docs/drf/viewsets.py:507 +#: engine/core/docs/drf/viewsets.py:435 engine/core/docs/drf/viewsets.py:459 +#: engine/core/docs/drf/viewsets.py:475 engine/core/docs/drf/viewsets.py:491 +#: engine/core/docs/drf/viewsets.py:507 engine/core/docs/drf/viewsets.py:523 msgid "Product UUID or slug" msgstr "Product UUID or Slug" -#: core/docs/drf/viewsets.py:429 core/docs/drf/viewsets.py:430 +#: engine/core/docs/drf/viewsets.py:445 engine/core/docs/drf/viewsets.py:446 msgid "create a product" msgstr "Create a product" -#: core/docs/drf/viewsets.py:437 core/docs/drf/viewsets.py:438 +#: engine/core/docs/drf/viewsets.py:453 engine/core/docs/drf/viewsets.py:454 msgid "rewrite an existing product, preserving non-editable fields" msgstr "Rewrite an existing product, preserving non-editable fields" -#: core/docs/drf/viewsets.py:453 core/docs/drf/viewsets.py:454 +#: engine/core/docs/drf/viewsets.py:469 engine/core/docs/drf/viewsets.py:470 msgid "" "update some fields of an existing product, preserving non-editable fields" msgstr "" "Update some fields of an existing product, preserving non-editable fields" -#: core/docs/drf/viewsets.py:469 core/docs/drf/viewsets.py:470 +#: engine/core/docs/drf/viewsets.py:485 engine/core/docs/drf/viewsets.py:486 msgid "delete a product" msgstr "Delete a product" -#: core/docs/drf/viewsets.py:485 core/docs/drf/viewsets.py:486 +#: engine/core/docs/drf/viewsets.py:501 engine/core/docs/drf/viewsets.py:502 msgid "lists all permitted feedbacks for a product" msgstr "lists all permitted feedbacks for a product" -#: core/docs/drf/viewsets.py:502 +#: engine/core/docs/drf/viewsets.py:518 msgid "returns a snapshot of the product's SEO meta data" msgstr "Returns a snapshot of the product's SEO meta data" -#: core/docs/drf/viewsets.py:520 +#: engine/core/docs/drf/viewsets.py:536 msgid "list all addresses" msgstr "List all addresses" -#: core/docs/drf/viewsets.py:527 +#: engine/core/docs/drf/viewsets.py:543 msgid "retrieve a single address" msgstr "Retrieve a single address" -#: core/docs/drf/viewsets.py:534 +#: engine/core/docs/drf/viewsets.py:550 msgid "create a new address" msgstr "Create a new address" -#: core/docs/drf/viewsets.py:542 +#: engine/core/docs/drf/viewsets.py:558 msgid "delete an address" msgstr "Delete an address" -#: core/docs/drf/viewsets.py:549 +#: engine/core/docs/drf/viewsets.py:565 msgid "update an entire address" msgstr "Update an entire address" -#: core/docs/drf/viewsets.py:557 +#: engine/core/docs/drf/viewsets.py:573 msgid "partially update an address" msgstr "Partially update an address" -#: core/docs/drf/viewsets.py:565 +#: engine/core/docs/drf/viewsets.py:581 msgid "autocomplete address suggestions" msgstr "Autocomplete address input" -#: core/docs/drf/viewsets.py:570 +#: engine/core/docs/drf/viewsets.py:586 msgid "raw data query string, please append with data from geo-IP endpoint" msgstr "Raw data query string, please append with data from geo-IP endpoint" -#: core/docs/drf/viewsets.py:576 +#: engine/core/docs/drf/viewsets.py:592 msgid "limit the results amount, 1 < limit < 10, default: 5" msgstr "limits the results amount, 1 < limit < 10, default: 5" -#: core/docs/drf/viewsets.py:589 +#: engine/core/docs/drf/viewsets.py:605 msgid "list all feedbacks (simple view)" msgstr "list all feedbacks (simple view)" -#: core/docs/drf/viewsets.py:593 +#: engine/core/docs/drf/viewsets.py:609 msgid "retrieve a single feedback (detailed view)" msgstr "retrieve a single feedback (detailed view)" -#: core/docs/drf/viewsets.py:597 +#: engine/core/docs/drf/viewsets.py:613 msgid "create a feedback" msgstr "create a feedback" -#: core/docs/drf/viewsets.py:601 +#: engine/core/docs/drf/viewsets.py:617 msgid "delete a feedback" msgstr "delete a feedback" -#: core/docs/drf/viewsets.py:605 +#: engine/core/docs/drf/viewsets.py:621 msgid "rewrite an existing feedback saving non-editables" msgstr "rewrite an existing feedback saving non-editables" -#: core/docs/drf/viewsets.py:609 +#: engine/core/docs/drf/viewsets.py:625 msgid "rewrite some fields of an existing feedback saving non-editables" msgstr "rewrite some fields of an existing feedback saving non-editables" -#: core/docs/drf/viewsets.py:616 +#: engine/core/docs/drf/viewsets.py:632 msgid "list all order–product relations (simple view)" msgstr "list all order–product relations (simple view)" -#: core/docs/drf/viewsets.py:623 +#: engine/core/docs/drf/viewsets.py:639 msgid "retrieve a single order–product relation (detailed view)" msgstr "retrieve a single order–product relation (detailed view)" -#: core/docs/drf/viewsets.py:630 +#: engine/core/docs/drf/viewsets.py:646 msgid "create a new order–product relation" msgstr "create a new order–product relation" -#: core/docs/drf/viewsets.py:637 +#: engine/core/docs/drf/viewsets.py:653 msgid "replace an existing order–product relation" msgstr "replace an existing order–product relation" -#: core/docs/drf/viewsets.py:644 +#: engine/core/docs/drf/viewsets.py:660 msgid "partially update an existing order–product relation" msgstr "partially update an existing order–product relation" -#: core/docs/drf/viewsets.py:651 +#: engine/core/docs/drf/viewsets.py:667 msgid "delete an order–product relation" msgstr "delete an order–product relation" -#: core/docs/drf/viewsets.py:658 +#: engine/core/docs/drf/viewsets.py:674 msgid "add or remove feedback on an order–product relation" msgstr "add or remove feedback on an order–product relation" -#: core/docs/drf/viewsets.py:672 +#: engine/core/docs/drf/viewsets.py:688 msgid "list all brands (simple view)" msgstr "List all brands (simple view)" -#: core/docs/drf/viewsets.py:676 +#: engine/core/docs/drf/viewsets.py:692 msgid "retrieve a single brand (detailed view)" msgstr "Retrieve a single brand (detailed view)" -#: core/docs/drf/viewsets.py:680 +#: engine/core/docs/drf/viewsets.py:697 engine/core/docs/drf/viewsets.py:725 +msgid "Brand UUID or slug" +msgstr "Brand UUID or slug" + +#: engine/core/docs/drf/viewsets.py:704 msgid "create a brand" msgstr "Create a brand" -#: core/docs/drf/viewsets.py:684 +#: engine/core/docs/drf/viewsets.py:708 msgid "delete a brand" msgstr "Delete a brand" -#: core/docs/drf/viewsets.py:688 +#: engine/core/docs/drf/viewsets.py:712 msgid "rewrite an existing brand saving non-editables" msgstr "Rewrite an existing brand saving non-editables" -#: core/docs/drf/viewsets.py:692 +#: engine/core/docs/drf/viewsets.py:716 msgid "rewrite some fields of an existing brand saving non-editables" msgstr "Rewrite some fields of an existing brand saving non-editables" -#: core/docs/drf/viewsets.py:696 +#: engine/core/docs/drf/viewsets.py:720 msgid "SEO Meta snapshot for brand" msgstr "SEO Meta snapshot for brand" -#: core/docs/drf/viewsets.py:703 +#: engine/core/docs/drf/viewsets.py:735 msgid "list all vendors (simple view)" msgstr "List all vendors (simple view)" -#: core/docs/drf/viewsets.py:707 +#: engine/core/docs/drf/viewsets.py:739 msgid "retrieve a single vendor (detailed view)" msgstr "Retrieve a single vendor (detailed view)" -#: core/docs/drf/viewsets.py:711 +#: engine/core/docs/drf/viewsets.py:743 msgid "create a vendor" msgstr "Create a vendor" -#: core/docs/drf/viewsets.py:715 +#: engine/core/docs/drf/viewsets.py:747 msgid "delete a vendor" msgstr "Delete a vendor" -#: core/docs/drf/viewsets.py:719 +#: engine/core/docs/drf/viewsets.py:751 msgid "rewrite an existing vendor saving non-editables" msgstr "Rewrite an existing vendor saving non-editables" -#: core/docs/drf/viewsets.py:723 +#: engine/core/docs/drf/viewsets.py:755 msgid "rewrite some fields of an existing vendor saving non-editables" msgstr "Rewrite some fields of an existing vendor saving non-editables" -#: core/docs/drf/viewsets.py:730 +#: engine/core/docs/drf/viewsets.py:762 msgid "list all product images (simple view)" msgstr "List all product images (simple view)" -#: core/docs/drf/viewsets.py:734 +#: engine/core/docs/drf/viewsets.py:766 msgid "retrieve a single product image (detailed view)" msgstr "Retrieve a single product image (detailed view)" -#: core/docs/drf/viewsets.py:738 +#: engine/core/docs/drf/viewsets.py:770 msgid "create a product image" msgstr "Create a product image" -#: core/docs/drf/viewsets.py:742 +#: engine/core/docs/drf/viewsets.py:774 msgid "delete a product image" msgstr "Delete a product image" -#: core/docs/drf/viewsets.py:746 +#: engine/core/docs/drf/viewsets.py:778 msgid "rewrite an existing product image saving non-editables" msgstr "Rewrite an existing product image saving non-editables" -#: core/docs/drf/viewsets.py:750 +#: engine/core/docs/drf/viewsets.py:782 msgid "rewrite some fields of an existing product image saving non-editables" msgstr "Rewrite some fields of an existing product image saving non-editables" -#: core/docs/drf/viewsets.py:757 +#: engine/core/docs/drf/viewsets.py:789 msgid "list all promo codes (simple view)" msgstr "List all promo codes (simple view)" -#: core/docs/drf/viewsets.py:761 +#: engine/core/docs/drf/viewsets.py:793 msgid "retrieve a single promo code (detailed view)" msgstr "Retrieve a single promo code (detailed view)" -#: core/docs/drf/viewsets.py:765 +#: engine/core/docs/drf/viewsets.py:797 msgid "create a promo code" msgstr "Create a promo code" -#: core/docs/drf/viewsets.py:769 +#: engine/core/docs/drf/viewsets.py:801 msgid "delete a promo code" msgstr "Delete a promo code" -#: core/docs/drf/viewsets.py:773 +#: engine/core/docs/drf/viewsets.py:805 msgid "rewrite an existing promo code saving non-editables" msgstr "Rewrite an existing promo code saving non-editables" -#: core/docs/drf/viewsets.py:777 +#: engine/core/docs/drf/viewsets.py:809 msgid "rewrite some fields of an existing promo code saving non-editables" msgstr "Rewrite some fields of an existing promo code saving non-editables" -#: core/docs/drf/viewsets.py:784 +#: engine/core/docs/drf/viewsets.py:816 msgid "list all promotions (simple view)" msgstr "List all promotions (simple view)" -#: core/docs/drf/viewsets.py:788 +#: engine/core/docs/drf/viewsets.py:820 msgid "retrieve a single promotion (detailed view)" msgstr "Retrieve a single promotion (detailed view)" -#: core/docs/drf/viewsets.py:792 +#: engine/core/docs/drf/viewsets.py:824 msgid "create a promotion" msgstr "Create a promotion" -#: core/docs/drf/viewsets.py:796 +#: engine/core/docs/drf/viewsets.py:828 msgid "delete a promotion" msgstr "Delete a promotion" -#: core/docs/drf/viewsets.py:800 +#: engine/core/docs/drf/viewsets.py:832 msgid "rewrite an existing promotion saving non-editables" msgstr "Rewrite an existing promotion saving non-editables" -#: core/docs/drf/viewsets.py:804 +#: engine/core/docs/drf/viewsets.py:836 msgid "rewrite some fields of an existing promotion saving non-editables" msgstr "Rewrite some fields of an existing promotion saving non-editables" -#: core/docs/drf/viewsets.py:811 +#: engine/core/docs/drf/viewsets.py:843 msgid "list all stocks (simple view)" msgstr "List all stocks (simple view)" -#: core/docs/drf/viewsets.py:815 +#: engine/core/docs/drf/viewsets.py:847 msgid "retrieve a single stock (detailed view)" msgstr "Retrieve a single stock (detailed view)" -#: core/docs/drf/viewsets.py:819 +#: engine/core/docs/drf/viewsets.py:851 msgid "create a stock record" msgstr "Create a stock record" -#: core/docs/drf/viewsets.py:823 +#: engine/core/docs/drf/viewsets.py:855 msgid "delete a stock record" msgstr "Delete a stock record" -#: core/docs/drf/viewsets.py:827 +#: engine/core/docs/drf/viewsets.py:859 msgid "rewrite an existing stock record saving non-editables" msgstr "Rewrite an existing stock record saving non-editables" -#: core/docs/drf/viewsets.py:831 +#: engine/core/docs/drf/viewsets.py:863 msgid "rewrite some fields of an existing stock record saving non-editables" msgstr "Rewrite some fields of an existing stock record saving non-editables" -#: core/docs/drf/viewsets.py:838 +#: engine/core/docs/drf/viewsets.py:870 msgid "list all product tags (simple view)" msgstr "List all product tags (simple view)" -#: core/docs/drf/viewsets.py:842 +#: engine/core/docs/drf/viewsets.py:874 msgid "retrieve a single product tag (detailed view)" msgstr "Retrieve a single product tag (detailed view)" -#: core/docs/drf/viewsets.py:846 +#: engine/core/docs/drf/viewsets.py:878 msgid "create a product tag" msgstr "Create a product tag" -#: core/docs/drf/viewsets.py:850 +#: engine/core/docs/drf/viewsets.py:882 msgid "delete a product tag" msgstr "Delete a product tag" -#: core/docs/drf/viewsets.py:854 +#: engine/core/docs/drf/viewsets.py:886 msgid "rewrite an existing product tag saving non-editables" msgstr "Rewrite an existing product tag saving non-editables" -#: core/docs/drf/viewsets.py:858 +#: engine/core/docs/drf/viewsets.py:890 msgid "rewrite some fields of an existing product tag saving non-editables" msgstr "Rewrite some fields of an existing product tag saving non-editables" -#: core/elasticsearch/__init__.py:118 core/elasticsearch/__init__.py:550 +#: engine/core/elasticsearch/__init__.py:122 +#: engine/core/elasticsearch/__init__.py:570 msgid "no search term provided." msgstr "No search term provided." -#: core/filters.py:69 core/filters.py:412 core/filters.py:539 +#: engine/core/filters.py:69 engine/core/filters.py:426 +#: engine/core/filters.py:553 msgid "Search" msgstr "Search" -#: core/filters.py:70 core/filters.py:569 core/filters.py:598 +#: engine/core/filters.py:70 engine/core/filters.py:583 +#: engine/core/filters.py:612 msgid "UUID" msgstr "UUID" -#: core/filters.py:71 core/filters.py:414 core/filters.py:541 +#: engine/core/filters.py:71 engine/core/filters.py:428 +#: engine/core/filters.py:555 msgid "Name" msgstr "Name" -#: core/filters.py:72 core/filters.py:543 +#: engine/core/filters.py:72 engine/core/filters.py:557 msgid "Categories" msgstr "Categories" -#: core/filters.py:74 +#: engine/core/filters.py:74 msgid "Categories Slugs" msgstr "Categories Slugs" -#: core/filters.py:75 core/filters.py:422 +#: engine/core/filters.py:75 engine/core/filters.py:436 msgid "Tags" msgstr "Tags" -#: core/filters.py:76 +#: engine/core/filters.py:76 msgid "Min Price" msgstr "Min Price" -#: core/filters.py:77 +#: engine/core/filters.py:77 msgid "Max Price" msgstr "Max Price" -#: core/filters.py:78 +#: engine/core/filters.py:78 msgid "Is Active" msgstr "Is Active" -#: core/filters.py:79 +#: engine/core/filters.py:79 msgid "Brand" msgstr "Brand" -#: core/filters.py:80 +#: engine/core/filters.py:80 msgid "Attributes" msgstr "Attributes" -#: core/filters.py:81 +#: engine/core/filters.py:81 msgid "Quantity" msgstr "Quantity" -#: core/filters.py:82 core/filters.py:416 core/filters.py:542 -#: core/models.py:322 core/models.py:483 core/models.py:637 +#: engine/core/filters.py:82 engine/core/filters.py:430 +#: engine/core/filters.py:556 engine/core/models.py:321 +#: engine/core/models.py:482 engine/core/models.py:637 msgid "Slug" msgstr "Slug" -#: core/filters.py:83 +#: engine/core/filters.py:83 msgid "Is Digital" msgstr "Is Digital" -#: core/filters.py:84 +#: engine/core/filters.py:84 msgid "Include sub-categories" msgstr "Include sub-categories" -#: core/filters.py:87 +#: engine/core/filters.py:87 msgid "Include personal ordered" msgstr "Include personal ordered products" -#: core/filters.py:89 core/models.py:641 +#: engine/core/filters.py:89 engine/core/models.py:641 msgid "SKU" msgstr "SKU" -#: core/filters.py:173 +#: engine/core/filters.py:184 msgid "there must be a category_uuid to use include_subcategories flag" msgstr "There must be a category_uuid to use include_subcategories flag" -#: core/filters.py:339 +#: engine/core/filters.py:353 msgid "Search (ID, product name or part number)" msgstr "Search (ID, product name or part number)" -#: core/filters.py:342 +#: engine/core/filters.py:356 msgid "Bought after (inclusive)" msgstr "Bought after (inclusive)" -#: core/filters.py:343 +#: engine/core/filters.py:357 msgid "Bought before (inclusive)" msgstr "Bought before (inclusive)" -#: core/filters.py:346 core/filters.py:393 core/filters.py:600 +#: engine/core/filters.py:360 engine/core/filters.py:407 +#: engine/core/filters.py:614 msgid "User email" msgstr "User email" -#: core/filters.py:347 core/filters.py:394 core/filters.py:578 -#: core/filters.py:599 +#: engine/core/filters.py:361 engine/core/filters.py:408 +#: engine/core/filters.py:592 engine/core/filters.py:613 msgid "User UUID" msgstr "User UUID" -#: core/filters.py:348 +#: engine/core/filters.py:362 msgid "Status" msgstr "Status" -#: core/filters.py:352 +#: engine/core/filters.py:366 msgid "Human Readable ID" msgstr "Human Readable ID" -#: core/filters.py:415 +#: engine/core/filters.py:429 msgid "Parent" msgstr "Parent" -#: core/filters.py:419 +#: engine/core/filters.py:433 msgid "Whole category(has at least 1 product or not)" msgstr "Whole category(has at least 1 product or not)" -#: core/filters.py:423 +#: engine/core/filters.py:437 msgid "Level" msgstr "Level" -#: core/filters.py:573 +#: engine/core/filters.py:587 msgid "Product UUID" msgstr "Product UUID" -#: core/graphene/mutations.py:41 +#: engine/core/graphene/mutations.py:41 msgid "key to look for in or set into the cache" msgstr "Key to look for in or set into the cache" -#: core/graphene/mutations.py:42 +#: engine/core/graphene/mutations.py:42 msgid "data to store in cache" msgstr "Data to store in cache" -#: core/graphene/mutations.py:45 +#: engine/core/graphene/mutations.py:45 msgid "timeout in seconds to set the data for into the cache" msgstr "Timeout in seconds to set the data for into the cache" -#: core/graphene/mutations.py:48 +#: engine/core/graphene/mutations.py:48 msgid "cached data" msgstr "Cached data" -#: core/graphene/mutations.py:63 +#: engine/core/graphene/mutations.py:63 msgid "camelized JSON data from the requested URL" msgstr "Camelized JSON data from the requested URL" -#: core/graphene/mutations.py:68 core/views.py:232 +#: engine/core/graphene/mutations.py:68 engine/core/views.py:231 msgid "only URLs starting with http(s):// are allowed" msgstr "Only URLs starting with http(s):// are allowed" -#: core/graphene/mutations.py:84 +#: engine/core/graphene/mutations.py:84 msgid "add a product to the order" msgstr "Add a product to the order" -#: core/graphene/mutations.py:105 core/graphene/mutations.py:132 -#: core/graphene/mutations.py:240 core/graphene/mutations.py:288 +#: engine/core/graphene/mutations.py:105 engine/core/graphene/mutations.py:132 +#: engine/core/graphene/mutations.py:240 engine/core/graphene/mutations.py:288 #, python-brace-format msgid "order {order_uuid} not found" msgstr "Order {order_uuid} not found!" -#: core/graphene/mutations.py:111 core/graphene/mutations.py:160 +#: engine/core/graphene/mutations.py:111 engine/core/graphene/mutations.py:160 msgid "remove a product from the order" msgstr "Remove a product from the order" -#: core/graphene/mutations.py:138 +#: engine/core/graphene/mutations.py:138 msgid "remove all products from the order" msgstr "Remove all products from the order" -#: core/graphene/mutations.py:183 +#: engine/core/graphene/mutations.py:183 msgid "buy an order" msgstr "Buy an order" -#: core/graphene/mutations.py:212 core/graphene/mutations.py:266 +#: engine/core/graphene/mutations.py:212 engine/core/graphene/mutations.py:266 msgid "please provide either order_uuid or order_hr_id - mutually exclusive" msgstr "Please provide either order_uuid or order_hr_id - mutually exclusive!" -#: core/graphene/mutations.py:237 core/graphene/mutations.py:502 -#: core/graphene/mutations.py:544 core/viewsets.py:704 +#: engine/core/graphene/mutations.py:237 engine/core/graphene/mutations.py:502 +#: engine/core/graphene/mutations.py:544 engine/core/viewsets.py:704 msgid "wrong type came from order.buy() method: {type(instance)!s}" msgstr "Wrong type came from order.buy() method: {type(instance)!s}" -#: core/graphene/mutations.py:246 +#: engine/core/graphene/mutations.py:246 msgid "perform an action on a list of products in the order" msgstr "Perform an action on a list of products in the order" -#: core/graphene/mutations.py:251 +#: engine/core/graphene/mutations.py:251 msgid "remove/add" msgstr "Remove/Add" -#: core/graphene/mutations.py:283 core/graphene/mutations.py:324 +#: engine/core/graphene/mutations.py:283 engine/core/graphene/mutations.py:324 msgid "action must be either add or remove" msgstr "Action must be either \"add\" or \"remove\"!" -#: core/graphene/mutations.py:294 +#: engine/core/graphene/mutations.py:294 msgid "perform an action on a list of products in the wishlist" msgstr "Perform an action on a list of products in the wishlist" -#: core/graphene/mutations.py:312 +#: engine/core/graphene/mutations.py:312 msgid "please provide wishlist_uuid value" msgstr "Please provide `wishlist_uuid` value." -#: core/graphene/mutations.py:329 core/graphene/mutations.py:405 -#: core/graphene/mutations.py:433 core/graphene/mutations.py:461 -#: core/graphene/mutations.py:505 +#: engine/core/graphene/mutations.py:329 engine/core/graphene/mutations.py:405 +#: engine/core/graphene/mutations.py:433 engine/core/graphene/mutations.py:461 +#: engine/core/graphene/mutations.py:505 #, python-brace-format msgid "wishlist {wishlist_uuid} not found" msgstr "Wishlist {wishlist_uuid} not found!" -#: core/graphene/mutations.py:383 +#: engine/core/graphene/mutations.py:383 msgid "add a product to the wishlist" msgstr "Add a product to the order" -#: core/graphene/mutations.py:411 +#: engine/core/graphene/mutations.py:411 msgid "remove a product from the wishlist" msgstr "Remove a product from the order" -#: core/graphene/mutations.py:439 +#: engine/core/graphene/mutations.py:439 msgid "remove all products from the wishlist" msgstr "Remove a product from the order" -#: core/graphene/mutations.py:467 +#: engine/core/graphene/mutations.py:467 msgid "buy all products from the wishlist" msgstr "Remove a product from the order" -#: core/graphene/mutations.py:511 +#: engine/core/graphene/mutations.py:511 msgid "buy a product" msgstr "Buy an order" -#: core/graphene/mutations.py:517 +#: engine/core/graphene/mutations.py:517 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" -#: core/graphene/mutations.py:550 +#: engine/core/graphene/mutations.py:550 msgid "add or delete a feedback for orderproduct" msgstr "Add or delete a feedback for the orderproduct" -#: core/graphene/mutations.py:574 +#: engine/core/graphene/mutations.py:574 msgid "action must be either `add` or `remove`" msgstr "Action must be either `add` or `remove`!" -#: core/graphene/mutations.py:577 +#: engine/core/graphene/mutations.py:577 #, python-brace-format msgid "order product {order_product_uuid} not found" msgstr "Orderproduct {order_product_uuid} not found!" -#: core/graphene/mutations.py:644 +#: engine/core/graphene/mutations.py:644 msgid "original address string provided by the user" msgstr "Original address string provided by the user" -#: core/graphene/mutations.py:680 core/models.py:930 core/models.py:943 -#: core/models.py:1358 core/models.py:1387 core/models.py:1412 -#: core/viewsets.py:707 +#: engine/core/graphene/mutations.py:680 engine/core/models.py:941 +#: engine/core/models.py:954 engine/core/models.py:1369 +#: engine/core/models.py:1398 engine/core/models.py:1423 +#: engine/core/viewsets.py:707 #, python-brace-format msgid "{name} does not exist: {uuid}" msgstr "{name} does not exist: {uuid}!" -#: core/graphene/mutations.py:694 +#: engine/core/graphene/mutations.py:694 msgid "limit must be between 1 and 10" msgstr "Limit must be between 1 and 10" -#: core/graphene/mutations.py:743 +#: engine/core/graphene/mutations.py:743 msgid "elasticsearch - works like a charm" msgstr "ElasticSearch - works like a charm" -#: core/graphene/object_types.py:82 core/graphene/object_types.py:370 -#: core/graphene/object_types.py:417 core/models.py:754 core/models.py:1225 -#: core/models.py:1823 +#: engine/core/graphene/object_types.py:82 +#: engine/core/graphene/object_types.py:370 +#: engine/core/graphene/object_types.py:417 engine/core/models.py:765 +#: engine/core/models.py:1236 engine/core/models.py:1883 msgid "attributes" msgstr "Attributes" -#: core/graphene/object_types.py:95 +#: engine/core/graphene/object_types.py:95 msgid "grouped attributes" msgstr "Grouped attributes" -#: core/graphene/object_types.py:102 +#: engine/core/graphene/object_types.py:102 msgid "groups of attributes" msgstr "Groups of attributes" -#: core/graphene/object_types.py:116 core/graphene/object_types.py:193 -#: core/graphene/object_types.py:223 core/models.py:426 +#: engine/core/graphene/object_types.py:116 +#: engine/core/graphene/object_types.py:193 +#: engine/core/graphene/object_types.py:223 engine/core/models.py:425 msgid "categories" msgstr "Categories" -#: core/graphene/object_types.py:124 core/models.py:497 +#: engine/core/graphene/object_types.py:124 engine/core/models.py:496 msgid "brands" msgstr "Brands" -#: core/graphene/object_types.py:195 +#: engine/core/graphene/object_types.py:195 msgid "category image url" msgstr "Categories" -#: core/graphene/object_types.py:196 core/graphene/object_types.py:317 -#: core/models.py:284 +#: engine/core/graphene/object_types.py:196 +#: engine/core/graphene/object_types.py:317 engine/core/models.py:283 msgid "markup percentage" msgstr "Markup Percentage" -#: core/graphene/object_types.py:199 +#: engine/core/graphene/object_types.py:199 msgid "which attributes and values can be used for filtering this category." msgstr "Which attributes and values can be used for filtering this category." -#: core/graphene/object_types.py:203 -msgid "" -"minimum and maximum prices for products in this category, if available." +#: engine/core/graphene/object_types.py:203 +msgid "minimum and maximum prices for products in this category, if available." msgstr "" "Minimum and maximum prices for products in this category, if available." -#: core/graphene/object_types.py:205 +#: engine/core/graphene/object_types.py:205 msgid "tags for this category" msgstr "Tags for this category" -#: core/graphene/object_types.py:206 +#: engine/core/graphene/object_types.py:206 msgid "products in this category" msgstr "Products in this category" -#: core/graphene/object_types.py:324 core/models.py:189 +#: engine/core/graphene/object_types.py:324 engine/core/models.py:188 msgid "vendors" msgstr "Vendors" -#: core/graphene/object_types.py:328 +#: engine/core/graphene/object_types.py:328 msgid "Latitude (Y coordinate)" msgstr "Latitude (Y coordinate)" -#: core/graphene/object_types.py:329 +#: engine/core/graphene/object_types.py:329 msgid "Longitude (X coordinate)" msgstr "Longitude (X coordinate)" -#: core/graphene/object_types.py:358 +#: engine/core/graphene/object_types.py:358 msgid "comment" msgstr "Comment" -#: core/graphene/object_types.py:359 core/graphene/object_types.py:483 +#: engine/core/graphene/object_types.py:359 +#: engine/core/graphene/object_types.py:483 msgid "rating value from 1 to 10, inclusive, or 0 if not set." msgstr "Rating value from 1 to 10, inclusive, or 0 if not set." -#: core/graphene/object_types.py:366 +#: engine/core/graphene/object_types.py:366 msgid "represents feedback from a user." msgstr "Represents feedback from a user." -#: core/graphene/object_types.py:371 core/graphene/object_types.py:418 -#: core/models.py:1219 +#: engine/core/graphene/object_types.py:371 +#: engine/core/graphene/object_types.py:418 engine/core/models.py:1230 msgid "notifications" msgstr "Notifications" -#: core/graphene/object_types.py:372 +#: engine/core/graphene/object_types.py:372 msgid "download url for this order product if applicable" msgstr "Download url for this order product if applicable" -#: core/graphene/object_types.py:373 core/models.py:1939 +#: engine/core/graphene/object_types.py:373 engine/core/models.py:1722 msgid "feedback" msgstr "Feedback" -#: core/graphene/object_types.py:407 +#: engine/core/graphene/object_types.py:407 msgid "a list of order products in this order" msgstr "A list of order products in this order" -#: core/graphene/object_types.py:409 core/models.py:1189 +#: engine/core/graphene/object_types.py:409 engine/core/models.py:1200 msgid "billing address" msgstr "Billing address" -#: core/graphene/object_types.py:412 +#: engine/core/graphene/object_types.py:412 msgid "" "shipping address for this order, leave blank if same as billing address or " "if not applicable" @@ -1255,200 +1284,208 @@ msgstr "" "Shipping address for this order, leave blank if same as billing address or " "if not applicable" -#: core/graphene/object_types.py:414 +#: engine/core/graphene/object_types.py:414 msgid "total price of this order" msgstr "Total price of this order" -#: core/graphene/object_types.py:415 +#: engine/core/graphene/object_types.py:415 msgid "total quantity of products in order" msgstr "Total quantity of products in order" -#: core/graphene/object_types.py:416 +#: engine/core/graphene/object_types.py:416 msgid "are all products in the order digital" msgstr "Are all of the products in the order digital" -#: core/graphene/object_types.py:419 +#: engine/core/graphene/object_types.py:419 msgid "transactions for this order" msgstr "Transactions for this order" -#: core/graphene/object_types.py:438 core/models.py:1253 +#: engine/core/graphene/object_types.py:438 engine/core/models.py:1264 msgid "orders" msgstr "Orders" -#: core/graphene/object_types.py:459 +#: engine/core/graphene/object_types.py:459 msgid "image url" msgstr "Image URL" -#: core/graphene/object_types.py:466 +#: engine/core/graphene/object_types.py:466 msgid "product's images" msgstr "Product's images" -#: core/graphene/object_types.py:473 core/models.py:425 core/models.py:579 +#: engine/core/graphene/object_types.py:473 engine/core/models.py:424 +#: engine/core/models.py:579 msgid "category" msgstr "Category" -#: core/graphene/object_types.py:475 core/models.py:1940 +#: engine/core/graphene/object_types.py:475 engine/core/models.py:1723 msgid "feedbacks" msgstr "Feedbacks" -#: core/graphene/object_types.py:476 core/models.py:496 core/models.py:588 +#: engine/core/graphene/object_types.py:476 engine/core/models.py:495 +#: engine/core/models.py:588 msgid "brand" msgstr "Brand" -#: core/graphene/object_types.py:477 core/models.py:107 +#: engine/core/graphene/object_types.py:477 engine/core/models.py:106 msgid "attribute groups" msgstr "Attribute groups" -#: core/graphene/object_types.py:478 -#: core/templates/digital_order_created_email.html:111 -#: core/templates/digital_order_delivered_email.html:109 -#: core/templates/shipped_order_created_email.html:109 -#: core/templates/shipped_order_delivered_email.html:109 +#: engine/core/graphene/object_types.py:478 +#: engine/core/templates/digital_order_created_email.html:111 +#: engine/core/templates/digital_order_delivered_email.html:109 +#: engine/core/templates/shipped_order_created_email.html:109 +#: engine/core/templates/shipped_order_delivered_email.html:109 msgid "price" msgstr "Price" -#: core/graphene/object_types.py:479 -#: core/templates/digital_order_created_email.html:110 -#: core/templates/digital_order_delivered_email.html:108 -#: core/templates/shipped_order_created_email.html:108 -#: core/templates/shipped_order_delivered_email.html:108 +#: engine/core/graphene/object_types.py:479 +#: engine/core/templates/digital_order_created_email.html:110 +#: engine/core/templates/digital_order_delivered_email.html:108 +#: engine/core/templates/shipped_order_created_email.html:108 +#: engine/core/templates/shipped_order_delivered_email.html:108 msgid "quantity" msgstr "Quantity" -#: core/graphene/object_types.py:480 +#: engine/core/graphene/object_types.py:480 msgid "number of feedbacks" msgstr "Number of feedbacks" -#: core/graphene/object_types.py:481 +#: engine/core/graphene/object_types.py:481 msgid "only available for personal orders" msgstr "Products only available for personal orders" -#: core/graphene/object_types.py:507 core/models.py:651 +#: engine/core/graphene/object_types.py:484 +msgid "discount price" +msgstr "Discount price" + +#: engine/core/graphene/object_types.py:508 engine/core/models.py:651 msgid "products" msgstr "Products" -#: core/graphene/object_types.py:607 +#: engine/core/graphene/object_types.py:611 msgid "promocodes" msgstr "Promocodes" -#: core/graphene/object_types.py:617 +#: engine/core/graphene/object_types.py:621 msgid "products on sale" msgstr "Products on sale" -#: core/graphene/object_types.py:624 core/models.py:879 +#: engine/core/graphene/object_types.py:628 engine/core/models.py:890 msgid "promotions" msgstr "Promotions" -#: core/graphene/object_types.py:628 core/models.py:188 +#: engine/core/graphene/object_types.py:632 engine/core/models.py:187 msgid "vendor" msgstr "Vendor" -#: core/graphene/object_types.py:629 core/models.py:650 -#: core/templates/digital_order_created_email.html:109 -#: core/templates/digital_order_delivered_email.html:107 -#: core/templates/shipped_order_created_email.html:107 -#: core/templates/shipped_order_delivered_email.html:107 +#: engine/core/graphene/object_types.py:633 engine/core/models.py:650 +#: 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 +#: engine/core/templates/shipped_order_delivered_email.html:107 msgid "product" msgstr "Product" -#: core/graphene/object_types.py:640 core/models.py:902 +#: engine/core/graphene/object_types.py:644 engine/core/models.py:913 msgid "wishlisted products" msgstr "Wishlisted products" -#: core/graphene/object_types.py:646 core/models.py:919 +#: engine/core/graphene/object_types.py:650 engine/core/models.py:930 msgid "wishlists" msgstr "Wishlists" -#: core/graphene/object_types.py:650 +#: engine/core/graphene/object_types.py:654 msgid "tagged products" msgstr "Tagged products" -#: core/graphene/object_types.py:657 core/models.py:225 core/models.py:594 +#: engine/core/graphene/object_types.py:661 engine/core/models.py:224 +#: engine/core/models.py:594 msgid "product tags" msgstr "Product tags" -#: core/graphene/object_types.py:661 +#: engine/core/graphene/object_types.py:665 msgid "tagged categories" msgstr "Tagged categories" -#: core/graphene/object_types.py:668 +#: engine/core/graphene/object_types.py:672 msgid "categories tags" msgstr "Categories' tags" -#: core/graphene/object_types.py:672 +#: engine/core/graphene/object_types.py:676 msgid "project name" msgstr "Project name" -#: core/graphene/object_types.py:673 +#: engine/core/graphene/object_types.py:677 msgid "company email" msgstr "Company Email" -#: core/graphene/object_types.py:674 +#: engine/core/graphene/object_types.py:678 msgid "company name" msgstr "Company Name" -#: core/graphene/object_types.py:675 +#: engine/core/graphene/object_types.py:679 msgid "company address" msgstr "Company Address" -#: core/graphene/object_types.py:676 +#: engine/core/graphene/object_types.py:680 msgid "company phone number" msgstr "Company Phone Number" -#: core/graphene/object_types.py:677 +#: engine/core/graphene/object_types.py:681 msgid "email from, sometimes it must be used instead of host user value" msgstr "'email from', sometimes it must be used instead of host user value" -#: core/graphene/object_types.py:678 +#: engine/core/graphene/object_types.py:682 msgid "email host user" msgstr "Email host user" -#: core/graphene/object_types.py:679 +#: engine/core/graphene/object_types.py:683 msgid "maximum amount for payment" msgstr "Maximum amount for payment" -#: core/graphene/object_types.py:680 +#: engine/core/graphene/object_types.py:684 msgid "minimum amount for payment" msgstr "Minimum amount for payment" -#: core/graphene/object_types.py:681 +#: engine/core/graphene/object_types.py:685 msgid "analytics data" msgstr "Analytics data" -#: core/graphene/object_types.py:682 +#: engine/core/graphene/object_types.py:686 msgid "advertisement data" msgstr "Advertisement data" -#: core/graphene/object_types.py:685 +#: engine/core/graphene/object_types.py:689 msgid "company configuration" msgstr "Configuration" -#: core/graphene/object_types.py:689 +#: engine/core/graphene/object_types.py:693 msgid "language code" msgstr "Language code" -#: core/graphene/object_types.py:690 +#: engine/core/graphene/object_types.py:694 msgid "language name" msgstr "Language name" -#: core/graphene/object_types.py:691 +#: engine/core/graphene/object_types.py:695 msgid "language flag, if exists :)" msgstr "Language flag, if exists :)" -#: core/graphene/object_types.py:694 +#: engine/core/graphene/object_types.py:698 msgid "supported languages" msgstr "Get a list of supported languages" -#: core/graphene/object_types.py:725 core/graphene/object_types.py:726 -#: core/graphene/object_types.py:727 +#: engine/core/graphene/object_types.py:729 +#: engine/core/graphene/object_types.py:730 +#: engine/core/graphene/object_types.py:731 msgid "products search results" msgstr "Products search results" -#: core/graphene/object_types.py:728 +#: engine/core/graphene/object_types.py:732 msgid "posts search results" msgstr "Products search results" -#: core/models.py:76 +#: engine/core/models.py:75 msgid "" "Represents a group of attributes, which can be hierarchical. This class is " "used to manage and organize attribute groups. An attribute group can have a " @@ -1460,23 +1497,23 @@ msgstr "" "parent group, forming a hierarchical structure. This can be useful for " "categorizing and managing attributes more effectively in acomplex system." -#: core/models.py:92 +#: engine/core/models.py:91 msgid "parent of this group" msgstr "Parent of this group" -#: core/models.py:93 +#: engine/core/models.py:92 msgid "parent attribute group" msgstr "Parent attribute group" -#: core/models.py:97 core/models.py:98 +#: engine/core/models.py:96 engine/core/models.py:97 msgid "attribute group's name" msgstr "Attribute group's name" -#: core/models.py:106 core/models.py:716 +#: engine/core/models.py:105 engine/core/models.py:727 msgid "attribute group" msgstr "Attribute group" -#: core/models.py:112 +#: engine/core/models.py:111 msgid "" "Represents a vendor entity capable of storing information about external " "vendors and their interaction requirements. The Vendor class is used to " @@ -1494,48 +1531,48 @@ msgstr "" "also maintains additional metadata and constraints, making it suitable for " "use in systems that interact with third-party vendors." -#: core/models.py:125 +#: engine/core/models.py:124 msgid "stores credentials and endpoints required for vendor communication" msgstr "" "Stores credentials and endpoints required for vendor's API communication" -#: core/models.py:126 +#: engine/core/models.py:125 msgid "authentication info" msgstr "Authentication info" -#: core/models.py:131 +#: engine/core/models.py:130 msgid "define the markup for products retrieved from this vendor" msgstr "Define the markup for products retrieved from this vendor" -#: core/models.py:132 +#: engine/core/models.py:131 msgid "vendor markup percentage" msgstr "Vendor markup percentage" -#: core/models.py:136 +#: engine/core/models.py:135 msgid "name of this vendor" msgstr "Name of this vendor" -#: core/models.py:137 +#: engine/core/models.py:136 msgid "vendor name" msgstr "Vendor name" -#: core/models.py:148 +#: engine/core/models.py:147 msgid "response file" msgstr "response file" -#: core/models.py:149 +#: engine/core/models.py:148 msgid "vendor's last processing response" msgstr "vendor's last processing response" -#: core/models.py:155 +#: engine/core/models.py:154 msgid "vendor's integration file path" msgstr "Vendor's integration file path" -#: core/models.py:156 +#: engine/core/models.py:155 msgid "integration path" msgstr "Integration path" -#: core/models.py:198 +#: engine/core/models.py:197 msgid "" "Represents a product tag used for classifying or identifying products. The " "ProductTag class is designed to uniquely identify and classify products " @@ -1549,27 +1586,27 @@ msgstr "" "display name. It supports operations exported through mixins and provides " "metadata customization for administrative purposes." -#: core/models.py:210 core/models.py:241 +#: engine/core/models.py:209 engine/core/models.py:240 msgid "internal tag identifier for the product tag" msgstr "Internal tag identifier for the product tag" -#: core/models.py:211 core/models.py:242 +#: engine/core/models.py:210 engine/core/models.py:241 msgid "tag name" msgstr "Tag name" -#: core/models.py:215 core/models.py:246 +#: engine/core/models.py:214 engine/core/models.py:245 msgid "user-friendly name for the product tag" msgstr "User-friendly name for the product tag" -#: core/models.py:216 core/models.py:247 +#: engine/core/models.py:215 engine/core/models.py:246 msgid "tag display name" msgstr "Tag display name" -#: core/models.py:224 +#: engine/core/models.py:223 msgid "product tag" msgstr "Product tag" -#: core/models.py:230 +#: engine/core/models.py:229 msgid "" "Represents a category tag used for products. This class models a category " "tag that can be used to associate and classify products. It includes " @@ -1579,15 +1616,15 @@ msgstr "" "tag that can be used to associate and classify products. It includes " "attributes for an internal tag identifier and a user-friendly display name." -#: core/models.py:255 +#: engine/core/models.py:254 msgid "category tag" msgstr "category tag" -#: core/models.py:256 core/models.py:328 +#: engine/core/models.py:255 engine/core/models.py:327 msgid "category tags" msgstr "category tags" -#: core/models.py:261 +#: engine/core/models.py:260 msgid "" "Represents a category entity to organize and group related items in a " "hierarchical structure. Categories may have hierarchical relationships with " @@ -1609,182 +1646,184 @@ msgstr "" "hierarchy of categories, as well as assign attributes like images, tags, or " "priority." -#: core/models.py:275 +#: engine/core/models.py:274 msgid "upload an image representing this category" msgstr "Upload an image representing this category" -#: core/models.py:278 +#: engine/core/models.py:277 msgid "category image" msgstr "Category image" -#: core/models.py:283 +#: engine/core/models.py:282 msgid "define a markup percentage for products in this category" msgstr "Define a markup percentage for products in this category" -#: core/models.py:292 +#: engine/core/models.py:291 msgid "parent of this category to form a hierarchical structure" msgstr "Parent of this category to form a hierarchical structure" -#: core/models.py:293 +#: engine/core/models.py:292 msgid "parent category" msgstr "Parent category" -#: core/models.py:298 +#: engine/core/models.py:297 msgid "category name" msgstr "Category name" -#: core/models.py:299 +#: engine/core/models.py:298 msgid "provide a name for this category" msgstr "Provide a name for this category" -#: core/models.py:306 +#: engine/core/models.py:305 msgid "add a detailed description for this category" msgstr "Add a detailed description for this category" -#: core/models.py:307 +#: engine/core/models.py:306 msgid "category description" msgstr "Category description" -#: core/models.py:327 +#: engine/core/models.py:326 msgid "tags that help describe or group this category" msgstr "tags that help describe or group this category" -#: core/models.py:334 core/models.py:489 +#: engine/core/models.py:333 engine/core/models.py:488 msgid "priority" msgstr "Priority" -#: core/models.py:432 +#: engine/core/models.py:431 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." -#: core/models.py:442 +#: engine/core/models.py:441 msgid "name of this brand" msgstr "Name of this brand" -#: core/models.py:443 +#: engine/core/models.py:442 msgid "brand name" msgstr "Brand name" -#: core/models.py:450 +#: engine/core/models.py:449 msgid "upload a logo representing this brand" msgstr "Upload a logo representing this brand" -#: core/models.py:452 +#: engine/core/models.py:451 msgid "brand small image" msgstr "Brand small image" -#: core/models.py:458 +#: engine/core/models.py:457 msgid "upload a big logo representing this brand" msgstr "Upload a big logo representing this brand" -#: core/models.py:460 +#: engine/core/models.py:459 msgid "brand big image" msgstr "Brand big image" -#: core/models.py:465 +#: engine/core/models.py:464 msgid "add a detailed description of the brand" msgstr "Add a detailed description of the brand" -#: core/models.py:466 +#: engine/core/models.py:465 msgid "brand description" msgstr "Brand description" -#: core/models.py:471 +#: engine/core/models.py:470 msgid "optional categories that this brand is associated with" msgstr "Optional categories that this brand is associated with" -#: core/models.py:472 +#: engine/core/models.py:471 msgid "associated categories" msgstr "Categories" -#: core/models.py:502 +#: engine/core/models.py:501 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 " "from various vendors." -#: core/models.py:514 +#: engine/core/models.py:513 msgid "the vendor supplying this product stock" msgstr "The vendor supplying this product stock" -#: core/models.py:515 +#: engine/core/models.py:514 msgid "associated vendor" msgstr "Associated vendor" -#: core/models.py:519 +#: engine/core/models.py:518 msgid "final price to the customer after markups" msgstr "Final price to the customer after markups" -#: core/models.py:520 +#: engine/core/models.py:519 msgid "selling price" msgstr "Selling price" -#: core/models.py:525 +#: engine/core/models.py:524 msgid "the product associated with this stock entry" msgstr "The product associated with this stock entry" -#: core/models.py:526 core/models.py:779 core/models.py:825 -#: core/models.py:1718 +#: engine/core/models.py:525 engine/core/models.py:790 +#: engine/core/models.py:836 engine/core/models.py:1778 msgid "associated product" msgstr "Associated product" -#: core/models.py:533 +#: engine/core/models.py:532 msgid "the price paid to the vendor for this product" msgstr "The price paid to the vendor for this product" -#: core/models.py:534 +#: engine/core/models.py:533 msgid "vendor purchase price" msgstr "Vendor purchase price" -#: core/models.py:538 +#: engine/core/models.py:537 msgid "available quantity of the product in stock" msgstr "Available quantity of the product in stock" -#: core/models.py:539 +#: engine/core/models.py:538 msgid "quantity in stock" msgstr "Quantity in stock" -#: core/models.py:543 +#: engine/core/models.py:542 msgid "vendor-assigned SKU for identifying the product" msgstr "Vendor-assigned SKU for identifying the product" -#: core/models.py:544 +#: engine/core/models.py:543 msgid "vendor sku" msgstr "Vendor's SKU" -#: core/models.py:550 +#: engine/core/models.py:549 msgid "digital file associated with this stock if applicable" msgstr "Digital file associated with this stock if applicable" -#: core/models.py:551 +#: engine/core/models.py:550 msgid "digital file" msgstr "Digital file" -#: core/models.py:560 +#: engine/core/models.py:553 +msgid "system attributes" +msgstr "System attributes" + +#: engine/core/models.py:560 msgid "stock entries" msgstr "Stock entries" -#: core/models.py:565 +#: engine/core/models.py:565 msgid "" "Represents a product with attributes such as category, brand, tags, digital " "status, name, description, part number, and slug. Provides related utility " @@ -1804,244 +1843,244 @@ msgstr "" "properties to improve performance. It is used to define and manipulate " "product data and its associated information within an application." -#: core/models.py:578 +#: engine/core/models.py:578 msgid "category this product belongs to" msgstr "Category this product belongs to" -#: core/models.py:587 +#: engine/core/models.py:587 msgid "optionally associate this product with a brand" msgstr "Optionally associate this product with a brand" -#: core/models.py:593 +#: engine/core/models.py:593 msgid "tags that help describe or group this product" msgstr "Tags that help describe or group this product" -#: core/models.py:598 +#: engine/core/models.py:598 msgid "indicates whether this product is digitally delivered" msgstr "Indicates whether this product is digitally delivered" -#: core/models.py:599 +#: engine/core/models.py:599 msgid "is product digital" msgstr "Is product digital" -#: core/models.py:605 +#: engine/core/models.py:605 msgid "provide a clear identifying name for the product" msgstr "Provide a clear identifying name for the product" -#: core/models.py:606 +#: engine/core/models.py:606 msgid "product name" msgstr "Product name" -#: core/models.py:612 core/models.py:867 +#: engine/core/models.py:612 engine/core/models.py:878 msgid "add a detailed description of the product" msgstr "Add a detailed description of the product" -#: core/models.py:613 +#: engine/core/models.py:613 msgid "product description" msgstr "Product description" -#: core/models.py:620 +#: engine/core/models.py:620 msgid "part number for this product" msgstr "Part number for this product" -#: core/models.py:621 +#: engine/core/models.py:621 msgid "part number" msgstr "Part number" -#: core/models.py:640 +#: engine/core/models.py:640 msgid "stock keeping unit for this product" msgstr "Stock Keeping Unit for this product" -#: core/models.py:702 +#: engine/core/models.py:713 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." -#: core/models.py:715 +#: engine/core/models.py:726 msgid "group of this attribute" msgstr "Group of this attribute" -#: core/models.py:721 +#: engine/core/models.py:732 msgid "string" msgstr "String" -#: core/models.py:722 +#: engine/core/models.py:733 msgid "integer" msgstr "Integer" -#: core/models.py:723 +#: engine/core/models.py:734 msgid "float" msgstr "Float" -#: core/models.py:724 +#: engine/core/models.py:735 msgid "boolean" msgstr "Boolean" -#: core/models.py:725 +#: engine/core/models.py:736 msgid "array" msgstr "Array" -#: core/models.py:726 +#: engine/core/models.py:737 msgid "object" msgstr "Object" -#: core/models.py:728 +#: engine/core/models.py:739 msgid "type of the attribute's value" msgstr "Type of the attribute's value" -#: core/models.py:729 +#: engine/core/models.py:740 msgid "value type" msgstr "Value type" -#: core/models.py:734 +#: engine/core/models.py:745 msgid "name of this attribute" msgstr "Name of this attribute" -#: core/models.py:735 +#: engine/core/models.py:746 msgid "attribute's name" msgstr "Attribute's name" -#: core/models.py:740 +#: engine/core/models.py:751 msgid "is filterable" msgstr "is filterable" -#: core/models.py:741 +#: engine/core/models.py:752 msgid "designates whether this attribute can be used for filtering or not" msgstr "designates whether this attribute can be used for filtering or not" -#: core/models.py:753 core/models.py:771 -#: core/templates/digital_order_delivered_email.html:134 +#: engine/core/models.py:764 engine/core/models.py:782 +#: engine/core/templates/digital_order_delivered_email.html:134 msgid "attribute" msgstr "Attribute" -#: core/models.py:759 +#: engine/core/models.py:770 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." -#: core/models.py:770 +#: engine/core/models.py:781 msgid "attribute of this value" msgstr "Attribute of this value" -#: core/models.py:778 +#: engine/core/models.py:789 msgid "the specific product associated with this attribute's value" msgstr "The specific product associated with this attribute's value" -#: core/models.py:784 +#: engine/core/models.py:795 msgid "the specific value for this attribute" msgstr "The specific value for this attribute" -#: core/models.py:797 +#: engine/core/models.py:808 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." -#: core/models.py:808 +#: engine/core/models.py:819 msgid "provide alternative text for the image for accessibility" msgstr "Provide alternative text for the image for accessibility" -#: core/models.py:809 +#: engine/core/models.py:820 msgid "image alt text" msgstr "Image alt text" -#: core/models.py:812 +#: engine/core/models.py:823 msgid "upload the image file for this product" msgstr "Upload the image file for this product" -#: core/models.py:813 core/models.py:837 +#: engine/core/models.py:824 engine/core/models.py:848 msgid "product image" msgstr "Product image" -#: core/models.py:818 +#: engine/core/models.py:829 msgid "determines the order in which images are displayed" msgstr "Determines the order in which images are displayed" -#: core/models.py:819 +#: engine/core/models.py:830 msgid "display priority" msgstr "Display priority" -#: core/models.py:824 +#: engine/core/models.py:835 msgid "the product that this image represents" msgstr "The product that this image represents" -#: core/models.py:838 +#: engine/core/models.py:849 msgid "product images" msgstr "Product images" -#: core/models.py:843 +#: engine/core/models.py:854 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." -#: core/models.py:855 +#: engine/core/models.py:866 msgid "percentage discount for the selected products" msgstr "Percentage discount for the selected products" -#: core/models.py:856 +#: engine/core/models.py:867 msgid "discount percentage" msgstr "Discount percentage" -#: core/models.py:861 +#: engine/core/models.py:872 msgid "provide a unique name for this promotion" msgstr "Provide a unique name for this promotion" -#: core/models.py:862 +#: engine/core/models.py:873 msgid "promotion name" msgstr "Promotion name" -#: core/models.py:868 +#: engine/core/models.py:879 msgid "promotion description" msgstr "Promotion description" -#: core/models.py:873 +#: engine/core/models.py:884 msgid "select which products are included in this promotion" msgstr "Select which products are included in this promotion" -#: core/models.py:874 +#: engine/core/models.py:885 msgid "included products" msgstr "Included products" -#: core/models.py:878 +#: engine/core/models.py:889 msgid "promotion" msgstr "Promotion" -#: core/models.py:889 +#: engine/core/models.py:900 msgid "" "Represents a user's wishlist for storing and managing desired products. The " "class provides functionality to manage a collection of products, supporting " @@ -2053,123 +2092,123 @@ msgstr "" "operations such as adding and removing products, as well as supporting " "operations for adding and removing multiple products at once." -#: core/models.py:901 +#: engine/core/models.py:912 msgid "products that the user has marked as wanted" msgstr "Products that the user has marked as wanted" -#: core/models.py:909 +#: engine/core/models.py:920 msgid "user who owns this wishlist" msgstr "User who owns this wishlist" -#: core/models.py:910 +#: engine/core/models.py:921 msgid "wishlist owner" msgstr "Wishlist's Owner" -#: core/models.py:918 +#: engine/core/models.py:929 msgid "wishlist" msgstr "Wishlist" -#: core/models.py:960 +#: engine/core/models.py:971 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." -#: core/models.py:973 +#: engine/core/models.py:984 msgid "documentary" msgstr "Documentary" -#: core/models.py:974 +#: engine/core/models.py:985 msgid "documentaries" msgstr "Documentaries" -#: core/models.py:984 +#: engine/core/models.py:995 msgid "unresolved" msgstr "Unresolved" -#: core/models.py:989 +#: engine/core/models.py:1000 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." -#: core/models.py:1004 +#: engine/core/models.py:1015 msgid "address line for the customer" msgstr "Address line for the customer" -#: core/models.py:1005 +#: engine/core/models.py:1016 msgid "address line" msgstr "Address line" -#: core/models.py:1007 +#: engine/core/models.py:1018 msgid "street" msgstr "Street" -#: core/models.py:1008 +#: engine/core/models.py:1019 msgid "district" msgstr "District" -#: core/models.py:1009 +#: engine/core/models.py:1020 msgid "city" msgstr "City" -#: core/models.py:1010 +#: engine/core/models.py:1021 msgid "region" msgstr "Region" -#: core/models.py:1011 +#: engine/core/models.py:1022 msgid "postal code" msgstr "Postal code" -#: core/models.py:1012 +#: engine/core/models.py:1023 msgid "country" msgstr "Country" -#: core/models.py:1019 +#: engine/core/models.py:1030 msgid "geolocation point: (longitude, latitude)" msgstr "Geolocation Point(Longitude, Latitude)" -#: core/models.py:1022 +#: engine/core/models.py:1033 msgid "full JSON response from geocoder for this address" msgstr "Full JSON response from geocoder for this address" -#: core/models.py:1027 +#: engine/core/models.py:1038 msgid "stored JSON response from the geocoding service" msgstr "Stored JSON response from the geocoding service" -#: core/models.py:1035 +#: engine/core/models.py:1046 msgid "address" msgstr "Address" -#: core/models.py:1036 +#: engine/core/models.py:1047 msgid "addresses" msgstr "Adresses" -#: core/models.py:1048 +#: engine/core/models.py:1059 msgid "" "Represents a promotional code that can be used for discounts, managing its " "validity, type of discount, and application. The PromoCode class stores " @@ -2185,71 +2224,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." -#: core/models.py:1062 +#: engine/core/models.py:1073 msgid "unique code used by a user to redeem a discount" msgstr "Unique code used by a user to redeem a discount" -#: core/models.py:1063 +#: engine/core/models.py:1074 msgid "promo code identifier" msgstr "Promo code identifier" -#: core/models.py:1070 +#: engine/core/models.py:1081 msgid "fixed discount amount applied if percent is not used" msgstr "Fixed discount amount applied if percent is not used" -#: core/models.py:1071 +#: engine/core/models.py:1082 msgid "fixed discount amount" msgstr "Fixed discount amount" -#: core/models.py:1077 +#: engine/core/models.py:1088 msgid "percentage discount applied if fixed amount is not used" msgstr "Percentage discount applied if fixed amount is not used" -#: core/models.py:1078 +#: engine/core/models.py:1089 msgid "percentage discount" msgstr "Percentage discount" -#: core/models.py:1083 +#: engine/core/models.py:1094 msgid "timestamp when the promocode expires" msgstr "Timestamp when the promocode expires" -#: core/models.py:1084 +#: engine/core/models.py:1095 msgid "end validity time" msgstr "End validity time" -#: core/models.py:1089 +#: engine/core/models.py:1100 msgid "timestamp from which this promocode is valid" msgstr "Timestamp from which this promocode is valid" -#: core/models.py:1090 +#: engine/core/models.py:1101 msgid "start validity time" msgstr "Start validity time" -#: core/models.py:1095 +#: engine/core/models.py:1106 msgid "timestamp when the promocode was used, blank if not used yet" msgstr "Timestamp when the promocode was used, blank if not used yet" -#: core/models.py:1096 +#: engine/core/models.py:1107 msgid "usage timestamp" msgstr "Usage timestamp" -#: core/models.py:1101 +#: engine/core/models.py:1112 msgid "user assigned to this promocode if applicable" msgstr "User assigned to this promocode if applicable" -#: core/models.py:1102 +#: engine/core/models.py:1113 msgid "assigned user" msgstr "Assigned user" -#: core/models.py:1109 +#: engine/core/models.py:1120 msgid "promo code" msgstr "Promo code" -#: core/models.py:1110 +#: engine/core/models.py:1121 msgid "promo codes" msgstr "Promo codes" -#: core/models.py:1125 +#: engine/core/models.py:1136 msgid "" "only one type of discount should be defined (amount or percent), but not " "both or neither." @@ -2257,160 +2296,161 @@ msgstr "" "Only one type of discount should be defined (amount or percent), but not " "both or neither." -#: core/models.py:1146 +#: engine/core/models.py:1157 msgid "promocode already used" msgstr "Promocode has been used already" -#: core/models.py:1162 +#: engine/core/models.py:1173 #, python-brace-format msgid "invalid discount type for promocode {self.uuid}" msgstr "Invalid discount type for promocode {self.uuid}!" -#: core/models.py:1171 +#: engine/core/models.py:1182 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." -#: core/models.py:1188 +#: engine/core/models.py:1199 msgid "the billing address used for this order" msgstr "The billing address used for this order" -#: core/models.py:1196 +#: engine/core/models.py:1207 msgid "optional promo code applied to this order" msgstr "Optional promo code applied to this order" -#: core/models.py:1197 +#: engine/core/models.py:1208 msgid "applied promo code" msgstr "Applied promo code" -#: core/models.py:1205 +#: engine/core/models.py:1216 msgid "the shipping address used for this order" msgstr "The shipping address used for this order" -#: core/models.py:1206 +#: engine/core/models.py:1217 msgid "shipping address" msgstr "Shipping address" -#: core/models.py:1212 +#: engine/core/models.py:1223 msgid "current status of the order in its lifecycle" msgstr "Current status of the order in its lifecycle" -#: core/models.py:1213 +#: engine/core/models.py:1224 msgid "order status" msgstr "Order status" -#: core/models.py:1218 core/models.py:1695 +#: engine/core/models.py:1229 engine/core/models.py:1755 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" -#: core/models.py:1224 +#: engine/core/models.py:1235 msgid "json representation of order attributes for this order" msgstr "JSON representation of order attributes for this order" -#: core/models.py:1230 +#: engine/core/models.py:1241 msgid "the user who placed the order" msgstr "The user who placed the order" -#: core/models.py:1231 +#: engine/core/models.py:1242 msgid "user" msgstr "User" -#: core/models.py:1237 +#: engine/core/models.py:1248 msgid "the timestamp when the order was finalized" msgstr "The timestamp when the order was finalized" -#: core/models.py:1238 +#: engine/core/models.py:1249 msgid "buy time" msgstr "Buy time" -#: core/models.py:1245 +#: engine/core/models.py:1256 msgid "a human-readable identifier for the order" msgstr "A human-readable identifier for the order" -#: core/models.py:1246 +#: engine/core/models.py:1257 msgid "human readable id" msgstr "human-readable ID" -#: core/models.py:1252 +#: engine/core/models.py:1263 msgid "order" msgstr "Order" -#: core/models.py:1294 +#: engine/core/models.py:1305 msgid "a user must have only one pending order at a time" msgstr "A user must have only one pending order at a time!" -#: core/models.py:1326 +#: engine/core/models.py:1337 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" -#: core/models.py:1331 +#: engine/core/models.py:1342 msgid "you cannot add inactive products to order" msgstr "You cannot add inactive products to order" -#: core/models.py:1348 +#: engine/core/models.py:1359 msgid "you cannot add more products than available in stock" msgstr "You cannot add more products than available in stock" -#: core/models.py:1370 core/models.py:1395 core/models.py:1403 +#: engine/core/models.py:1381 engine/core/models.py:1406 +#: engine/core/models.py:1414 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" -#: core/models.py:1391 +#: engine/core/models.py:1402 #, python-brace-format msgid "{name} does not exist with query <{query}>" msgstr "{name} does not exist with query <{query}>!" -#: core/models.py:1423 +#: engine/core/models.py:1434 msgid "promocode does not exist" msgstr "Promocode does not exist" -#: core/models.py:1429 +#: engine/core/models.py:1440 msgid "you can only buy physical products with shipping address specified" msgstr "You can only buy physical products with shipping address specified!" -#: core/models.py:1448 +#: engine/core/models.py:1459 msgid "address does not exist" msgstr "Address does not exist" -#: core/models.py:1469 core/models.py:1538 +#: engine/core/models.py:1480 engine/core/models.py:1549 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." -#: core/models.py:1472 core/models.py:1534 +#: engine/core/models.py:1483 engine/core/models.py:1545 msgid "invalid force value" msgstr "Invalid force value" -#: core/models.py:1478 core/models.py:1541 +#: engine/core/models.py:1489 engine/core/models.py:1552 msgid "you cannot purchase an empty order!" msgstr "You cannot purchase an empty order!" -#: core/models.py:1497 +#: engine/core/models.py:1508 msgid "you cannot buy an order without a user" msgstr "You cannot buy an order without a user!" -#: core/models.py:1511 +#: engine/core/models.py:1522 msgid "a user without a balance cannot buy with balance" msgstr "A user without a balance cannot buy with balance!" -#: core/models.py:1516 +#: engine/core/models.py:1527 msgid "insufficient funds to complete the order" msgstr "Insufficient funds to complete the order" -#: core/models.py:1550 +#: engine/core/models.py:1561 msgid "" "you cannot buy without registration, please provide the following " "information: customer name, customer email, customer phone number" @@ -2418,14 +2458,53 @@ msgstr "" "you cannot buy without registration, please provide the following " "information: customer name, customer email, customer phone number" -#: core/models.py:1559 +#: engine/core/models.py:1570 #, python-brace-format msgid "" "invalid payment method: {payment_method} from {available_payment_methods}" msgstr "" "Invalid payment method: {payment_method} from {available_payment_methods}!" -#: core/models.py:1668 +#: engine/core/models.py:1685 +msgid "" +"Manages user feedback for products. This class is designed to capture and " +"store user feedback for specific products that they have purchased. It " +"contains attributes to store user comments, a reference to the related " +"product in the order, and a user-assigned rating. The class uses database " +"fields to effectively model and manage feedback data." +msgstr "" +"Manages user feedback for products. This class is designed to capture and " +"store user feedback for specific products that they have purchased. It " +"contains attributes to store user comments, a reference to the related " +"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:1697 +msgid "user-provided comments about their experience with the product" +msgstr "User-provided comments about their experience with the product" + +#: engine/core/models.py:1698 +msgid "feedback comments" +msgstr "Feedback comments" + +#: engine/core/models.py:1705 +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:1706 +msgid "related order product" +msgstr "Related order product" + +#: engine/core/models.py:1711 +msgid "user-assigned rating for the product" +msgstr "User-assigned rating for the product" + +#: engine/core/models.py:1712 +msgid "product rating" +msgstr "Product rating" + +#: engine/core/models.py:1728 msgid "" "Represents products associated with orders and their attributes. The " "OrderProduct model maintains information about a product that is part of an " @@ -2447,245 +2526,202 @@ msgstr "" "download URL for digital products. The model integrates with the Order and " "Product models and stores a reference to them." -#: core/models.py:1683 +#: engine/core/models.py:1743 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" -#: core/models.py:1684 +#: engine/core/models.py:1744 msgid "purchase price at order time" msgstr "Purchase price at order time" -#: core/models.py:1689 +#: engine/core/models.py:1749 msgid "internal comments for admins about this ordered product" msgstr "Internal comments for admins about this ordered product" -#: core/models.py:1690 +#: engine/core/models.py:1750 msgid "internal comments" msgstr "Internal comments" -#: core/models.py:1696 +#: engine/core/models.py:1756 msgid "user notifications" msgstr "User notifications" -#: core/models.py:1701 +#: engine/core/models.py:1761 msgid "json representation of this item's attributes" msgstr "JSON representation of this item's attributes" -#: core/models.py:1702 +#: engine/core/models.py:1762 msgid "ordered product attributes" msgstr "Ordered product attributes" -#: core/models.py:1707 +#: engine/core/models.py:1767 msgid "reference to the parent order that contains this product" msgstr "Reference to the parent order that contains this product" -#: core/models.py:1708 +#: engine/core/models.py:1768 msgid "parent order" msgstr "Parent order" -#: core/models.py:1717 +#: engine/core/models.py:1777 msgid "the specific product associated with this order line" msgstr "The specific product associated with this order line" -#: core/models.py:1724 +#: engine/core/models.py:1784 msgid "quantity of this specific product in the order" msgstr "Quantity of this specific product in the order" -#: core/models.py:1725 +#: engine/core/models.py:1785 msgid "product quantity" msgstr "Product quantity" -#: core/models.py:1732 +#: engine/core/models.py:1792 msgid "current status of this product in the order" msgstr "Current status of this product in the order" -#: core/models.py:1733 +#: engine/core/models.py:1793 msgid "product line status" msgstr "Product line status" -#: core/models.py:1798 +#: engine/core/models.py:1858 msgid "order product must have an order" msgstr "Orderproduct must have an associated order!" -#: core/models.py:1800 +#: engine/core/models.py:1860 #, python-brace-format msgid "wrong action specified for feedback: {action}" msgstr "Wrong action specified for feedback: {action}!" -#: core/models.py:1814 +#: engine/core/models.py:1874 msgid "you cannot feedback an order which is not received" msgstr "you cannot feedback an order which is not received" -#: core/models.py:1820 +#: engine/core/models.py:1880 msgid "name" msgstr "Name" -#: core/models.py:1821 +#: engine/core/models.py:1881 msgid "URL of the integration" msgstr "URL of the integration" -#: core/models.py:1822 +#: engine/core/models.py:1882 msgid "authentication credentials" msgstr "Authentication credentials" -#: core/models.py:1844 +#: engine/core/models.py:1904 msgid "you can only have one default CRM provider" msgstr "You can only have one default CRM provider" -#: core/models.py:1854 +#: engine/core/models.py:1914 msgid "CRM" msgstr "CRM" -#: core/models.py:1855 +#: engine/core/models.py:1915 msgid "CRMs" msgstr "CRMs" -#: core/models.py:1867 +#: engine/core/models.py:1927 msgid "order CRM link" msgstr "Order's CRM link" -#: core/models.py:1868 +#: engine/core/models.py:1928 msgid "orders CRM links" msgstr "Orders' CRM links" -#: core/models.py:1873 +#: engine/core/models.py:1933 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." -#: core/models.py:1887 +#: engine/core/models.py:1947 msgid "download" msgstr "Download" -#: core/models.py:1888 +#: engine/core/models.py:1948 msgid "downloads" msgstr "Downloads" -#: core/models.py:1902 -msgid "" -"Manages user feedback for products. This class is designed to capture and " -"store user feedback for specific products that they have purchased. It " -"contains attributes to store user comments, a reference to the related " -"product in the order, and a user-assigned rating. The class uses database " -"fields to effectively model and manage feedback data." -msgstr "" -"Manages user feedback for products. This class is designed to capture and " -"store user feedback for specific products that they have purchased. It " -"contains attributes to store user comments, a reference to the related " -"product in the order, and a user-assigned rating. The class uses database " -"fields to effectively model and manage feedback data." - -#: core/models.py:1914 -msgid "user-provided comments about their experience with the product" -msgstr "User-provided comments about their experience with the product" - -#: core/models.py:1915 -msgid "feedback comments" -msgstr "Feedback comments" - -#: core/models.py:1922 -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" - -#: core/models.py:1923 -msgid "related order product" -msgstr "Related order product" - -#: core/models.py:1928 -msgid "user-assigned rating for the product" -msgstr "User-assigned rating for the product" - -#: core/models.py:1929 -msgid "product rating" -msgstr "Product rating" - -#: core/serializers/utility.py:89 +#: engine/core/serializers/utility.py:89 msgid "" "you must provide a comment, rating, and order product uuid to add feedback." msgstr "" "you must provide a comment, rating, and order product uuid to add feedback." -#: core/signals.py:73 -msgid "error during promocode creation: {e!s}" -msgstr "Error during promocode creation: {e!s}" - -#: core/sitemaps.py:25 +#: engine/core/sitemaps.py:25 msgid "Home" msgstr "Home" -#: core/sitemaps.py:30 +#: engine/core/sitemaps.py:30 msgid "Contact Us" msgstr "Contact Us" -#: core/sitemaps.py:35 +#: engine/core/sitemaps.py:35 msgid "About Us" msgstr "About Us" -#: core/templates/digital_order_created_email.html:7 -#: core/templates/digital_order_created_email.html:100 -#: core/templates/digital_order_delivered_email.html:6 -#: core/templates/shipped_order_created_email.html:7 -#: core/templates/shipped_order_created_email.html:99 -#: core/templates/shipped_order_delivered_email.html:7 -#: core/templates/shipped_order_delivered_email.html:99 +#: engine/core/templates/digital_order_created_email.html:7 +#: engine/core/templates/digital_order_created_email.html:100 +#: engine/core/templates/digital_order_delivered_email.html:6 +#: engine/core/templates/shipped_order_created_email.html:7 +#: engine/core/templates/shipped_order_created_email.html:99 +#: engine/core/templates/shipped_order_delivered_email.html:7 +#: engine/core/templates/shipped_order_delivered_email.html:99 msgid "order confirmation" msgstr "Order Confirmation" -#: core/templates/digital_order_created_email.html:95 -#: core/templates/digital_order_delivered_email.html:94 -#: core/templates/promocode_granted_email.html:94 -#: core/templates/shipped_order_created_email.html:94 -#: core/templates/shipped_order_delivered_email.html:94 +#: engine/core/templates/digital_order_created_email.html:95 +#: engine/core/templates/digital_order_delivered_email.html:94 +#: engine/core/templates/promocode_granted_email.html:94 +#: engine/core/templates/shipped_order_created_email.html:94 +#: engine/core/templates/shipped_order_delivered_email.html:94 msgid "logo" msgstr "Logo" -#: core/templates/digital_order_created_email.html:101 -#: core/templates/shipped_order_created_email.html:100 -#: core/templates/shipped_order_delivered_email.html:100 +#: engine/core/templates/digital_order_created_email.html:101 +#: engine/core/templates/shipped_order_created_email.html:100 +#: engine/core/templates/shipped_order_delivered_email.html:100 #, python-format msgid "hello %(order.user.first_name)s," msgstr "Hello %(order.user.first_name)s," -#: core/templates/digital_order_created_email.html:102 +#: engine/core/templates/digital_order_created_email.html:102 #, 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:" -#: core/templates/digital_order_created_email.html:112 -#: core/templates/digital_order_delivered_email.html:110 -#: core/templates/shipped_order_created_email.html:110 -#: core/templates/shipped_order_delivered_email.html:110 +#: engine/core/templates/digital_order_created_email.html:112 +#: engine/core/templates/digital_order_delivered_email.html:110 +#: engine/core/templates/shipped_order_created_email.html:110 +#: engine/core/templates/shipped_order_delivered_email.html:110 msgid "total" msgstr "Total" -#: core/templates/digital_order_created_email.html:125 -#: core/templates/digital_order_delivered_email.html:157 -#: core/templates/shipped_order_created_email.html:127 -#: core/templates/shipped_order_delivered_email.html:127 +#: engine/core/templates/digital_order_created_email.html:125 +#: engine/core/templates/digital_order_delivered_email.html:157 +#: engine/core/templates/shipped_order_created_email.html:127 +#: engine/core/templates/shipped_order_delivered_email.html:127 msgid "total price" msgstr "Total Price" -#: core/templates/digital_order_created_email.html:131 -#: core/templates/shipped_order_created_email.html:140 -#: core/templates/shipped_order_delivered_email.html:140 +#: engine/core/templates/digital_order_created_email.html:131 +#: engine/core/templates/shipped_order_created_email.html:140 +#: engine/core/templates/shipped_order_delivered_email.html:140 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" @@ -2694,28 +2730,28 @@ msgstr "" "If you have any questions, feel free to contact our support at " "%(config.EMAIL_HOST_USER)s." -#: core/templates/digital_order_created_email.html:133 +#: engine/core/templates/digital_order_created_email.html:133 #, python-format msgid "best regards,
the %(config.PROJECT_NAME)s team" msgstr "Best regards,
the %(config.PROJECT_NAME)s team" -#: core/templates/digital_order_created_email.html:139 -#: core/templates/digital_order_delivered_email.html:171 -#: core/templates/promocode_granted_email.html:114 +#: engine/core/templates/digital_order_created_email.html:139 +#: engine/core/templates/digital_order_delivered_email.html:171 +#: engine/core/templates/promocode_granted_email.html:114 msgid "all rights reserved" msgstr "All rights reserved" -#: core/templates/digital_order_delivered_email.html:99 +#: engine/core/templates/digital_order_delivered_email.html:99 msgid "order delivered" msgstr "Order Delivered" -#: core/templates/digital_order_delivered_email.html:100 -#: core/templates/promocode_granted_email.html:100 +#: engine/core/templates/digital_order_delivered_email.html:100 +#: engine/core/templates/promocode_granted_email.html:100 #, python-format msgid "hello %(user_first_name)s," msgstr "Hello %(user_first_name)s," -#: core/templates/digital_order_delivered_email.html:101 +#: engine/core/templates/digital_order_delivered_email.html:101 #, python-format msgid "" "we have successfully processed your order №%(order_uuid)s! below are the\n" @@ -2724,7 +2760,7 @@ msgstr "" "We have successfully processed your order №%(order_uuid)s! Below are the " "details of your order:" -#: core/templates/digital_order_delivered_email.html:128 +#: engine/core/templates/digital_order_delivered_email.html:128 msgid "" "additional\n" " information" @@ -2732,13 +2768,13 @@ msgstr "" "additional\n" " information" -#: core/templates/digital_order_delivered_email.html:137 -#: core/templates/json_table_widget.html:6 +#: engine/core/templates/digital_order_delivered_email.html:137 +#: engine/core/templates/json_table_widget.html:6 msgid "value" msgstr "Value" -#: core/templates/digital_order_delivered_email.html:163 -#: core/templates/promocode_granted_email.html:106 +#: engine/core/templates/digital_order_delivered_email.html:163 +#: engine/core/templates/promocode_granted_email.html:106 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" @@ -2747,26 +2783,26 @@ msgstr "" "If you have any questions, feel free to contact our support at " "%(contact_email)s." -#: core/templates/digital_order_delivered_email.html:165 -#: core/templates/promocode_granted_email.html:108 +#: engine/core/templates/digital_order_delivered_email.html:165 +#: engine/core/templates/promocode_granted_email.html:108 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "Best regards,
the %(project_name)s team" -#: core/templates/json_table_widget.html:5 +#: engine/core/templates/json_table_widget.html:5 msgid "key" msgstr "Key" -#: core/templates/json_table_widget.html:40 +#: engine/core/templates/json_table_widget.html:40 msgid "Add Row" msgstr "Add Row" -#: core/templates/promocode_granted_email.html:6 -#: core/templates/promocode_granted_email.html:99 +#: engine/core/templates/promocode_granted_email.html:6 +#: engine/core/templates/promocode_granted_email.html:99 msgid "promocode granted" msgstr "Promocode granted" -#: core/templates/promocode_granted_email.html:101 +#: engine/core/templates/promocode_granted_email.html:101 msgid "" "Thank you for staying with us! We have granted you with a promocode\n" " for " @@ -2774,33 +2810,34 @@ msgstr "" "Thank you for staying with us! We have granted you with a promocode\n" " for" -#: core/templates/shipped_order_created_email.html:101 -#: core/templates/shipped_order_delivered_email.html:101 +#: 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:" -#: core/templates/shipped_order_created_email.html:123 -#: core/templates/shipped_order_delivered_email.html:123 +#: engine/core/templates/shipped_order_created_email.html:123 +#: engine/core/templates/shipped_order_delivered_email.html:123 msgid "shipping price" msgstr "Shipping price" -#: core/templates/shipped_order_created_email.html:133 -#: core/templates/shipped_order_delivered_email.html:133 +#: engine/core/templates/shipped_order_created_email.html:133 +#: engine/core/templates/shipped_order_delivered_email.html:133 msgid "your order will be delivered to the following address:" msgstr "Your order will be delivered to the following address:" -#: core/templates/shipped_order_created_email.html:142 -#: core/templates/shipped_order_delivered_email.html:142 +#: engine/core/templates/shipped_order_created_email.html:142 +#: engine/core/templates/shipped_order_delivered_email.html:142 #, python-format msgid "best regards,
The %(config.PROJECT_NAME)s team" msgstr "Best regards,
The %(config.PROJECT_NAME)s team" -#: core/templates/shipped_order_created_email.html:147 -#: core/templates/shipped_order_delivered_email.html:147 +#: engine/core/templates/shipped_order_created_email.html:147 +#: engine/core/templates/shipped_order_delivered_email.html:147 msgid "" "all rights\n" " reserved" @@ -2808,49 +2845,49 @@ msgstr "" "All rights\n" " reserved" -#: core/utils/caching.py:44 +#: engine/core/utils/caching.py:44 msgid "both data and timeout are required" msgstr "Both data and timeout are required" -#: core/utils/caching.py:46 +#: engine/core/utils/caching.py:46 msgid "invalid timeout value, it must be between 0 and 216000 seconds" msgstr "Invalid timeout value, it must be between 0 and 216000 seconds" -#: core/utils/emailing.py:27 +#: engine/core/utils/emailing.py:27 #, python-brace-format msgid "{config.PROJECT_NAME} | contact us initiated" msgstr "{config.PROJECT_NAME} | contact us initiated" -#: core/utils/emailing.py:73 +#: engine/core/utils/emailing.py:73 #, python-brace-format msgid "{config.PROJECT_NAME} | order confirmation" msgstr "{config.PROJECT_NAME} | Order Confirmation" -#: core/utils/emailing.py:105 +#: engine/core/utils/emailing.py:105 #, python-brace-format msgid "{config.PROJECT_NAME} | order delivered" msgstr "{config.PROJECT_NAME} | Order Delivered" -#: core/utils/emailing.py:188 +#: engine/core/utils/emailing.py:188 #, python-brace-format msgid "{config.PROJECT_NAME} | promocode granted" msgstr "{config.PROJECT_NAME} | promocode granted" -#: core/utils/messages.py:3 +#: engine/core/utils/messages.py:3 msgid "you do not have permission to perform this action." msgstr "You do not have permission to perform this action." -#: core/utils/nominatim.py:8 +#: engine/core/utils/nominatim.py:8 msgid "NOMINATIM_URL must be configured." msgstr "NOMINATIM_URL parameter must be configured!" -#: core/validators.py:16 +#: engine/core/validators.py:16 #, python-brace-format msgid "image dimensions should not exceed w{max_width} x h{max_height} pixels" msgstr "" "Image dimensions should not exceed w{max_width} x h{max_height} pixels!" -#: core/views.py:72 +#: engine/core/views.py:71 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." @@ -2858,7 +2895,7 @@ msgstr "" "Handles the request for the sitemap index and returns an XML response. It " "ensures the response includes the appropriate content type header for XML." -#: core/views.py:87 +#: engine/core/views.py:86 msgid "" "Handles the detailed view response for a sitemap. This function processes " "the request, fetches the appropriate sitemap detail response, and sets the " @@ -2868,17 +2905,17 @@ msgstr "" "the request, fetches the appropriate sitemap detail response, and sets the " "Content-Type header for XML." -#: core/views.py:116 +#: engine/core/views.py:115 msgid "" "Returns a list of supported languages and their corresponding information." msgstr "" "Returns a list of supported languages and their corresponding information." -#: core/views.py:148 +#: engine/core/views.py:147 msgid "Returns the parameters of the website as a JSON object." msgstr "Returns the parameters of the website as a JSON object." -#: core/views.py:167 +#: engine/core/views.py:166 msgid "" "Handles cache operations such as reading and setting cache data with a " "specified key and timeout." @@ -2886,11 +2923,11 @@ msgstr "" "Handles cache operations such as reading and setting cache data with a " "specified key and timeout." -#: core/views.py:194 +#: engine/core/views.py:193 msgid "Handles `contact us` form submissions." msgstr "Handles `contact us` form submissions." -#: core/views.py:215 +#: engine/core/views.py:214 msgid "" "Handles requests for processing and validating URLs from incoming POST " "requests." @@ -2898,65 +2935,73 @@ msgstr "" "Handles requests for processing and validating URLs from incoming POST " "requests." -#: core/views.py:255 +#: engine/core/views.py:254 msgid "Handles global search queries." msgstr "Handles global search queries." -#: core/views.py:270 +#: engine/core/views.py:269 msgid "Handles the logic of buying as a business without registration." msgstr "Handles the logic of buying as a business without registration." -#: core/views.py:306 +#: engine/core/views.py:305 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." -#: core/views.py:316 +#: engine/core/views.py:315 msgid "order_product_uuid is required" msgstr "order_product_uuid is required" -#: core/views.py:322 +#: engine/core/views.py:321 msgid "you can only download the digital asset once" msgstr "You can only download the digital asset once" -#: core/views.py:325 +#: engine/core/views.py:324 msgid "the order must be paid before downloading the digital asset" msgstr "the order must be paid before downloading the digital asset" -#: core/views.py:331 +#: engine/core/views.py:330 msgid "the order product does not have a product" msgstr "The order product does not have a product" -#: core/views.py:369 +#: engine/core/views.py:368 msgid "favicon not found" msgstr "favicon not found" -#: core/views.py:374 +#: engine/core/views.py:373 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." -#: core/views.py:386 +#: engine/core/views.py:385 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." -#: core/views.py:399 +#: engine/core/views.py:398 msgid "Returns current version of the eVibes. " msgstr "Returns current version of the eVibes." -#: core/viewsets.py:137 +#: engine/core/viewsets.py:137 msgid "" "Defines a viewset for managing Evibes-related operations. The EvibesViewSet " "class inherits from ModelViewSet and provides functionality for handling " @@ -2970,21 +3015,19 @@ msgstr "" "serializer classes based on the current action, customizable permissions, " "and rendering formats." -#: core/viewsets.py:157 +#: engine/core/viewsets.py:157 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." -#: core/viewsets.py:176 +#: engine/core/viewsets.py:176 msgid "" "Handles operations related to Attribute objects within the application. " "Provides a set of API endpoints to interact with Attribute data. This class " @@ -3000,21 +3043,21 @@ msgstr "" "specific fields or retrieving detailed versus simplified information " "depending on the request." -#: core/viewsets.py:195 +#: engine/core/viewsets.py:195 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." -#: core/viewsets.py:214 +#: engine/core/viewsets.py:214 msgid "" "Manages views for Category-related operations. The CategoryViewSet class is " "responsible for handling operations related to the Category model in the " @@ -3028,7 +3071,7 @@ msgstr "" "The viewset also enforces permissions to ensure that only authorized users " "can access specific data." -#: core/viewsets.py:326 +#: engine/core/viewsets.py:326 msgid "" "Represents a viewset for managing Brand instances. This class provides " "functionality for querying, filtering, and serializing Brand objects. It " @@ -3040,7 +3083,7 @@ msgstr "" "uses Django's ViewSet framework to simplify the implementation of API " "endpoints for Brand objects." -#: core/viewsets.py:438 +#: engine/core/viewsets.py:438 msgid "" "Manages operations related to the `Product` model in the system. This class " "provides a viewset for managing products, including their filtering, " @@ -3058,7 +3101,7 @@ msgstr "" "product details, applying permissions, and accessing related feedback of a " "product." -#: core/viewsets.py:568 +#: engine/core/viewsets.py:568 msgid "" "Represents a viewset for managing Vendor objects. This viewset allows " "fetching, filtering, and serializing Vendor data. It defines the queryset, " @@ -3072,59 +3115,59 @@ msgstr "" "actions. The purpose of this class is to provide streamlined access to " "Vendor-related resources through the Django REST framework." -#: core/viewsets.py:588 +#: engine/core/viewsets.py:588 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 `EvibesViewSet` 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 `EvibesViewSet` and makes " "use of Django's filtering system for querying data." -#: core/viewsets.py:615 +#: engine/core/viewsets.py:615 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." -#: core/viewsets.py:813 +#: engine/core/viewsets.py:813 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" -#: core/viewsets.py:867 +#: engine/core/viewsets.py:867 msgid "Manages operations related to Product images in the application. " msgstr "Manages operations related to Product images in the application." -#: core/viewsets.py:880 +#: engine/core/viewsets.py:880 msgid "" "Manages the retrieval and handling of PromoCode instances through various " "API actions." @@ -3132,33 +3175,33 @@ msgstr "" "Manages the retrieval and handling of PromoCode instances through various " "API actions." -#: core/viewsets.py:902 +#: engine/core/viewsets.py:902 msgid "Represents a view set for managing promotions. " msgstr "Represents a view set for managing promotions." -#: core/viewsets.py:915 +#: engine/core/viewsets.py:915 msgid "Handles operations related to Stock data in the system." msgstr "Handles operations related to Stock data in the system." -#: core/viewsets.py:929 +#: engine/core/viewsets.py:929 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." -#: core/viewsets.py:1044 +#: engine/core/viewsets.py:1044 msgid "" "This class provides viewset functionality for managing `Address` objects. " "The AddressViewSet class enables CRUD operations, filtering, and custom " @@ -3172,12 +3215,12 @@ msgstr "" "different HTTP methods, serializer overrides, and permission handling based " "on the request context." -#: core/viewsets.py:1111 +#: engine/core/viewsets.py:1111 #, python-brace-format msgid "Geocoding error: {e}" msgstr "Geocoding error: {e}" -#: core/viewsets.py:1119 +#: engine/core/viewsets.py:1119 msgid "" "Handles operations related to Product Tags within the application. This " "class provides functionality for retrieving, filtering, and serializing " diff --git a/engine/core/locale/en_US/LC_MESSAGES/django.mo b/engine/core/locale/en_US/LC_MESSAGES/django.mo new file mode 100644 index 00000000..b5379a1e Binary files /dev/null and b/engine/core/locale/en_US/LC_MESSAGES/django.mo differ diff --git a/core/locale/en_US/LC_MESSAGES/django.po b/engine/core/locale/en_US/LC_MESSAGES/django.po similarity index 67% rename from core/locale/en_US/LC_MESSAGES/django.po rename to engine/core/locale/en_US/LC_MESSAGES/django.po index a774b3e1..5f2c0195 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,178 +13,179 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: core/abstract.py:12 +#: engine/core/abstract.py:12 msgid "unique id" msgstr "Unique ID" -#: core/abstract.py:13 +#: engine/core/abstract.py:13 msgid "unique id is used to surely identify any database object" msgstr "Unique ID is used to surely identify any database object" -#: core/abstract.py:20 +#: engine/core/abstract.py:20 msgid "is active" msgstr "Is Active" -#: core/abstract.py:21 +#: engine/core/abstract.py:21 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" -#: core/abstract.py:23 core/choices.py:18 +#: engine/core/abstract.py:23 engine/core/choices.py:18 msgid "created" msgstr "Created" -#: core/abstract.py:23 +#: engine/core/abstract.py:23 msgid "when the object first appeared on the database" msgstr "When the object first appeared on the database" -#: core/abstract.py:24 +#: engine/core/abstract.py:24 msgid "modified" msgstr "Modified" -#: core/abstract.py:24 +#: engine/core/abstract.py:24 msgid "when the object was last modified" msgstr "When the object was last edited" -#: core/admin.py:68 +#: engine/core/admin.py:68 msgid "translations" msgstr "Translations" -#: core/admin.py:72 +#: engine/core/admin.py:72 msgid "general" msgstr "General" -#: core/admin.py:74 +#: engine/core/admin.py:74 msgid "relations" msgstr "Relations" -#: core/admin.py:76 +#: engine/core/admin.py:76 msgid "additional info" msgstr "additional info" -#: core/admin.py:94 +#: engine/core/admin.py:94 msgid "metadata" msgstr "Metadata" -#: core/admin.py:101 +#: engine/core/admin.py:101 msgid "timestamps" msgstr "Timestamps" -#: core/admin.py:116 +#: engine/core/admin.py:116 #, python-format msgid "activate selected %(verbose_name_plural)s" msgstr "Activate selected %(verbose_name_plural)s" -#: core/admin.py:121 +#: engine/core/admin.py:121 msgid "selected items have been activated." msgstr "Selected items have been activated!" -#: core/admin.py:127 +#: engine/core/admin.py:127 #, python-format msgid "deactivate selected %(verbose_name_plural)s" msgstr "Deactivate selected %(verbose_name_plural)s" -#: core/admin.py:132 +#: engine/core/admin.py:132 msgid "selected items have been deactivated." msgstr "Selected items have been deactivated!" -#: core/admin.py:144 core/graphene/object_types.py:582 -#: core/graphene/object_types.py:589 core/models.py:783 core/models.py:791 +#: engine/core/admin.py:144 engine/core/graphene/object_types.py:586 +#: engine/core/graphene/object_types.py:593 engine/core/models.py:794 +#: engine/core/models.py:802 msgid "attribute value" msgstr "Attribute Value" -#: core/admin.py:145 core/graphene/object_types.py:75 core/models.py:792 +#: engine/core/admin.py:145 engine/core/graphene/object_types.py:75 +#: engine/core/models.py:803 msgid "attribute values" msgstr "Attribute Values" -#: core/admin.py:156 +#: engine/core/admin.py:156 msgid "image" msgstr "Image" -#: core/admin.py:157 core/graphene/object_types.py:474 +#: engine/core/admin.py:157 engine/core/graphene/object_types.py:474 msgid "images" msgstr "Images" -#: core/admin.py:168 core/models.py:559 +#: engine/core/admin.py:169 engine/core/models.py:559 msgid "stock" msgstr "Stock" -#: core/admin.py:169 core/graphene/object_types.py:636 +#: engine/core/admin.py:170 engine/core/graphene/object_types.py:640 msgid "stocks" msgstr "Stocks" -#: core/admin.py:182 core/models.py:1744 +#: engine/core/admin.py:183 engine/core/models.py:1804 msgid "order product" msgstr "Order Product" -#: core/admin.py:183 core/graphene/object_types.py:389 core/models.py:1745 +#: engine/core/admin.py:184 engine/core/graphene/object_types.py:389 +#: engine/core/models.py:1805 msgid "order products" msgstr "Order Products" -#: core/admin.py:196 core/admin.py:197 +#: engine/core/admin.py:197 engine/core/admin.py:198 msgid "children" msgstr "Children" -#: core/admin.py:965 +#: engine/core/admin.py:969 msgid "Config" msgstr "Config" -#: core/apps.py:8 +#: engine/core/apps.py:8 msgid "core" msgstr "Core" -#: core/choices.py:4 core/choices.py:20 +#: engine/core/choices.py:4 engine/core/choices.py:20 msgid "finished" msgstr "Finished" -#: core/choices.py:5 core/choices.py:19 +#: engine/core/choices.py:5 engine/core/choices.py:19 msgid "delivering" msgstr "Delivering" -#: core/choices.py:6 +#: engine/core/choices.py:6 msgid "delivered" msgstr "Delivered" -#: core/choices.py:7 +#: engine/core/choices.py:7 msgid "canceled" msgstr "Canceled" -#: core/choices.py:8 core/choices.py:16 core/choices.py:24 +#: engine/core/choices.py:8 engine/core/choices.py:16 engine/core/choices.py:24 msgid "failed" msgstr "Failed" -#: core/choices.py:9 core/choices.py:15 +#: engine/core/choices.py:9 engine/core/choices.py:15 msgid "pending" msgstr "Pending" -#: core/choices.py:10 +#: engine/core/choices.py:10 msgid "accepted" msgstr "Accepted" -#: core/choices.py:11 +#: engine/core/choices.py:11 msgid "money returned" msgstr "Money Returned" -#: core/choices.py:17 +#: engine/core/choices.py:17 msgid "payment" msgstr "Payment" -#: core/choices.py:21 +#: engine/core/choices.py:21 msgid "momental" msgstr "Momental" -#: core/choices.py:24 +#: engine/core/choices.py:24 msgid "successful" msgstr "Successful" -#: core/docs/drf/views.py:17 core/graphene/mutations.py:38 +#: engine/core/docs/drf/views.py:17 engine/core/graphene/mutations.py:38 msgid "cache I/O" msgstr "Cache I/O" -#: core/docs/drf/views.py:19 +#: engine/core/docs/drf/views.py:19 msgid "" "apply only a key to read permitted data from cache.\n" "apply key, data and timeout with authentication to write data to cache." @@ -192,31 +193,31 @@ msgstr "" "Apply only a key to read permitted data from cache.\n" "Apply key, data and timeout with authentication to write data to cache." -#: core/docs/drf/views.py:32 +#: engine/core/docs/drf/views.py:32 msgid "get a list of supported languages" msgstr "Get a list of supported languages" -#: core/docs/drf/views.py:41 +#: engine/core/docs/drf/views.py:41 msgid "get application's exposable parameters" msgstr "Get application's exposable parameters" -#: core/docs/drf/views.py:48 +#: engine/core/docs/drf/views.py:48 msgid "send a message to the support team" msgstr "Send a message to the support team" -#: core/docs/drf/views.py:59 core/graphene/mutations.py:58 +#: engine/core/docs/drf/views.py:59 engine/core/graphene/mutations.py:58 msgid "request a CORSed URL" msgstr "Request a CORSed URL. Only https allowed." -#: core/docs/drf/views.py:85 +#: engine/core/docs/drf/views.py:85 msgid "global search endpoint to query across project's tables" msgstr "Global search endpoint to query across project's tables" -#: core/docs/drf/views.py:91 +#: engine/core/docs/drf/views.py:91 msgid "purchase an order as a business" msgstr "Purchase an order as a Business" -#: core/docs/drf/views.py:98 +#: engine/core/docs/drf/views.py:98 msgid "" "purchase an order as a business, using the provided `products` with " "`product_uuid` and `attributes`." @@ -224,203 +225,206 @@ msgstr "" "Purchase an order as a business, using the provided `products` with " "`product_uuid` and `attributes`." -#: core/docs/drf/viewsets.py:58 +#: engine/core/docs/drf/viewsets.py:58 msgid "list all attribute groups (simple view)" msgstr "List all attribute groups (simple view)" -#: core/docs/drf/viewsets.py:62 +#: engine/core/docs/drf/viewsets.py:62 msgid "retrieve a single attribute group (detailed view)" msgstr "Retrieve a single attribute group (detailed view)" -#: core/docs/drf/viewsets.py:66 +#: engine/core/docs/drf/viewsets.py:66 msgid "create an attribute group" msgstr "Create an attribute group" -#: core/docs/drf/viewsets.py:70 +#: engine/core/docs/drf/viewsets.py:70 msgid "delete an attribute group" msgstr "Delete an attribute group" -#: core/docs/drf/viewsets.py:74 +#: engine/core/docs/drf/viewsets.py:74 msgid "rewrite an existing attribute group saving non-editables" msgstr "Rewrite an existing attribute group saving non-editables" -#: core/docs/drf/viewsets.py:78 -msgid "" -"rewrite some fields of an existing attribute group saving non-editables" +#: engine/core/docs/drf/viewsets.py:78 +msgid "rewrite some fields of an existing attribute group saving non-editables" msgstr "" "Rewrite some fields of an existing attribute group saving non-editables" -#: core/docs/drf/viewsets.py:85 +#: engine/core/docs/drf/viewsets.py:85 msgid "list all attributes (simple view)" msgstr "List all attributes (simple view)" -#: core/docs/drf/viewsets.py:89 +#: engine/core/docs/drf/viewsets.py:89 msgid "retrieve a single attribute (detailed view)" msgstr "Retrieve a single attribute (detailed view)" -#: core/docs/drf/viewsets.py:93 +#: engine/core/docs/drf/viewsets.py:93 msgid "create an attribute" msgstr "Create an attribute" -#: core/docs/drf/viewsets.py:97 +#: engine/core/docs/drf/viewsets.py:97 msgid "delete an attribute" msgstr "Delete an attribute" -#: core/docs/drf/viewsets.py:101 +#: engine/core/docs/drf/viewsets.py:101 msgid "rewrite an existing attribute saving non-editables" msgstr "Rewrite an existing attribute saving non-editables" -#: core/docs/drf/viewsets.py:105 +#: engine/core/docs/drf/viewsets.py:105 msgid "rewrite some fields of an existing attribute saving non-editables" msgstr "Rewrite some fields of an existing attribute saving non-editables" -#: core/docs/drf/viewsets.py:112 +#: engine/core/docs/drf/viewsets.py:112 msgid "list all attribute values (simple view)" msgstr "List all attribute values (simple view)" -#: core/docs/drf/viewsets.py:116 +#: engine/core/docs/drf/viewsets.py:116 msgid "retrieve a single attribute value (detailed view)" msgstr "Retrieve a single attribute value (detailed view)" -#: core/docs/drf/viewsets.py:120 +#: engine/core/docs/drf/viewsets.py:120 msgid "create an attribute value" msgstr "Create an attribute value" -#: core/docs/drf/viewsets.py:124 +#: engine/core/docs/drf/viewsets.py:124 msgid "delete an attribute value" msgstr "Delete an attribute value" -#: core/docs/drf/viewsets.py:128 +#: engine/core/docs/drf/viewsets.py:128 msgid "rewrite an existing attribute value saving non-editables" msgstr "Rewrite an existing attribute value saving non-editables" -#: core/docs/drf/viewsets.py:132 -msgid "" -"rewrite some fields of an existing attribute value saving non-editables" +#: engine/core/docs/drf/viewsets.py:132 +msgid "rewrite some fields of an existing attribute value saving non-editables" msgstr "" "Rewrite some fields of an existing attribute value saving non-editables" -#: core/docs/drf/viewsets.py:139 core/docs/drf/viewsets.py:140 +#: engine/core/docs/drf/viewsets.py:139 engine/core/docs/drf/viewsets.py:140 msgid "list all categories (simple view)" msgstr "List all categories (simple view)" -#: core/docs/drf/viewsets.py:144 core/docs/drf/viewsets.py:145 +#: engine/core/docs/drf/viewsets.py:144 engine/core/docs/drf/viewsets.py:145 msgid "retrieve a single category (detailed view)" msgstr "Retrieve a single category (detailed view)" -#: core/docs/drf/viewsets.py:149 core/docs/drf/viewsets.py:150 -msgid "create a category" -msgstr "Create a category" - -#: core/docs/drf/viewsets.py:154 core/docs/drf/viewsets.py:155 -msgid "delete a category" -msgstr "Delete a category" - -#: core/docs/drf/viewsets.py:159 core/docs/drf/viewsets.py:160 -msgid "rewrite an existing category saving non-editables" -msgstr "Rewrite an existing category saving non-editables" - -#: core/docs/drf/viewsets.py:164 core/docs/drf/viewsets.py:165 -msgid "rewrite some fields of an existing category saving non-editables" -msgstr "Rewrite some fields of an existing category saving non-editables" - -#: core/docs/drf/viewsets.py:169 core/docs/drf/viewsets.py:501 -#: core/graphene/object_types.py:117 core/graphene/object_types.py:207 -#: core/graphene/object_types.py:482 -msgid "SEO Meta snapshot" -msgstr "SEO Meta snapshot" - -#: core/docs/drf/viewsets.py:170 -msgid "returns a snapshot of the category's SEO meta data" -msgstr "Returns a snapshot of the category's SEO meta data" - -#: core/docs/drf/viewsets.py:175 +#: engine/core/docs/drf/viewsets.py:150 engine/core/docs/drf/viewsets.py:183 msgid "Category UUID or slug" msgstr "Category UUID or slug" -#: core/docs/drf/viewsets.py:188 +#: engine/core/docs/drf/viewsets.py:157 engine/core/docs/drf/viewsets.py:158 +msgid "create a category" +msgstr "Create a category" + +#: engine/core/docs/drf/viewsets.py:162 engine/core/docs/drf/viewsets.py:163 +msgid "delete a category" +msgstr "Delete a category" + +#: engine/core/docs/drf/viewsets.py:167 engine/core/docs/drf/viewsets.py:168 +msgid "rewrite an existing category saving non-editables" +msgstr "Rewrite an existing category saving non-editables" + +#: engine/core/docs/drf/viewsets.py:172 engine/core/docs/drf/viewsets.py:173 +msgid "rewrite some fields of an existing category saving non-editables" +msgstr "Rewrite some fields of an existing category saving non-editables" + +#: engine/core/docs/drf/viewsets.py:177 engine/core/docs/drf/viewsets.py:517 +#: engine/core/graphene/object_types.py:117 +#: engine/core/graphene/object_types.py:207 +#: engine/core/graphene/object_types.py:482 +msgid "SEO Meta snapshot" +msgstr "SEO Meta snapshot" + +#: engine/core/docs/drf/viewsets.py:178 +msgid "returns a snapshot of the category's SEO meta data" +msgstr "Returns a snapshot of the category's SEO meta data" + +#: engine/core/docs/drf/viewsets.py:196 msgid "list all orders (simple view)" msgstr "List all categories (simple view)" -#: core/docs/drf/viewsets.py:189 +#: engine/core/docs/drf/viewsets.py:197 msgid "for non-staff users, only their own orders are returned." msgstr "For non-staff users, only their own orders are returned." -#: core/docs/drf/viewsets.py:195 +#: engine/core/docs/drf/viewsets.py:203 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" -#: core/docs/drf/viewsets.py:202 +#: engine/core/docs/drf/viewsets.py:210 msgid "Filter orders with buy_time >= this ISO 8601 datetime" msgstr "Filter orders with buy_time >= this ISO 8601 datetime" -#: core/docs/drf/viewsets.py:207 +#: engine/core/docs/drf/viewsets.py:215 msgid "Filter orders with buy_time <= this ISO 8601 datetime" msgstr "Filter orders with buy_time <= this ISO 8601 datetime" -#: core/docs/drf/viewsets.py:212 +#: engine/core/docs/drf/viewsets.py:220 msgid "Filter by exact order UUID" msgstr "Filter by exact order UUID" -#: core/docs/drf/viewsets.py:217 +#: engine/core/docs/drf/viewsets.py:225 msgid "Filter by exact human-readable order ID" msgstr "Filter by exact human-readable order ID" -#: core/docs/drf/viewsets.py:222 +#: engine/core/docs/drf/viewsets.py:230 msgid "Filter by user's email (case-insensitive exact match)" msgstr "Filter by user's email (case-insensitive exact match)" -#: core/docs/drf/viewsets.py:227 +#: engine/core/docs/drf/viewsets.py:235 msgid "Filter by user's UUID" msgstr "Filter by user's UUID" -#: core/docs/drf/viewsets.py:232 +#: engine/core/docs/drf/viewsets.py:240 msgid "Filter by order status (case-insensitive substring match)" msgstr "Filter by order status (case-insensitive substring match)" -#: core/docs/drf/viewsets.py:238 +#: engine/core/docs/drf/viewsets.py:246 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')." -#: core/docs/drf/viewsets.py:247 +#: engine/core/docs/drf/viewsets.py:255 msgid "retrieve a single order (detailed view)" msgstr "Retrieve a single category (detailed view)" -#: core/docs/drf/viewsets.py:251 +#: engine/core/docs/drf/viewsets.py:260 +msgid "Order UUID or human-readable id" +msgstr "Order UUID or human-readable id" + +#: engine/core/docs/drf/viewsets.py:267 msgid "create an order" msgstr "Create an attribute" -#: core/docs/drf/viewsets.py:252 +#: engine/core/docs/drf/viewsets.py:268 msgid "doesn't work for non-staff users." msgstr "Doesn't work for non-staff users." -#: core/docs/drf/viewsets.py:256 +#: engine/core/docs/drf/viewsets.py:272 msgid "delete an order" msgstr "Delete an attribute" -#: core/docs/drf/viewsets.py:260 +#: engine/core/docs/drf/viewsets.py:276 msgid "rewrite an existing order saving non-editables" msgstr "Rewrite an existing category saving non-editables" -#: core/docs/drf/viewsets.py:264 +#: engine/core/docs/drf/viewsets.py:280 msgid "rewrite some fields of an existing order saving non-editables" msgstr "Rewrite some fields of an existing category saving non-editables" -#: core/docs/drf/viewsets.py:268 +#: engine/core/docs/drf/viewsets.py:284 msgid "purchase an order" msgstr "Purchase price at order time" -#: core/docs/drf/viewsets.py:270 +#: engine/core/docs/drf/viewsets.py:286 msgid "" "finalizes the order purchase. if `force_balance` is used, the purchase is " "completed using the user's balance; if `force_payment` is used, a " @@ -430,19 +434,19 @@ msgstr "" "completed using the user's balance; If `force_payment` is used, a " "transaction is initiated." -#: core/docs/drf/viewsets.py:282 core/graphene/mutations.py:335 +#: engine/core/docs/drf/viewsets.py:298 engine/core/graphene/mutations.py:335 msgid "purchase an order without account creation" msgstr "purchase an order without account creation" -#: core/docs/drf/viewsets.py:283 +#: engine/core/docs/drf/viewsets.py:299 msgid "finalizes the order purchase for a non-registered user." msgstr "finalizes the order purchase for a non-registered user." -#: core/docs/drf/viewsets.py:291 +#: engine/core/docs/drf/viewsets.py:307 msgid "add product to order" msgstr "Add a product to the order" -#: core/docs/drf/viewsets.py:292 +#: engine/core/docs/drf/viewsets.py:308 msgid "" "adds a product to an order using the provided `product_uuid` and " "`attributes`." @@ -450,11 +454,11 @@ msgstr "" "Adds a product to an order using the provided `product_uuid` and " "`attributes`." -#: core/docs/drf/viewsets.py:297 +#: engine/core/docs/drf/viewsets.py:313 msgid "add a list of products to order, quantities will not count" msgstr "Add a list of products to order, quantities will not count" -#: core/docs/drf/viewsets.py:298 +#: engine/core/docs/drf/viewsets.py:314 msgid "" "adds a list of products to an order using the provided `product_uuid` and " "`attributes`." @@ -462,11 +466,11 @@ msgstr "" "Adds a list of products to an order using the provided `product_uuid` and " "`attributes`." -#: core/docs/drf/viewsets.py:303 +#: engine/core/docs/drf/viewsets.py:319 msgid "remove product from order" msgstr "Remove a product from the order" -#: core/docs/drf/viewsets.py:304 +#: engine/core/docs/drf/viewsets.py:320 msgid "" "removes a product from an order using the provided `product_uuid` and " "`attributes`." @@ -474,11 +478,11 @@ msgstr "" "Removes a product from an order using the provided `product_uuid` and " "`attributes`." -#: core/docs/drf/viewsets.py:309 +#: engine/core/docs/drf/viewsets.py:325 msgid "remove product from order, quantities will not count" msgstr "Remove a product from order, quantities will not count" -#: core/docs/drf/viewsets.py:310 +#: engine/core/docs/drf/viewsets.py:326 msgid "" "removes a list of products from an order using the provided `product_uuid` " "and `attributes`" @@ -486,764 +490,788 @@ msgstr "" "Removes a list of products from an order using the provided `product_uuid` " "and `attributes`." -#: core/docs/drf/viewsets.py:318 +#: engine/core/docs/drf/viewsets.py:334 msgid "list all wishlists (simple view)" msgstr "List all attributes (simple view)" -#: core/docs/drf/viewsets.py:319 +#: engine/core/docs/drf/viewsets.py:335 msgid "for non-staff users, only their own wishlists are returned." msgstr "For non-staff users, only their own wishlists are returned." -#: core/docs/drf/viewsets.py:323 +#: engine/core/docs/drf/viewsets.py:339 msgid "retrieve a single wishlist (detailed view)" msgstr "Retrieve a single attribute (detailed view)" -#: core/docs/drf/viewsets.py:327 +#: engine/core/docs/drf/viewsets.py:343 msgid "create an wishlist" msgstr "Create an attribute" -#: core/docs/drf/viewsets.py:328 +#: engine/core/docs/drf/viewsets.py:344 msgid "Doesn't work for non-staff users." msgstr "Doesn't work for non-staff users." -#: core/docs/drf/viewsets.py:332 +#: engine/core/docs/drf/viewsets.py:348 msgid "delete an wishlist" msgstr "Delete an attribute" -#: core/docs/drf/viewsets.py:336 +#: engine/core/docs/drf/viewsets.py:352 msgid "rewrite an existing wishlist saving non-editables" msgstr "Rewrite an existing attribute saving non-editables" -#: core/docs/drf/viewsets.py:340 +#: engine/core/docs/drf/viewsets.py:356 msgid "rewrite some fields of an existing wishlist saving non-editables" msgstr "Rewrite some fields of an existing attribute saving non-editables" -#: core/docs/drf/viewsets.py:344 +#: engine/core/docs/drf/viewsets.py:360 msgid "add product to wishlist" msgstr "Add a product to the order" -#: core/docs/drf/viewsets.py:345 +#: engine/core/docs/drf/viewsets.py:361 msgid "adds a product to an wishlist using the provided `product_uuid`" msgstr "Adds a product to an wishlist using the provided `product_uuid`" -#: core/docs/drf/viewsets.py:350 +#: engine/core/docs/drf/viewsets.py:366 msgid "remove product from wishlist" msgstr "Remove a product from the wishlist" -#: core/docs/drf/viewsets.py:351 +#: engine/core/docs/drf/viewsets.py:367 msgid "removes a product from an wishlist using the provided `product_uuid`" msgstr "Removes a product from an wishlist using the provided `product_uuid`" -#: core/docs/drf/viewsets.py:356 +#: engine/core/docs/drf/viewsets.py:372 msgid "add many products to wishlist" msgstr "Add many products to the wishlist" -#: core/docs/drf/viewsets.py:357 +#: engine/core/docs/drf/viewsets.py:373 msgid "adds many products to an wishlist using the provided `product_uuids`" msgstr "Adds many products to an wishlist using the provided `product_uuids`" -#: core/docs/drf/viewsets.py:362 +#: engine/core/docs/drf/viewsets.py:378 msgid "remove many products from wishlist" msgstr "Remove a product from the order" -#: core/docs/drf/viewsets.py:363 +#: engine/core/docs/drf/viewsets.py:379 msgid "" "removes many products from an wishlist using the provided `product_uuids`" msgstr "" "Removes many products from an wishlist using the provided `product_uuids`" -#: core/docs/drf/viewsets.py:370 +#: engine/core/docs/drf/viewsets.py:386 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" "`b64-description=icontains-aGVhdC1jb2xk`" -#: core/docs/drf/viewsets.py:386 core/docs/drf/viewsets.py:387 +#: engine/core/docs/drf/viewsets.py:402 engine/core/docs/drf/viewsets.py:403 msgid "list all products (simple view)" msgstr "List all products (simple view)" -#: core/docs/drf/viewsets.py:392 +#: engine/core/docs/drf/viewsets.py:408 msgid "(exact) Product UUID" msgstr "(exact) Product UUID" -#: core/docs/drf/viewsets.py:399 +#: engine/core/docs/drf/viewsets.py:415 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" -#: core/docs/drf/viewsets.py:413 core/docs/drf/viewsets.py:414 +#: engine/core/docs/drf/viewsets.py:429 engine/core/docs/drf/viewsets.py:430 msgid "retrieve a single product (detailed view)" msgstr "Retrieve a single product (detailed view)" -#: core/docs/drf/viewsets.py:419 core/docs/drf/viewsets.py:443 -#: core/docs/drf/viewsets.py:459 core/docs/drf/viewsets.py:475 -#: core/docs/drf/viewsets.py:491 core/docs/drf/viewsets.py:507 +#: engine/core/docs/drf/viewsets.py:435 engine/core/docs/drf/viewsets.py:459 +#: engine/core/docs/drf/viewsets.py:475 engine/core/docs/drf/viewsets.py:491 +#: engine/core/docs/drf/viewsets.py:507 engine/core/docs/drf/viewsets.py:523 msgid "Product UUID or slug" msgstr "Product UUID or Slug" -#: core/docs/drf/viewsets.py:429 core/docs/drf/viewsets.py:430 +#: engine/core/docs/drf/viewsets.py:445 engine/core/docs/drf/viewsets.py:446 msgid "create a product" msgstr "Create a product" -#: core/docs/drf/viewsets.py:437 core/docs/drf/viewsets.py:438 +#: engine/core/docs/drf/viewsets.py:453 engine/core/docs/drf/viewsets.py:454 msgid "rewrite an existing product, preserving non-editable fields" msgstr "Rewrite an existing product, preserving non-editable fields" -#: core/docs/drf/viewsets.py:453 core/docs/drf/viewsets.py:454 +#: engine/core/docs/drf/viewsets.py:469 engine/core/docs/drf/viewsets.py:470 msgid "" "update some fields of an existing product, preserving non-editable fields" msgstr "" "Update some fields of an existing product, preserving non-editable fields" -#: core/docs/drf/viewsets.py:469 core/docs/drf/viewsets.py:470 +#: engine/core/docs/drf/viewsets.py:485 engine/core/docs/drf/viewsets.py:486 msgid "delete a product" msgstr "Delete a product" -#: core/docs/drf/viewsets.py:485 core/docs/drf/viewsets.py:486 +#: engine/core/docs/drf/viewsets.py:501 engine/core/docs/drf/viewsets.py:502 msgid "lists all permitted feedbacks for a product" msgstr "lists all permitted feedbacks for a product" -#: core/docs/drf/viewsets.py:502 +#: engine/core/docs/drf/viewsets.py:518 msgid "returns a snapshot of the product's SEO meta data" msgstr "Returns a snapshot of the product's SEO meta data" -#: core/docs/drf/viewsets.py:520 +#: engine/core/docs/drf/viewsets.py:536 msgid "list all addresses" msgstr "List all addresses" -#: core/docs/drf/viewsets.py:527 +#: engine/core/docs/drf/viewsets.py:543 msgid "retrieve a single address" msgstr "Retrieve a single address" -#: core/docs/drf/viewsets.py:534 +#: engine/core/docs/drf/viewsets.py:550 msgid "create a new address" msgstr "Create a new address" -#: core/docs/drf/viewsets.py:542 +#: engine/core/docs/drf/viewsets.py:558 msgid "delete an address" msgstr "Delete an address" -#: core/docs/drf/viewsets.py:549 +#: engine/core/docs/drf/viewsets.py:565 msgid "update an entire address" msgstr "Update an entire address" -#: core/docs/drf/viewsets.py:557 +#: engine/core/docs/drf/viewsets.py:573 msgid "partially update an address" msgstr "Partially update an address" -#: core/docs/drf/viewsets.py:565 +#: engine/core/docs/drf/viewsets.py:581 msgid "autocomplete address suggestions" msgstr "Autocomplete address input" -#: core/docs/drf/viewsets.py:570 +#: engine/core/docs/drf/viewsets.py:586 msgid "raw data query string, please append with data from geo-IP endpoint" msgstr "Raw data query string, please append with data from geo-IP endpoint" -#: core/docs/drf/viewsets.py:576 +#: engine/core/docs/drf/viewsets.py:592 msgid "limit the results amount, 1 < limit < 10, default: 5" msgstr "limits the results amount, 1 < limit < 10, default: 5" -#: core/docs/drf/viewsets.py:589 +#: engine/core/docs/drf/viewsets.py:605 msgid "list all feedbacks (simple view)" msgstr "list all feedbacks (simple view)" -#: core/docs/drf/viewsets.py:593 +#: engine/core/docs/drf/viewsets.py:609 msgid "retrieve a single feedback (detailed view)" msgstr "retrieve a single feedback (detailed view)" -#: core/docs/drf/viewsets.py:597 +#: engine/core/docs/drf/viewsets.py:613 msgid "create a feedback" msgstr "create a feedback" -#: core/docs/drf/viewsets.py:601 +#: engine/core/docs/drf/viewsets.py:617 msgid "delete a feedback" msgstr "delete a feedback" -#: core/docs/drf/viewsets.py:605 +#: engine/core/docs/drf/viewsets.py:621 msgid "rewrite an existing feedback saving non-editables" msgstr "rewrite an existing feedback saving non-editables" -#: core/docs/drf/viewsets.py:609 +#: engine/core/docs/drf/viewsets.py:625 msgid "rewrite some fields of an existing feedback saving non-editables" msgstr "rewrite some fields of an existing feedback saving non-editables" -#: core/docs/drf/viewsets.py:616 +#: engine/core/docs/drf/viewsets.py:632 msgid "list all order–product relations (simple view)" msgstr "list all order–product relations (simple view)" -#: core/docs/drf/viewsets.py:623 +#: engine/core/docs/drf/viewsets.py:639 msgid "retrieve a single order–product relation (detailed view)" msgstr "retrieve a single order–product relation (detailed view)" -#: core/docs/drf/viewsets.py:630 +#: engine/core/docs/drf/viewsets.py:646 msgid "create a new order–product relation" msgstr "create a new order–product relation" -#: core/docs/drf/viewsets.py:637 +#: engine/core/docs/drf/viewsets.py:653 msgid "replace an existing order–product relation" msgstr "replace an existing order–product relation" -#: core/docs/drf/viewsets.py:644 +#: engine/core/docs/drf/viewsets.py:660 msgid "partially update an existing order–product relation" msgstr "partially update an existing order–product relation" -#: core/docs/drf/viewsets.py:651 +#: engine/core/docs/drf/viewsets.py:667 msgid "delete an order–product relation" msgstr "delete an order–product relation" -#: core/docs/drf/viewsets.py:658 +#: engine/core/docs/drf/viewsets.py:674 msgid "add or remove feedback on an order–product relation" msgstr "add or remove feedback on an order–product relation" -#: core/docs/drf/viewsets.py:672 +#: engine/core/docs/drf/viewsets.py:688 msgid "list all brands (simple view)" msgstr "List all brands (simple view)" -#: core/docs/drf/viewsets.py:676 +#: engine/core/docs/drf/viewsets.py:692 msgid "retrieve a single brand (detailed view)" msgstr "Retrieve a single brand (detailed view)" -#: core/docs/drf/viewsets.py:680 +#: engine/core/docs/drf/viewsets.py:697 engine/core/docs/drf/viewsets.py:725 +msgid "Brand UUID or slug" +msgstr "Brand UUID or slug" + +#: engine/core/docs/drf/viewsets.py:704 msgid "create a brand" msgstr "Create a brand" -#: core/docs/drf/viewsets.py:684 +#: engine/core/docs/drf/viewsets.py:708 msgid "delete a brand" msgstr "Delete a brand" -#: core/docs/drf/viewsets.py:688 +#: engine/core/docs/drf/viewsets.py:712 msgid "rewrite an existing brand saving non-editables" msgstr "Rewrite an existing brand saving non-editables" -#: core/docs/drf/viewsets.py:692 +#: engine/core/docs/drf/viewsets.py:716 msgid "rewrite some fields of an existing brand saving non-editables" msgstr "Rewrite some fields of an existing brand saving non-editables" -#: core/docs/drf/viewsets.py:696 +#: engine/core/docs/drf/viewsets.py:720 msgid "SEO Meta snapshot for brand" msgstr "SEO Meta snapshot for brand" -#: core/docs/drf/viewsets.py:703 +#: engine/core/docs/drf/viewsets.py:735 msgid "list all vendors (simple view)" msgstr "List all vendors (simple view)" -#: core/docs/drf/viewsets.py:707 +#: engine/core/docs/drf/viewsets.py:739 msgid "retrieve a single vendor (detailed view)" msgstr "Retrieve a single vendor (detailed view)" -#: core/docs/drf/viewsets.py:711 +#: engine/core/docs/drf/viewsets.py:743 msgid "create a vendor" msgstr "Create a vendor" -#: core/docs/drf/viewsets.py:715 +#: engine/core/docs/drf/viewsets.py:747 msgid "delete a vendor" msgstr "Delete a vendor" -#: core/docs/drf/viewsets.py:719 +#: engine/core/docs/drf/viewsets.py:751 msgid "rewrite an existing vendor saving non-editables" msgstr "Rewrite an existing vendor saving non-editables" -#: core/docs/drf/viewsets.py:723 +#: engine/core/docs/drf/viewsets.py:755 msgid "rewrite some fields of an existing vendor saving non-editables" msgstr "Rewrite some fields of an existing vendor saving non-editables" -#: core/docs/drf/viewsets.py:730 +#: engine/core/docs/drf/viewsets.py:762 msgid "list all product images (simple view)" msgstr "List all product images (simple view)" -#: core/docs/drf/viewsets.py:734 +#: engine/core/docs/drf/viewsets.py:766 msgid "retrieve a single product image (detailed view)" msgstr "Retrieve a single product image (detailed view)" -#: core/docs/drf/viewsets.py:738 +#: engine/core/docs/drf/viewsets.py:770 msgid "create a product image" msgstr "Create a product image" -#: core/docs/drf/viewsets.py:742 +#: engine/core/docs/drf/viewsets.py:774 msgid "delete a product image" msgstr "Delete a product image" -#: core/docs/drf/viewsets.py:746 +#: engine/core/docs/drf/viewsets.py:778 msgid "rewrite an existing product image saving non-editables" msgstr "Rewrite an existing product image saving non-editables" -#: core/docs/drf/viewsets.py:750 +#: engine/core/docs/drf/viewsets.py:782 msgid "rewrite some fields of an existing product image saving non-editables" msgstr "Rewrite some fields of an existing product image saving non-editables" -#: core/docs/drf/viewsets.py:757 +#: engine/core/docs/drf/viewsets.py:789 msgid "list all promo codes (simple view)" msgstr "List all promo codes (simple view)" -#: core/docs/drf/viewsets.py:761 +#: engine/core/docs/drf/viewsets.py:793 msgid "retrieve a single promo code (detailed view)" msgstr "Retrieve a single promo code (detailed view)" -#: core/docs/drf/viewsets.py:765 +#: engine/core/docs/drf/viewsets.py:797 msgid "create a promo code" msgstr "Create a promo code" -#: core/docs/drf/viewsets.py:769 +#: engine/core/docs/drf/viewsets.py:801 msgid "delete a promo code" msgstr "Delete a promo code" -#: core/docs/drf/viewsets.py:773 +#: engine/core/docs/drf/viewsets.py:805 msgid "rewrite an existing promo code saving non-editables" msgstr "Rewrite an existing promo code saving non-editables" -#: core/docs/drf/viewsets.py:777 +#: engine/core/docs/drf/viewsets.py:809 msgid "rewrite some fields of an existing promo code saving non-editables" msgstr "Rewrite some fields of an existing promo code saving non-editables" -#: core/docs/drf/viewsets.py:784 +#: engine/core/docs/drf/viewsets.py:816 msgid "list all promotions (simple view)" msgstr "List all promotions (simple view)" -#: core/docs/drf/viewsets.py:788 +#: engine/core/docs/drf/viewsets.py:820 msgid "retrieve a single promotion (detailed view)" msgstr "Retrieve a single promotion (detailed view)" -#: core/docs/drf/viewsets.py:792 +#: engine/core/docs/drf/viewsets.py:824 msgid "create a promotion" msgstr "Create a promotion" -#: core/docs/drf/viewsets.py:796 +#: engine/core/docs/drf/viewsets.py:828 msgid "delete a promotion" msgstr "Delete a promotion" -#: core/docs/drf/viewsets.py:800 +#: engine/core/docs/drf/viewsets.py:832 msgid "rewrite an existing promotion saving non-editables" msgstr "Rewrite an existing promotion saving non-editables" -#: core/docs/drf/viewsets.py:804 +#: engine/core/docs/drf/viewsets.py:836 msgid "rewrite some fields of an existing promotion saving non-editables" msgstr "Rewrite some fields of an existing promotion saving non-editables" -#: core/docs/drf/viewsets.py:811 +#: engine/core/docs/drf/viewsets.py:843 msgid "list all stocks (simple view)" msgstr "List all stocks (simple view)" -#: core/docs/drf/viewsets.py:815 +#: engine/core/docs/drf/viewsets.py:847 msgid "retrieve a single stock (detailed view)" msgstr "Retrieve a single stock (detailed view)" -#: core/docs/drf/viewsets.py:819 +#: engine/core/docs/drf/viewsets.py:851 msgid "create a stock record" msgstr "Create a stock record" -#: core/docs/drf/viewsets.py:823 +#: engine/core/docs/drf/viewsets.py:855 msgid "delete a stock record" msgstr "Delete a stock record" -#: core/docs/drf/viewsets.py:827 +#: engine/core/docs/drf/viewsets.py:859 msgid "rewrite an existing stock record saving non-editables" msgstr "Rewrite an existing stock record saving non-editables" -#: core/docs/drf/viewsets.py:831 +#: engine/core/docs/drf/viewsets.py:863 msgid "rewrite some fields of an existing stock record saving non-editables" msgstr "Rewrite some fields of an existing stock record saving non-editables" -#: core/docs/drf/viewsets.py:838 +#: engine/core/docs/drf/viewsets.py:870 msgid "list all product tags (simple view)" msgstr "List all product tags (simple view)" -#: core/docs/drf/viewsets.py:842 +#: engine/core/docs/drf/viewsets.py:874 msgid "retrieve a single product tag (detailed view)" msgstr "Retrieve a single product tag (detailed view)" -#: core/docs/drf/viewsets.py:846 +#: engine/core/docs/drf/viewsets.py:878 msgid "create a product tag" msgstr "Create a product tag" -#: core/docs/drf/viewsets.py:850 +#: engine/core/docs/drf/viewsets.py:882 msgid "delete a product tag" msgstr "Delete a product tag" -#: core/docs/drf/viewsets.py:854 +#: engine/core/docs/drf/viewsets.py:886 msgid "rewrite an existing product tag saving non-editables" msgstr "Rewrite an existing product tag saving non-editables" -#: core/docs/drf/viewsets.py:858 +#: engine/core/docs/drf/viewsets.py:890 msgid "rewrite some fields of an existing product tag saving non-editables" msgstr "Rewrite some fields of an existing product tag saving non-editables" -#: core/elasticsearch/__init__.py:118 core/elasticsearch/__init__.py:550 +#: engine/core/elasticsearch/__init__.py:122 +#: engine/core/elasticsearch/__init__.py:570 msgid "no search term provided." msgstr "No search term provided." -#: core/filters.py:69 core/filters.py:412 core/filters.py:539 +#: engine/core/filters.py:69 engine/core/filters.py:426 +#: engine/core/filters.py:553 msgid "Search" msgstr "Search" -#: core/filters.py:70 core/filters.py:569 core/filters.py:598 +#: engine/core/filters.py:70 engine/core/filters.py:583 +#: engine/core/filters.py:612 msgid "UUID" msgstr "UUID" -#: core/filters.py:71 core/filters.py:414 core/filters.py:541 +#: engine/core/filters.py:71 engine/core/filters.py:428 +#: engine/core/filters.py:555 msgid "Name" msgstr "Name" -#: core/filters.py:72 core/filters.py:543 +#: engine/core/filters.py:72 engine/core/filters.py:557 msgid "Categories" msgstr "Categories" -#: core/filters.py:74 +#: engine/core/filters.py:74 msgid "Categories Slugs" msgstr "Categories Slugs" -#: core/filters.py:75 core/filters.py:422 +#: engine/core/filters.py:75 engine/core/filters.py:436 msgid "Tags" msgstr "Tags" -#: core/filters.py:76 +#: engine/core/filters.py:76 msgid "Min Price" msgstr "Min Price" -#: core/filters.py:77 +#: engine/core/filters.py:77 msgid "Max Price" msgstr "Max Price" -#: core/filters.py:78 +#: engine/core/filters.py:78 msgid "Is Active" msgstr "Is Active" -#: core/filters.py:79 +#: engine/core/filters.py:79 msgid "Brand" msgstr "Brand" -#: core/filters.py:80 +#: engine/core/filters.py:80 msgid "Attributes" msgstr "Attributes" -#: core/filters.py:81 +#: engine/core/filters.py:81 msgid "Quantity" msgstr "Quantity" -#: core/filters.py:82 core/filters.py:416 core/filters.py:542 -#: core/models.py:322 core/models.py:483 core/models.py:637 +#: engine/core/filters.py:82 engine/core/filters.py:430 +#: engine/core/filters.py:556 engine/core/models.py:321 +#: engine/core/models.py:482 engine/core/models.py:637 msgid "Slug" msgstr "Slug" -#: core/filters.py:83 +#: engine/core/filters.py:83 msgid "Is Digital" msgstr "Is Digital" -#: core/filters.py:84 +#: engine/core/filters.py:84 msgid "Include sub-categories" msgstr "Include sub-categories" -#: core/filters.py:87 +#: engine/core/filters.py:87 msgid "Include personal ordered" msgstr "Include personal ordered products" -#: core/filters.py:89 core/models.py:641 +#: engine/core/filters.py:89 engine/core/models.py:641 msgid "SKU" msgstr "SKU" -#: core/filters.py:173 +#: engine/core/filters.py:184 msgid "there must be a category_uuid to use include_subcategories flag" msgstr "There must be a category_uuid to use include_subcategories flag" -#: core/filters.py:339 +#: engine/core/filters.py:353 msgid "Search (ID, product name or part number)" msgstr "Search (ID, product name or part number)" -#: core/filters.py:342 +#: engine/core/filters.py:356 msgid "Bought after (inclusive)" msgstr "Bought after (inclusive)" -#: core/filters.py:343 +#: engine/core/filters.py:357 msgid "Bought before (inclusive)" msgstr "Bought before (inclusive)" -#: core/filters.py:346 core/filters.py:393 core/filters.py:600 +#: engine/core/filters.py:360 engine/core/filters.py:407 +#: engine/core/filters.py:614 msgid "User email" msgstr "User email" -#: core/filters.py:347 core/filters.py:394 core/filters.py:578 -#: core/filters.py:599 +#: engine/core/filters.py:361 engine/core/filters.py:408 +#: engine/core/filters.py:592 engine/core/filters.py:613 msgid "User UUID" msgstr "User UUID" -#: core/filters.py:348 +#: engine/core/filters.py:362 msgid "Status" msgstr "Status" -#: core/filters.py:352 +#: engine/core/filters.py:366 msgid "Human Readable ID" msgstr "Human Readable ID" -#: core/filters.py:415 +#: engine/core/filters.py:429 msgid "Parent" msgstr "Parent" -#: core/filters.py:419 +#: engine/core/filters.py:433 msgid "Whole category(has at least 1 product or not)" msgstr "Whole category(has at least 1 product or not)" -#: core/filters.py:423 +#: engine/core/filters.py:437 msgid "Level" msgstr "Level" -#: core/filters.py:573 +#: engine/core/filters.py:587 msgid "Product UUID" msgstr "Product UUID" -#: core/graphene/mutations.py:41 +#: engine/core/graphene/mutations.py:41 msgid "key to look for in or set into the cache" msgstr "Key to look for in or set into the cache" -#: core/graphene/mutations.py:42 +#: engine/core/graphene/mutations.py:42 msgid "data to store in cache" msgstr "Data to store in cache" -#: core/graphene/mutations.py:45 +#: engine/core/graphene/mutations.py:45 msgid "timeout in seconds to set the data for into the cache" msgstr "Timeout in seconds to set the data for into the cache" -#: core/graphene/mutations.py:48 +#: engine/core/graphene/mutations.py:48 msgid "cached data" msgstr "Cached data" -#: core/graphene/mutations.py:63 +#: engine/core/graphene/mutations.py:63 msgid "camelized JSON data from the requested URL" msgstr "Camelized JSON data from the requested URL" -#: core/graphene/mutations.py:68 core/views.py:232 +#: engine/core/graphene/mutations.py:68 engine/core/views.py:231 msgid "only URLs starting with http(s):// are allowed" msgstr "Only URLs starting with http(s):// are allowed" -#: core/graphene/mutations.py:84 +#: engine/core/graphene/mutations.py:84 msgid "add a product to the order" msgstr "Add a product to the order" -#: core/graphene/mutations.py:105 core/graphene/mutations.py:132 -#: core/graphene/mutations.py:240 core/graphene/mutations.py:288 +#: engine/core/graphene/mutations.py:105 engine/core/graphene/mutations.py:132 +#: engine/core/graphene/mutations.py:240 engine/core/graphene/mutations.py:288 #, python-brace-format msgid "order {order_uuid} not found" msgstr "Order {order_uuid} not found!" -#: core/graphene/mutations.py:111 core/graphene/mutations.py:160 +#: engine/core/graphene/mutations.py:111 engine/core/graphene/mutations.py:160 msgid "remove a product from the order" msgstr "Remove a product from the order" -#: core/graphene/mutations.py:138 +#: engine/core/graphene/mutations.py:138 msgid "remove all products from the order" msgstr "Remove all products from the order" -#: core/graphene/mutations.py:183 +#: engine/core/graphene/mutations.py:183 msgid "buy an order" msgstr "Buy an order" -#: core/graphene/mutations.py:212 core/graphene/mutations.py:266 +#: engine/core/graphene/mutations.py:212 engine/core/graphene/mutations.py:266 msgid "please provide either order_uuid or order_hr_id - mutually exclusive" msgstr "Please provide either order_uuid or order_hr_id - mutually exclusive!" -#: core/graphene/mutations.py:237 core/graphene/mutations.py:502 -#: core/graphene/mutations.py:544 core/viewsets.py:704 +#: engine/core/graphene/mutations.py:237 engine/core/graphene/mutations.py:502 +#: engine/core/graphene/mutations.py:544 engine/core/viewsets.py:704 msgid "wrong type came from order.buy() method: {type(instance)!s}" msgstr "Wrong type came from order.buy() method: {type(instance)!s}" -#: core/graphene/mutations.py:246 +#: engine/core/graphene/mutations.py:246 msgid "perform an action on a list of products in the order" msgstr "Perform an action on a list of products in the order" -#: core/graphene/mutations.py:251 +#: engine/core/graphene/mutations.py:251 msgid "remove/add" msgstr "Remove/Add" -#: core/graphene/mutations.py:283 core/graphene/mutations.py:324 +#: engine/core/graphene/mutations.py:283 engine/core/graphene/mutations.py:324 msgid "action must be either add or remove" msgstr "Action must be either \"add\" or \"remove\"!" -#: core/graphene/mutations.py:294 +#: engine/core/graphene/mutations.py:294 msgid "perform an action on a list of products in the wishlist" msgstr "Perform an action on a list of products in the wishlist" -#: core/graphene/mutations.py:312 +#: engine/core/graphene/mutations.py:312 msgid "please provide wishlist_uuid value" msgstr "Please provide `wishlist_uuid` value." -#: core/graphene/mutations.py:329 core/graphene/mutations.py:405 -#: core/graphene/mutations.py:433 core/graphene/mutations.py:461 -#: core/graphene/mutations.py:505 +#: engine/core/graphene/mutations.py:329 engine/core/graphene/mutations.py:405 +#: engine/core/graphene/mutations.py:433 engine/core/graphene/mutations.py:461 +#: engine/core/graphene/mutations.py:505 #, python-brace-format msgid "wishlist {wishlist_uuid} not found" msgstr "Wishlist {wishlist_uuid} not found!" -#: core/graphene/mutations.py:383 +#: engine/core/graphene/mutations.py:383 msgid "add a product to the wishlist" msgstr "Add a product to the order" -#: core/graphene/mutations.py:411 +#: engine/core/graphene/mutations.py:411 msgid "remove a product from the wishlist" msgstr "Remove a product from the order" -#: core/graphene/mutations.py:439 +#: engine/core/graphene/mutations.py:439 msgid "remove all products from the wishlist" msgstr "Remove a product from the order" -#: core/graphene/mutations.py:467 +#: engine/core/graphene/mutations.py:467 msgid "buy all products from the wishlist" msgstr "Remove a product from the order" -#: core/graphene/mutations.py:511 +#: engine/core/graphene/mutations.py:511 msgid "buy a product" msgstr "Buy an order" -#: core/graphene/mutations.py:517 +#: engine/core/graphene/mutations.py:517 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" -#: core/graphene/mutations.py:550 +#: engine/core/graphene/mutations.py:550 msgid "add or delete a feedback for orderproduct" msgstr "Add or delete a feedback for the orderproduct" -#: core/graphene/mutations.py:574 +#: engine/core/graphene/mutations.py:574 msgid "action must be either `add` or `remove`" msgstr "Action must be either `add` or `remove`!" -#: core/graphene/mutations.py:577 +#: engine/core/graphene/mutations.py:577 #, python-brace-format msgid "order product {order_product_uuid} not found" msgstr "Orderproduct {order_product_uuid} not found!" -#: core/graphene/mutations.py:644 +#: engine/core/graphene/mutations.py:644 msgid "original address string provided by the user" msgstr "Original address string provided by the user" -#: core/graphene/mutations.py:680 core/models.py:930 core/models.py:943 -#: core/models.py:1358 core/models.py:1387 core/models.py:1412 -#: core/viewsets.py:707 +#: engine/core/graphene/mutations.py:680 engine/core/models.py:941 +#: engine/core/models.py:954 engine/core/models.py:1369 +#: engine/core/models.py:1398 engine/core/models.py:1423 +#: engine/core/viewsets.py:707 #, python-brace-format msgid "{name} does not exist: {uuid}" msgstr "{name} does not exist: {uuid}!" -#: core/graphene/mutations.py:694 +#: engine/core/graphene/mutations.py:694 msgid "limit must be between 1 and 10" msgstr "Limit must be between 1 and 10" -#: core/graphene/mutations.py:743 +#: engine/core/graphene/mutations.py:743 msgid "elasticsearch - works like a charm" msgstr "ElasticSearch - works like a charm" -#: core/graphene/object_types.py:82 core/graphene/object_types.py:370 -#: core/graphene/object_types.py:417 core/models.py:754 core/models.py:1225 -#: core/models.py:1823 +#: engine/core/graphene/object_types.py:82 +#: engine/core/graphene/object_types.py:370 +#: engine/core/graphene/object_types.py:417 engine/core/models.py:765 +#: engine/core/models.py:1236 engine/core/models.py:1883 msgid "attributes" msgstr "Attributes" -#: core/graphene/object_types.py:95 +#: engine/core/graphene/object_types.py:95 msgid "grouped attributes" msgstr "Grouped attributes" -#: core/graphene/object_types.py:102 +#: engine/core/graphene/object_types.py:102 msgid "groups of attributes" msgstr "Groups of attributes" -#: core/graphene/object_types.py:116 core/graphene/object_types.py:193 -#: core/graphene/object_types.py:223 core/models.py:426 +#: engine/core/graphene/object_types.py:116 +#: engine/core/graphene/object_types.py:193 +#: engine/core/graphene/object_types.py:223 engine/core/models.py:425 msgid "categories" msgstr "Categories" -#: core/graphene/object_types.py:124 core/models.py:497 +#: engine/core/graphene/object_types.py:124 engine/core/models.py:496 msgid "brands" msgstr "Brands" -#: core/graphene/object_types.py:195 +#: engine/core/graphene/object_types.py:195 msgid "category image url" msgstr "Categories" -#: core/graphene/object_types.py:196 core/graphene/object_types.py:317 -#: core/models.py:284 +#: engine/core/graphene/object_types.py:196 +#: engine/core/graphene/object_types.py:317 engine/core/models.py:283 msgid "markup percentage" msgstr "Markup Percentage" -#: core/graphene/object_types.py:199 +#: engine/core/graphene/object_types.py:199 msgid "which attributes and values can be used for filtering this category." msgstr "Which attributes and values can be used for filtering this category." -#: core/graphene/object_types.py:203 -msgid "" -"minimum and maximum prices for products in this category, if available." +#: engine/core/graphene/object_types.py:203 +msgid "minimum and maximum prices for products in this category, if available." msgstr "" "Minimum and maximum prices for products in this category, if available." -#: core/graphene/object_types.py:205 +#: engine/core/graphene/object_types.py:205 msgid "tags for this category" msgstr "Tags for this category" -#: core/graphene/object_types.py:206 +#: engine/core/graphene/object_types.py:206 msgid "products in this category" msgstr "Products in this category" -#: core/graphene/object_types.py:324 core/models.py:189 +#: engine/core/graphene/object_types.py:324 engine/core/models.py:188 msgid "vendors" msgstr "Vendors" -#: core/graphene/object_types.py:328 +#: engine/core/graphene/object_types.py:328 msgid "Latitude (Y coordinate)" msgstr "Latitude (Y coordinate)" -#: core/graphene/object_types.py:329 +#: engine/core/graphene/object_types.py:329 msgid "Longitude (X coordinate)" msgstr "Longitude (X coordinate)" -#: core/graphene/object_types.py:358 +#: engine/core/graphene/object_types.py:358 msgid "comment" msgstr "How to" -#: core/graphene/object_types.py:359 core/graphene/object_types.py:483 +#: engine/core/graphene/object_types.py:359 +#: engine/core/graphene/object_types.py:483 msgid "rating value from 1 to 10, inclusive, or 0 if not set." msgstr "Rating value from 1 to 10, inclusive, or 0 if not set." -#: core/graphene/object_types.py:366 +#: engine/core/graphene/object_types.py:366 msgid "represents feedback from a user." msgstr "Represents feedback from a user." -#: core/graphene/object_types.py:371 core/graphene/object_types.py:418 -#: core/models.py:1219 +#: engine/core/graphene/object_types.py:371 +#: engine/core/graphene/object_types.py:418 engine/core/models.py:1230 msgid "notifications" msgstr "Notifications" -#: core/graphene/object_types.py:372 +#: engine/core/graphene/object_types.py:372 msgid "download url for this order product if applicable" msgstr "Download url for this order product if applicable" -#: core/graphene/object_types.py:373 core/models.py:1939 +#: engine/core/graphene/object_types.py:373 engine/core/models.py:1722 msgid "feedback" msgstr "Feedback" -#: core/graphene/object_types.py:407 +#: engine/core/graphene/object_types.py:407 msgid "a list of order products in this order" msgstr "A list of order products in this order" -#: core/graphene/object_types.py:409 core/models.py:1189 +#: engine/core/graphene/object_types.py:409 engine/core/models.py:1200 msgid "billing address" msgstr "Billing address" -#: core/graphene/object_types.py:412 +#: engine/core/graphene/object_types.py:412 msgid "" "shipping address for this order, leave blank if same as billing address or " "if not applicable" @@ -1251,200 +1279,208 @@ msgstr "" "Shipping address for this order, leave blank if same as billing address or " "if not applicable" -#: core/graphene/object_types.py:414 +#: engine/core/graphene/object_types.py:414 msgid "total price of this order" msgstr "Total price of this order" -#: core/graphene/object_types.py:415 +#: engine/core/graphene/object_types.py:415 msgid "total quantity of products in order" msgstr "Total quantity of products in order" -#: core/graphene/object_types.py:416 +#: engine/core/graphene/object_types.py:416 msgid "are all products in the order digital" msgstr "Are all of the products in the order digital" -#: core/graphene/object_types.py:419 +#: engine/core/graphene/object_types.py:419 msgid "transactions for this order" msgstr "Transactions for this order" -#: core/graphene/object_types.py:438 core/models.py:1253 +#: engine/core/graphene/object_types.py:438 engine/core/models.py:1264 msgid "orders" msgstr "Orders" -#: core/graphene/object_types.py:459 +#: engine/core/graphene/object_types.py:459 msgid "image url" msgstr "Image URL" -#: core/graphene/object_types.py:466 +#: engine/core/graphene/object_types.py:466 msgid "product's images" msgstr "Product's images" -#: core/graphene/object_types.py:473 core/models.py:425 core/models.py:579 +#: engine/core/graphene/object_types.py:473 engine/core/models.py:424 +#: engine/core/models.py:579 msgid "category" msgstr "Category" -#: core/graphene/object_types.py:475 core/models.py:1940 +#: engine/core/graphene/object_types.py:475 engine/core/models.py:1723 msgid "feedbacks" msgstr "Feedbacks" -#: core/graphene/object_types.py:476 core/models.py:496 core/models.py:588 +#: engine/core/graphene/object_types.py:476 engine/core/models.py:495 +#: engine/core/models.py:588 msgid "brand" msgstr "Brand" -#: core/graphene/object_types.py:477 core/models.py:107 +#: engine/core/graphene/object_types.py:477 engine/core/models.py:106 msgid "attribute groups" msgstr "Attribute groups" -#: core/graphene/object_types.py:478 -#: core/templates/digital_order_created_email.html:111 -#: core/templates/digital_order_delivered_email.html:109 -#: core/templates/shipped_order_created_email.html:109 -#: core/templates/shipped_order_delivered_email.html:109 +#: engine/core/graphene/object_types.py:478 +#: engine/core/templates/digital_order_created_email.html:111 +#: engine/core/templates/digital_order_delivered_email.html:109 +#: engine/core/templates/shipped_order_created_email.html:109 +#: engine/core/templates/shipped_order_delivered_email.html:109 msgid "price" msgstr "Price" -#: core/graphene/object_types.py:479 -#: core/templates/digital_order_created_email.html:110 -#: core/templates/digital_order_delivered_email.html:108 -#: core/templates/shipped_order_created_email.html:108 -#: core/templates/shipped_order_delivered_email.html:108 +#: engine/core/graphene/object_types.py:479 +#: engine/core/templates/digital_order_created_email.html:110 +#: engine/core/templates/digital_order_delivered_email.html:108 +#: engine/core/templates/shipped_order_created_email.html:108 +#: engine/core/templates/shipped_order_delivered_email.html:108 msgid "quantity" msgstr "Quantity" -#: core/graphene/object_types.py:480 +#: engine/core/graphene/object_types.py:480 msgid "number of feedbacks" msgstr "Number of feedbacks" -#: core/graphene/object_types.py:481 +#: engine/core/graphene/object_types.py:481 msgid "only available for personal orders" msgstr "Products only available for personal orders" -#: core/graphene/object_types.py:507 core/models.py:651 +#: engine/core/graphene/object_types.py:484 +msgid "discount price" +msgstr "Discount price" + +#: engine/core/graphene/object_types.py:508 engine/core/models.py:651 msgid "products" msgstr "Products" -#: core/graphene/object_types.py:607 +#: engine/core/graphene/object_types.py:611 msgid "promocodes" msgstr "Promocodes" -#: core/graphene/object_types.py:617 +#: engine/core/graphene/object_types.py:621 msgid "products on sale" msgstr "Products on sale" -#: core/graphene/object_types.py:624 core/models.py:879 +#: engine/core/graphene/object_types.py:628 engine/core/models.py:890 msgid "promotions" msgstr "Promotions" -#: core/graphene/object_types.py:628 core/models.py:188 +#: engine/core/graphene/object_types.py:632 engine/core/models.py:187 msgid "vendor" msgstr "Vendor" -#: core/graphene/object_types.py:629 core/models.py:650 -#: core/templates/digital_order_created_email.html:109 -#: core/templates/digital_order_delivered_email.html:107 -#: core/templates/shipped_order_created_email.html:107 -#: core/templates/shipped_order_delivered_email.html:107 +#: engine/core/graphene/object_types.py:633 engine/core/models.py:650 +#: 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 +#: engine/core/templates/shipped_order_delivered_email.html:107 msgid "product" msgstr "Product" -#: core/graphene/object_types.py:640 core/models.py:902 +#: engine/core/graphene/object_types.py:644 engine/core/models.py:913 msgid "wishlisted products" msgstr "Wishlisted products" -#: core/graphene/object_types.py:646 core/models.py:919 +#: engine/core/graphene/object_types.py:650 engine/core/models.py:930 msgid "wishlists" msgstr "Wishlists" -#: core/graphene/object_types.py:650 +#: engine/core/graphene/object_types.py:654 msgid "tagged products" msgstr "Tagged products" -#: core/graphene/object_types.py:657 core/models.py:225 core/models.py:594 +#: engine/core/graphene/object_types.py:661 engine/core/models.py:224 +#: engine/core/models.py:594 msgid "product tags" msgstr "Product tags" -#: core/graphene/object_types.py:661 +#: engine/core/graphene/object_types.py:665 msgid "tagged categories" msgstr "Tagged categories" -#: core/graphene/object_types.py:668 +#: engine/core/graphene/object_types.py:672 msgid "categories tags" msgstr "Categories' tags" -#: core/graphene/object_types.py:672 +#: engine/core/graphene/object_types.py:676 msgid "project name" msgstr "Project name" -#: core/graphene/object_types.py:673 +#: engine/core/graphene/object_types.py:677 msgid "company email" msgstr "Company Email" -#: core/graphene/object_types.py:674 +#: engine/core/graphene/object_types.py:678 msgid "company name" msgstr "Company Name" -#: core/graphene/object_types.py:675 +#: engine/core/graphene/object_types.py:679 msgid "company address" msgstr "Company Address" -#: core/graphene/object_types.py:676 +#: engine/core/graphene/object_types.py:680 msgid "company phone number" msgstr "Company Phone Number" -#: core/graphene/object_types.py:677 +#: engine/core/graphene/object_types.py:681 msgid "email from, sometimes it must be used instead of host user value" msgstr "'email from', sometimes it must be used instead of host user value" -#: core/graphene/object_types.py:678 +#: engine/core/graphene/object_types.py:682 msgid "email host user" msgstr "Email host user" -#: core/graphene/object_types.py:679 +#: engine/core/graphene/object_types.py:683 msgid "maximum amount for payment" msgstr "Maximum amount for payment" -#: core/graphene/object_types.py:680 +#: engine/core/graphene/object_types.py:684 msgid "minimum amount for payment" msgstr "Minimum amount for payment" -#: core/graphene/object_types.py:681 +#: engine/core/graphene/object_types.py:685 msgid "analytics data" msgstr "Analytics data" -#: core/graphene/object_types.py:682 +#: engine/core/graphene/object_types.py:686 msgid "advertisement data" msgstr "Advertisement data" -#: core/graphene/object_types.py:685 +#: engine/core/graphene/object_types.py:689 msgid "company configuration" msgstr "Configuration" -#: core/graphene/object_types.py:689 +#: engine/core/graphene/object_types.py:693 msgid "language code" msgstr "Language code" -#: core/graphene/object_types.py:690 +#: engine/core/graphene/object_types.py:694 msgid "language name" msgstr "Language name" -#: core/graphene/object_types.py:691 +#: engine/core/graphene/object_types.py:695 msgid "language flag, if exists :)" msgstr "Language flag, if exists :)" -#: core/graphene/object_types.py:694 +#: engine/core/graphene/object_types.py:698 msgid "supported languages" msgstr "Get a list of supported languages" -#: core/graphene/object_types.py:725 core/graphene/object_types.py:726 -#: core/graphene/object_types.py:727 +#: engine/core/graphene/object_types.py:729 +#: engine/core/graphene/object_types.py:730 +#: engine/core/graphene/object_types.py:731 msgid "products search results" msgstr "Products search results" -#: core/graphene/object_types.py:728 +#: engine/core/graphene/object_types.py:732 msgid "posts search results" msgstr "Products search results" -#: core/models.py:76 +#: engine/core/models.py:75 msgid "" "Represents a group of attributes, which can be hierarchical. This class is " "used to manage and organize attribute groups. An attribute group can have a " @@ -1456,23 +1492,23 @@ msgstr "" "parent group, forming a hierarchical structure. This can be useful for " "categorizing and managing attributes more effectively in acomplex system." -#: core/models.py:92 +#: engine/core/models.py:91 msgid "parent of this group" msgstr "Parent of this group" -#: core/models.py:93 +#: engine/core/models.py:92 msgid "parent attribute group" msgstr "Parent attribute group" -#: core/models.py:97 core/models.py:98 +#: engine/core/models.py:96 engine/core/models.py:97 msgid "attribute group's name" msgstr "Attribute group's name" -#: core/models.py:106 core/models.py:716 +#: engine/core/models.py:105 engine/core/models.py:727 msgid "attribute group" msgstr "Attribute group" -#: core/models.py:112 +#: engine/core/models.py:111 msgid "" "Represents a vendor entity capable of storing information about external " "vendors and their interaction requirements. The Vendor class is used to " @@ -1490,48 +1526,48 @@ msgstr "" "also maintains additional metadata and constraints, making it suitable for " "use in systems that interact with third-party vendors." -#: core/models.py:125 +#: engine/core/models.py:124 msgid "stores credentials and endpoints required for vendor communication" msgstr "" "Stores credentials and endpoints required for vendor's API communication" -#: core/models.py:126 +#: engine/core/models.py:125 msgid "authentication info" msgstr "Authentication info" -#: core/models.py:131 +#: engine/core/models.py:130 msgid "define the markup for products retrieved from this vendor" msgstr "Define the markup for products retrieved from this vendor" -#: core/models.py:132 +#: engine/core/models.py:131 msgid "vendor markup percentage" msgstr "Vendor markup percentage" -#: core/models.py:136 +#: engine/core/models.py:135 msgid "name of this vendor" msgstr "Name of this vendor" -#: core/models.py:137 +#: engine/core/models.py:136 msgid "vendor name" msgstr "Vendor name" -#: core/models.py:148 +#: engine/core/models.py:147 msgid "response file" msgstr "response file" -#: core/models.py:149 +#: engine/core/models.py:148 msgid "vendor's last processing response" msgstr "vendor's last processing response" -#: core/models.py:155 +#: engine/core/models.py:154 msgid "vendor's integration file path" msgstr "Vendor's integration file path" -#: core/models.py:156 +#: engine/core/models.py:155 msgid "integration path" msgstr "Integration path" -#: core/models.py:198 +#: engine/core/models.py:197 msgid "" "Represents a product tag used for classifying or identifying products. The " "ProductTag class is designed to uniquely identify and classify products " @@ -1545,27 +1581,27 @@ msgstr "" "display name. It supports operations exported through mixins and provides " "metadata customization for administrative purposes." -#: core/models.py:210 core/models.py:241 +#: engine/core/models.py:209 engine/core/models.py:240 msgid "internal tag identifier for the product tag" msgstr "Internal tag identifier for the product tag" -#: core/models.py:211 core/models.py:242 +#: engine/core/models.py:210 engine/core/models.py:241 msgid "tag name" msgstr "Tag name" -#: core/models.py:215 core/models.py:246 +#: engine/core/models.py:214 engine/core/models.py:245 msgid "user-friendly name for the product tag" msgstr "User-friendly name for the product tag" -#: core/models.py:216 core/models.py:247 +#: engine/core/models.py:215 engine/core/models.py:246 msgid "tag display name" msgstr "Tag display name" -#: core/models.py:224 +#: engine/core/models.py:223 msgid "product tag" msgstr "Product tag" -#: core/models.py:230 +#: engine/core/models.py:229 msgid "" "Represents a category tag used for products. This class models a category " "tag that can be used to associate and classify products. It includes " @@ -1575,15 +1611,15 @@ msgstr "" "tag that can be used to associate and classify products. It includes " "attributes for an internal tag identifier and a user-friendly display name." -#: core/models.py:255 +#: engine/core/models.py:254 msgid "category tag" msgstr "category tag" -#: core/models.py:256 core/models.py:328 +#: engine/core/models.py:255 engine/core/models.py:327 msgid "category tags" msgstr "category tags" -#: core/models.py:261 +#: engine/core/models.py:260 msgid "" "Represents a category entity to organize and group related items in a " "hierarchical structure. Categories may have hierarchical relationships with " @@ -1605,182 +1641,184 @@ msgstr "" "hierarchy of categories, as well as assign attributes like images, tags, or " "priority." -#: core/models.py:275 +#: engine/core/models.py:274 msgid "upload an image representing this category" msgstr "Upload an image representing this category" -#: core/models.py:278 +#: engine/core/models.py:277 msgid "category image" msgstr "Category image" -#: core/models.py:283 +#: engine/core/models.py:282 msgid "define a markup percentage for products in this category" msgstr "Define a markup percentage for products in this category" -#: core/models.py:292 +#: engine/core/models.py:291 msgid "parent of this category to form a hierarchical structure" msgstr "Parent of this category to form a hierarchical structure" -#: core/models.py:293 +#: engine/core/models.py:292 msgid "parent category" msgstr "Parent category" -#: core/models.py:298 +#: engine/core/models.py:297 msgid "category name" msgstr "Category name" -#: core/models.py:299 +#: engine/core/models.py:298 msgid "provide a name for this category" msgstr "Provide a name for this category" -#: core/models.py:306 +#: engine/core/models.py:305 msgid "add a detailed description for this category" msgstr "Add a detailed description for this category" -#: core/models.py:307 +#: engine/core/models.py:306 msgid "category description" msgstr "Category description" -#: core/models.py:327 +#: engine/core/models.py:326 msgid "tags that help describe or group this category" msgstr "tags that help describe or group this category" -#: core/models.py:334 core/models.py:489 +#: engine/core/models.py:333 engine/core/models.py:488 msgid "priority" msgstr "Priority" -#: core/models.py:432 +#: engine/core/models.py:431 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." -#: core/models.py:442 +#: engine/core/models.py:441 msgid "name of this brand" msgstr "Name of this brand" -#: core/models.py:443 +#: engine/core/models.py:442 msgid "brand name" msgstr "Brand name" -#: core/models.py:450 +#: engine/core/models.py:449 msgid "upload a logo representing this brand" msgstr "Upload a logo representing this brand" -#: core/models.py:452 +#: engine/core/models.py:451 msgid "brand small image" msgstr "Brand small image" -#: core/models.py:458 +#: engine/core/models.py:457 msgid "upload a big logo representing this brand" msgstr "Upload a big logo representing this brand" -#: core/models.py:460 +#: engine/core/models.py:459 msgid "brand big image" msgstr "Brand big image" -#: core/models.py:465 +#: engine/core/models.py:464 msgid "add a detailed description of the brand" msgstr "Add a detailed description of the brand" -#: core/models.py:466 +#: engine/core/models.py:465 msgid "brand description" msgstr "Brand description" -#: core/models.py:471 +#: engine/core/models.py:470 msgid "optional categories that this brand is associated with" msgstr "Optional categories that this brand is associated with" -#: core/models.py:472 +#: engine/core/models.py:471 msgid "associated categories" msgstr "Categories" -#: core/models.py:502 +#: engine/core/models.py:501 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 " "from various vendors." -#: core/models.py:514 +#: engine/core/models.py:513 msgid "the vendor supplying this product stock" msgstr "The vendor supplying this product stock" -#: core/models.py:515 +#: engine/core/models.py:514 msgid "associated vendor" msgstr "Associated vendor" -#: core/models.py:519 +#: engine/core/models.py:518 msgid "final price to the customer after markups" msgstr "Final price to the customer after markups" -#: core/models.py:520 +#: engine/core/models.py:519 msgid "selling price" msgstr "Selling price" -#: core/models.py:525 +#: engine/core/models.py:524 msgid "the product associated with this stock entry" msgstr "The product associated with this stock entry" -#: core/models.py:526 core/models.py:779 core/models.py:825 -#: core/models.py:1718 +#: engine/core/models.py:525 engine/core/models.py:790 +#: engine/core/models.py:836 engine/core/models.py:1778 msgid "associated product" msgstr "Associated product" -#: core/models.py:533 +#: engine/core/models.py:532 msgid "the price paid to the vendor for this product" msgstr "The price paid to the vendor for this product" -#: core/models.py:534 +#: engine/core/models.py:533 msgid "vendor purchase price" msgstr "Vendor purchase price" -#: core/models.py:538 +#: engine/core/models.py:537 msgid "available quantity of the product in stock" msgstr "Available quantity of the product in stock" -#: core/models.py:539 +#: engine/core/models.py:538 msgid "quantity in stock" msgstr "Quantity in stock" -#: core/models.py:543 +#: engine/core/models.py:542 msgid "vendor-assigned SKU for identifying the product" msgstr "Vendor-assigned SKU for identifying the product" -#: core/models.py:544 +#: engine/core/models.py:543 msgid "vendor sku" msgstr "Vendor's SKU" -#: core/models.py:550 +#: engine/core/models.py:549 msgid "digital file associated with this stock if applicable" msgstr "Digital file associated with this stock if applicable" -#: core/models.py:551 +#: engine/core/models.py:550 msgid "digital file" msgstr "Digital file" -#: core/models.py:560 +#: engine/core/models.py:553 +msgid "system attributes" +msgstr "System attributes" + +#: engine/core/models.py:560 msgid "stock entries" msgstr "Stock entries" -#: core/models.py:565 +#: engine/core/models.py:565 msgid "" "Represents a product with attributes such as category, brand, tags, digital " "status, name, description, part number, and slug. Provides related utility " @@ -1800,244 +1838,244 @@ msgstr "" "properties to improve performance. It is used to define and manipulate " "product data and its associated information within an application." -#: core/models.py:578 +#: engine/core/models.py:578 msgid "category this product belongs to" msgstr "Category this product belongs to" -#: core/models.py:587 +#: engine/core/models.py:587 msgid "optionally associate this product with a brand" msgstr "Optionally associate this product with a brand" -#: core/models.py:593 +#: engine/core/models.py:593 msgid "tags that help describe or group this product" msgstr "Tags that help describe or group this product" -#: core/models.py:598 +#: engine/core/models.py:598 msgid "indicates whether this product is digitally delivered" msgstr "Indicates whether this product is digitally delivered" -#: core/models.py:599 +#: engine/core/models.py:599 msgid "is product digital" msgstr "Is product digital" -#: core/models.py:605 +#: engine/core/models.py:605 msgid "provide a clear identifying name for the product" msgstr "Provide a clear identifying name for the product" -#: core/models.py:606 +#: engine/core/models.py:606 msgid "product name" msgstr "Product name" -#: core/models.py:612 core/models.py:867 +#: engine/core/models.py:612 engine/core/models.py:878 msgid "add a detailed description of the product" msgstr "Add a detailed description of the product" -#: core/models.py:613 +#: engine/core/models.py:613 msgid "product description" msgstr "Product description" -#: core/models.py:620 +#: engine/core/models.py:620 msgid "part number for this product" msgstr "Part number for this product" -#: core/models.py:621 +#: engine/core/models.py:621 msgid "part number" msgstr "Part number" -#: core/models.py:640 +#: engine/core/models.py:640 msgid "stock keeping unit for this product" msgstr "Stock Keeping Unit for this product" -#: core/models.py:702 +#: engine/core/models.py:713 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." -#: core/models.py:715 +#: engine/core/models.py:726 msgid "group of this attribute" msgstr "Group of this attribute" -#: core/models.py:721 +#: engine/core/models.py:732 msgid "string" msgstr "String" -#: core/models.py:722 +#: engine/core/models.py:733 msgid "integer" msgstr "Integer" -#: core/models.py:723 +#: engine/core/models.py:734 msgid "float" msgstr "Float" -#: core/models.py:724 +#: engine/core/models.py:735 msgid "boolean" msgstr "Boolean" -#: core/models.py:725 +#: engine/core/models.py:736 msgid "array" msgstr "Array" -#: core/models.py:726 +#: engine/core/models.py:737 msgid "object" msgstr "Object" -#: core/models.py:728 +#: engine/core/models.py:739 msgid "type of the attribute's value" msgstr "Type of the attribute's value" -#: core/models.py:729 +#: engine/core/models.py:740 msgid "value type" msgstr "Value type" -#: core/models.py:734 +#: engine/core/models.py:745 msgid "name of this attribute" msgstr "Name of this attribute" -#: core/models.py:735 +#: engine/core/models.py:746 msgid "attribute's name" msgstr "Attribute's name" -#: core/models.py:740 +#: engine/core/models.py:751 msgid "is filterable" msgstr "is filterable" -#: core/models.py:741 +#: engine/core/models.py:752 msgid "designates whether this attribute can be used for filtering or not" msgstr "designates whether this attribute can be used for filtering or not" -#: core/models.py:753 core/models.py:771 -#: core/templates/digital_order_delivered_email.html:134 +#: engine/core/models.py:764 engine/core/models.py:782 +#: engine/core/templates/digital_order_delivered_email.html:134 msgid "attribute" msgstr "Attribute" -#: core/models.py:759 +#: engine/core/models.py:770 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." -#: core/models.py:770 +#: engine/core/models.py:781 msgid "attribute of this value" msgstr "Attribute of this value" -#: core/models.py:778 +#: engine/core/models.py:789 msgid "the specific product associated with this attribute's value" msgstr "The specific product associated with this attribute's value" -#: core/models.py:784 +#: engine/core/models.py:795 msgid "the specific value for this attribute" msgstr "The specific value for this attribute" -#: core/models.py:797 +#: engine/core/models.py:808 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." -#: core/models.py:808 +#: engine/core/models.py:819 msgid "provide alternative text for the image for accessibility" msgstr "Provide alternative text for the image for accessibility" -#: core/models.py:809 +#: engine/core/models.py:820 msgid "image alt text" msgstr "Image alt text" -#: core/models.py:812 +#: engine/core/models.py:823 msgid "upload the image file for this product" msgstr "Upload the image file for this product" -#: core/models.py:813 core/models.py:837 +#: engine/core/models.py:824 engine/core/models.py:848 msgid "product image" msgstr "Product image" -#: core/models.py:818 +#: engine/core/models.py:829 msgid "determines the order in which images are displayed" msgstr "Determines the order in which images are displayed" -#: core/models.py:819 +#: engine/core/models.py:830 msgid "display priority" msgstr "Display priority" -#: core/models.py:824 +#: engine/core/models.py:835 msgid "the product that this image represents" msgstr "The product that this image represents" -#: core/models.py:838 +#: engine/core/models.py:849 msgid "product images" msgstr "Product images" -#: core/models.py:843 +#: engine/core/models.py:854 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." -#: core/models.py:855 +#: engine/core/models.py:866 msgid "percentage discount for the selected products" msgstr "Percentage discount for the selected products" -#: core/models.py:856 +#: engine/core/models.py:867 msgid "discount percentage" msgstr "Discount percentage" -#: core/models.py:861 +#: engine/core/models.py:872 msgid "provide a unique name for this promotion" msgstr "Provide a unique name for this promotion" -#: core/models.py:862 +#: engine/core/models.py:873 msgid "promotion name" msgstr "Promotion name" -#: core/models.py:868 +#: engine/core/models.py:879 msgid "promotion description" msgstr "Promotion description" -#: core/models.py:873 +#: engine/core/models.py:884 msgid "select which products are included in this promotion" msgstr "Select which products are included in this promotion" -#: core/models.py:874 +#: engine/core/models.py:885 msgid "included products" msgstr "Included products" -#: core/models.py:878 +#: engine/core/models.py:889 msgid "promotion" msgstr "Promotion" -#: core/models.py:889 +#: engine/core/models.py:900 msgid "" "Represents a user's wishlist for storing and managing desired products. The " "class provides functionality to manage a collection of products, supporting " @@ -2049,123 +2087,123 @@ msgstr "" "operations such as adding and removing products, as well as supporting " "operations for adding and removing multiple products at once." -#: core/models.py:901 +#: engine/core/models.py:912 msgid "products that the user has marked as wanted" msgstr "Products that the user has marked as wanted" -#: core/models.py:909 +#: engine/core/models.py:920 msgid "user who owns this wishlist" msgstr "User who owns this wishlist" -#: core/models.py:910 +#: engine/core/models.py:921 msgid "wishlist owner" msgstr "Wishlist's Owner" -#: core/models.py:918 +#: engine/core/models.py:929 msgid "wishlist" msgstr "Wishlist" -#: core/models.py:960 +#: engine/core/models.py:971 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." -#: core/models.py:973 +#: engine/core/models.py:984 msgid "documentary" msgstr "Documentary" -#: core/models.py:974 +#: engine/core/models.py:985 msgid "documentaries" msgstr "Documentaries" -#: core/models.py:984 +#: engine/core/models.py:995 msgid "unresolved" msgstr "Unresolved" -#: core/models.py:989 +#: engine/core/models.py:1000 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." -#: core/models.py:1004 +#: engine/core/models.py:1015 msgid "address line for the customer" msgstr "Address line for the customer" -#: core/models.py:1005 +#: engine/core/models.py:1016 msgid "address line" msgstr "Address line" -#: core/models.py:1007 +#: engine/core/models.py:1018 msgid "street" msgstr "Street" -#: core/models.py:1008 +#: engine/core/models.py:1019 msgid "district" msgstr "District" -#: core/models.py:1009 +#: engine/core/models.py:1020 msgid "city" msgstr "City" -#: core/models.py:1010 +#: engine/core/models.py:1021 msgid "region" msgstr "Region" -#: core/models.py:1011 +#: engine/core/models.py:1022 msgid "postal code" msgstr "Postal code" -#: core/models.py:1012 +#: engine/core/models.py:1023 msgid "country" msgstr "Country" -#: core/models.py:1019 +#: engine/core/models.py:1030 msgid "geolocation point: (longitude, latitude)" msgstr "Geolocation Point(Longitude, Latitude)" -#: core/models.py:1022 +#: engine/core/models.py:1033 msgid "full JSON response from geocoder for this address" msgstr "Full JSON response from geocoder for this address" -#: core/models.py:1027 +#: engine/core/models.py:1038 msgid "stored JSON response from the geocoding service" msgstr "Stored JSON response from the geocoding service" -#: core/models.py:1035 +#: engine/core/models.py:1046 msgid "address" msgstr "Address" -#: core/models.py:1036 +#: engine/core/models.py:1047 msgid "addresses" msgstr "Adresses" -#: core/models.py:1048 +#: engine/core/models.py:1059 msgid "" "Represents a promotional code that can be used for discounts, managing its " "validity, type of discount, and application. The PromoCode class stores " @@ -2181,71 +2219,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." -#: core/models.py:1062 +#: engine/core/models.py:1073 msgid "unique code used by a user to redeem a discount" msgstr "Unique code used by a user to redeem a discount" -#: core/models.py:1063 +#: engine/core/models.py:1074 msgid "promo code identifier" msgstr "Promo code identifier" -#: core/models.py:1070 +#: engine/core/models.py:1081 msgid "fixed discount amount applied if percent is not used" msgstr "Fixed discount amount applied if percent is not used" -#: core/models.py:1071 +#: engine/core/models.py:1082 msgid "fixed discount amount" msgstr "Fixed discount amount" -#: core/models.py:1077 +#: engine/core/models.py:1088 msgid "percentage discount applied if fixed amount is not used" msgstr "Percentage discount applied if fixed amount is not used" -#: core/models.py:1078 +#: engine/core/models.py:1089 msgid "percentage discount" msgstr "Percentage discount" -#: core/models.py:1083 +#: engine/core/models.py:1094 msgid "timestamp when the promocode expires" msgstr "Timestamp when the promocode expires" -#: core/models.py:1084 +#: engine/core/models.py:1095 msgid "end validity time" msgstr "End validity time" -#: core/models.py:1089 +#: engine/core/models.py:1100 msgid "timestamp from which this promocode is valid" msgstr "Timestamp from which this promocode is valid" -#: core/models.py:1090 +#: engine/core/models.py:1101 msgid "start validity time" msgstr "Start validity time" -#: core/models.py:1095 +#: engine/core/models.py:1106 msgid "timestamp when the promocode was used, blank if not used yet" msgstr "Timestamp when the promocode was used, blank if not used yet" -#: core/models.py:1096 +#: engine/core/models.py:1107 msgid "usage timestamp" msgstr "Usage timestamp" -#: core/models.py:1101 +#: engine/core/models.py:1112 msgid "user assigned to this promocode if applicable" msgstr "User assigned to this promocode if applicable" -#: core/models.py:1102 +#: engine/core/models.py:1113 msgid "assigned user" msgstr "Assigned user" -#: core/models.py:1109 +#: engine/core/models.py:1120 msgid "promo code" msgstr "Promo code" -#: core/models.py:1110 +#: engine/core/models.py:1121 msgid "promo codes" msgstr "Promo codes" -#: core/models.py:1125 +#: engine/core/models.py:1136 msgid "" "only one type of discount should be defined (amount or percent), but not " "both or neither." @@ -2253,160 +2291,161 @@ msgstr "" "Only one type of discount should be defined (amount or percent), but not " "both or neither." -#: core/models.py:1146 +#: engine/core/models.py:1157 msgid "promocode already used" msgstr "Promocode has been used already" -#: core/models.py:1162 +#: engine/core/models.py:1173 #, python-brace-format msgid "invalid discount type for promocode {self.uuid}" msgstr "Invalid discount type for promocode {self.uuid}!" -#: core/models.py:1171 +#: engine/core/models.py:1182 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." -#: core/models.py:1188 +#: engine/core/models.py:1199 msgid "the billing address used for this order" msgstr "The billing address used for this order" -#: core/models.py:1196 +#: engine/core/models.py:1207 msgid "optional promo code applied to this order" msgstr "Optional promo code applied to this order" -#: core/models.py:1197 +#: engine/core/models.py:1208 msgid "applied promo code" msgstr "Applied promo code" -#: core/models.py:1205 +#: engine/core/models.py:1216 msgid "the shipping address used for this order" msgstr "The shipping address used for this order" -#: core/models.py:1206 +#: engine/core/models.py:1217 msgid "shipping address" msgstr "Shipping address" -#: core/models.py:1212 +#: engine/core/models.py:1223 msgid "current status of the order in its lifecycle" msgstr "Current status of the order in its lifecycle" -#: core/models.py:1213 +#: engine/core/models.py:1224 msgid "order status" msgstr "Order status" -#: core/models.py:1218 core/models.py:1695 +#: engine/core/models.py:1229 engine/core/models.py:1755 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" -#: core/models.py:1224 +#: engine/core/models.py:1235 msgid "json representation of order attributes for this order" msgstr "JSON representation of order attributes for this order" -#: core/models.py:1230 +#: engine/core/models.py:1241 msgid "the user who placed the order" msgstr "The user who placed the order" -#: core/models.py:1231 +#: engine/core/models.py:1242 msgid "user" msgstr "User" -#: core/models.py:1237 +#: engine/core/models.py:1248 msgid "the timestamp when the order was finalized" msgstr "The timestamp when the order was finalized" -#: core/models.py:1238 +#: engine/core/models.py:1249 msgid "buy time" msgstr "Buy time" -#: core/models.py:1245 +#: engine/core/models.py:1256 msgid "a human-readable identifier for the order" msgstr "A human-readable identifier for the order" -#: core/models.py:1246 +#: engine/core/models.py:1257 msgid "human readable id" msgstr "human-readable ID" -#: core/models.py:1252 +#: engine/core/models.py:1263 msgid "order" msgstr "Order" -#: core/models.py:1294 +#: engine/core/models.py:1305 msgid "a user must have only one pending order at a time" msgstr "A user must have only one pending order at a time!" -#: core/models.py:1326 +#: engine/core/models.py:1337 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" -#: core/models.py:1331 +#: engine/core/models.py:1342 msgid "you cannot add inactive products to order" msgstr "You cannot add inactive products to order" -#: core/models.py:1348 +#: engine/core/models.py:1359 msgid "you cannot add more products than available in stock" msgstr "You cannot add more products than available in stock" -#: core/models.py:1370 core/models.py:1395 core/models.py:1403 +#: engine/core/models.py:1381 engine/core/models.py:1406 +#: engine/core/models.py:1414 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" -#: core/models.py:1391 +#: engine/core/models.py:1402 #, python-brace-format msgid "{name} does not exist with query <{query}>" msgstr "{name} does not exist with query <{query}>!" -#: core/models.py:1423 +#: engine/core/models.py:1434 msgid "promocode does not exist" msgstr "Promocode does not exist" -#: core/models.py:1429 +#: engine/core/models.py:1440 msgid "you can only buy physical products with shipping address specified" msgstr "You can only buy physical products with shipping address specified!" -#: core/models.py:1448 +#: engine/core/models.py:1459 msgid "address does not exist" msgstr "Address does not exist" -#: core/models.py:1469 core/models.py:1538 +#: engine/core/models.py:1480 engine/core/models.py:1549 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." -#: core/models.py:1472 core/models.py:1534 +#: engine/core/models.py:1483 engine/core/models.py:1545 msgid "invalid force value" msgstr "Invalid force value" -#: core/models.py:1478 core/models.py:1541 +#: engine/core/models.py:1489 engine/core/models.py:1552 msgid "you cannot purchase an empty order!" msgstr "You cannot purchase an empty order!" -#: core/models.py:1497 +#: engine/core/models.py:1508 msgid "you cannot buy an order without a user" msgstr "You cannot buy an order without a user!" -#: core/models.py:1511 +#: engine/core/models.py:1522 msgid "a user without a balance cannot buy with balance" msgstr "A user without a balance cannot buy with balance!" -#: core/models.py:1516 +#: engine/core/models.py:1527 msgid "insufficient funds to complete the order" msgstr "Insufficient funds to complete the order" -#: core/models.py:1550 +#: engine/core/models.py:1561 msgid "" "you cannot buy without registration, please provide the following " "information: customer name, customer email, customer phone number" @@ -2414,14 +2453,53 @@ msgstr "" "you cannot buy without registration, please provide the following " "information: customer name, customer email, customer phone number" -#: core/models.py:1559 +#: engine/core/models.py:1570 #, python-brace-format msgid "" "invalid payment method: {payment_method} from {available_payment_methods}" msgstr "" "Invalid payment method: {payment_method} from {available_payment_methods}!" -#: core/models.py:1668 +#: engine/core/models.py:1685 +msgid "" +"Manages user feedback for products. This class is designed to capture and " +"store user feedback for specific products that they have purchased. It " +"contains attributes to store user comments, a reference to the related " +"product in the order, and a user-assigned rating. The class uses database " +"fields to effectively model and manage feedback data." +msgstr "" +"Manages user feedback for products. This class is designed to capture and " +"store user feedback for specific products that they have purchased. It " +"contains attributes to store user comments, a reference to the related " +"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:1697 +msgid "user-provided comments about their experience with the product" +msgstr "User-provided comments about their experience with the product" + +#: engine/core/models.py:1698 +msgid "feedback comments" +msgstr "Feedback comments" + +#: engine/core/models.py:1705 +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:1706 +msgid "related order product" +msgstr "Related order product" + +#: engine/core/models.py:1711 +msgid "user-assigned rating for the product" +msgstr "User-assigned rating for the product" + +#: engine/core/models.py:1712 +msgid "product rating" +msgstr "Product rating" + +#: engine/core/models.py:1728 msgid "" "Represents products associated with orders and their attributes. The " "OrderProduct model maintains information about a product that is part of an " @@ -2443,245 +2521,202 @@ msgstr "" "download URL for digital products. The model integrates with the Order and " "Product models and stores a reference to them." -#: core/models.py:1683 +#: engine/core/models.py:1743 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" -#: core/models.py:1684 +#: engine/core/models.py:1744 msgid "purchase price at order time" msgstr "Purchase price at order time" -#: core/models.py:1689 +#: engine/core/models.py:1749 msgid "internal comments for admins about this ordered product" msgstr "Internal comments for admins about this ordered product" -#: core/models.py:1690 +#: engine/core/models.py:1750 msgid "internal comments" msgstr "Internal comments" -#: core/models.py:1696 +#: engine/core/models.py:1756 msgid "user notifications" msgstr "User notifications" -#: core/models.py:1701 +#: engine/core/models.py:1761 msgid "json representation of this item's attributes" msgstr "JSON representation of this item's attributes" -#: core/models.py:1702 +#: engine/core/models.py:1762 msgid "ordered product attributes" msgstr "Ordered product attributes" -#: core/models.py:1707 +#: engine/core/models.py:1767 msgid "reference to the parent order that contains this product" msgstr "Reference to the parent order that contains this product" -#: core/models.py:1708 +#: engine/core/models.py:1768 msgid "parent order" msgstr "Parent order" -#: core/models.py:1717 +#: engine/core/models.py:1777 msgid "the specific product associated with this order line" msgstr "The specific product associated with this order line" -#: core/models.py:1724 +#: engine/core/models.py:1784 msgid "quantity of this specific product in the order" msgstr "Quantity of this specific product in the order" -#: core/models.py:1725 +#: engine/core/models.py:1785 msgid "product quantity" msgstr "Product quantity" -#: core/models.py:1732 +#: engine/core/models.py:1792 msgid "current status of this product in the order" msgstr "Current status of this product in the order" -#: core/models.py:1733 +#: engine/core/models.py:1793 msgid "product line status" msgstr "Product line status" -#: core/models.py:1798 +#: engine/core/models.py:1858 msgid "order product must have an order" msgstr "Orderproduct must have an associated order!" -#: core/models.py:1800 +#: engine/core/models.py:1860 #, python-brace-format msgid "wrong action specified for feedback: {action}" msgstr "Wrong action specified for feedback: {action}!" -#: core/models.py:1814 +#: engine/core/models.py:1874 msgid "you cannot feedback an order which is not received" msgstr "you cannot feedback an order which is not received" -#: core/models.py:1820 +#: engine/core/models.py:1880 msgid "name" msgstr "Name" -#: core/models.py:1821 +#: engine/core/models.py:1881 msgid "URL of the integration" msgstr "URL of the integration" -#: core/models.py:1822 +#: engine/core/models.py:1882 msgid "authentication credentials" msgstr "Authentication credentials" -#: core/models.py:1844 +#: engine/core/models.py:1904 msgid "you can only have one default CRM provider" msgstr "You can only have one default CRM provider" -#: core/models.py:1854 +#: engine/core/models.py:1914 msgid "CRM" msgstr "CRM" -#: core/models.py:1855 +#: engine/core/models.py:1915 msgid "CRMs" msgstr "CRMs" -#: core/models.py:1867 +#: engine/core/models.py:1927 msgid "order CRM link" msgstr "Order's CRM link" -#: core/models.py:1868 +#: engine/core/models.py:1928 msgid "orders CRM links" msgstr "Orders' CRM links" -#: core/models.py:1873 +#: engine/core/models.py:1933 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." -#: core/models.py:1887 +#: engine/core/models.py:1947 msgid "download" msgstr "Download" -#: core/models.py:1888 +#: engine/core/models.py:1948 msgid "downloads" msgstr "Downloads" -#: core/models.py:1902 -msgid "" -"Manages user feedback for products. This class is designed to capture and " -"store user feedback for specific products that they have purchased. It " -"contains attributes to store user comments, a reference to the related " -"product in the order, and a user-assigned rating. The class uses database " -"fields to effectively model and manage feedback data." -msgstr "" -"Manages user feedback for products. This class is designed to capture and " -"store user feedback for specific products that they have purchased. It " -"contains attributes to store user comments, a reference to the related " -"product in the order, and a user-assigned rating. The class uses database " -"fields to effectively model and manage feedback data." - -#: core/models.py:1914 -msgid "user-provided comments about their experience with the product" -msgstr "User-provided comments about their experience with the product" - -#: core/models.py:1915 -msgid "feedback comments" -msgstr "Feedback comments" - -#: core/models.py:1922 -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" - -#: core/models.py:1923 -msgid "related order product" -msgstr "Related order product" - -#: core/models.py:1928 -msgid "user-assigned rating for the product" -msgstr "User-assigned rating for the product" - -#: core/models.py:1929 -msgid "product rating" -msgstr "Product rating" - -#: core/serializers/utility.py:89 +#: engine/core/serializers/utility.py:89 msgid "" "you must provide a comment, rating, and order product uuid to add feedback." msgstr "" "you must provide a comment, rating, and order product uuid to add feedback." -#: core/signals.py:73 -msgid "error during promocode creation: {e!s}" -msgstr "Error during promocode creation: {e!s}" - -#: core/sitemaps.py:25 +#: engine/core/sitemaps.py:25 msgid "Home" msgstr "Home" -#: core/sitemaps.py:30 +#: engine/core/sitemaps.py:30 msgid "Contact Us" msgstr "Contact Us" -#: core/sitemaps.py:35 +#: engine/core/sitemaps.py:35 msgid "About Us" msgstr "About Us" -#: core/templates/digital_order_created_email.html:7 -#: core/templates/digital_order_created_email.html:100 -#: core/templates/digital_order_delivered_email.html:6 -#: core/templates/shipped_order_created_email.html:7 -#: core/templates/shipped_order_created_email.html:99 -#: core/templates/shipped_order_delivered_email.html:7 -#: core/templates/shipped_order_delivered_email.html:99 +#: engine/core/templates/digital_order_created_email.html:7 +#: engine/core/templates/digital_order_created_email.html:100 +#: engine/core/templates/digital_order_delivered_email.html:6 +#: engine/core/templates/shipped_order_created_email.html:7 +#: engine/core/templates/shipped_order_created_email.html:99 +#: engine/core/templates/shipped_order_delivered_email.html:7 +#: engine/core/templates/shipped_order_delivered_email.html:99 msgid "order confirmation" msgstr "Order Confirmation" -#: core/templates/digital_order_created_email.html:95 -#: core/templates/digital_order_delivered_email.html:94 -#: core/templates/promocode_granted_email.html:94 -#: core/templates/shipped_order_created_email.html:94 -#: core/templates/shipped_order_delivered_email.html:94 +#: engine/core/templates/digital_order_created_email.html:95 +#: engine/core/templates/digital_order_delivered_email.html:94 +#: engine/core/templates/promocode_granted_email.html:94 +#: engine/core/templates/shipped_order_created_email.html:94 +#: engine/core/templates/shipped_order_delivered_email.html:94 msgid "logo" msgstr "Logo" -#: core/templates/digital_order_created_email.html:101 -#: core/templates/shipped_order_created_email.html:100 -#: core/templates/shipped_order_delivered_email.html:100 +#: engine/core/templates/digital_order_created_email.html:101 +#: engine/core/templates/shipped_order_created_email.html:100 +#: engine/core/templates/shipped_order_delivered_email.html:100 #, python-format msgid "hello %(order.user.first_name)s," msgstr "Hello %(order.user.first_name)s," -#: core/templates/digital_order_created_email.html:102 +#: engine/core/templates/digital_order_created_email.html:102 #, 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:" -#: core/templates/digital_order_created_email.html:112 -#: core/templates/digital_order_delivered_email.html:110 -#: core/templates/shipped_order_created_email.html:110 -#: core/templates/shipped_order_delivered_email.html:110 +#: engine/core/templates/digital_order_created_email.html:112 +#: engine/core/templates/digital_order_delivered_email.html:110 +#: engine/core/templates/shipped_order_created_email.html:110 +#: engine/core/templates/shipped_order_delivered_email.html:110 msgid "total" msgstr "Total" -#: core/templates/digital_order_created_email.html:125 -#: core/templates/digital_order_delivered_email.html:157 -#: core/templates/shipped_order_created_email.html:127 -#: core/templates/shipped_order_delivered_email.html:127 +#: engine/core/templates/digital_order_created_email.html:125 +#: engine/core/templates/digital_order_delivered_email.html:157 +#: engine/core/templates/shipped_order_created_email.html:127 +#: engine/core/templates/shipped_order_delivered_email.html:127 msgid "total price" msgstr "Total Price" -#: core/templates/digital_order_created_email.html:131 -#: core/templates/shipped_order_created_email.html:140 -#: core/templates/shipped_order_delivered_email.html:140 +#: engine/core/templates/digital_order_created_email.html:131 +#: engine/core/templates/shipped_order_created_email.html:140 +#: engine/core/templates/shipped_order_delivered_email.html:140 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" @@ -2690,28 +2725,28 @@ msgstr "" "If you have any questions, feel free to contact our support at " "%(config.EMAIL_HOST_USER)s." -#: core/templates/digital_order_created_email.html:133 +#: engine/core/templates/digital_order_created_email.html:133 #, python-format msgid "best regards,
the %(config.PROJECT_NAME)s team" msgstr "Best regards,
the %(config.PROJECT_NAME)s team" -#: core/templates/digital_order_created_email.html:139 -#: core/templates/digital_order_delivered_email.html:171 -#: core/templates/promocode_granted_email.html:114 +#: engine/core/templates/digital_order_created_email.html:139 +#: engine/core/templates/digital_order_delivered_email.html:171 +#: engine/core/templates/promocode_granted_email.html:114 msgid "all rights reserved" msgstr "All rights reserved" -#: core/templates/digital_order_delivered_email.html:99 +#: engine/core/templates/digital_order_delivered_email.html:99 msgid "order delivered" msgstr "Order Delivered" -#: core/templates/digital_order_delivered_email.html:100 -#: core/templates/promocode_granted_email.html:100 +#: engine/core/templates/digital_order_delivered_email.html:100 +#: engine/core/templates/promocode_granted_email.html:100 #, python-format msgid "hello %(user_first_name)s," msgstr "Hello %(user_first_name)s," -#: core/templates/digital_order_delivered_email.html:101 +#: engine/core/templates/digital_order_delivered_email.html:101 #, python-format msgid "" "we have successfully processed your order №%(order_uuid)s! below are the\n" @@ -2720,7 +2755,7 @@ msgstr "" "We have successfully processed your order №%(order_uuid)s! Below are the " "details of your order:" -#: core/templates/digital_order_delivered_email.html:128 +#: engine/core/templates/digital_order_delivered_email.html:128 msgid "" "additional\n" " information" @@ -2728,13 +2763,13 @@ msgstr "" "additional\n" " information" -#: core/templates/digital_order_delivered_email.html:137 -#: core/templates/json_table_widget.html:6 +#: engine/core/templates/digital_order_delivered_email.html:137 +#: engine/core/templates/json_table_widget.html:6 msgid "value" msgstr "Value" -#: core/templates/digital_order_delivered_email.html:163 -#: core/templates/promocode_granted_email.html:106 +#: engine/core/templates/digital_order_delivered_email.html:163 +#: engine/core/templates/promocode_granted_email.html:106 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" @@ -2743,26 +2778,26 @@ msgstr "" "If you have any questions, feel free to contact our support at " "%(contact_email)s." -#: core/templates/digital_order_delivered_email.html:165 -#: core/templates/promocode_granted_email.html:108 +#: engine/core/templates/digital_order_delivered_email.html:165 +#: engine/core/templates/promocode_granted_email.html:108 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "Best regards,
the %(project_name)s team" -#: core/templates/json_table_widget.html:5 +#: engine/core/templates/json_table_widget.html:5 msgid "key" msgstr "Key" -#: core/templates/json_table_widget.html:40 +#: engine/core/templates/json_table_widget.html:40 msgid "Add Row" msgstr "Add Row" -#: core/templates/promocode_granted_email.html:6 -#: core/templates/promocode_granted_email.html:99 +#: engine/core/templates/promocode_granted_email.html:6 +#: engine/core/templates/promocode_granted_email.html:99 msgid "promocode granted" msgstr "Promocode granted" -#: core/templates/promocode_granted_email.html:101 +#: engine/core/templates/promocode_granted_email.html:101 msgid "" "Thank you for staying with us! We have granted you with a promocode\n" " for " @@ -2770,33 +2805,34 @@ msgstr "" "Thank you for staying with us! We have granted you with a promocode\n" " for" -#: core/templates/shipped_order_created_email.html:101 -#: core/templates/shipped_order_delivered_email.html:101 +#: 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:" -#: core/templates/shipped_order_created_email.html:123 -#: core/templates/shipped_order_delivered_email.html:123 +#: engine/core/templates/shipped_order_created_email.html:123 +#: engine/core/templates/shipped_order_delivered_email.html:123 msgid "shipping price" msgstr "Shipping price" -#: core/templates/shipped_order_created_email.html:133 -#: core/templates/shipped_order_delivered_email.html:133 +#: engine/core/templates/shipped_order_created_email.html:133 +#: engine/core/templates/shipped_order_delivered_email.html:133 msgid "your order will be delivered to the following address:" msgstr "Your order will be delivered to the following address:" -#: core/templates/shipped_order_created_email.html:142 -#: core/templates/shipped_order_delivered_email.html:142 +#: engine/core/templates/shipped_order_created_email.html:142 +#: engine/core/templates/shipped_order_delivered_email.html:142 #, python-format msgid "best regards,
The %(config.PROJECT_NAME)s team" msgstr "Best regards,
The %(config.PROJECT_NAME)s team" -#: core/templates/shipped_order_created_email.html:147 -#: core/templates/shipped_order_delivered_email.html:147 +#: engine/core/templates/shipped_order_created_email.html:147 +#: engine/core/templates/shipped_order_delivered_email.html:147 msgid "" "all rights\n" " reserved" @@ -2804,49 +2840,49 @@ msgstr "" "all rights\n" " reserved" -#: core/utils/caching.py:44 +#: engine/core/utils/caching.py:44 msgid "both data and timeout are required" msgstr "Both data and timeout are required" -#: core/utils/caching.py:46 +#: engine/core/utils/caching.py:46 msgid "invalid timeout value, it must be between 0 and 216000 seconds" msgstr "Invalid timeout value, it must be between 0 and 216000 seconds" -#: core/utils/emailing.py:27 +#: engine/core/utils/emailing.py:27 #, python-brace-format msgid "{config.PROJECT_NAME} | contact us initiated" msgstr "{config.PROJECT_NAME} | contact us initiated" -#: core/utils/emailing.py:73 +#: engine/core/utils/emailing.py:73 #, python-brace-format msgid "{config.PROJECT_NAME} | order confirmation" msgstr "{config.PROJECT_NAME} | Order Confirmation" -#: core/utils/emailing.py:105 +#: engine/core/utils/emailing.py:105 #, python-brace-format msgid "{config.PROJECT_NAME} | order delivered" msgstr "{config.PROJECT_NAME} | Order Delivered" -#: core/utils/emailing.py:188 +#: engine/core/utils/emailing.py:188 #, python-brace-format msgid "{config.PROJECT_NAME} | promocode granted" msgstr "{config.PROJECT_NAME} | promocode granted" -#: core/utils/messages.py:3 +#: engine/core/utils/messages.py:3 msgid "you do not have permission to perform this action." msgstr "You do not have permission to perform this action." -#: core/utils/nominatim.py:8 +#: engine/core/utils/nominatim.py:8 msgid "NOMINATIM_URL must be configured." msgstr "NOMINATIM_URL parameter must be configured!" -#: core/validators.py:16 +#: engine/core/validators.py:16 #, python-brace-format msgid "image dimensions should not exceed w{max_width} x h{max_height} pixels" msgstr "" "Image dimensions should not exceed w{max_width} x h{max_height} pixels!" -#: core/views.py:72 +#: engine/core/views.py:71 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." @@ -2854,7 +2890,7 @@ msgstr "" "Handles the request for the sitemap index and returns an XML response. It " "ensures the response includes the appropriate content type header for XML." -#: core/views.py:87 +#: engine/core/views.py:86 msgid "" "Handles the detailed view response for a sitemap. This function processes " "the request, fetches the appropriate sitemap detail response, and sets the " @@ -2864,17 +2900,17 @@ msgstr "" "the request, fetches the appropriate sitemap detail response, and sets the " "Content-Type header for XML." -#: core/views.py:116 +#: engine/core/views.py:115 msgid "" "Returns a list of supported languages and their corresponding information." msgstr "" "Returns a list of supported languages and their corresponding information." -#: core/views.py:148 +#: engine/core/views.py:147 msgid "Returns the parameters of the website as a JSON object." msgstr "Returns the parameters of the website as a JSON object." -#: core/views.py:167 +#: engine/core/views.py:166 msgid "" "Handles cache operations such as reading and setting cache data with a " "specified key and timeout." @@ -2882,11 +2918,11 @@ msgstr "" "Handles cache operations such as reading and setting cache data with a " "specified key and timeout." -#: core/views.py:194 +#: engine/core/views.py:193 msgid "Handles `contact us` form submissions." msgstr "Handles `contact us` form submissions." -#: core/views.py:215 +#: engine/core/views.py:214 msgid "" "Handles requests for processing and validating URLs from incoming POST " "requests." @@ -2894,65 +2930,73 @@ msgstr "" "Handles requests for processing and validating URLs from incoming POST " "requests." -#: core/views.py:255 +#: engine/core/views.py:254 msgid "Handles global search queries." msgstr "Handles global search queries." -#: core/views.py:270 +#: engine/core/views.py:269 msgid "Handles the logic of buying as a business without registration." msgstr "Handles the logic of buying as a business without registration." -#: core/views.py:306 +#: engine/core/views.py:305 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." -#: core/views.py:316 +#: engine/core/views.py:315 msgid "order_product_uuid is required" msgstr "order_product_uuid is required" -#: core/views.py:322 +#: engine/core/views.py:321 msgid "you can only download the digital asset once" msgstr "You can only download the digital asset once" -#: core/views.py:325 +#: engine/core/views.py:324 msgid "the order must be paid before downloading the digital asset" msgstr "the order must be paid before downloading the digital asset" -#: core/views.py:331 +#: engine/core/views.py:330 msgid "the order product does not have a product" msgstr "The order product does not have a product" -#: core/views.py:369 +#: engine/core/views.py:368 msgid "favicon not found" msgstr "favicon not found" -#: core/views.py:374 +#: engine/core/views.py:373 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." -#: core/views.py:386 +#: engine/core/views.py:385 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." -#: core/views.py:399 +#: engine/core/views.py:398 msgid "Returns current version of the eVibes. " msgstr "Returns current version of the eVibes." -#: core/viewsets.py:137 +#: engine/core/viewsets.py:137 msgid "" "Defines a viewset for managing Evibes-related operations. The EvibesViewSet " "class inherits from ModelViewSet and provides functionality for handling " @@ -2966,21 +3010,19 @@ msgstr "" "serializer classes based on the current action, customizable permissions, " "and rendering formats." -#: core/viewsets.py:157 +#: engine/core/viewsets.py:157 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." -#: core/viewsets.py:176 +#: engine/core/viewsets.py:176 msgid "" "Handles operations related to Attribute objects within the application. " "Provides a set of API endpoints to interact with Attribute data. This class " @@ -2996,21 +3038,21 @@ msgstr "" "specific fields or retrieving detailed versus simplified information " "depending on the request." -#: core/viewsets.py:195 +#: engine/core/viewsets.py:195 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." -#: core/viewsets.py:214 +#: engine/core/viewsets.py:214 msgid "" "Manages views for Category-related operations. The CategoryViewSet class is " "responsible for handling operations related to the Category model in the " @@ -3024,7 +3066,7 @@ msgstr "" "The viewset also enforces permissions to ensure that only authorized users " "can access specific data." -#: core/viewsets.py:326 +#: engine/core/viewsets.py:326 msgid "" "Represents a viewset for managing Brand instances. This class provides " "functionality for querying, filtering, and serializing Brand objects. It " @@ -3036,7 +3078,7 @@ msgstr "" "uses Django's ViewSet framework to simplify the implementation of API " "endpoints for Brand objects." -#: core/viewsets.py:438 +#: engine/core/viewsets.py:438 msgid "" "Manages operations related to the `Product` model in the system. This class " "provides a viewset for managing products, including their filtering, " @@ -3054,7 +3096,7 @@ msgstr "" "product details, applying permissions, and accessing related feedback of a " "product." -#: core/viewsets.py:568 +#: engine/core/viewsets.py:568 msgid "" "Represents a viewset for managing Vendor objects. This viewset allows " "fetching, filtering, and serializing Vendor data. It defines the queryset, " @@ -3068,59 +3110,59 @@ msgstr "" "actions. The purpose of this class is to provide streamlined access to " "Vendor-related resources through the Django REST framework." -#: core/viewsets.py:588 +#: engine/core/viewsets.py:588 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 `EvibesViewSet` 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 `EvibesViewSet` and makes " "use of Django's filtering system for querying data." -#: core/viewsets.py:615 +#: engine/core/viewsets.py:615 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." -#: core/viewsets.py:813 +#: engine/core/viewsets.py:813 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" -#: core/viewsets.py:867 +#: engine/core/viewsets.py:867 msgid "Manages operations related to Product images in the application. " msgstr "Manages operations related to Product images in the application." -#: core/viewsets.py:880 +#: engine/core/viewsets.py:880 msgid "" "Manages the retrieval and handling of PromoCode instances through various " "API actions." @@ -3128,33 +3170,33 @@ msgstr "" "Manages the retrieval and handling of PromoCode instances through various " "API actions." -#: core/viewsets.py:902 +#: engine/core/viewsets.py:902 msgid "Represents a view set for managing promotions. " msgstr "Represents a view set for managing promotions." -#: core/viewsets.py:915 +#: engine/core/viewsets.py:915 msgid "Handles operations related to Stock data in the system." msgstr "Handles operations related to Stock data in the system." -#: core/viewsets.py:929 +#: engine/core/viewsets.py:929 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." -#: core/viewsets.py:1044 +#: engine/core/viewsets.py:1044 msgid "" "This class provides viewset functionality for managing `Address` objects. " "The AddressViewSet class enables CRUD operations, filtering, and custom " @@ -3168,12 +3210,12 @@ msgstr "" "different HTTP methods, serializer overrides, and permission handling based " "on the request context." -#: core/viewsets.py:1111 +#: engine/core/viewsets.py:1111 #, python-brace-format msgid "Geocoding error: {e}" msgstr "Geocoding error: {e}" -#: core/viewsets.py:1119 +#: engine/core/viewsets.py:1119 msgid "" "Handles operations related to Product Tags within the application. This " "class provides functionality for retrieving, filtering, and serializing " diff --git a/engine/core/locale/es_ES/LC_MESSAGES/django.mo b/engine/core/locale/es_ES/LC_MESSAGES/django.mo new file mode 100644 index 00000000..013b8cc4 Binary files /dev/null and b/engine/core/locale/es_ES/LC_MESSAGES/django.mo differ diff --git a/core/locale/es_ES/LC_MESSAGES/django.po b/engine/core/locale/es_ES/LC_MESSAGES/django.po similarity index 68% rename from core/locale/es_ES/LC_MESSAGES/django.po rename to engine/core/locale/es_ES/LC_MESSAGES/django.po index 5f56c55d..e8ae80a3 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,432 +13,437 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: core/abstract.py:12 +#: engine/core/abstract.py:12 msgid "unique id" msgstr "Identificación única" -#: core/abstract.py:13 +#: engine/core/abstract.py:13 msgid "unique id is used to surely identify any database object" msgstr "" "El identificador único se utiliza para identificar con seguridad cualquier " "objeto de la base de datos" -#: core/abstract.py:20 +#: engine/core/abstract.py:20 msgid "is active" msgstr "Está activo" -#: core/abstract.py:21 +#: engine/core/abstract.py:21 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" -#: core/abstract.py:23 core/choices.py:18 +#: engine/core/abstract.py:23 engine/core/choices.py:18 msgid "created" msgstr "Creado" -#: core/abstract.py:23 +#: engine/core/abstract.py:23 msgid "when the object first appeared on the database" msgstr "Cuando el objeto apareció por primera vez en la base de datos" -#: core/abstract.py:24 +#: engine/core/abstract.py:24 msgid "modified" msgstr "Modificado" -#: core/abstract.py:24 +#: engine/core/abstract.py:24 msgid "when the object was last modified" msgstr "Cuándo se editó el objeto por última vez" -#: core/admin.py:68 +#: engine/core/admin.py:68 msgid "translations" msgstr "Traducciones" -#: core/admin.py:72 +#: engine/core/admin.py:72 msgid "general" msgstr "General" -#: core/admin.py:74 +#: engine/core/admin.py:74 msgid "relations" msgstr "Relaciones" -#: core/admin.py:76 +#: engine/core/admin.py:76 msgid "additional info" msgstr "información adicional" -#: core/admin.py:94 +#: engine/core/admin.py:94 msgid "metadata" msgstr "Metadatos" -#: core/admin.py:101 +#: engine/core/admin.py:101 msgid "timestamps" msgstr "Marcas de tiempo" -#: core/admin.py:116 +#: engine/core/admin.py:116 #, python-format msgid "activate selected %(verbose_name_plural)s" msgstr "Activar %(verbose_name_plural)s seleccionado" -#: core/admin.py:121 +#: engine/core/admin.py:121 msgid "selected items have been activated." msgstr "Los artículos seleccionados se han activado." -#: core/admin.py:127 +#: engine/core/admin.py:127 #, python-format msgid "deactivate selected %(verbose_name_plural)s" msgstr "Desactivar %(verbose_name_plural)s seleccionado" -#: core/admin.py:132 +#: engine/core/admin.py:132 msgid "selected items have been deactivated." msgstr "Los artículos seleccionados se han desactivado." -#: core/admin.py:144 core/graphene/object_types.py:582 -#: core/graphene/object_types.py:589 core/models.py:783 core/models.py:791 +#: engine/core/admin.py:144 engine/core/graphene/object_types.py:586 +#: engine/core/graphene/object_types.py:593 engine/core/models.py:794 +#: engine/core/models.py:802 msgid "attribute value" msgstr "Atributo Valor" -#: core/admin.py:145 core/graphene/object_types.py:75 core/models.py:792 +#: engine/core/admin.py:145 engine/core/graphene/object_types.py:75 +#: engine/core/models.py:803 msgid "attribute values" msgstr "Valores de los atributos" -#: core/admin.py:156 +#: engine/core/admin.py:156 msgid "image" msgstr "Imagen" -#: core/admin.py:157 core/graphene/object_types.py:474 +#: engine/core/admin.py:157 engine/core/graphene/object_types.py:474 msgid "images" msgstr "Imágenes" -#: core/admin.py:168 core/models.py:559 +#: engine/core/admin.py:169 engine/core/models.py:559 msgid "stock" msgstr "Stock" -#: core/admin.py:169 core/graphene/object_types.py:636 +#: engine/core/admin.py:170 engine/core/graphene/object_types.py:640 msgid "stocks" msgstr "Acciones" -#: core/admin.py:182 core/models.py:1744 +#: engine/core/admin.py:183 engine/core/models.py:1804 msgid "order product" msgstr "Pedir un producto" -#: core/admin.py:183 core/graphene/object_types.py:389 core/models.py:1745 +#: engine/core/admin.py:184 engine/core/graphene/object_types.py:389 +#: engine/core/models.py:1805 msgid "order products" msgstr "Pedir productos" -#: core/admin.py:196 core/admin.py:197 +#: engine/core/admin.py:197 engine/core/admin.py:198 msgid "children" msgstr "Niños" -#: core/admin.py:965 +#: engine/core/admin.py:969 msgid "Config" msgstr "Configurar" -#: core/apps.py:8 +#: engine/core/apps.py:8 msgid "core" msgstr "Núcleo" -#: core/choices.py:4 core/choices.py:20 +#: engine/core/choices.py:4 engine/core/choices.py:20 msgid "finished" msgstr "Terminado" -#: core/choices.py:5 core/choices.py:19 +#: engine/core/choices.py:5 engine/core/choices.py:19 msgid "delivering" msgstr "En" -#: core/choices.py:6 +#: engine/core/choices.py:6 msgid "delivered" msgstr "Entregado" -#: core/choices.py:7 +#: engine/core/choices.py:7 msgid "canceled" msgstr "Cancelado" -#: core/choices.py:8 core/choices.py:16 core/choices.py:24 +#: engine/core/choices.py:8 engine/core/choices.py:16 engine/core/choices.py:24 msgid "failed" msgstr "Fallido" -#: core/choices.py:9 core/choices.py:15 +#: engine/core/choices.py:9 engine/core/choices.py:15 msgid "pending" msgstr "Pendiente" -#: core/choices.py:10 +#: engine/core/choices.py:10 msgid "accepted" msgstr "Aceptado" -#: core/choices.py:11 +#: engine/core/choices.py:11 msgid "money returned" msgstr "Dinero devuelto" -#: core/choices.py:17 +#: engine/core/choices.py:17 msgid "payment" msgstr "Pago" -#: core/choices.py:21 +#: engine/core/choices.py:21 msgid "momental" msgstr "Momento" -#: core/choices.py:24 +#: engine/core/choices.py:24 msgid "successful" msgstr "Éxito" -#: core/docs/drf/views.py:17 core/graphene/mutations.py:38 +#: engine/core/docs/drf/views.py:17 engine/core/graphene/mutations.py:38 msgid "cache I/O" msgstr "E/S de caché" -#: core/docs/drf/views.py:19 +#: engine/core/docs/drf/views.py:19 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 "" "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é." -#: core/docs/drf/views.py:32 +#: engine/core/docs/drf/views.py:32 msgid "get a list of supported languages" msgstr "Obtener una lista de los idiomas admitidos" -#: core/docs/drf/views.py:41 +#: engine/core/docs/drf/views.py:41 msgid "get application's exposable parameters" msgstr "Obtener los parámetros exponibles de la aplicación" -#: core/docs/drf/views.py:48 +#: engine/core/docs/drf/views.py:48 msgid "send a message to the support team" msgstr "Enviar un mensaje al equipo de asistencia" -#: core/docs/drf/views.py:59 core/graphene/mutations.py:58 +#: engine/core/docs/drf/views.py:59 engine/core/graphene/mutations.py:58 msgid "request a CORSed URL" msgstr "Solicitar una URL CORSed. Solo se permite https." -#: core/docs/drf/views.py:85 +#: engine/core/docs/drf/views.py:85 msgid "global search endpoint to query across project's tables" msgstr "" "Punto final de búsqueda global para consultar todas las tablas del proyecto" -#: core/docs/drf/views.py:91 +#: engine/core/docs/drf/views.py:91 msgid "purchase an order as a business" msgstr "Comprar un pedido como empresa" -#: core/docs/drf/views.py:98 +#: engine/core/docs/drf/views.py:98 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`." -#: core/docs/drf/viewsets.py:58 +#: engine/core/docs/drf/viewsets.py:58 msgid "list all attribute groups (simple view)" msgstr "Lista de todos los grupos de atributos (vista simple)" -#: core/docs/drf/viewsets.py:62 +#: engine/core/docs/drf/viewsets.py:62 msgid "retrieve a single attribute group (detailed view)" msgstr "Recuperar un único grupo de atributos (vista detallada)" -#: core/docs/drf/viewsets.py:66 +#: engine/core/docs/drf/viewsets.py:66 msgid "create an attribute group" msgstr "Crear un grupo de atributos" -#: core/docs/drf/viewsets.py:70 +#: engine/core/docs/drf/viewsets.py:70 msgid "delete an attribute group" msgstr "Eliminar un grupo de atributos" -#: core/docs/drf/viewsets.py:74 +#: engine/core/docs/drf/viewsets.py:74 msgid "rewrite an existing attribute group saving non-editables" msgstr "Reescribir un grupo de atributos existente guardando los no editables" -#: core/docs/drf/viewsets.py:78 -msgid "" -"rewrite some fields of an existing attribute group saving non-editables" +#: engine/core/docs/drf/viewsets.py:78 +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" -#: core/docs/drf/viewsets.py:85 +#: engine/core/docs/drf/viewsets.py:85 msgid "list all attributes (simple view)" msgstr "Listar todos los atributos (vista simple)" -#: core/docs/drf/viewsets.py:89 +#: engine/core/docs/drf/viewsets.py:89 msgid "retrieve a single attribute (detailed view)" msgstr "Recuperar un único atributo (vista detallada)" -#: core/docs/drf/viewsets.py:93 +#: engine/core/docs/drf/viewsets.py:93 msgid "create an attribute" msgstr "Crear un atributo" -#: core/docs/drf/viewsets.py:97 +#: engine/core/docs/drf/viewsets.py:97 msgid "delete an attribute" msgstr "Borrar un atributo" -#: core/docs/drf/viewsets.py:101 +#: engine/core/docs/drf/viewsets.py:101 msgid "rewrite an existing attribute saving non-editables" msgstr "Reescribir un atributo existente guardando los no editables" -#: core/docs/drf/viewsets.py:105 +#: engine/core/docs/drf/viewsets.py:105 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" -#: core/docs/drf/viewsets.py:112 +#: engine/core/docs/drf/viewsets.py:112 msgid "list all attribute values (simple view)" msgstr "Listar todos los valores de atributos (vista simple)" -#: core/docs/drf/viewsets.py:116 +#: engine/core/docs/drf/viewsets.py:116 msgid "retrieve a single attribute value (detailed view)" msgstr "Recuperar un único valor de atributo (vista detallada)" -#: core/docs/drf/viewsets.py:120 +#: engine/core/docs/drf/viewsets.py:120 msgid "create an attribute value" msgstr "Crear un valor de atributo" -#: core/docs/drf/viewsets.py:124 +#: engine/core/docs/drf/viewsets.py:124 msgid "delete an attribute value" msgstr "Borrar un valor de atributo" -#: core/docs/drf/viewsets.py:128 +#: engine/core/docs/drf/viewsets.py:128 msgid "rewrite an existing attribute value saving non-editables" msgstr "Reescribir un valor de atributo existente guardando los no editables" -#: core/docs/drf/viewsets.py:132 -msgid "" -"rewrite some fields of an existing attribute value saving non-editables" +#: engine/core/docs/drf/viewsets.py:132 +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" -#: core/docs/drf/viewsets.py:139 core/docs/drf/viewsets.py:140 +#: engine/core/docs/drf/viewsets.py:139 engine/core/docs/drf/viewsets.py:140 msgid "list all categories (simple view)" msgstr "Lista de todas las categorías (vista simple)" -#: core/docs/drf/viewsets.py:144 core/docs/drf/viewsets.py:145 +#: engine/core/docs/drf/viewsets.py:144 engine/core/docs/drf/viewsets.py:145 msgid "retrieve a single category (detailed view)" msgstr "Recuperar una sola categoría (vista detallada)" -#: core/docs/drf/viewsets.py:149 core/docs/drf/viewsets.py:150 +#: engine/core/docs/drf/viewsets.py:150 engine/core/docs/drf/viewsets.py:183 +msgid "Category UUID or slug" +msgstr "UUID o slug de la categoría" + +#: engine/core/docs/drf/viewsets.py:157 engine/core/docs/drf/viewsets.py:158 msgid "create a category" msgstr "Crear una categoría" -#: core/docs/drf/viewsets.py:154 core/docs/drf/viewsets.py:155 +#: engine/core/docs/drf/viewsets.py:162 engine/core/docs/drf/viewsets.py:163 msgid "delete a category" msgstr "Eliminar una categoría" -#: core/docs/drf/viewsets.py:159 core/docs/drf/viewsets.py:160 +#: engine/core/docs/drf/viewsets.py:167 engine/core/docs/drf/viewsets.py:168 msgid "rewrite an existing category saving non-editables" msgstr "Reescribir una categoría existente guardando los no editables" -#: core/docs/drf/viewsets.py:164 core/docs/drf/viewsets.py:165 +#: engine/core/docs/drf/viewsets.py:172 engine/core/docs/drf/viewsets.py:173 msgid "rewrite some fields of an existing category saving non-editables" msgstr "" "Reescribir algunos campos de una categoría existente guardando los no " "editables" -#: core/docs/drf/viewsets.py:169 core/docs/drf/viewsets.py:501 -#: core/graphene/object_types.py:117 core/graphene/object_types.py:207 -#: core/graphene/object_types.py:482 +#: engine/core/docs/drf/viewsets.py:177 engine/core/docs/drf/viewsets.py:517 +#: engine/core/graphene/object_types.py:117 +#: engine/core/graphene/object_types.py:207 +#: engine/core/graphene/object_types.py:482 msgid "SEO Meta snapshot" msgstr "SEO Meta snapshot" -#: core/docs/drf/viewsets.py:170 +#: engine/core/docs/drf/viewsets.py:178 msgid "returns a snapshot of the category's SEO meta data" msgstr "Devuelve una instantánea de los metadatos SEO de la categoría" -#: core/docs/drf/viewsets.py:175 -msgid "Category UUID or slug" -msgstr "UUID o slug de la categoría" - -#: core/docs/drf/viewsets.py:188 +#: engine/core/docs/drf/viewsets.py:196 msgid "list all orders (simple view)" msgstr "Lista de todas las categorías (vista simple)" -#: core/docs/drf/viewsets.py:189 +#: engine/core/docs/drf/viewsets.py:197 msgid "for non-staff users, only their own orders are returned." msgstr "" "Para los usuarios que no forman parte del personal, sólo se devuelven sus " "propios pedidos." -#: core/docs/drf/viewsets.py:195 +#: engine/core/docs/drf/viewsets.py:203 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" -#: core/docs/drf/viewsets.py:202 +#: engine/core/docs/drf/viewsets.py:210 msgid "Filter orders with buy_time >= this ISO 8601 datetime" msgstr "Filtrar los pedidos con buy_time >= esta fecha ISO 8601" -#: core/docs/drf/viewsets.py:207 +#: engine/core/docs/drf/viewsets.py:215 msgid "Filter orders with buy_time <= this ISO 8601 datetime" msgstr "Filtrar pedidos con hora de compra <= esta fecha ISO 8601" -#: core/docs/drf/viewsets.py:212 +#: engine/core/docs/drf/viewsets.py:220 msgid "Filter by exact order UUID" msgstr "Filtrar por UUID de pedido exacto" -#: core/docs/drf/viewsets.py:217 +#: engine/core/docs/drf/viewsets.py:225 msgid "Filter by exact human-readable order ID" msgstr "Filtrar por ID de pedido exacto legible por el ser humano" -#: core/docs/drf/viewsets.py:222 +#: engine/core/docs/drf/viewsets.py:230 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)" -#: core/docs/drf/viewsets.py:227 +#: engine/core/docs/drf/viewsets.py:235 msgid "Filter by user's UUID" msgstr "Filtrar por UUID de usuario" -#: core/docs/drf/viewsets.py:232 +#: engine/core/docs/drf/viewsets.py:240 msgid "Filter by order status (case-insensitive substring match)" msgstr "" "Filtrar por estado del pedido (coincidencia de subcadenas insensible a " "mayúsculas y minúsculas)" -#: core/docs/drf/viewsets.py:238 +#: engine/core/docs/drf/viewsets.py:246 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 " "(por ejemplo, '-tiempo_compra')." -#: core/docs/drf/viewsets.py:247 +#: engine/core/docs/drf/viewsets.py:255 msgid "retrieve a single order (detailed view)" msgstr "Recuperar una sola categoría (vista detallada)" -#: core/docs/drf/viewsets.py:251 +#: engine/core/docs/drf/viewsets.py:260 +msgid "Order UUID or human-readable id" +msgstr "UUID del pedido o identificador legible" + +#: engine/core/docs/drf/viewsets.py:267 msgid "create an order" msgstr "Crear un atributo" -#: core/docs/drf/viewsets.py:252 +#: engine/core/docs/drf/viewsets.py:268 msgid "doesn't work for non-staff users." msgstr "No funciona para los usuarios que no son personal." -#: core/docs/drf/viewsets.py:256 +#: engine/core/docs/drf/viewsets.py:272 msgid "delete an order" msgstr "Borrar un atributo" -#: core/docs/drf/viewsets.py:260 +#: engine/core/docs/drf/viewsets.py:276 msgid "rewrite an existing order saving non-editables" msgstr "Reescribir una categoría existente guardando los no editables" -#: core/docs/drf/viewsets.py:264 +#: engine/core/docs/drf/viewsets.py:280 msgid "rewrite some fields of an existing order saving non-editables" msgstr "" "Reescribir algunos campos de una categoría existente guardando los no " "editables" -#: core/docs/drf/viewsets.py:268 +#: engine/core/docs/drf/viewsets.py:284 msgid "purchase an order" msgstr "Precio de compra en el momento del pedido" -#: core/docs/drf/viewsets.py:270 +#: engine/core/docs/drf/viewsets.py:286 msgid "" "finalizes the order purchase. if `force_balance` is used, the purchase is " "completed using the user's balance; if `force_payment` is used, a " @@ -448,19 +453,19 @@ msgstr "" "finaliza utilizando el saldo del usuario; Si se utiliza `force_payment`, se " "inicia una transacción." -#: core/docs/drf/viewsets.py:282 core/graphene/mutations.py:335 +#: engine/core/docs/drf/viewsets.py:298 engine/core/graphene/mutations.py:335 msgid "purchase an order without account creation" msgstr "comprar un pedido sin crear una cuenta" -#: core/docs/drf/viewsets.py:283 +#: engine/core/docs/drf/viewsets.py:299 msgid "finalizes the order purchase for a non-registered user." msgstr "finaliza la compra del pedido para un usuario no registrado." -#: core/docs/drf/viewsets.py:291 +#: engine/core/docs/drf/viewsets.py:307 msgid "add product to order" msgstr "Añadir un producto al pedido" -#: core/docs/drf/viewsets.py:292 +#: engine/core/docs/drf/viewsets.py:308 msgid "" "adds a product to an order using the provided `product_uuid` and " "`attributes`." @@ -468,11 +473,11 @@ msgstr "" "Añade un producto a un pedido utilizando el `product_uuid` y los " "`attributes` proporcionados." -#: core/docs/drf/viewsets.py:297 +#: engine/core/docs/drf/viewsets.py:313 msgid "add a list of products to order, quantities will not count" msgstr "Añadir una lista de productos a la orden, las cantidades no contarán" -#: core/docs/drf/viewsets.py:298 +#: engine/core/docs/drf/viewsets.py:314 msgid "" "adds a list of products to an order using the provided `product_uuid` and " "`attributes`." @@ -480,11 +485,11 @@ msgstr "" "Añade una lista de productos a un pedido utilizando el `product_uuid` y los " "`attributes` proporcionados." -#: core/docs/drf/viewsets.py:303 +#: engine/core/docs/drf/viewsets.py:319 msgid "remove product from order" msgstr "Eliminar un producto del pedido" -#: core/docs/drf/viewsets.py:304 +#: engine/core/docs/drf/viewsets.py:320 msgid "" "removes a product from an order using the provided `product_uuid` and " "`attributes`." @@ -492,11 +497,11 @@ msgstr "" "Elimina un producto de un pedido utilizando el `product_uuid` y los " "`attributes` proporcionados." -#: core/docs/drf/viewsets.py:309 +#: engine/core/docs/drf/viewsets.py:325 msgid "remove product from order, quantities will not count" msgstr "Eliminar un producto del pedido, las cantidades no contarán" -#: core/docs/drf/viewsets.py:310 +#: engine/core/docs/drf/viewsets.py:326 msgid "" "removes a list of products from an order using the provided `product_uuid` " "and `attributes`" @@ -504,803 +509,824 @@ msgstr "" "Elimina una lista de productos de un pedido utilizando el `product_uuid` y " "los `attributes` proporcionados." -#: core/docs/drf/viewsets.py:318 +#: engine/core/docs/drf/viewsets.py:334 msgid "list all wishlists (simple view)" msgstr "Listar todos los atributos (vista simple)" -#: core/docs/drf/viewsets.py:319 +#: engine/core/docs/drf/viewsets.py:335 msgid "for non-staff users, only their own wishlists are returned." msgstr "" "Para los usuarios que no forman parte del personal, sólo se devuelven sus " "propias listas de deseos." -#: core/docs/drf/viewsets.py:323 +#: engine/core/docs/drf/viewsets.py:339 msgid "retrieve a single wishlist (detailed view)" msgstr "Recuperar un único atributo (vista detallada)" -#: core/docs/drf/viewsets.py:327 +#: engine/core/docs/drf/viewsets.py:343 msgid "create an wishlist" msgstr "Crear un atributo" -#: core/docs/drf/viewsets.py:328 +#: engine/core/docs/drf/viewsets.py:344 msgid "Doesn't work for non-staff users." msgstr "No funciona para los usuarios que no son personal." -#: core/docs/drf/viewsets.py:332 +#: engine/core/docs/drf/viewsets.py:348 msgid "delete an wishlist" msgstr "Borrar un atributo" -#: core/docs/drf/viewsets.py:336 +#: engine/core/docs/drf/viewsets.py:352 msgid "rewrite an existing wishlist saving non-editables" msgstr "Reescribir un atributo existente guardando los no editables" -#: core/docs/drf/viewsets.py:340 +#: engine/core/docs/drf/viewsets.py:356 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" -#: core/docs/drf/viewsets.py:344 +#: engine/core/docs/drf/viewsets.py:360 msgid "add product to wishlist" msgstr "Añadir un producto al pedido" -#: core/docs/drf/viewsets.py:345 +#: engine/core/docs/drf/viewsets.py:361 msgid "adds a product to an wishlist using the provided `product_uuid`" msgstr "" "Añade un producto a una lista de deseos utilizando el `product_uuid` " "proporcionado" -#: core/docs/drf/viewsets.py:350 +#: engine/core/docs/drf/viewsets.py:366 msgid "remove product from wishlist" msgstr "Eliminar un producto de la lista de deseos" -#: core/docs/drf/viewsets.py:351 +#: engine/core/docs/drf/viewsets.py:367 msgid "removes a product from an wishlist using the provided `product_uuid`" msgstr "" "Elimina un producto de una lista de deseos utilizando el `product_uuid` " "proporcionado." -#: core/docs/drf/viewsets.py:356 +#: engine/core/docs/drf/viewsets.py:372 msgid "add many products to wishlist" msgstr "Añadir muchos productos a la lista de deseos" -#: core/docs/drf/viewsets.py:357 +#: engine/core/docs/drf/viewsets.py:373 msgid "adds many products to an wishlist using the provided `product_uuids`" msgstr "" "Añade varios productos a una lista de deseos utilizando los `product_uuids` " "proporcionados." -#: core/docs/drf/viewsets.py:362 +#: engine/core/docs/drf/viewsets.py:378 msgid "remove many products from wishlist" msgstr "Eliminar un producto del pedido" -#: core/docs/drf/viewsets.py:363 +#: engine/core/docs/drf/viewsets.py:379 msgid "" "removes many products from an wishlist using the provided `product_uuids`" msgstr "" "Elimina varios productos de una lista de deseos utilizando los " "`product_uuids` proporcionados." -#: core/docs/drf/viewsets.py:370 +#: engine/core/docs/drf/viewsets.py:386 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`." -#: core/docs/drf/viewsets.py:386 core/docs/drf/viewsets.py:387 +#: engine/core/docs/drf/viewsets.py:402 engine/core/docs/drf/viewsets.py:403 msgid "list all products (simple view)" msgstr "Listar todos los productos (vista simple)" -#: core/docs/drf/viewsets.py:392 +#: engine/core/docs/drf/viewsets.py:408 msgid "(exact) Product UUID" msgstr "UUID (exacto) del producto" -#: core/docs/drf/viewsets.py:399 +#: engine/core/docs/drf/viewsets.py:415 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" -#: core/docs/drf/viewsets.py:413 core/docs/drf/viewsets.py:414 +#: engine/core/docs/drf/viewsets.py:429 engine/core/docs/drf/viewsets.py:430 msgid "retrieve a single product (detailed view)" msgstr "Recuperar un solo producto (vista detallada)" -#: core/docs/drf/viewsets.py:419 core/docs/drf/viewsets.py:443 -#: core/docs/drf/viewsets.py:459 core/docs/drf/viewsets.py:475 -#: core/docs/drf/viewsets.py:491 core/docs/drf/viewsets.py:507 +#: engine/core/docs/drf/viewsets.py:435 engine/core/docs/drf/viewsets.py:459 +#: engine/core/docs/drf/viewsets.py:475 engine/core/docs/drf/viewsets.py:491 +#: engine/core/docs/drf/viewsets.py:507 engine/core/docs/drf/viewsets.py:523 msgid "Product UUID or slug" msgstr "UUID o babosa del producto" -#: core/docs/drf/viewsets.py:429 core/docs/drf/viewsets.py:430 +#: engine/core/docs/drf/viewsets.py:445 engine/core/docs/drf/viewsets.py:446 msgid "create a product" msgstr "Crear un producto" -#: core/docs/drf/viewsets.py:437 core/docs/drf/viewsets.py:438 +#: engine/core/docs/drf/viewsets.py:453 engine/core/docs/drf/viewsets.py:454 msgid "rewrite an existing product, preserving non-editable fields" msgstr "Reescribir un producto existente conservando los campos no editables" -#: core/docs/drf/viewsets.py:453 core/docs/drf/viewsets.py:454 +#: engine/core/docs/drf/viewsets.py:469 engine/core/docs/drf/viewsets.py:470 msgid "" "update some fields of an existing product, preserving non-editable fields" msgstr "" "Actualizar algunos campos de un producto existente, conservando los campos " "no editables" -#: core/docs/drf/viewsets.py:469 core/docs/drf/viewsets.py:470 +#: engine/core/docs/drf/viewsets.py:485 engine/core/docs/drf/viewsets.py:486 msgid "delete a product" msgstr "Eliminar un producto" -#: core/docs/drf/viewsets.py:485 core/docs/drf/viewsets.py:486 +#: engine/core/docs/drf/viewsets.py:501 engine/core/docs/drf/viewsets.py:502 msgid "lists all permitted feedbacks for a product" msgstr "enumera todas las opiniones permitidas sobre un producto" -#: core/docs/drf/viewsets.py:502 +#: engine/core/docs/drf/viewsets.py:518 msgid "returns a snapshot of the product's SEO meta data" msgstr "Devuelve una instantánea de los metadatos SEO del producto" -#: core/docs/drf/viewsets.py:520 +#: engine/core/docs/drf/viewsets.py:536 msgid "list all addresses" msgstr "Enumerar todas las direcciones" -#: core/docs/drf/viewsets.py:527 +#: engine/core/docs/drf/viewsets.py:543 msgid "retrieve a single address" msgstr "Recuperar una única dirección" -#: core/docs/drf/viewsets.py:534 +#: engine/core/docs/drf/viewsets.py:550 msgid "create a new address" msgstr "Crear una nueva dirección" -#: core/docs/drf/viewsets.py:542 +#: engine/core/docs/drf/viewsets.py:558 msgid "delete an address" msgstr "Borrar una dirección" -#: core/docs/drf/viewsets.py:549 +#: engine/core/docs/drf/viewsets.py:565 msgid "update an entire address" msgstr "Actualizar una dirección completa" -#: core/docs/drf/viewsets.py:557 +#: engine/core/docs/drf/viewsets.py:573 msgid "partially update an address" msgstr "Actualizar parcialmente una dirección" -#: core/docs/drf/viewsets.py:565 +#: engine/core/docs/drf/viewsets.py:581 msgid "autocomplete address suggestions" msgstr "Autocompletar direcciones" -#: core/docs/drf/viewsets.py:570 +#: engine/core/docs/drf/viewsets.py:586 msgid "raw data query string, please append with data from geo-IP endpoint" msgstr "" "Cadena de consulta de datos sin procesar, adjunte los datos del punto final " "geo-IP" -#: core/docs/drf/viewsets.py:576 +#: engine/core/docs/drf/viewsets.py:592 msgid "limit the results amount, 1 < limit < 10, default: 5" msgstr "limita la cantidad de resultados, 1 < límite < 10, por defecto: 5" -#: core/docs/drf/viewsets.py:589 +#: engine/core/docs/drf/viewsets.py:605 msgid "list all feedbacks (simple view)" msgstr "lista de todas las reacciones (vista simple)" -#: core/docs/drf/viewsets.py:593 +#: engine/core/docs/drf/viewsets.py:609 msgid "retrieve a single feedback (detailed view)" msgstr "recuperar una sola respuesta (vista detallada)" -#: core/docs/drf/viewsets.py:597 +#: engine/core/docs/drf/viewsets.py:613 msgid "create a feedback" msgstr "crear una retroalimentación" -#: core/docs/drf/viewsets.py:601 +#: engine/core/docs/drf/viewsets.py:617 msgid "delete a feedback" msgstr "eliminar un comentario" -#: core/docs/drf/viewsets.py:605 +#: engine/core/docs/drf/viewsets.py:621 msgid "rewrite an existing feedback saving non-editables" msgstr "reescribir una respuesta existente guardando los no editables" -#: core/docs/drf/viewsets.py:609 +#: engine/core/docs/drf/viewsets.py:625 msgid "rewrite some fields of an existing feedback saving non-editables" msgstr "" "Reescribir algunos campos de una categoría existente guardando los no " "editables" -#: core/docs/drf/viewsets.py:616 +#: engine/core/docs/drf/viewsets.py:632 msgid "list all order–product relations (simple view)" msgstr "listar todas las relaciones pedido-producto (vista simple)" -#: core/docs/drf/viewsets.py:623 +#: engine/core/docs/drf/viewsets.py:639 msgid "retrieve a single order–product relation (detailed view)" msgstr "recuperar una única relación pedido-producto (vista detallada)" -#: core/docs/drf/viewsets.py:630 +#: engine/core/docs/drf/viewsets.py:646 msgid "create a new order–product relation" msgstr "crear una nueva relación pedido-producto" -#: core/docs/drf/viewsets.py:637 +#: engine/core/docs/drf/viewsets.py:653 msgid "replace an existing order–product relation" msgstr "sustituir una relación pedido-producto existente" -#: core/docs/drf/viewsets.py:644 +#: engine/core/docs/drf/viewsets.py:660 msgid "partially update an existing order–product relation" msgstr "actualizar parcialmente una relación pedido-producto existente" -#: core/docs/drf/viewsets.py:651 +#: engine/core/docs/drf/viewsets.py:667 msgid "delete an order–product relation" msgstr "suprimir una relación pedido-producto" -#: core/docs/drf/viewsets.py:658 +#: engine/core/docs/drf/viewsets.py:674 msgid "add or remove feedback on an order–product relation" msgstr "añadir o eliminar comentarios en una relación pedido-producto" -#: core/docs/drf/viewsets.py:672 +#: engine/core/docs/drf/viewsets.py:688 msgid "list all brands (simple view)" msgstr "Lista de todas las marcas (vista simple)" -#: core/docs/drf/viewsets.py:676 +#: engine/core/docs/drf/viewsets.py:692 msgid "retrieve a single brand (detailed view)" msgstr "Recuperar una sola marca (vista detallada)" -#: core/docs/drf/viewsets.py:680 +#: engine/core/docs/drf/viewsets.py:697 engine/core/docs/drf/viewsets.py:725 +msgid "Brand UUID or slug" +msgstr "UUID o slug de la marca" + +#: engine/core/docs/drf/viewsets.py:704 msgid "create a brand" msgstr "Crear una marca" -#: core/docs/drf/viewsets.py:684 +#: engine/core/docs/drf/viewsets.py:708 msgid "delete a brand" msgstr "Borrar una marca" -#: core/docs/drf/viewsets.py:688 +#: engine/core/docs/drf/viewsets.py:712 msgid "rewrite an existing brand saving non-editables" msgstr "Reescribir una marca existente ahorrando no editables" -#: core/docs/drf/viewsets.py:692 +#: engine/core/docs/drf/viewsets.py:716 msgid "rewrite some fields of an existing brand saving non-editables" msgstr "" "Reescribir algunos campos de una categoría existente guardando los no " "editables" -#: core/docs/drf/viewsets.py:696 +#: engine/core/docs/drf/viewsets.py:720 msgid "SEO Meta snapshot for brand" msgstr "SEO Meta snapshot para la marca" -#: core/docs/drf/viewsets.py:703 +#: engine/core/docs/drf/viewsets.py:735 msgid "list all vendors (simple view)" msgstr "Listar todos los vendedores (vista simple)" -#: core/docs/drf/viewsets.py:707 +#: engine/core/docs/drf/viewsets.py:739 msgid "retrieve a single vendor (detailed view)" msgstr "Recuperar un único proveedor (vista detallada)" -#: core/docs/drf/viewsets.py:711 +#: engine/core/docs/drf/viewsets.py:743 msgid "create a vendor" msgstr "Crear un proveedor" -#: core/docs/drf/viewsets.py:715 +#: engine/core/docs/drf/viewsets.py:747 msgid "delete a vendor" msgstr "Eliminar un proveedor" -#: core/docs/drf/viewsets.py:719 +#: engine/core/docs/drf/viewsets.py:751 msgid "rewrite an existing vendor saving non-editables" msgstr "Reescribir un proveedor existente guardando los no editables" -#: core/docs/drf/viewsets.py:723 +#: engine/core/docs/drf/viewsets.py:755 msgid "rewrite some fields of an existing vendor saving non-editables" msgstr "" "Reescribir algunos campos de una categoría existente guardando los no " "editables" -#: core/docs/drf/viewsets.py:730 +#: engine/core/docs/drf/viewsets.py:762 msgid "list all product images (simple view)" msgstr "Listar todas las imágenes de los productos (vista simple)" -#: core/docs/drf/viewsets.py:734 +#: engine/core/docs/drf/viewsets.py:766 msgid "retrieve a single product image (detailed view)" msgstr "Recuperar una sola imagen del producto (vista detallada)" -#: core/docs/drf/viewsets.py:738 +#: engine/core/docs/drf/viewsets.py:770 msgid "create a product image" msgstr "Crear una imagen del producto" -#: core/docs/drf/viewsets.py:742 +#: engine/core/docs/drf/viewsets.py:774 msgid "delete a product image" msgstr "Eliminar la imagen de un producto" -#: core/docs/drf/viewsets.py:746 +#: engine/core/docs/drf/viewsets.py:778 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" -#: core/docs/drf/viewsets.py:750 +#: engine/core/docs/drf/viewsets.py:782 msgid "rewrite some fields of an existing product image saving non-editables" msgstr "" "Reescribir algunos campos de una categoría existente guardando los no " "editables" -#: core/docs/drf/viewsets.py:757 +#: engine/core/docs/drf/viewsets.py:789 msgid "list all promo codes (simple view)" msgstr "Listar todos los códigos promocionales (vista simple)" -#: core/docs/drf/viewsets.py:761 +#: engine/core/docs/drf/viewsets.py:793 msgid "retrieve a single promo code (detailed view)" msgstr "Recuperar un único código promocional (vista detallada)" -#: core/docs/drf/viewsets.py:765 +#: engine/core/docs/drf/viewsets.py:797 msgid "create a promo code" msgstr "Crear un código promocional" -#: core/docs/drf/viewsets.py:769 +#: engine/core/docs/drf/viewsets.py:801 msgid "delete a promo code" msgstr "Eliminar un código promocional" -#: core/docs/drf/viewsets.py:773 +#: engine/core/docs/drf/viewsets.py:805 msgid "rewrite an existing promo code saving non-editables" msgstr "Reescribir un código promocional existente guardando los no editables" -#: core/docs/drf/viewsets.py:777 +#: engine/core/docs/drf/viewsets.py:809 msgid "rewrite some fields of an existing promo code saving non-editables" msgstr "" "Reescribir algunos campos de una categoría existente guardando los no " "editables" -#: core/docs/drf/viewsets.py:784 +#: engine/core/docs/drf/viewsets.py:816 msgid "list all promotions (simple view)" msgstr "Lista de todas las promociones (vista simple)" -#: core/docs/drf/viewsets.py:788 +#: engine/core/docs/drf/viewsets.py:820 msgid "retrieve a single promotion (detailed view)" msgstr "Recuperar una sola promoción (vista detallada)" -#: core/docs/drf/viewsets.py:792 +#: engine/core/docs/drf/viewsets.py:824 msgid "create a promotion" msgstr "Crear una promoción" -#: core/docs/drf/viewsets.py:796 +#: engine/core/docs/drf/viewsets.py:828 msgid "delete a promotion" msgstr "Eliminar una promoción" -#: core/docs/drf/viewsets.py:800 +#: engine/core/docs/drf/viewsets.py:832 msgid "rewrite an existing promotion saving non-editables" msgstr "Reescribir una promoción existente guardando los no editables" -#: core/docs/drf/viewsets.py:804 +#: engine/core/docs/drf/viewsets.py:836 msgid "rewrite some fields of an existing promotion saving non-editables" msgstr "" "Reescribir algunos campos de una categoría existente guardando los no " "editables" -#: core/docs/drf/viewsets.py:811 +#: engine/core/docs/drf/viewsets.py:843 msgid "list all stocks (simple view)" msgstr "Listar todas las acciones (vista simple)" -#: core/docs/drf/viewsets.py:815 +#: engine/core/docs/drf/viewsets.py:847 msgid "retrieve a single stock (detailed view)" msgstr "Recuperar una sola acción (vista detallada)" -#: core/docs/drf/viewsets.py:819 +#: engine/core/docs/drf/viewsets.py:851 msgid "create a stock record" msgstr "Crear una ficha de existencias" -#: core/docs/drf/viewsets.py:823 +#: engine/core/docs/drf/viewsets.py:855 msgid "delete a stock record" msgstr "Borrar una ficha de existencias" -#: core/docs/drf/viewsets.py:827 +#: engine/core/docs/drf/viewsets.py:859 msgid "rewrite an existing stock record saving non-editables" msgstr "" "Reescribir un registro de existencias existente guardando los no editables" -#: core/docs/drf/viewsets.py:831 +#: engine/core/docs/drf/viewsets.py:863 msgid "rewrite some fields of an existing stock record saving non-editables" msgstr "" "Reescribir algunos campos de una categoría existente guardando los no " "editables" -#: core/docs/drf/viewsets.py:838 +#: engine/core/docs/drf/viewsets.py:870 msgid "list all product tags (simple view)" msgstr "Listar todas las etiquetas de productos (vista simple)" -#: core/docs/drf/viewsets.py:842 +#: engine/core/docs/drf/viewsets.py:874 msgid "retrieve a single product tag (detailed view)" msgstr "Recuperar una sola etiqueta de producto (vista detallada)" -#: core/docs/drf/viewsets.py:846 +#: engine/core/docs/drf/viewsets.py:878 msgid "create a product tag" msgstr "Crear una etiqueta de producto" -#: core/docs/drf/viewsets.py:850 +#: engine/core/docs/drf/viewsets.py:882 msgid "delete a product tag" msgstr "Eliminar una etiqueta de producto" -#: core/docs/drf/viewsets.py:854 +#: engine/core/docs/drf/viewsets.py:886 msgid "rewrite an existing product tag saving non-editables" msgstr "" "Reescribir una etiqueta de producto existente guardando los no editables" -#: core/docs/drf/viewsets.py:858 +#: engine/core/docs/drf/viewsets.py:890 msgid "rewrite some fields of an existing product tag saving non-editables" msgstr "" "Reescribir algunos campos de una categoría existente guardando los no " "editables" -#: core/elasticsearch/__init__.py:118 core/elasticsearch/__init__.py:550 +#: engine/core/elasticsearch/__init__.py:122 +#: engine/core/elasticsearch/__init__.py:570 msgid "no search term provided." msgstr "No se proporciona ningún término de búsqueda." -#: core/filters.py:69 core/filters.py:412 core/filters.py:539 +#: engine/core/filters.py:69 engine/core/filters.py:426 +#: engine/core/filters.py:553 msgid "Search" msgstr "Buscar en" -#: core/filters.py:70 core/filters.py:569 core/filters.py:598 +#: engine/core/filters.py:70 engine/core/filters.py:583 +#: engine/core/filters.py:612 msgid "UUID" msgstr "UUID" -#: core/filters.py:71 core/filters.py:414 core/filters.py:541 +#: engine/core/filters.py:71 engine/core/filters.py:428 +#: engine/core/filters.py:555 msgid "Name" msgstr "Nombre" -#: core/filters.py:72 core/filters.py:543 +#: engine/core/filters.py:72 engine/core/filters.py:557 msgid "Categories" msgstr "Categorías" -#: core/filters.py:74 +#: engine/core/filters.py:74 msgid "Categories Slugs" msgstr "Categorías Babosas" -#: core/filters.py:75 core/filters.py:422 +#: engine/core/filters.py:75 engine/core/filters.py:436 msgid "Tags" msgstr "Etiquetas" -#: core/filters.py:76 +#: engine/core/filters.py:76 msgid "Min Price" msgstr "Precio mínimo" -#: core/filters.py:77 +#: engine/core/filters.py:77 msgid "Max Price" msgstr "Precio máximo" -#: core/filters.py:78 +#: engine/core/filters.py:78 msgid "Is Active" msgstr "Está activo" -#: core/filters.py:79 +#: engine/core/filters.py:79 msgid "Brand" msgstr "Marca" -#: core/filters.py:80 +#: engine/core/filters.py:80 msgid "Attributes" msgstr "Atributos" -#: core/filters.py:81 +#: engine/core/filters.py:81 msgid "Quantity" msgstr "Cantidad" -#: core/filters.py:82 core/filters.py:416 core/filters.py:542 -#: core/models.py:322 core/models.py:483 core/models.py:637 +#: engine/core/filters.py:82 engine/core/filters.py:430 +#: engine/core/filters.py:556 engine/core/models.py:321 +#: engine/core/models.py:482 engine/core/models.py:637 msgid "Slug" msgstr "Babosa" -#: core/filters.py:83 +#: engine/core/filters.py:83 msgid "Is Digital" msgstr "Es Digital" -#: core/filters.py:84 +#: engine/core/filters.py:84 msgid "Include sub-categories" msgstr "Incluir subcategorías" -#: core/filters.py:87 +#: engine/core/filters.py:87 msgid "Include personal ordered" msgstr "Incluir productos personales solicitados" -#: core/filters.py:89 core/models.py:641 +#: engine/core/filters.py:89 engine/core/models.py:641 msgid "SKU" msgstr "SKU" -#: core/filters.py:173 +#: engine/core/filters.py:184 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" -#: core/filters.py:339 +#: engine/core/filters.py:353 msgid "Search (ID, product name or part number)" msgstr "Búsqueda (ID, nombre del producto o número de pieza)" -#: core/filters.py:342 +#: engine/core/filters.py:356 msgid "Bought after (inclusive)" msgstr "Comprado después (inclusive)" -#: core/filters.py:343 +#: engine/core/filters.py:357 msgid "Bought before (inclusive)" msgstr "Comprado antes (inclusive)" -#: core/filters.py:346 core/filters.py:393 core/filters.py:600 +#: engine/core/filters.py:360 engine/core/filters.py:407 +#: engine/core/filters.py:614 msgid "User email" msgstr "Correo electrónico del usuario" -#: core/filters.py:347 core/filters.py:394 core/filters.py:578 -#: core/filters.py:599 +#: engine/core/filters.py:361 engine/core/filters.py:408 +#: engine/core/filters.py:592 engine/core/filters.py:613 msgid "User UUID" msgstr "UUID de usuario" -#: core/filters.py:348 +#: engine/core/filters.py:362 msgid "Status" msgstr "Estado" -#: core/filters.py:352 +#: engine/core/filters.py:366 msgid "Human Readable ID" msgstr "Identificación legible" -#: core/filters.py:415 +#: engine/core/filters.py:429 msgid "Parent" msgstr "Padres" -#: core/filters.py:419 +#: engine/core/filters.py:433 msgid "Whole category(has at least 1 product or not)" msgstr "Toda la categoría (tenga o no al menos 1 producto)" -#: core/filters.py:423 +#: engine/core/filters.py:437 msgid "Level" msgstr "Nivel" -#: core/filters.py:573 +#: engine/core/filters.py:587 msgid "Product UUID" msgstr "UUID del producto" -#: core/graphene/mutations.py:41 +#: engine/core/graphene/mutations.py:41 msgid "key to look for in or set into the cache" msgstr "Clave que hay que buscar o introducir en la caché" -#: core/graphene/mutations.py:42 +#: engine/core/graphene/mutations.py:42 msgid "data to store in cache" msgstr "Datos a almacenar en caché" -#: core/graphene/mutations.py:45 +#: engine/core/graphene/mutations.py:45 msgid "timeout in seconds to set the data for into the cache" msgstr "Tiempo de espera en segundos para poner los datos en la caché" -#: core/graphene/mutations.py:48 +#: engine/core/graphene/mutations.py:48 msgid "cached data" msgstr "Datos en caché" -#: core/graphene/mutations.py:63 +#: engine/core/graphene/mutations.py:63 msgid "camelized JSON data from the requested URL" msgstr "Datos JSON camelizados de la URL solicitada" -#: core/graphene/mutations.py:68 core/views.py:232 +#: engine/core/graphene/mutations.py:68 engine/core/views.py:231 msgid "only URLs starting with http(s):// are allowed" msgstr "Sólo se permiten URL que empiecen por http(s)://." -#: core/graphene/mutations.py:84 +#: engine/core/graphene/mutations.py:84 msgid "add a product to the order" msgstr "Añadir un producto al pedido" -#: core/graphene/mutations.py:105 core/graphene/mutations.py:132 -#: core/graphene/mutations.py:240 core/graphene/mutations.py:288 +#: engine/core/graphene/mutations.py:105 engine/core/graphene/mutations.py:132 +#: engine/core/graphene/mutations.py:240 engine/core/graphene/mutations.py:288 #, python-brace-format msgid "order {order_uuid} not found" msgstr "Pedido {order_uuid} ¡no encontrado!" -#: core/graphene/mutations.py:111 core/graphene/mutations.py:160 +#: engine/core/graphene/mutations.py:111 engine/core/graphene/mutations.py:160 msgid "remove a product from the order" msgstr "Eliminar un producto del pedido" -#: core/graphene/mutations.py:138 +#: engine/core/graphene/mutations.py:138 msgid "remove all products from the order" msgstr "Eliminar todos los productos del pedido" -#: core/graphene/mutations.py:183 +#: engine/core/graphene/mutations.py:183 msgid "buy an order" msgstr "Comprar un pedido" -#: core/graphene/mutations.py:212 core/graphene/mutations.py:266 +#: engine/core/graphene/mutations.py:212 engine/core/graphene/mutations.py:266 msgid "please provide either order_uuid or order_hr_id - mutually exclusive" msgstr "Indique order_uuid o order_hr_id, ¡se excluyen mutuamente!" -#: core/graphene/mutations.py:237 core/graphene/mutations.py:502 -#: core/graphene/mutations.py:544 core/viewsets.py:704 +#: engine/core/graphene/mutations.py:237 engine/core/graphene/mutations.py:502 +#: engine/core/graphene/mutations.py:544 engine/core/viewsets.py:704 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}" -#: core/graphene/mutations.py:246 +#: engine/core/graphene/mutations.py:246 msgid "perform an action on a list of products in the order" msgstr "Realizar una acción en una lista de productos del pedido" -#: core/graphene/mutations.py:251 +#: engine/core/graphene/mutations.py:251 msgid "remove/add" msgstr "Quitar/Agregar" -#: core/graphene/mutations.py:283 core/graphene/mutations.py:324 +#: engine/core/graphene/mutations.py:283 engine/core/graphene/mutations.py:324 msgid "action must be either add or remove" msgstr "La acción debe ser \"añadir\" o \"eliminar\"." -#: core/graphene/mutations.py:294 +#: engine/core/graphene/mutations.py:294 msgid "perform an action on a list of products in the wishlist" msgstr "Realizar una acción en una lista de productos de la lista de deseos" -#: core/graphene/mutations.py:312 +#: engine/core/graphene/mutations.py:312 msgid "please provide wishlist_uuid value" msgstr "Por favor, proporcione el valor `wishlist_uuid`." -#: core/graphene/mutations.py:329 core/graphene/mutations.py:405 -#: core/graphene/mutations.py:433 core/graphene/mutations.py:461 -#: core/graphene/mutations.py:505 +#: engine/core/graphene/mutations.py:329 engine/core/graphene/mutations.py:405 +#: engine/core/graphene/mutations.py:433 engine/core/graphene/mutations.py:461 +#: engine/core/graphene/mutations.py:505 #, python-brace-format msgid "wishlist {wishlist_uuid} not found" msgstr "Lista de deseos {wishlist_uuid} ¡no encontrada!" -#: core/graphene/mutations.py:383 +#: engine/core/graphene/mutations.py:383 msgid "add a product to the wishlist" msgstr "Añadir un producto al pedido" -#: core/graphene/mutations.py:411 +#: engine/core/graphene/mutations.py:411 msgid "remove a product from the wishlist" msgstr "Eliminar un producto del pedido" -#: core/graphene/mutations.py:439 +#: engine/core/graphene/mutations.py:439 msgid "remove all products from the wishlist" msgstr "Eliminar un producto del pedido" -#: core/graphene/mutations.py:467 +#: engine/core/graphene/mutations.py:467 msgid "buy all products from the wishlist" msgstr "Eliminar un producto del pedido" -#: core/graphene/mutations.py:511 +#: engine/core/graphene/mutations.py:511 msgid "buy a product" msgstr "Comprar un pedido" -#: core/graphene/mutations.py:517 +#: engine/core/graphene/mutations.py:517 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" -#: core/graphene/mutations.py:550 +#: engine/core/graphene/mutations.py:550 msgid "add or delete a feedback for orderproduct" msgstr "Añadir o eliminar un comentario para el pedido-producto" -#: core/graphene/mutations.py:574 +#: engine/core/graphene/mutations.py:574 msgid "action must be either `add` or `remove`" msgstr "La acción debe ser \"añadir\" o \"eliminar\"." -#: core/graphene/mutations.py:577 +#: engine/core/graphene/mutations.py:577 #, python-brace-format msgid "order product {order_product_uuid} not found" msgstr "No se ha encontrado el producto {order_product_uuid}." -#: core/graphene/mutations.py:644 +#: engine/core/graphene/mutations.py:644 msgid "original address string provided by the user" msgstr "Cadena de dirección original proporcionada por el usuario" -#: core/graphene/mutations.py:680 core/models.py:930 core/models.py:943 -#: core/models.py:1358 core/models.py:1387 core/models.py:1412 -#: core/viewsets.py:707 +#: engine/core/graphene/mutations.py:680 engine/core/models.py:941 +#: engine/core/models.py:954 engine/core/models.py:1369 +#: engine/core/models.py:1398 engine/core/models.py:1423 +#: engine/core/viewsets.py:707 #, python-brace-format msgid "{name} does not exist: {uuid}" msgstr "{name} no existe: ¡{uuid}!" -#: core/graphene/mutations.py:694 +#: engine/core/graphene/mutations.py:694 msgid "limit must be between 1 and 10" msgstr "El límite debe estar entre 1 y 10" -#: core/graphene/mutations.py:743 +#: engine/core/graphene/mutations.py:743 msgid "elasticsearch - works like a charm" msgstr "ElasticSearch - funciona a las mil maravillas" -#: core/graphene/object_types.py:82 core/graphene/object_types.py:370 -#: core/graphene/object_types.py:417 core/models.py:754 core/models.py:1225 -#: core/models.py:1823 +#: engine/core/graphene/object_types.py:82 +#: engine/core/graphene/object_types.py:370 +#: engine/core/graphene/object_types.py:417 engine/core/models.py:765 +#: engine/core/models.py:1236 engine/core/models.py:1883 msgid "attributes" msgstr "Atributos" -#: core/graphene/object_types.py:95 +#: engine/core/graphene/object_types.py:95 msgid "grouped attributes" msgstr "Atributos agrupados" -#: core/graphene/object_types.py:102 +#: engine/core/graphene/object_types.py:102 msgid "groups of attributes" msgstr "Grupos de atributos" -#: core/graphene/object_types.py:116 core/graphene/object_types.py:193 -#: core/graphene/object_types.py:223 core/models.py:426 +#: engine/core/graphene/object_types.py:116 +#: engine/core/graphene/object_types.py:193 +#: engine/core/graphene/object_types.py:223 engine/core/models.py:425 msgid "categories" msgstr "Categorías" -#: core/graphene/object_types.py:124 core/models.py:497 +#: engine/core/graphene/object_types.py:124 engine/core/models.py:496 msgid "brands" msgstr "Marcas" -#: core/graphene/object_types.py:195 +#: engine/core/graphene/object_types.py:195 msgid "category image url" msgstr "Categorías" -#: core/graphene/object_types.py:196 core/graphene/object_types.py:317 -#: core/models.py:284 +#: engine/core/graphene/object_types.py:196 +#: engine/core/graphene/object_types.py:317 engine/core/models.py:283 msgid "markup percentage" msgstr "Porcentaje de recargo" -#: core/graphene/object_types.py:199 +#: engine/core/graphene/object_types.py:199 msgid "which attributes and values can be used for filtering this category." msgstr "" "Qué atributos y valores se pueden utilizar para filtrar esta categoría." -#: core/graphene/object_types.py:203 -msgid "" -"minimum and maximum prices for products in this category, if available." +#: engine/core/graphene/object_types.py:203 +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." -#: core/graphene/object_types.py:205 +#: engine/core/graphene/object_types.py:205 msgid "tags for this category" msgstr "Etiquetas para esta categoría" -#: core/graphene/object_types.py:206 +#: engine/core/graphene/object_types.py:206 msgid "products in this category" msgstr "Productos de esta categoría" -#: core/graphene/object_types.py:324 core/models.py:189 +#: engine/core/graphene/object_types.py:324 engine/core/models.py:188 msgid "vendors" msgstr "Vendedores" -#: core/graphene/object_types.py:328 +#: engine/core/graphene/object_types.py:328 msgid "Latitude (Y coordinate)" msgstr "Latitud (coordenada Y)" -#: core/graphene/object_types.py:329 +#: engine/core/graphene/object_types.py:329 msgid "Longitude (X coordinate)" msgstr "Longitud (coordenada X)" -#: core/graphene/object_types.py:358 +#: engine/core/graphene/object_types.py:358 msgid "comment" msgstr "Cómo" -#: core/graphene/object_types.py:359 core/graphene/object_types.py:483 +#: engine/core/graphene/object_types.py:359 +#: engine/core/graphene/object_types.py:483 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." -#: core/graphene/object_types.py:366 +#: engine/core/graphene/object_types.py:366 msgid "represents feedback from a user." msgstr "Representa la opinión de un usuario." -#: core/graphene/object_types.py:371 core/graphene/object_types.py:418 -#: core/models.py:1219 +#: engine/core/graphene/object_types.py:371 +#: engine/core/graphene/object_types.py:418 engine/core/models.py:1230 msgid "notifications" msgstr "Notificaciones" -#: core/graphene/object_types.py:372 +#: engine/core/graphene/object_types.py:372 msgid "download url for this order product if applicable" msgstr "Descargar url para este producto de pedido si procede" -#: core/graphene/object_types.py:373 core/models.py:1939 +#: engine/core/graphene/object_types.py:373 engine/core/models.py:1722 msgid "feedback" msgstr "Comentarios" -#: core/graphene/object_types.py:407 +#: engine/core/graphene/object_types.py:407 msgid "a list of order products in this order" msgstr "Una lista de los productos del pedido" -#: core/graphene/object_types.py:409 core/models.py:1189 +#: engine/core/graphene/object_types.py:409 engine/core/models.py:1200 msgid "billing address" msgstr "Dirección de facturación" -#: core/graphene/object_types.py:412 +#: engine/core/graphene/object_types.py:412 msgid "" "shipping address for this order, leave blank if same as billing address or " "if not applicable" @@ -1308,201 +1334,209 @@ msgstr "" "Dirección de envío para este pedido, dejar en blanco si es la misma que la " "de facturación o si no procede" -#: core/graphene/object_types.py:414 +#: engine/core/graphene/object_types.py:414 msgid "total price of this order" msgstr "Precio total de este pedido" -#: core/graphene/object_types.py:415 +#: engine/core/graphene/object_types.py:415 msgid "total quantity of products in order" msgstr "Cantidad total de productos del pedido" -#: core/graphene/object_types.py:416 +#: engine/core/graphene/object_types.py:416 msgid "are all products in the order digital" msgstr "¿Están todos los productos en el pedido digital" -#: core/graphene/object_types.py:419 +#: engine/core/graphene/object_types.py:419 msgid "transactions for this order" msgstr "Transacciones para este pedido" -#: core/graphene/object_types.py:438 core/models.py:1253 +#: engine/core/graphene/object_types.py:438 engine/core/models.py:1264 msgid "orders" msgstr "Pedidos" -#: core/graphene/object_types.py:459 +#: engine/core/graphene/object_types.py:459 msgid "image url" msgstr "URL de la imagen" -#: core/graphene/object_types.py:466 +#: engine/core/graphene/object_types.py:466 msgid "product's images" msgstr "Imágenes del producto" -#: core/graphene/object_types.py:473 core/models.py:425 core/models.py:579 +#: engine/core/graphene/object_types.py:473 engine/core/models.py:424 +#: engine/core/models.py:579 msgid "category" msgstr "Categoría" -#: core/graphene/object_types.py:475 core/models.py:1940 +#: engine/core/graphene/object_types.py:475 engine/core/models.py:1723 msgid "feedbacks" msgstr "Comentarios" -#: core/graphene/object_types.py:476 core/models.py:496 core/models.py:588 +#: engine/core/graphene/object_types.py:476 engine/core/models.py:495 +#: engine/core/models.py:588 msgid "brand" msgstr "Marca" -#: core/graphene/object_types.py:477 core/models.py:107 +#: engine/core/graphene/object_types.py:477 engine/core/models.py:106 msgid "attribute groups" msgstr "Grupos de atributos" -#: core/graphene/object_types.py:478 -#: core/templates/digital_order_created_email.html:111 -#: core/templates/digital_order_delivered_email.html:109 -#: core/templates/shipped_order_created_email.html:109 -#: core/templates/shipped_order_delivered_email.html:109 +#: engine/core/graphene/object_types.py:478 +#: engine/core/templates/digital_order_created_email.html:111 +#: engine/core/templates/digital_order_delivered_email.html:109 +#: engine/core/templates/shipped_order_created_email.html:109 +#: engine/core/templates/shipped_order_delivered_email.html:109 msgid "price" msgstr "Precio" -#: core/graphene/object_types.py:479 -#: core/templates/digital_order_created_email.html:110 -#: core/templates/digital_order_delivered_email.html:108 -#: core/templates/shipped_order_created_email.html:108 -#: core/templates/shipped_order_delivered_email.html:108 +#: engine/core/graphene/object_types.py:479 +#: engine/core/templates/digital_order_created_email.html:110 +#: engine/core/templates/digital_order_delivered_email.html:108 +#: engine/core/templates/shipped_order_created_email.html:108 +#: engine/core/templates/shipped_order_delivered_email.html:108 msgid "quantity" msgstr "Cantidad" -#: core/graphene/object_types.py:480 +#: engine/core/graphene/object_types.py:480 msgid "number of feedbacks" msgstr "Número de reacciones" -#: core/graphene/object_types.py:481 +#: engine/core/graphene/object_types.py:481 msgid "only available for personal orders" msgstr "Productos sólo disponibles para pedidos personales" -#: core/graphene/object_types.py:507 core/models.py:651 +#: engine/core/graphene/object_types.py:484 +msgid "discount price" +msgstr "Precio reducido" + +#: engine/core/graphene/object_types.py:508 engine/core/models.py:651 msgid "products" msgstr "Productos" -#: core/graphene/object_types.py:607 +#: engine/core/graphene/object_types.py:611 msgid "promocodes" msgstr "Códigos promocionales" -#: core/graphene/object_types.py:617 +#: engine/core/graphene/object_types.py:621 msgid "products on sale" msgstr "Productos a la venta" -#: core/graphene/object_types.py:624 core/models.py:879 +#: engine/core/graphene/object_types.py:628 engine/core/models.py:890 msgid "promotions" msgstr "Promociones" -#: core/graphene/object_types.py:628 core/models.py:188 +#: engine/core/graphene/object_types.py:632 engine/core/models.py:187 msgid "vendor" msgstr "Vendedor" -#: core/graphene/object_types.py:629 core/models.py:650 -#: core/templates/digital_order_created_email.html:109 -#: core/templates/digital_order_delivered_email.html:107 -#: core/templates/shipped_order_created_email.html:107 -#: core/templates/shipped_order_delivered_email.html:107 +#: engine/core/graphene/object_types.py:633 engine/core/models.py:650 +#: 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 +#: engine/core/templates/shipped_order_delivered_email.html:107 msgid "product" msgstr "Producto" -#: core/graphene/object_types.py:640 core/models.py:902 +#: engine/core/graphene/object_types.py:644 engine/core/models.py:913 msgid "wishlisted products" msgstr "Productos deseados" -#: core/graphene/object_types.py:646 core/models.py:919 +#: engine/core/graphene/object_types.py:650 engine/core/models.py:930 msgid "wishlists" msgstr "Listas de deseos" -#: core/graphene/object_types.py:650 +#: engine/core/graphene/object_types.py:654 msgid "tagged products" msgstr "Productos con etiqueta" -#: core/graphene/object_types.py:657 core/models.py:225 core/models.py:594 +#: engine/core/graphene/object_types.py:661 engine/core/models.py:224 +#: engine/core/models.py:594 msgid "product tags" msgstr "Etiquetas del producto" -#: core/graphene/object_types.py:661 +#: engine/core/graphene/object_types.py:665 msgid "tagged categories" msgstr "Categorías" -#: core/graphene/object_types.py:668 +#: engine/core/graphene/object_types.py:672 msgid "categories tags" msgstr "Etiquetas de las categorías" -#: core/graphene/object_types.py:672 +#: engine/core/graphene/object_types.py:676 msgid "project name" msgstr "Nombre del proyecto" -#: core/graphene/object_types.py:673 +#: engine/core/graphene/object_types.py:677 msgid "company email" msgstr "Correo electrónico de la empresa" -#: core/graphene/object_types.py:674 +#: engine/core/graphene/object_types.py:678 msgid "company name" msgstr "Nombre de la empresa" -#: core/graphene/object_types.py:675 +#: engine/core/graphene/object_types.py:679 msgid "company address" msgstr "Dirección de la empresa" -#: core/graphene/object_types.py:676 +#: engine/core/graphene/object_types.py:680 msgid "company phone number" msgstr "Teléfono de la empresa" -#: core/graphene/object_types.py:677 +#: engine/core/graphene/object_types.py:681 msgid "email from, sometimes it must be used instead of host user value" msgstr "" "'email from', a veces debe utilizarse en lugar del valor del usuario host" -#: core/graphene/object_types.py:678 +#: engine/core/graphene/object_types.py:682 msgid "email host user" msgstr "Correo electrónico del usuario anfitrión" -#: core/graphene/object_types.py:679 +#: engine/core/graphene/object_types.py:683 msgid "maximum amount for payment" msgstr "Importe máximo de pago" -#: core/graphene/object_types.py:680 +#: engine/core/graphene/object_types.py:684 msgid "minimum amount for payment" msgstr "Importe mínimo de pago" -#: core/graphene/object_types.py:681 +#: engine/core/graphene/object_types.py:685 msgid "analytics data" msgstr "Datos analíticos" -#: core/graphene/object_types.py:682 +#: engine/core/graphene/object_types.py:686 msgid "advertisement data" msgstr "Datos publicitarios" -#: core/graphene/object_types.py:685 +#: engine/core/graphene/object_types.py:689 msgid "company configuration" msgstr "Configuración" -#: core/graphene/object_types.py:689 +#: engine/core/graphene/object_types.py:693 msgid "language code" msgstr "Código de idioma" -#: core/graphene/object_types.py:690 +#: engine/core/graphene/object_types.py:694 msgid "language name" msgstr "Nombre de la lengua" -#: core/graphene/object_types.py:691 +#: engine/core/graphene/object_types.py:695 msgid "language flag, if exists :)" msgstr "Bandera de idioma, si existe :)" -#: core/graphene/object_types.py:694 +#: engine/core/graphene/object_types.py:698 msgid "supported languages" msgstr "Obtener una lista de los idiomas admitidos" -#: core/graphene/object_types.py:725 core/graphene/object_types.py:726 -#: core/graphene/object_types.py:727 +#: engine/core/graphene/object_types.py:729 +#: engine/core/graphene/object_types.py:730 +#: engine/core/graphene/object_types.py:731 msgid "products search results" msgstr "Resultados de la búsqueda de productos" -#: core/graphene/object_types.py:728 +#: engine/core/graphene/object_types.py:732 msgid "posts search results" msgstr "Resultados de la búsqueda de productos" -#: core/models.py:76 +#: engine/core/models.py:75 msgid "" "Represents a group of attributes, which can be hierarchical. This class is " "used to manage and organize attribute groups. An attribute group can have a " @@ -1512,26 +1546,26 @@ 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." -#: core/models.py:92 +#: engine/core/models.py:91 msgid "parent of this group" msgstr "Padre de este grupo" -#: core/models.py:93 +#: engine/core/models.py:92 msgid "parent attribute group" msgstr "Grupo de atributos padre" -#: core/models.py:97 core/models.py:98 +#: engine/core/models.py:96 engine/core/models.py:97 msgid "attribute group's name" msgstr "Nombre del grupo de atributos" -#: core/models.py:106 core/models.py:716 +#: engine/core/models.py:105 engine/core/models.py:727 msgid "attribute group" msgstr "Grupo de atributos" -#: core/models.py:112 +#: engine/core/models.py:111 msgid "" "Represents a vendor entity capable of storing information about external " "vendors and their interaction requirements. The Vendor class is used to " @@ -1543,58 +1577,58 @@ 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." -#: core/models.py:125 +#: engine/core/models.py:124 msgid "stores credentials and endpoints required for vendor communication" msgstr "" "Almacena las credenciales y los puntos finales necesarios para la " "comunicación API del proveedor" -#: core/models.py:126 +#: engine/core/models.py:125 msgid "authentication info" msgstr "Información de autenticación" -#: core/models.py:131 +#: engine/core/models.py:130 msgid "define the markup for products retrieved from this vendor" msgstr "" "Definir el margen de beneficio para los productos recuperados de este " "proveedor" -#: core/models.py:132 +#: engine/core/models.py:131 msgid "vendor markup percentage" msgstr "Porcentaje de margen del vendedor" -#: core/models.py:136 +#: engine/core/models.py:135 msgid "name of this vendor" msgstr "Nombre de este vendedor" -#: core/models.py:137 +#: engine/core/models.py:136 msgid "vendor name" msgstr "Nombre del vendedor" -#: core/models.py:148 +#: engine/core/models.py:147 msgid "response file" msgstr "archivo de respuesta" -#: core/models.py:149 +#: engine/core/models.py:148 msgid "vendor's last processing response" msgstr "última respuesta de procesamiento del proveedor" -#: core/models.py:155 +#: engine/core/models.py:154 msgid "vendor's integration file path" msgstr "Ruta del archivo de integración del proveedor" -#: core/models.py:156 +#: engine/core/models.py:155 msgid "integration path" msgstr "Vía de integración" -#: core/models.py:198 +#: engine/core/models.py:197 msgid "" "Represents a product tag used for classifying or identifying products. The " "ProductTag class is designed to uniquely identify and classify products " @@ -1609,27 +1643,27 @@ msgstr "" "operaciones exportadas a través de mixins y proporciona personalización de " "metadatos con fines administrativos." -#: core/models.py:210 core/models.py:241 +#: engine/core/models.py:209 engine/core/models.py:240 msgid "internal tag identifier for the product tag" msgstr "Identificador interno de la etiqueta del producto" -#: core/models.py:211 core/models.py:242 +#: engine/core/models.py:210 engine/core/models.py:241 msgid "tag name" msgstr "Nombre de la etiqueta" -#: core/models.py:215 core/models.py:246 +#: engine/core/models.py:214 engine/core/models.py:245 msgid "user-friendly name for the product tag" msgstr "Nombre fácil de usar para la etiqueta del producto" -#: core/models.py:216 core/models.py:247 +#: engine/core/models.py:215 engine/core/models.py:246 msgid "tag display name" msgstr "Nombre de la etiqueta" -#: core/models.py:224 +#: engine/core/models.py:223 msgid "product tag" msgstr "Etiqueta del producto" -#: core/models.py:230 +#: engine/core/models.py:229 msgid "" "Represents a category tag used for products. This class models a category " "tag that can be used to associate and classify products. It includes " @@ -1640,15 +1674,15 @@ msgstr "" "clasificar productos. Incluye atributos para un identificador de etiqueta " "interno y un nombre de visualización fácil de usar." -#: core/models.py:255 +#: engine/core/models.py:254 msgid "category tag" msgstr "etiqueta de categoría" -#: core/models.py:256 core/models.py:328 +#: engine/core/models.py:255 engine/core/models.py:327 msgid "category tags" msgstr "etiquetas de categoría" -#: core/models.py:261 +#: engine/core/models.py:260 msgid "" "Represents a category entity to organize and group related items in a " "hierarchical structure. Categories may have hierarchical relationships with " @@ -1671,57 +1705,56 @@ msgstr "" "descripción y la jerarquía de las categorías, así como asignar atributos " "como imágenes, etiquetas o prioridad." -#: core/models.py:275 +#: engine/core/models.py:274 msgid "upload an image representing this category" msgstr "Cargar una imagen que represente esta categoría" -#: core/models.py:278 +#: engine/core/models.py:277 msgid "category image" msgstr "Categoría imagen" -#: core/models.py:283 +#: engine/core/models.py:282 msgid "define a markup percentage for products in this category" msgstr "Definir un porcentaje de recargo para los productos de esta categoría" -#: core/models.py:292 +#: engine/core/models.py:291 msgid "parent of this category to form a hierarchical structure" msgstr "Padre de esta categoría para formar una estructura jerárquica" -#: core/models.py:293 +#: engine/core/models.py:292 msgid "parent category" msgstr "Categoría de padres" -#: core/models.py:298 +#: engine/core/models.py:297 msgid "category name" msgstr "Nombre de la categoría" -#: core/models.py:299 +#: engine/core/models.py:298 msgid "provide a name for this category" msgstr "Indique un nombre para esta categoría" -#: core/models.py:306 +#: engine/core/models.py:305 msgid "add a detailed description for this category" msgstr "Añadir una descripción detallada para esta categoría" -#: core/models.py:307 +#: engine/core/models.py:306 msgid "category description" msgstr "Descripción de la categoría" -#: core/models.py:327 +#: engine/core/models.py:326 msgid "tags that help describe or group this category" msgstr "etiquetas que ayudan a describir o agrupar esta categoría" -#: core/models.py:334 core/models.py:489 +#: engine/core/models.py:333 engine/core/models.py:488 msgid "priority" msgstr "Prioridad" -#: core/models.py:432 +#: engine/core/models.py:431 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, " @@ -1729,50 +1762,50 @@ msgstr "" "Permite organizar y representar los datos relacionados con la marca dentro " "de la aplicación." -#: core/models.py:442 +#: engine/core/models.py:441 msgid "name of this brand" msgstr "Nombre de esta marca" -#: core/models.py:443 +#: engine/core/models.py:442 msgid "brand name" msgstr "Marca" -#: core/models.py:450 +#: engine/core/models.py:449 msgid "upload a logo representing this brand" msgstr "Cargar un logotipo que represente a esta marca" -#: core/models.py:452 +#: engine/core/models.py:451 msgid "brand small image" msgstr "Marca pequeña imagen" -#: core/models.py:458 +#: engine/core/models.py:457 msgid "upload a big logo representing this brand" msgstr "Sube un logotipo grande que represente a esta marca" -#: core/models.py:460 +#: engine/core/models.py:459 msgid "brand big image" msgstr "Gran imagen de marca" -#: core/models.py:465 +#: engine/core/models.py:464 msgid "add a detailed description of the brand" msgstr "Añadir una descripción detallada de la marca" -#: core/models.py:466 +#: engine/core/models.py:465 msgid "brand description" msgstr "Descripción de la marca" -#: core/models.py:471 +#: engine/core/models.py:470 msgid "optional categories that this brand is associated with" msgstr "Categorías opcionales a las que se asocia esta marca" -#: core/models.py:472 +#: engine/core/models.py:471 msgid "associated categories" msgstr "Categorías" -#: core/models.py:502 +#: engine/core/models.py:501 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 " @@ -1781,73 +1814,77 @@ 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." -#: core/models.py:514 +#: engine/core/models.py:513 msgid "the vendor supplying this product stock" msgstr "El vendedor que suministra este producto dispone de" -#: core/models.py:515 +#: engine/core/models.py:514 msgid "associated vendor" msgstr "Proveedor asociado" -#: core/models.py:519 +#: engine/core/models.py:518 msgid "final price to the customer after markups" msgstr "Precio final al cliente después de márgenes" -#: core/models.py:520 +#: engine/core/models.py:519 msgid "selling price" msgstr "Precio de venta" -#: core/models.py:525 +#: engine/core/models.py:524 msgid "the product associated with this stock entry" msgstr "El producto asociado a esta entrada en stock" -#: core/models.py:526 core/models.py:779 core/models.py:825 -#: core/models.py:1718 +#: engine/core/models.py:525 engine/core/models.py:790 +#: engine/core/models.py:836 engine/core/models.py:1778 msgid "associated product" msgstr "Producto asociado" -#: core/models.py:533 +#: engine/core/models.py:532 msgid "the price paid to the vendor for this product" msgstr "El precio pagado al vendedor por este producto" -#: core/models.py:534 +#: engine/core/models.py:533 msgid "vendor purchase price" msgstr "Precio de compra al vendedor" -#: core/models.py:538 +#: engine/core/models.py:537 msgid "available quantity of the product in stock" msgstr "Cantidad disponible del producto en stock" -#: core/models.py:539 +#: engine/core/models.py:538 msgid "quantity in stock" msgstr "Cantidad en stock" -#: core/models.py:543 +#: engine/core/models.py:542 msgid "vendor-assigned SKU for identifying the product" msgstr "SKU asignada por el proveedor para identificar el producto" -#: core/models.py:544 +#: engine/core/models.py:543 msgid "vendor sku" msgstr "SKU del vendedor" -#: core/models.py:550 +#: engine/core/models.py:549 msgid "digital file associated with this stock if applicable" msgstr "Archivo digital asociado a esta acción, si procede" -#: core/models.py:551 +#: engine/core/models.py:550 msgid "digital file" msgstr "Archivo digital" -#: core/models.py:560 +#: engine/core/models.py:553 +msgid "system attributes" +msgstr "Atributos del sistema" + +#: engine/core/models.py:560 msgid "stock entries" msgstr "Entradas en existencias" -#: core/models.py:565 +#: engine/core/models.py:565 msgid "" "Represents a product with attributes such as category, brand, tags, digital " "status, name, description, part number, and slug. Provides related utility " @@ -1861,163 +1898,163 @@ 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." -#: core/models.py:578 +#: engine/core/models.py:578 msgid "category this product belongs to" msgstr "Categoría a la que pertenece este producto" -#: core/models.py:587 +#: engine/core/models.py:587 msgid "optionally associate this product with a brand" msgstr "Si lo desea, puede asociar este producto a una marca" -#: core/models.py:593 +#: engine/core/models.py:593 msgid "tags that help describe or group this product" msgstr "Etiquetas que ayudan a describir o agrupar este producto" -#: core/models.py:598 +#: engine/core/models.py:598 msgid "indicates whether this product is digitally delivered" msgstr "Indica si este producto se entrega digitalmente" -#: core/models.py:599 +#: engine/core/models.py:599 msgid "is product digital" msgstr "¿Es digital el producto?" -#: core/models.py:605 +#: engine/core/models.py:605 msgid "provide a clear identifying name for the product" msgstr "Proporcionar un nombre que identifique claramente el producto" -#: core/models.py:606 +#: engine/core/models.py:606 msgid "product name" msgstr "Nombre del producto" -#: core/models.py:612 core/models.py:867 +#: engine/core/models.py:612 engine/core/models.py:878 msgid "add a detailed description of the product" msgstr "Añada una descripción detallada del producto" -#: core/models.py:613 +#: engine/core/models.py:613 msgid "product description" msgstr "Descripción del producto" -#: core/models.py:620 +#: engine/core/models.py:620 msgid "part number for this product" msgstr "Número de pieza de este producto" -#: core/models.py:621 +#: engine/core/models.py:621 msgid "part number" msgstr "Número de pieza" -#: core/models.py:640 +#: engine/core/models.py:640 msgid "stock keeping unit for this product" msgstr "Unidad de Mantenimiento de Existencias para este producto" -#: core/models.py:702 +#: engine/core/models.py:713 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." -#: core/models.py:715 +#: engine/core/models.py:726 msgid "group of this attribute" msgstr "Grupo de este atributo" -#: core/models.py:721 +#: engine/core/models.py:732 msgid "string" msgstr "Cadena" -#: core/models.py:722 +#: engine/core/models.py:733 msgid "integer" msgstr "Entero" -#: core/models.py:723 +#: engine/core/models.py:734 msgid "float" msgstr "Flotador" -#: core/models.py:724 +#: engine/core/models.py:735 msgid "boolean" msgstr "Booleano" -#: core/models.py:725 +#: engine/core/models.py:736 msgid "array" msgstr "Matriz" -#: core/models.py:726 +#: engine/core/models.py:737 msgid "object" msgstr "Objeto" -#: core/models.py:728 +#: engine/core/models.py:739 msgid "type of the attribute's value" msgstr "Tipo del valor del atributo" -#: core/models.py:729 +#: engine/core/models.py:740 msgid "value type" msgstr "Tipo de valor" -#: core/models.py:734 +#: engine/core/models.py:745 msgid "name of this attribute" msgstr "Nombre de este atributo" -#: core/models.py:735 +#: engine/core/models.py:746 msgid "attribute's name" msgstr "Nombre del atributo" -#: core/models.py:740 +#: engine/core/models.py:751 msgid "is filterable" msgstr "es filtrable" -#: core/models.py:741 +#: engine/core/models.py:752 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." -#: core/models.py:753 core/models.py:771 -#: core/templates/digital_order_delivered_email.html:134 +#: engine/core/models.py:764 engine/core/models.py:782 +#: engine/core/templates/digital_order_delivered_email.html:134 msgid "attribute" msgstr "Atributo" -#: core/models.py:759 +#: engine/core/models.py:770 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." -#: core/models.py:770 +#: engine/core/models.py:781 msgid "attribute of this value" msgstr "Atributo de este valor" -#: core/models.py:778 +#: engine/core/models.py:789 msgid "the specific product associated with this attribute's value" msgstr "El producto específico asociado al valor de este atributo" -#: core/models.py:784 +#: engine/core/models.py:795 msgid "the specific value for this attribute" msgstr "El valor específico de este atributo" -#: core/models.py:797 +#: engine/core/models.py:808 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 "" @@ -2027,47 +2064,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." -#: core/models.py:808 +#: engine/core/models.py:819 msgid "provide alternative text for the image for accessibility" msgstr "" "Proporcione un texto alternativo para la imagen en aras de la accesibilidad" -#: core/models.py:809 +#: engine/core/models.py:820 msgid "image alt text" msgstr "Texto alternativo de la imagen" -#: core/models.py:812 +#: engine/core/models.py:823 msgid "upload the image file for this product" msgstr "Cargar el archivo de imagen para este producto" -#: core/models.py:813 core/models.py:837 +#: engine/core/models.py:824 engine/core/models.py:848 msgid "product image" msgstr "Imagen del producto" -#: core/models.py:818 +#: engine/core/models.py:829 msgid "determines the order in which images are displayed" msgstr "Determina el orden de visualización de las imágenes" -#: core/models.py:819 +#: engine/core/models.py:830 msgid "display priority" msgstr "Prioridad de visualización" -#: core/models.py:824 +#: engine/core/models.py:835 msgid "the product that this image represents" msgstr "El producto que representa esta imagen" -#: core/models.py:838 +#: engine/core/models.py:849 msgid "product images" msgstr "Imágenes de productos" -#: core/models.py:843 +#: engine/core/models.py:854 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 " @@ -2076,39 +2113,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." -#: core/models.py:855 +#: engine/core/models.py:866 msgid "percentage discount for the selected products" msgstr "Porcentaje de descuento para los productos seleccionados" -#: core/models.py:856 +#: engine/core/models.py:867 msgid "discount percentage" msgstr "Porcentaje de descuento" -#: core/models.py:861 +#: engine/core/models.py:872 msgid "provide a unique name for this promotion" msgstr "Proporcione un nombre único para esta promoción" -#: core/models.py:862 +#: engine/core/models.py:873 msgid "promotion name" msgstr "Nombre de la promoción" -#: core/models.py:868 +#: engine/core/models.py:879 msgid "promotion description" msgstr "Descripción de la promoción" -#: core/models.py:873 +#: engine/core/models.py:884 msgid "select which products are included in this promotion" msgstr "Seleccione los productos incluidos en esta promoción" -#: core/models.py:874 +#: engine/core/models.py:885 msgid "included products" msgstr "Productos incluidos" -#: core/models.py:878 +#: engine/core/models.py:889 msgid "promotion" msgstr "Promoción" -#: core/models.py:889 +#: engine/core/models.py:900 msgid "" "Represents a user's wishlist for storing and managing desired products. The " "class provides functionality to manage a collection of products, supporting " @@ -2121,30 +2158,30 @@ msgstr "" "productos, así como soportar operaciones para añadir y eliminar múltiples " "productos a la vez." -#: core/models.py:901 +#: engine/core/models.py:912 msgid "products that the user has marked as wanted" msgstr "Productos que el usuario ha marcado como deseados" -#: core/models.py:909 +#: engine/core/models.py:920 msgid "user who owns this wishlist" msgstr "Usuario propietario de esta lista de deseos" -#: core/models.py:910 +#: engine/core/models.py:921 msgid "wishlist owner" msgstr "Propietario de Wishlist" -#: core/models.py:918 +#: engine/core/models.py:929 msgid "wishlist" msgstr "Lista de deseos" -#: core/models.py:960 +#: engine/core/models.py:971 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 " @@ -2153,28 +2190,28 @@ msgstr "" "de almacenamiento de los archivos documentales. Amplía la funcionalidad de " "mixins específicos y proporciona características personalizadas adicionales." -#: core/models.py:973 +#: engine/core/models.py:984 msgid "documentary" msgstr "Documental" -#: core/models.py:974 +#: engine/core/models.py:985 msgid "documentaries" msgstr "Documentaries" -#: core/models.py:984 +#: engine/core/models.py:995 msgid "unresolved" msgstr "Sin resolver" -#: core/models.py:989 +#: engine/core/models.py:1000 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 " @@ -2183,63 +2220,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." -#: core/models.py:1004 +#: engine/core/models.py:1015 msgid "address line for the customer" msgstr "Dirección del cliente" -#: core/models.py:1005 +#: engine/core/models.py:1016 msgid "address line" msgstr "Dirección" -#: core/models.py:1007 +#: engine/core/models.py:1018 msgid "street" msgstr "Calle" -#: core/models.py:1008 +#: engine/core/models.py:1019 msgid "district" msgstr "Distrito" -#: core/models.py:1009 +#: engine/core/models.py:1020 msgid "city" msgstr "Ciudad" -#: core/models.py:1010 +#: engine/core/models.py:1021 msgid "region" msgstr "Región" -#: core/models.py:1011 +#: engine/core/models.py:1022 msgid "postal code" msgstr "Promo code" -#: core/models.py:1012 +#: engine/core/models.py:1023 msgid "country" msgstr "País" -#: core/models.py:1019 +#: engine/core/models.py:1030 msgid "geolocation point: (longitude, latitude)" msgstr "Geolocalización Punto(Longitud, Latitud)" -#: core/models.py:1022 +#: engine/core/models.py:1033 msgid "full JSON response from geocoder for this address" msgstr "Respuesta JSON completa del geocodificador para esta dirección" -#: core/models.py:1027 +#: engine/core/models.py:1038 msgid "stored JSON response from the geocoding service" msgstr "Respuesta JSON almacenada del servicio de geocodificación" -#: core/models.py:1035 +#: engine/core/models.py:1046 msgid "address" msgstr "Dirección" -#: core/models.py:1036 +#: engine/core/models.py:1047 msgid "addresses" msgstr "Direcciones" -#: core/models.py:1048 +#: engine/core/models.py:1059 msgid "" "Represents a promotional code that can be used for discounts, managing its " "validity, type of discount, and application. The PromoCode class stores " @@ -2256,72 +2293,72 @@ msgstr "" "para validar y aplicar el código promocional a un pedido garantizando el " "cumplimiento de las restricciones." -#: core/models.py:1062 +#: engine/core/models.py:1073 msgid "unique code used by a user to redeem a discount" msgstr "Código único utilizado por un usuario para canjear un descuento" -#: core/models.py:1063 +#: engine/core/models.py:1074 msgid "promo code identifier" msgstr "Promo code identifier" -#: core/models.py:1070 +#: engine/core/models.py:1081 msgid "fixed discount amount applied if percent is not used" msgstr "Se aplica un descuento fijo si no se utiliza el porcentaje" -#: core/models.py:1071 +#: engine/core/models.py:1082 msgid "fixed discount amount" msgstr "Importe fijo del descuento" -#: core/models.py:1077 +#: engine/core/models.py:1088 msgid "percentage discount applied if fixed amount is not used" msgstr "Porcentaje de descuento aplicado si no se utiliza el importe fijo" -#: core/models.py:1078 +#: engine/core/models.py:1089 msgid "percentage discount" msgstr "Porcentaje de descuento" -#: core/models.py:1083 +#: engine/core/models.py:1094 msgid "timestamp when the promocode expires" msgstr "Fecha de caducidad del promocode" -#: core/models.py:1084 +#: engine/core/models.py:1095 msgid "end validity time" msgstr "Hora de fin de validez" -#: core/models.py:1089 +#: engine/core/models.py:1100 msgid "timestamp from which this promocode is valid" msgstr "Fecha a partir de la cual es válido este promocode" -#: core/models.py:1090 +#: engine/core/models.py:1101 msgid "start validity time" msgstr "Hora de inicio de validez" -#: core/models.py:1095 +#: engine/core/models.py:1106 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" -#: core/models.py:1096 +#: engine/core/models.py:1107 msgid "usage timestamp" msgstr "Marca de tiempo de uso" -#: core/models.py:1101 +#: engine/core/models.py:1112 msgid "user assigned to this promocode if applicable" msgstr "Usuario asignado a este promocode si procede" -#: core/models.py:1102 +#: engine/core/models.py:1113 msgid "assigned user" msgstr "Usuario asignado" -#: core/models.py:1109 +#: engine/core/models.py:1120 msgid "promo code" msgstr "Promo code" -#: core/models.py:1110 +#: engine/core/models.py:1121 msgid "promo codes" msgstr "Promo codes" -#: core/models.py:1125 +#: engine/core/models.py:1136 msgid "" "only one type of discount should be defined (amount or percent), but not " "both or neither." @@ -2329,21 +2366,21 @@ msgstr "" "Sólo debe definirse un tipo de descuento (importe o porcentaje), pero no " "ambos ni ninguno." -#: core/models.py:1146 +#: engine/core/models.py:1157 msgid "promocode already used" msgstr "El código promocional ya ha sido utilizado" -#: core/models.py:1162 +#: engine/core/models.py:1173 #, 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}!" -#: core/models.py:1171 +#: engine/core/models.py:1182 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 "" @@ -2351,141 +2388,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." -#: core/models.py:1188 +#: engine/core/models.py:1199 msgid "the billing address used for this order" msgstr "La dirección de facturación utilizada para este pedido" -#: core/models.py:1196 +#: engine/core/models.py:1207 msgid "optional promo code applied to this order" msgstr "Código promocional opcional aplicado a este pedido" -#: core/models.py:1197 +#: engine/core/models.py:1208 msgid "applied promo code" msgstr "Código promocional aplicado" -#: core/models.py:1205 +#: engine/core/models.py:1216 msgid "the shipping address used for this order" msgstr "La dirección de envío utilizada para este pedido" -#: core/models.py:1206 +#: engine/core/models.py:1217 msgid "shipping address" msgstr "Dirección de envío" -#: core/models.py:1212 +#: engine/core/models.py:1223 msgid "current status of the order in its lifecycle" msgstr "Estado actual del pedido en su ciclo de vida" -#: core/models.py:1213 +#: engine/core/models.py:1224 msgid "order status" msgstr "Estado del pedido" -#: core/models.py:1218 core/models.py:1695 +#: engine/core/models.py:1229 engine/core/models.py:1755 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." -#: core/models.py:1224 +#: engine/core/models.py:1235 msgid "json representation of order attributes for this order" msgstr "Representación JSON de los atributos de la orden para esta orden" -#: core/models.py:1230 +#: engine/core/models.py:1241 msgid "the user who placed the order" msgstr "El usuario que realizó el pedido" -#: core/models.py:1231 +#: engine/core/models.py:1242 msgid "user" msgstr "Usuario" -#: core/models.py:1237 +#: engine/core/models.py:1248 msgid "the timestamp when the order was finalized" msgstr "Fecha de finalización de la orden" -#: core/models.py:1238 +#: engine/core/models.py:1249 msgid "buy time" msgstr "Comprar tiempo" -#: core/models.py:1245 +#: engine/core/models.py:1256 msgid "a human-readable identifier for the order" msgstr "Un identificador legible por el ser humano para la orden" -#: core/models.py:1246 +#: engine/core/models.py:1257 msgid "human readable id" msgstr "ID legible por humanos" -#: core/models.py:1252 +#: engine/core/models.py:1263 msgid "order" msgstr "Pida" -#: core/models.py:1294 +#: engine/core/models.py:1305 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." -#: core/models.py:1326 +#: engine/core/models.py:1337 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" -#: core/models.py:1331 +#: engine/core/models.py:1342 msgid "you cannot add inactive products to order" msgstr "No se pueden añadir productos inactivos al pedido" -#: core/models.py:1348 +#: engine/core/models.py:1359 msgid "you cannot add more products than available in stock" msgstr "No puede añadir más productos de los disponibles en stock" -#: core/models.py:1370 core/models.py:1395 core/models.py:1403 +#: engine/core/models.py:1381 engine/core/models.py:1406 +#: engine/core/models.py:1414 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" -#: core/models.py:1391 +#: engine/core/models.py:1402 #, python-brace-format msgid "{name} does not exist with query <{query}>" msgstr "{name} ¡no existe con la consulta <{query}>!" -#: core/models.py:1423 +#: engine/core/models.py:1434 msgid "promocode does not exist" msgstr "Promocode no existe" -#: core/models.py:1429 +#: engine/core/models.py:1440 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." -#: core/models.py:1448 +#: engine/core/models.py:1459 msgid "address does not exist" msgstr "La dirección no existe" -#: core/models.py:1469 core/models.py:1538 +#: engine/core/models.py:1480 engine/core/models.py:1549 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." -#: core/models.py:1472 core/models.py:1534 +#: engine/core/models.py:1483 engine/core/models.py:1545 msgid "invalid force value" msgstr "Valor de fuerza no válido" -#: core/models.py:1478 core/models.py:1541 +#: engine/core/models.py:1489 engine/core/models.py:1552 msgid "you cannot purchase an empty order!" msgstr "No se puede comprar un pedido vacío." -#: core/models.py:1497 +#: engine/core/models.py:1508 msgid "you cannot buy an order without a user" msgstr "No se puede comprar un pedido sin un usuario." -#: core/models.py:1511 +#: engine/core/models.py:1522 msgid "a user without a balance cannot buy with balance" msgstr "¡Un usuario sin saldo no puede comprar con saldo!" -#: core/models.py:1516 +#: engine/core/models.py:1527 msgid "insufficient funds to complete the order" msgstr "Fondos insuficientes para completar el pedido" -#: core/models.py:1550 +#: engine/core/models.py:1561 msgid "" "you cannot buy without registration, please provide the following " "information: customer name, customer email, customer phone number" @@ -2493,14 +2531,56 @@ 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" -#: core/models.py:1559 +#: engine/core/models.py:1570 #, 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}!" -#: core/models.py:1668 +#: engine/core/models.py:1685 +msgid "" +"Manages user feedback for products. This class is designed to capture and " +"store user feedback for specific products that they have purchased. It " +"contains attributes to store user comments, a reference to the related " +"product in the order, and a user-assigned rating. The class uses database " +"fields to effectively model and manage feedback data." +msgstr "" +"Gestiona los comentarios de los usuarios sobre los productos. Esta clase " +"está diseñada para capturar y almacenar los comentarios de los usuarios " +"sobre productos específicos que han comprado. Contiene atributos para " +"almacenar los comentarios de los usuarios, una referencia al producto " +"relacionado en el pedido y una calificación asignada por el usuario. La " +"clase utiliza campos de base de datos para modelar y gestionar eficazmente " +"los datos de los comentarios." + +#: engine/core/models.py:1697 +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:1698 +msgid "feedback comments" +msgstr "Comentarios" + +#: engine/core/models.py:1705 +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:1706 +msgid "related order product" +msgstr "Producto relacionado con el pedido" + +#: engine/core/models.py:1711 +msgid "user-assigned rating for the product" +msgstr "Valoración del producto asignada por el usuario" + +#: engine/core/models.py:1712 +msgid "product rating" +msgstr "Valoración del producto" + +#: engine/core/models.py:1728 msgid "" "Represents products associated with orders and their attributes. The " "OrderProduct model maintains information about a product that is part of an " @@ -2518,257 +2598,210 @@ 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." -#: core/models.py:1683 +#: engine/core/models.py:1743 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" -#: core/models.py:1684 +#: engine/core/models.py:1744 msgid "purchase price at order time" msgstr "Precio de compra en el momento del pedido" -#: core/models.py:1689 +#: engine/core/models.py:1749 msgid "internal comments for admins about this ordered product" msgstr "" "Comentarios internos para los administradores sobre este producto solicitado" -#: core/models.py:1690 +#: engine/core/models.py:1750 msgid "internal comments" msgstr "Comentarios internos" -#: core/models.py:1696 +#: engine/core/models.py:1756 msgid "user notifications" msgstr "Notificaciones a los usuarios" -#: core/models.py:1701 +#: engine/core/models.py:1761 msgid "json representation of this item's attributes" msgstr "Representación JSON de los atributos de este elemento" -#: core/models.py:1702 +#: engine/core/models.py:1762 msgid "ordered product attributes" msgstr "Atributos ordenados del producto" -#: core/models.py:1707 +#: engine/core/models.py:1767 msgid "reference to the parent order that contains this product" msgstr "Referencia al pedido principal que contiene este producto" -#: core/models.py:1708 +#: engine/core/models.py:1768 msgid "parent order" msgstr "Orden de los padres" -#: core/models.py:1717 +#: engine/core/models.py:1777 msgid "the specific product associated with this order line" msgstr "El producto específico asociado a esta línea de pedido" -#: core/models.py:1724 +#: engine/core/models.py:1784 msgid "quantity of this specific product in the order" msgstr "Cantidad de este producto específico en el pedido" -#: core/models.py:1725 +#: engine/core/models.py:1785 msgid "product quantity" msgstr "Cantidad de productos" -#: core/models.py:1732 +#: engine/core/models.py:1792 msgid "current status of this product in the order" msgstr "Estado actual de este producto en el pedido" -#: core/models.py:1733 +#: engine/core/models.py:1793 msgid "product line status" msgstr "Estado de la línea de productos" -#: core/models.py:1798 +#: engine/core/models.py:1858 msgid "order product must have an order" msgstr "El pedido-producto debe tener un pedido asociado." -#: core/models.py:1800 +#: engine/core/models.py:1860 #, python-brace-format msgid "wrong action specified for feedback: {action}" msgstr "Acción incorrecta especificada para la retroalimentación: ¡{action}!" -#: core/models.py:1814 +#: engine/core/models.py:1874 msgid "you cannot feedback an order which is not received" msgstr "no se puede comentar un pedido no recibido" -#: core/models.py:1820 +#: engine/core/models.py:1880 msgid "name" msgstr "Nombre" -#: core/models.py:1821 +#: engine/core/models.py:1881 msgid "URL of the integration" msgstr "URL de la integración" -#: core/models.py:1822 +#: engine/core/models.py:1882 msgid "authentication credentials" msgstr "Credenciales de autenticación" -#: core/models.py:1844 +#: engine/core/models.py:1904 msgid "you can only have one default CRM provider" msgstr "Sólo puede tener un proveedor de CRM por defecto" -#: core/models.py:1854 +#: engine/core/models.py:1914 msgid "CRM" msgstr "CRM" -#: core/models.py:1855 +#: engine/core/models.py:1915 msgid "CRMs" msgstr "CRMs" -#: core/models.py:1867 +#: engine/core/models.py:1927 msgid "order CRM link" msgstr "Enlace CRM del pedido" -#: core/models.py:1868 +#: engine/core/models.py:1928 msgid "orders CRM links" msgstr "Enlaces CRM de los pedidos" -#: core/models.py:1873 +#: engine/core/models.py:1933 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." -#: core/models.py:1887 +#: engine/core/models.py:1947 msgid "download" msgstr "Descargar" -#: core/models.py:1888 +#: engine/core/models.py:1948 msgid "downloads" msgstr "Descargas" -#: core/models.py:1902 -msgid "" -"Manages user feedback for products. This class is designed to capture and " -"store user feedback for specific products that they have purchased. It " -"contains attributes to store user comments, a reference to the related " -"product in the order, and a user-assigned rating. The class uses database " -"fields to effectively model and manage feedback data." -msgstr "" -"Gestiona los comentarios de los usuarios sobre los productos. Esta clase " -"está diseñada para capturar y almacenar los comentarios de los usuarios " -"sobre productos específicos que han comprado. Contiene atributos para " -"almacenar los comentarios de los usuarios, una referencia al producto " -"relacionado en el pedido y una calificación asignada por el usuario. La " -"clase utiliza campos de base de datos para modelar y gestionar eficazmente " -"los datos de los comentarios." - -#: core/models.py:1914 -msgid "user-provided comments about their experience with the product" -msgstr "Comentarios de los usuarios sobre su experiencia con el producto" - -#: core/models.py:1915 -msgid "feedback comments" -msgstr "Comentarios" - -#: core/models.py:1922 -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" - -#: core/models.py:1923 -msgid "related order product" -msgstr "Producto relacionado con el pedido" - -#: core/models.py:1928 -msgid "user-assigned rating for the product" -msgstr "Valoración del producto asignada por el usuario" - -#: core/models.py:1929 -msgid "product rating" -msgstr "Valoración del producto" - -#: core/serializers/utility.py:89 +#: engine/core/serializers/utility.py:89 msgid "" "you must provide a comment, rating, and order product uuid to add feedback." msgstr "" "debe proporcionar un comentario, una valoración y el uuid del producto " "solicitado para añadir comentarios." -#: core/signals.py:73 -msgid "error during promocode creation: {e!s}" -msgstr "Error durante la creación del promocode: {e!s}" - -#: core/sitemaps.py:25 +#: engine/core/sitemaps.py:25 msgid "Home" msgstr "Inicio" -#: core/sitemaps.py:30 +#: engine/core/sitemaps.py:30 msgid "Contact Us" msgstr "Contacte con nosotros" -#: core/sitemaps.py:35 +#: engine/core/sitemaps.py:35 msgid "About Us" msgstr "Quiénes somos" -#: core/templates/digital_order_created_email.html:7 -#: core/templates/digital_order_created_email.html:100 -#: core/templates/digital_order_delivered_email.html:6 -#: core/templates/shipped_order_created_email.html:7 -#: core/templates/shipped_order_created_email.html:99 -#: core/templates/shipped_order_delivered_email.html:7 -#: core/templates/shipped_order_delivered_email.html:99 +#: engine/core/templates/digital_order_created_email.html:7 +#: engine/core/templates/digital_order_created_email.html:100 +#: engine/core/templates/digital_order_delivered_email.html:6 +#: engine/core/templates/shipped_order_created_email.html:7 +#: engine/core/templates/shipped_order_created_email.html:99 +#: engine/core/templates/shipped_order_delivered_email.html:7 +#: engine/core/templates/shipped_order_delivered_email.html:99 msgid "order confirmation" msgstr "Confirmación de pedido" -#: core/templates/digital_order_created_email.html:95 -#: core/templates/digital_order_delivered_email.html:94 -#: core/templates/promocode_granted_email.html:94 -#: core/templates/shipped_order_created_email.html:94 -#: core/templates/shipped_order_delivered_email.html:94 +#: engine/core/templates/digital_order_created_email.html:95 +#: engine/core/templates/digital_order_delivered_email.html:94 +#: engine/core/templates/promocode_granted_email.html:94 +#: engine/core/templates/shipped_order_created_email.html:94 +#: engine/core/templates/shipped_order_delivered_email.html:94 msgid "logo" msgstr "Logotipo" -#: core/templates/digital_order_created_email.html:101 -#: core/templates/shipped_order_created_email.html:100 -#: core/templates/shipped_order_delivered_email.html:100 +#: engine/core/templates/digital_order_created_email.html:101 +#: engine/core/templates/shipped_order_created_email.html:100 +#: engine/core/templates/shipped_order_delivered_email.html:100 #, python-format msgid "hello %(order.user.first_name)s," msgstr "Hola %(order.user.first_name)s," -#: core/templates/digital_order_created_email.html:102 +#: engine/core/templates/digital_order_created_email.html:102 #, 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 " "recibido su pedido. A continuación encontrará los detalles de su pedido:" -#: core/templates/digital_order_created_email.html:112 -#: core/templates/digital_order_delivered_email.html:110 -#: core/templates/shipped_order_created_email.html:110 -#: core/templates/shipped_order_delivered_email.html:110 +#: engine/core/templates/digital_order_created_email.html:112 +#: engine/core/templates/digital_order_delivered_email.html:110 +#: engine/core/templates/shipped_order_created_email.html:110 +#: engine/core/templates/shipped_order_delivered_email.html:110 msgid "total" msgstr "Total" -#: core/templates/digital_order_created_email.html:125 -#: core/templates/digital_order_delivered_email.html:157 -#: core/templates/shipped_order_created_email.html:127 -#: core/templates/shipped_order_delivered_email.html:127 +#: engine/core/templates/digital_order_created_email.html:125 +#: engine/core/templates/digital_order_delivered_email.html:157 +#: engine/core/templates/shipped_order_created_email.html:127 +#: engine/core/templates/shipped_order_delivered_email.html:127 msgid "total price" msgstr "Precio total" -#: core/templates/digital_order_created_email.html:131 -#: core/templates/shipped_order_created_email.html:140 -#: core/templates/shipped_order_delivered_email.html:140 +#: engine/core/templates/digital_order_created_email.html:131 +#: engine/core/templates/shipped_order_created_email.html:140 +#: engine/core/templates/shipped_order_delivered_email.html:140 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" @@ -2777,28 +2810,28 @@ msgstr "" "Si tiene alguna pregunta, no dude en ponerse en contacto con nuestro " "servicio de asistencia en %(config.EMAIL_HOST_USER)s." -#: core/templates/digital_order_created_email.html:133 +#: engine/core/templates/digital_order_created_email.html:133 #, python-format msgid "best regards,
the %(config.PROJECT_NAME)s team" msgstr "Saludos cordiales,
el equipo %(config.PROJECT_NAME)s" -#: core/templates/digital_order_created_email.html:139 -#: core/templates/digital_order_delivered_email.html:171 -#: core/templates/promocode_granted_email.html:114 +#: engine/core/templates/digital_order_created_email.html:139 +#: engine/core/templates/digital_order_delivered_email.html:171 +#: engine/core/templates/promocode_granted_email.html:114 msgid "all rights reserved" msgstr "Todos los derechos reservados" -#: core/templates/digital_order_delivered_email.html:99 +#: engine/core/templates/digital_order_delivered_email.html:99 msgid "order delivered" msgstr "Pedido entregado" -#: core/templates/digital_order_delivered_email.html:100 -#: core/templates/promocode_granted_email.html:100 +#: engine/core/templates/digital_order_delivered_email.html:100 +#: engine/core/templates/promocode_granted_email.html:100 #, python-format msgid "hello %(user_first_name)s," msgstr "Hola %(user_first_name)s," -#: core/templates/digital_order_delivered_email.html:101 +#: engine/core/templates/digital_order_delivered_email.html:101 #, python-format msgid "" "we have successfully processed your order №%(order_uuid)s! below are the\n" @@ -2807,7 +2840,7 @@ msgstr "" "¡Hemos procesado correctamente su pedido №%(order_uuid)s! A continuación " "encontrará los detalles de su pedido:" -#: core/templates/digital_order_delivered_email.html:128 +#: engine/core/templates/digital_order_delivered_email.html:128 msgid "" "additional\n" " information" @@ -2815,13 +2848,13 @@ msgstr "" "información adicional\n" " información adicional" -#: core/templates/digital_order_delivered_email.html:137 -#: core/templates/json_table_widget.html:6 +#: engine/core/templates/digital_order_delivered_email.html:137 +#: engine/core/templates/json_table_widget.html:6 msgid "value" msgstr "Valor" -#: core/templates/digital_order_delivered_email.html:163 -#: core/templates/promocode_granted_email.html:106 +#: engine/core/templates/digital_order_delivered_email.html:163 +#: engine/core/templates/promocode_granted_email.html:106 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" @@ -2830,26 +2863,26 @@ msgstr "" "Si tiene alguna pregunta, no dude en ponerse en contacto con nuestro " "servicio de asistencia en %(contact_email)s." -#: core/templates/digital_order_delivered_email.html:165 -#: core/templates/promocode_granted_email.html:108 +#: engine/core/templates/digital_order_delivered_email.html:165 +#: engine/core/templates/promocode_granted_email.html:108 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "Saludos cordiales,
el equipo %(project_name)s" -#: core/templates/json_table_widget.html:5 +#: engine/core/templates/json_table_widget.html:5 msgid "key" msgstr "Clave" -#: core/templates/json_table_widget.html:40 +#: engine/core/templates/json_table_widget.html:40 msgid "Add Row" msgstr "Añadir fila" -#: core/templates/promocode_granted_email.html:6 -#: core/templates/promocode_granted_email.html:99 +#: engine/core/templates/promocode_granted_email.html:6 +#: engine/core/templates/promocode_granted_email.html:99 msgid "promocode granted" msgstr "Promocode concedido" -#: core/templates/promocode_granted_email.html:101 +#: engine/core/templates/promocode_granted_email.html:101 msgid "" "Thank you for staying with us! We have granted you with a promocode\n" " for " @@ -2857,33 +2890,34 @@ msgstr "" "¡Gracias por quedarte con nosotros! Le hemos concedido un promocode\n" " para" -#: core/templates/shipped_order_created_email.html:101 -#: core/templates/shipped_order_delivered_email.html:101 +#: 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 " "encontrará los detalles de su pedido:" -#: core/templates/shipped_order_created_email.html:123 -#: core/templates/shipped_order_delivered_email.html:123 +#: engine/core/templates/shipped_order_created_email.html:123 +#: engine/core/templates/shipped_order_delivered_email.html:123 msgid "shipping price" msgstr "Precio del envío" -#: core/templates/shipped_order_created_email.html:133 -#: core/templates/shipped_order_delivered_email.html:133 +#: engine/core/templates/shipped_order_created_email.html:133 +#: engine/core/templates/shipped_order_delivered_email.html:133 msgid "your order will be delivered to the following address:" msgstr "Su pedido se entregará en la siguiente dirección:" -#: core/templates/shipped_order_created_email.html:142 -#: core/templates/shipped_order_delivered_email.html:142 +#: engine/core/templates/shipped_order_created_email.html:142 +#: engine/core/templates/shipped_order_delivered_email.html:142 #, python-format msgid "best regards,
The %(config.PROJECT_NAME)s team" msgstr "Saludos cordiales,
El equipo %(config.PROJECT_NAME)s" -#: core/templates/shipped_order_created_email.html:147 -#: core/templates/shipped_order_delivered_email.html:147 +#: engine/core/templates/shipped_order_created_email.html:147 +#: engine/core/templates/shipped_order_delivered_email.html:147 msgid "" "all rights\n" " reserved" @@ -2891,60 +2925,60 @@ msgstr "" "todos los derechos\n" " reservados" -#: core/utils/caching.py:44 +#: engine/core/utils/caching.py:44 msgid "both data and timeout are required" msgstr "Tanto los datos como el tiempo de espera son necesarios" -#: core/utils/caching.py:46 +#: engine/core/utils/caching.py:46 msgid "invalid timeout value, it must be between 0 and 216000 seconds" msgstr "" "Valor de tiempo de espera no válido, debe estar entre 0 y 216000 segundos." -#: core/utils/emailing.py:27 +#: engine/core/utils/emailing.py:27 #, python-brace-format msgid "{config.PROJECT_NAME} | contact us initiated" msgstr "{config.PROJECT_NAME} | contacto iniciado" -#: core/utils/emailing.py:73 +#: engine/core/utils/emailing.py:73 #, python-brace-format msgid "{config.PROJECT_NAME} | order confirmation" msgstr "{config.PROJECT_NAME} | Confirmación de pedido" -#: core/utils/emailing.py:105 +#: engine/core/utils/emailing.py:105 #, python-brace-format msgid "{config.PROJECT_NAME} | order delivered" msgstr "{config.PROJECT_NAME} | Pedido entregado" -#: core/utils/emailing.py:188 +#: engine/core/utils/emailing.py:188 #, python-brace-format msgid "{config.PROJECT_NAME} | promocode granted" msgstr "{config.PROJECT_NAME} | promocode granted" -#: core/utils/messages.py:3 +#: engine/core/utils/messages.py:3 msgid "you do not have permission to perform this action." msgstr "No tiene permiso para realizar esta acción." -#: core/utils/nominatim.py:8 +#: engine/core/utils/nominatim.py:8 msgid "NOMINATIM_URL must be configured." msgstr "El parámetro NOMINATIM_URL debe estar configurado." -#: core/validators.py:16 +#: engine/core/validators.py:16 #, python-brace-format msgid "image dimensions should not exceed w{max_width} x h{max_height} pixels" msgstr "" "Las dimensiones de la imagen no deben superar w{max_width} x h{max_height} " "píxeles." -#: core/views.py:72 +#: engine/core/views.py:71 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." -#: core/views.py:87 +#: engine/core/views.py:86 msgid "" "Handles the detailed view response for a sitemap. This function processes " "the request, fetches the appropriate sitemap detail response, and sets the " @@ -2954,18 +2988,17 @@ msgstr "" "función procesa la solicitud, obtiene la respuesta detallada del mapa del " "sitio y establece el encabezado Content-Type para XML." -#: core/views.py:116 +#: engine/core/views.py:115 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." -#: core/views.py:148 +#: engine/core/views.py:147 msgid "Returns the parameters of the website as a JSON object." msgstr "Devuelve los parámetros del sitio web como un objeto JSON." -#: core/views.py:167 +#: engine/core/views.py:166 msgid "" "Handles cache operations such as reading and setting cache data with a " "specified key and timeout." @@ -2973,11 +3006,11 @@ msgstr "" "Gestiona las operaciones de caché, como la lectura y el establecimiento de " "datos de caché con una clave y un tiempo de espera especificados." -#: core/views.py:194 +#: engine/core/views.py:193 msgid "Handles `contact us` form submissions." msgstr "Gestiona los formularios de contacto." -#: core/views.py:215 +#: engine/core/views.py:214 msgid "" "Handles requests for processing and validating URLs from incoming POST " "requests." @@ -2985,66 +3018,74 @@ msgstr "" "Gestiona las solicitudes de procesamiento y validación de URL de las " "solicitudes POST entrantes." -#: core/views.py:255 +#: engine/core/views.py:254 msgid "Handles global search queries." msgstr "Gestiona las consultas de búsqueda global." -#: core/views.py:270 +#: engine/core/views.py:269 msgid "Handles the logic of buying as a business without registration." msgstr "Maneja la lógica de la compra como empresa sin registro." -#: core/views.py:306 +#: engine/core/views.py:305 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." -#: core/views.py:316 +#: engine/core/views.py:315 msgid "order_product_uuid is required" msgstr "order_product_uuid es obligatorio" -#: core/views.py:322 +#: engine/core/views.py:321 msgid "you can only download the digital asset once" msgstr "Sólo puede descargar el activo digital una vez" -#: core/views.py:325 +#: engine/core/views.py:324 msgid "the order must be paid before downloading the digital asset" msgstr "el pedido debe pagarse antes de descargar el activo digital" -#: core/views.py:331 +#: engine/core/views.py:330 msgid "the order product does not have a product" msgstr "El producto del pedido no tiene un producto" -#: core/views.py:369 +#: engine/core/views.py:368 msgid "favicon not found" msgstr "favicon no encontrado" -#: core/views.py:374 +#: engine/core/views.py:373 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." -#: core/views.py:386 +#: engine/core/views.py:385 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." -#: core/views.py:399 +#: engine/core/views.py:398 msgid "Returns current version of the eVibes. " msgstr "Devuelve la versión actual del eVibes." -#: core/viewsets.py:137 +#: engine/core/viewsets.py:137 msgid "" "Defines a viewset for managing Evibes-related operations. The EvibesViewSet " "class inherits from ModelViewSet and provides functionality for handling " @@ -3058,21 +3099,20 @@ msgstr "" "Incluye soporte para clases serializadoras dinámicas basadas en la acción " "actual, permisos personalizables y formatos de representación." -#: core/viewsets.py:157 +#: engine/core/viewsets.py:157 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." -#: core/viewsets.py:176 +#: engine/core/viewsets.py:176 msgid "" "Handles operations related to Attribute objects within the application. " "Provides a set of API endpoints to interact with Attribute data. This class " @@ -3081,30 +3121,30 @@ 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." -#: core/viewsets.py:195 +#: engine/core/viewsets.py:195 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." -#: core/viewsets.py:214 +#: engine/core/viewsets.py:214 msgid "" "Manages views for Category-related operations. The CategoryViewSet class is " "responsible for handling operations related to the Category model in the " @@ -3115,10 +3155,10 @@ 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." -#: core/viewsets.py:326 +#: engine/core/viewsets.py:326 msgid "" "Represents a viewset for managing Brand instances. This class provides " "functionality for querying, filtering, and serializing Brand objects. It " @@ -3126,11 +3166,11 @@ 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." -#: core/viewsets.py:438 +#: engine/core/viewsets.py:438 msgid "" "Manages operations related to the `Product` model in the system. This class " "provides a viewset for managing products, including their filtering, " @@ -3142,14 +3182,13 @@ msgid "" 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 API. Incluye métodos para recuperar detalles del " -"producto, aplicar permisos y acceder a comentarios relacionados de un " -"producto." +"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 " +"API. Incluye métodos para recuperar detalles del producto, aplicar permisos " +"y acceder a comentarios relacionados de un producto." -#: core/viewsets.py:568 +#: engine/core/viewsets.py:568 msgid "" "Represents a viewset for managing Vendor objects. This viewset allows " "fetching, filtering, and serializing Vendor data. It defines the queryset, " @@ -3164,13 +3203,13 @@ msgstr "" "proporcionar un acceso simplificado a los recursos relacionados con el " "vendedor a través del marco REST de Django." -#: core/viewsets.py:588 +#: engine/core/viewsets.py:588 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 `EvibesViewSet` and makes " "use of Django's filtering system for querying data." msgstr "" "Representación de un conjunto de vistas que maneja objetos Feedback. Esta " @@ -3178,34 +3217,34 @@ 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" -" sistema de filtrado de Django para la consulta de datos." +"objetos Feedback accesibles. Extiende la base `EvibesViewSet` y hace uso del " +"sistema de filtrado de Django para la consulta de datos." -#: core/viewsets.py:615 +#: engine/core/viewsets.py:615 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." -#: core/viewsets.py:813 +#: engine/core/viewsets.py:813 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. " @@ -3215,13 +3254,13 @@ msgstr "" "Además, proporciona una acción detallada para gestionar los comentarios " "sobre las instancias de OrderProduct." -#: core/viewsets.py:867 +#: engine/core/viewsets.py:867 msgid "Manages operations related to Product images in the application. " msgstr "" "Gestiona las operaciones relacionadas con las imágenes de productos en la " "aplicación." -#: core/viewsets.py:880 +#: engine/core/viewsets.py:880 msgid "" "Manages the retrieval and handling of PromoCode instances through various " "API actions." @@ -3229,21 +3268,21 @@ msgstr "" "Gestiona la recuperación y el manejo de instancias de PromoCode a través de " "varias acciones de la API." -#: core/viewsets.py:902 +#: engine/core/viewsets.py:902 msgid "Represents a view set for managing promotions. " msgstr "Representa un conjunto de vistas para gestionar promociones." -#: core/viewsets.py:915 +#: engine/core/viewsets.py:915 msgid "Handles operations related to Stock data in the system." msgstr "" "Gestiona las operaciones relacionadas con los datos de Stock en el sistema." -#: core/viewsets.py:929 +#: engine/core/viewsets.py:929 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." @@ -3257,7 +3296,7 @@ msgstr "" "integrados para garantizar que los usuarios sólo puedan gestionar sus " "propias listas de deseos a menos que se concedan permisos explícitos." -#: core/viewsets.py:1044 +#: engine/core/viewsets.py:1044 msgid "" "This class provides viewset functionality for managing `Address` objects. " "The AddressViewSet class enables CRUD operations, filtering, and custom " @@ -3268,15 +3307,15 @@ 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." -#: core/viewsets.py:1111 +#: engine/core/viewsets.py:1111 #, python-brace-format msgid "Geocoding error: {e}" msgstr "Error de geocodificación: {e}" -#: core/viewsets.py:1119 +#: engine/core/viewsets.py:1119 msgid "" "Handles operations related to Product Tags within the application. This " "class provides functionality for retrieving, filtering, and serializing " diff --git a/core/locale/fa_IR/LC_MESSAGES/django.mo b/engine/core/locale/fa_IR/LC_MESSAGES/django.mo similarity index 100% rename from core/locale/fa_IR/LC_MESSAGES/django.mo rename to engine/core/locale/fa_IR/LC_MESSAGES/django.mo diff --git a/core/locale/hr_HR/LC_MESSAGES/django.po b/engine/core/locale/fa_IR/LC_MESSAGES/django.po similarity index 62% rename from core/locale/hr_HR/LC_MESSAGES/django.po rename to engine/core/locale/fa_IR/LC_MESSAGES/django.po index 7b5c45d6..6fc2de05 100644 --- a/core/locale/hr_HR/LC_MESSAGES/django.po +++ b/engine/core/locale/fa_IR/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,518 +16,526 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: core/abstract.py:12 +#: engine/core/abstract.py:12 msgid "unique id" msgstr "" -#: core/abstract.py:13 +#: engine/core/abstract.py:13 msgid "unique id is used to surely identify any database object" msgstr "" -#: core/abstract.py:20 +#: engine/core/abstract.py:20 msgid "is active" msgstr "" -#: core/abstract.py:21 +#: engine/core/abstract.py:21 msgid "" "if set to false, this object can't be seen by users without needed permission" msgstr "" -#: core/abstract.py:23 core/choices.py:18 +#: engine/core/abstract.py:23 engine/core/choices.py:18 msgid "created" msgstr "" -#: core/abstract.py:23 +#: engine/core/abstract.py:23 msgid "when the object first appeared on the database" msgstr "" -#: core/abstract.py:24 +#: engine/core/abstract.py:24 msgid "modified" msgstr "" -#: core/abstract.py:24 +#: engine/core/abstract.py:24 msgid "when the object was last modified" msgstr "" -#: core/admin.py:68 +#: engine/core/admin.py:68 msgid "translations" msgstr "" -#: core/admin.py:72 +#: engine/core/admin.py:72 msgid "general" msgstr "" -#: core/admin.py:74 +#: engine/core/admin.py:74 msgid "relations" msgstr "" -#: core/admin.py:76 +#: engine/core/admin.py:76 msgid "additional info" msgstr "" -#: core/admin.py:94 +#: engine/core/admin.py:94 msgid "metadata" msgstr "" -#: core/admin.py:101 +#: engine/core/admin.py:101 msgid "timestamps" msgstr "" -#: core/admin.py:116 +#: engine/core/admin.py:116 #, python-format msgid "activate selected %(verbose_name_plural)s" msgstr "" -#: core/admin.py:121 +#: engine/core/admin.py:121 msgid "selected items have been activated." msgstr "" -#: core/admin.py:127 +#: engine/core/admin.py:127 #, python-format msgid "deactivate selected %(verbose_name_plural)s" msgstr "" -#: core/admin.py:132 +#: engine/core/admin.py:132 msgid "selected items have been deactivated." msgstr "" -#: core/admin.py:144 core/graphene/object_types.py:582 -#: core/graphene/object_types.py:589 core/models.py:783 core/models.py:791 +#: engine/core/admin.py:144 engine/core/graphene/object_types.py:586 +#: engine/core/graphene/object_types.py:593 engine/core/models.py:794 +#: engine/core/models.py:802 msgid "attribute value" msgstr "" -#: core/admin.py:145 core/graphene/object_types.py:75 core/models.py:792 +#: engine/core/admin.py:145 engine/core/graphene/object_types.py:75 +#: engine/core/models.py:803 msgid "attribute values" msgstr "" -#: core/admin.py:156 +#: engine/core/admin.py:156 msgid "image" msgstr "" -#: core/admin.py:157 core/graphene/object_types.py:474 +#: engine/core/admin.py:157 engine/core/graphene/object_types.py:474 msgid "images" msgstr "" -#: core/admin.py:168 core/models.py:559 +#: engine/core/admin.py:169 engine/core/models.py:559 msgid "stock" msgstr "" -#: core/admin.py:169 core/graphene/object_types.py:636 +#: engine/core/admin.py:170 engine/core/graphene/object_types.py:640 msgid "stocks" msgstr "" -#: core/admin.py:182 core/models.py:1744 +#: engine/core/admin.py:183 engine/core/models.py:1804 msgid "order product" msgstr "" -#: core/admin.py:183 core/graphene/object_types.py:389 core/models.py:1745 +#: engine/core/admin.py:184 engine/core/graphene/object_types.py:389 +#: engine/core/models.py:1805 msgid "order products" msgstr "" -#: core/admin.py:196 core/admin.py:197 +#: engine/core/admin.py:197 engine/core/admin.py:198 msgid "children" msgstr "" -#: core/admin.py:965 +#: engine/core/admin.py:969 msgid "Config" msgstr "" -#: core/apps.py:8 +#: engine/core/apps.py:8 msgid "core" msgstr "" -#: core/choices.py:4 core/choices.py:20 +#: engine/core/choices.py:4 engine/core/choices.py:20 msgid "finished" msgstr "" -#: core/choices.py:5 core/choices.py:19 +#: engine/core/choices.py:5 engine/core/choices.py:19 msgid "delivering" msgstr "" -#: core/choices.py:6 +#: engine/core/choices.py:6 msgid "delivered" msgstr "" -#: core/choices.py:7 +#: engine/core/choices.py:7 msgid "canceled" msgstr "" -#: core/choices.py:8 core/choices.py:16 core/choices.py:24 +#: engine/core/choices.py:8 engine/core/choices.py:16 engine/core/choices.py:24 msgid "failed" msgstr "" -#: core/choices.py:9 core/choices.py:15 +#: engine/core/choices.py:9 engine/core/choices.py:15 msgid "pending" msgstr "" -#: core/choices.py:10 +#: engine/core/choices.py:10 msgid "accepted" msgstr "" -#: core/choices.py:11 +#: engine/core/choices.py:11 msgid "money returned" msgstr "" -#: core/choices.py:17 +#: engine/core/choices.py:17 msgid "payment" msgstr "" -#: core/choices.py:21 +#: engine/core/choices.py:21 msgid "momental" msgstr "" -#: core/choices.py:24 +#: engine/core/choices.py:24 msgid "successful" msgstr "" -#: core/docs/drf/views.py:17 core/graphene/mutations.py:38 +#: engine/core/docs/drf/views.py:17 engine/core/graphene/mutations.py:38 msgid "cache I/O" msgstr "" -#: core/docs/drf/views.py:19 +#: engine/core/docs/drf/views.py:19 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 "" -#: core/docs/drf/views.py:32 +#: engine/core/docs/drf/views.py:32 msgid "get a list of supported languages" msgstr "" -#: core/docs/drf/views.py:41 +#: engine/core/docs/drf/views.py:41 msgid "get application's exposable parameters" msgstr "" -#: core/docs/drf/views.py:48 +#: engine/core/docs/drf/views.py:48 msgid "send a message to the support team" msgstr "" -#: core/docs/drf/views.py:59 core/graphene/mutations.py:58 +#: engine/core/docs/drf/views.py:59 engine/core/graphene/mutations.py:58 msgid "request a CORSed URL" msgstr "" -#: core/docs/drf/views.py:85 +#: engine/core/docs/drf/views.py:85 msgid "global search endpoint to query across project's tables" msgstr "" -#: core/docs/drf/views.py:91 +#: engine/core/docs/drf/views.py:91 msgid "purchase an order as a business" msgstr "" -#: core/docs/drf/views.py:98 +#: engine/core/docs/drf/views.py:98 msgid "" "purchase an order as a business, using the provided `products` with " "`product_uuid` and `attributes`." msgstr "" -#: core/docs/drf/viewsets.py:58 +#: engine/core/docs/drf/viewsets.py:58 msgid "list all attribute groups (simple view)" msgstr "" -#: core/docs/drf/viewsets.py:62 +#: engine/core/docs/drf/viewsets.py:62 msgid "retrieve a single attribute group (detailed view)" msgstr "" -#: core/docs/drf/viewsets.py:66 +#: engine/core/docs/drf/viewsets.py:66 msgid "create an attribute group" msgstr "" -#: core/docs/drf/viewsets.py:70 +#: engine/core/docs/drf/viewsets.py:70 msgid "delete an attribute group" msgstr "" -#: core/docs/drf/viewsets.py:74 +#: engine/core/docs/drf/viewsets.py:74 msgid "rewrite an existing attribute group saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:78 +#: engine/core/docs/drf/viewsets.py:78 msgid "rewrite some fields of an existing attribute group saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:85 +#: engine/core/docs/drf/viewsets.py:85 msgid "list all attributes (simple view)" msgstr "" -#: core/docs/drf/viewsets.py:89 +#: engine/core/docs/drf/viewsets.py:89 msgid "retrieve a single attribute (detailed view)" msgstr "" -#: core/docs/drf/viewsets.py:93 +#: engine/core/docs/drf/viewsets.py:93 msgid "create an attribute" msgstr "" -#: core/docs/drf/viewsets.py:97 +#: engine/core/docs/drf/viewsets.py:97 msgid "delete an attribute" msgstr "" -#: core/docs/drf/viewsets.py:101 +#: engine/core/docs/drf/viewsets.py:101 msgid "rewrite an existing attribute saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:105 +#: engine/core/docs/drf/viewsets.py:105 msgid "rewrite some fields of an existing attribute saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:112 +#: engine/core/docs/drf/viewsets.py:112 msgid "list all attribute values (simple view)" msgstr "" -#: core/docs/drf/viewsets.py:116 +#: engine/core/docs/drf/viewsets.py:116 msgid "retrieve a single attribute value (detailed view)" msgstr "" -#: core/docs/drf/viewsets.py:120 +#: engine/core/docs/drf/viewsets.py:120 msgid "create an attribute value" msgstr "" -#: core/docs/drf/viewsets.py:124 +#: engine/core/docs/drf/viewsets.py:124 msgid "delete an attribute value" msgstr "" -#: core/docs/drf/viewsets.py:128 +#: engine/core/docs/drf/viewsets.py:128 msgid "rewrite an existing attribute value saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:132 +#: engine/core/docs/drf/viewsets.py:132 msgid "rewrite some fields of an existing attribute value saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:139 core/docs/drf/viewsets.py:140 +#: engine/core/docs/drf/viewsets.py:139 engine/core/docs/drf/viewsets.py:140 msgid "list all categories (simple view)" msgstr "" -#: core/docs/drf/viewsets.py:144 core/docs/drf/viewsets.py:145 +#: engine/core/docs/drf/viewsets.py:144 engine/core/docs/drf/viewsets.py:145 msgid "retrieve a single category (detailed view)" msgstr "" -#: core/docs/drf/viewsets.py:149 core/docs/drf/viewsets.py:150 -msgid "create a category" -msgstr "" - -#: core/docs/drf/viewsets.py:154 core/docs/drf/viewsets.py:155 -msgid "delete a category" -msgstr "" - -#: core/docs/drf/viewsets.py:159 core/docs/drf/viewsets.py:160 -msgid "rewrite an existing category saving non-editables" -msgstr "" - -#: core/docs/drf/viewsets.py:164 core/docs/drf/viewsets.py:165 -msgid "rewrite some fields of an existing category saving non-editables" -msgstr "" - -#: core/docs/drf/viewsets.py:169 core/docs/drf/viewsets.py:501 -#: core/graphene/object_types.py:117 core/graphene/object_types.py:207 -#: core/graphene/object_types.py:482 -msgid "SEO Meta snapshot" -msgstr "" - -#: core/docs/drf/viewsets.py:170 -msgid "returns a snapshot of the category's SEO meta data" -msgstr "" - -#: core/docs/drf/viewsets.py:175 +#: engine/core/docs/drf/viewsets.py:150 engine/core/docs/drf/viewsets.py:183 msgid "Category UUID or slug" msgstr "" -#: core/docs/drf/viewsets.py:188 +#: engine/core/docs/drf/viewsets.py:157 engine/core/docs/drf/viewsets.py:158 +msgid "create a category" +msgstr "" + +#: engine/core/docs/drf/viewsets.py:162 engine/core/docs/drf/viewsets.py:163 +msgid "delete a category" +msgstr "" + +#: engine/core/docs/drf/viewsets.py:167 engine/core/docs/drf/viewsets.py:168 +msgid "rewrite an existing category saving non-editables" +msgstr "" + +#: engine/core/docs/drf/viewsets.py:172 engine/core/docs/drf/viewsets.py:173 +msgid "rewrite some fields of an existing category saving non-editables" +msgstr "" + +#: engine/core/docs/drf/viewsets.py:177 engine/core/docs/drf/viewsets.py:517 +#: engine/core/graphene/object_types.py:117 +#: engine/core/graphene/object_types.py:207 +#: engine/core/graphene/object_types.py:482 +msgid "SEO Meta snapshot" +msgstr "" + +#: engine/core/docs/drf/viewsets.py:178 +msgid "returns a snapshot of the category's SEO meta data" +msgstr "" + +#: engine/core/docs/drf/viewsets.py:196 msgid "list all orders (simple view)" msgstr "" -#: core/docs/drf/viewsets.py:189 +#: engine/core/docs/drf/viewsets.py:197 msgid "for non-staff users, only their own orders are returned." msgstr "" -#: core/docs/drf/viewsets.py:195 +#: engine/core/docs/drf/viewsets.py:203 msgid "" "Case-insensitive substring search across human_readable_id, order_products." "product.name, and order_products.product.partnumber" msgstr "" -#: core/docs/drf/viewsets.py:202 +#: engine/core/docs/drf/viewsets.py:210 msgid "Filter orders with buy_time >= this ISO 8601 datetime" msgstr "" -#: core/docs/drf/viewsets.py:207 +#: engine/core/docs/drf/viewsets.py:215 msgid "Filter orders with buy_time <= this ISO 8601 datetime" msgstr "" -#: core/docs/drf/viewsets.py:212 +#: engine/core/docs/drf/viewsets.py:220 msgid "Filter by exact order UUID" msgstr "" -#: core/docs/drf/viewsets.py:217 +#: engine/core/docs/drf/viewsets.py:225 msgid "Filter by exact human-readable order ID" msgstr "" -#: core/docs/drf/viewsets.py:222 +#: engine/core/docs/drf/viewsets.py:230 msgid "Filter by user's email (case-insensitive exact match)" msgstr "" -#: core/docs/drf/viewsets.py:227 +#: engine/core/docs/drf/viewsets.py:235 msgid "Filter by user's UUID" msgstr "" -#: core/docs/drf/viewsets.py:232 +#: engine/core/docs/drf/viewsets.py:240 msgid "Filter by order status (case-insensitive substring match)" msgstr "" -#: core/docs/drf/viewsets.py:238 +#: engine/core/docs/drf/viewsets.py:246 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')." msgstr "" -#: core/docs/drf/viewsets.py:247 +#: engine/core/docs/drf/viewsets.py:255 msgid "retrieve a single order (detailed view)" msgstr "" -#: core/docs/drf/viewsets.py:251 +#: engine/core/docs/drf/viewsets.py:260 +msgid "Order UUID or human-readable id" +msgstr "" + +#: engine/core/docs/drf/viewsets.py:267 msgid "create an order" msgstr "" -#: core/docs/drf/viewsets.py:252 +#: engine/core/docs/drf/viewsets.py:268 msgid "doesn't work for non-staff users." msgstr "" -#: core/docs/drf/viewsets.py:256 +#: engine/core/docs/drf/viewsets.py:272 msgid "delete an order" msgstr "" -#: core/docs/drf/viewsets.py:260 +#: engine/core/docs/drf/viewsets.py:276 msgid "rewrite an existing order saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:264 +#: engine/core/docs/drf/viewsets.py:280 msgid "rewrite some fields of an existing order saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:268 +#: engine/core/docs/drf/viewsets.py:284 msgid "purchase an order" msgstr "" -#: core/docs/drf/viewsets.py:270 +#: engine/core/docs/drf/viewsets.py:286 msgid "" "finalizes the order purchase. if `force_balance` is used, the purchase is " "completed using the user's balance; if `force_payment` is used, a " "transaction is initiated." msgstr "" -#: core/docs/drf/viewsets.py:282 core/graphene/mutations.py:335 +#: engine/core/docs/drf/viewsets.py:298 engine/core/graphene/mutations.py:335 msgid "purchase an order without account creation" msgstr "" -#: core/docs/drf/viewsets.py:283 +#: engine/core/docs/drf/viewsets.py:299 msgid "finalizes the order purchase for a non-registered user." msgstr "" -#: core/docs/drf/viewsets.py:291 +#: engine/core/docs/drf/viewsets.py:307 msgid "add product to order" msgstr "" -#: core/docs/drf/viewsets.py:292 +#: engine/core/docs/drf/viewsets.py:308 msgid "" "adds a product to an order using the provided `product_uuid` and " "`attributes`." msgstr "" -#: core/docs/drf/viewsets.py:297 +#: engine/core/docs/drf/viewsets.py:313 msgid "add a list of products to order, quantities will not count" msgstr "" -#: core/docs/drf/viewsets.py:298 +#: engine/core/docs/drf/viewsets.py:314 msgid "" "adds a list of products to an order using the provided `product_uuid` and " "`attributes`." msgstr "" -#: core/docs/drf/viewsets.py:303 +#: engine/core/docs/drf/viewsets.py:319 msgid "remove product from order" msgstr "" -#: core/docs/drf/viewsets.py:304 +#: engine/core/docs/drf/viewsets.py:320 msgid "" "removes a product from an order using the provided `product_uuid` and " "`attributes`." msgstr "" -#: core/docs/drf/viewsets.py:309 +#: engine/core/docs/drf/viewsets.py:325 msgid "remove product from order, quantities will not count" msgstr "" -#: core/docs/drf/viewsets.py:310 +#: engine/core/docs/drf/viewsets.py:326 msgid "" "removes a list of products from an order using the provided `product_uuid` " "and `attributes`" msgstr "" -#: core/docs/drf/viewsets.py:318 +#: engine/core/docs/drf/viewsets.py:334 msgid "list all wishlists (simple view)" msgstr "" -#: core/docs/drf/viewsets.py:319 +#: engine/core/docs/drf/viewsets.py:335 msgid "for non-staff users, only their own wishlists are returned." msgstr "" -#: core/docs/drf/viewsets.py:323 +#: engine/core/docs/drf/viewsets.py:339 msgid "retrieve a single wishlist (detailed view)" msgstr "" -#: core/docs/drf/viewsets.py:327 +#: engine/core/docs/drf/viewsets.py:343 msgid "create an wishlist" msgstr "" -#: core/docs/drf/viewsets.py:328 +#: engine/core/docs/drf/viewsets.py:344 msgid "Doesn't work for non-staff users." msgstr "" -#: core/docs/drf/viewsets.py:332 +#: engine/core/docs/drf/viewsets.py:348 msgid "delete an wishlist" msgstr "" -#: core/docs/drf/viewsets.py:336 +#: engine/core/docs/drf/viewsets.py:352 msgid "rewrite an existing wishlist saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:340 +#: engine/core/docs/drf/viewsets.py:356 msgid "rewrite some fields of an existing wishlist saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:344 +#: engine/core/docs/drf/viewsets.py:360 msgid "add product to wishlist" msgstr "" -#: core/docs/drf/viewsets.py:345 +#: engine/core/docs/drf/viewsets.py:361 msgid "adds a product to an wishlist using the provided `product_uuid`" msgstr "" -#: core/docs/drf/viewsets.py:350 +#: engine/core/docs/drf/viewsets.py:366 msgid "remove product from wishlist" msgstr "" -#: core/docs/drf/viewsets.py:351 +#: engine/core/docs/drf/viewsets.py:367 msgid "removes a product from an wishlist using the provided `product_uuid`" msgstr "" -#: core/docs/drf/viewsets.py:356 +#: engine/core/docs/drf/viewsets.py:372 msgid "add many products to wishlist" msgstr "" -#: core/docs/drf/viewsets.py:357 +#: engine/core/docs/drf/viewsets.py:373 msgid "adds many products to an wishlist using the provided `product_uuids`" msgstr "" -#: core/docs/drf/viewsets.py:362 +#: engine/core/docs/drf/viewsets.py:378 msgid "remove many products from wishlist" msgstr "" -#: core/docs/drf/viewsets.py:363 +#: engine/core/docs/drf/viewsets.py:379 msgid "" "removes many products from an wishlist using the provided `product_uuids`" msgstr "" -#: core/docs/drf/viewsets.py:370 +#: engine/core/docs/drf/viewsets.py:386 msgid "" "Filter by one or more attribute name/value pairs. \n" "• **Syntax**: `attr_name=method-value[;attr2=method2-value2]…` \n" @@ -544,871 +552,893 @@ msgid "" "`b64-description=icontains-aGVhdC1jb2xk`" msgstr "" -#: core/docs/drf/viewsets.py:386 core/docs/drf/viewsets.py:387 +#: engine/core/docs/drf/viewsets.py:402 engine/core/docs/drf/viewsets.py:403 msgid "list all products (simple view)" msgstr "" -#: core/docs/drf/viewsets.py:392 +#: engine/core/docs/drf/viewsets.py:408 msgid "(exact) Product UUID" msgstr "" -#: core/docs/drf/viewsets.py:399 +#: engine/core/docs/drf/viewsets.py:415 msgid "" "Comma-separated list of fields to sort by. Prefix with `-` for " "descending. \n" "**Allowed:** uuid, rating, name, slug, created, modified, price, random" msgstr "" -#: core/docs/drf/viewsets.py:413 core/docs/drf/viewsets.py:414 +#: engine/core/docs/drf/viewsets.py:429 engine/core/docs/drf/viewsets.py:430 msgid "retrieve a single product (detailed view)" msgstr "" -#: core/docs/drf/viewsets.py:419 core/docs/drf/viewsets.py:443 -#: core/docs/drf/viewsets.py:459 core/docs/drf/viewsets.py:475 -#: core/docs/drf/viewsets.py:491 core/docs/drf/viewsets.py:507 +#: engine/core/docs/drf/viewsets.py:435 engine/core/docs/drf/viewsets.py:459 +#: engine/core/docs/drf/viewsets.py:475 engine/core/docs/drf/viewsets.py:491 +#: engine/core/docs/drf/viewsets.py:507 engine/core/docs/drf/viewsets.py:523 msgid "Product UUID or slug" msgstr "" -#: core/docs/drf/viewsets.py:429 core/docs/drf/viewsets.py:430 +#: engine/core/docs/drf/viewsets.py:445 engine/core/docs/drf/viewsets.py:446 msgid "create a product" msgstr "" -#: core/docs/drf/viewsets.py:437 core/docs/drf/viewsets.py:438 +#: engine/core/docs/drf/viewsets.py:453 engine/core/docs/drf/viewsets.py:454 msgid "rewrite an existing product, preserving non-editable fields" msgstr "" -#: core/docs/drf/viewsets.py:453 core/docs/drf/viewsets.py:454 +#: engine/core/docs/drf/viewsets.py:469 engine/core/docs/drf/viewsets.py:470 msgid "" "update some fields of an existing product, preserving non-editable fields" msgstr "" -#: core/docs/drf/viewsets.py:469 core/docs/drf/viewsets.py:470 +#: engine/core/docs/drf/viewsets.py:485 engine/core/docs/drf/viewsets.py:486 msgid "delete a product" msgstr "" -#: core/docs/drf/viewsets.py:485 core/docs/drf/viewsets.py:486 +#: engine/core/docs/drf/viewsets.py:501 engine/core/docs/drf/viewsets.py:502 msgid "lists all permitted feedbacks for a product" msgstr "" -#: core/docs/drf/viewsets.py:502 +#: engine/core/docs/drf/viewsets.py:518 msgid "returns a snapshot of the product's SEO meta data" msgstr "" -#: core/docs/drf/viewsets.py:520 +#: engine/core/docs/drf/viewsets.py:536 msgid "list all addresses" msgstr "" -#: core/docs/drf/viewsets.py:527 +#: engine/core/docs/drf/viewsets.py:543 msgid "retrieve a single address" msgstr "" -#: core/docs/drf/viewsets.py:534 +#: engine/core/docs/drf/viewsets.py:550 msgid "create a new address" msgstr "" -#: core/docs/drf/viewsets.py:542 +#: engine/core/docs/drf/viewsets.py:558 msgid "delete an address" msgstr "" -#: core/docs/drf/viewsets.py:549 +#: engine/core/docs/drf/viewsets.py:565 msgid "update an entire address" msgstr "" -#: core/docs/drf/viewsets.py:557 +#: engine/core/docs/drf/viewsets.py:573 msgid "partially update an address" msgstr "" -#: core/docs/drf/viewsets.py:565 +#: engine/core/docs/drf/viewsets.py:581 msgid "autocomplete address suggestions" msgstr "" -#: core/docs/drf/viewsets.py:570 +#: engine/core/docs/drf/viewsets.py:586 msgid "raw data query string, please append with data from geo-IP endpoint" msgstr "" -#: core/docs/drf/viewsets.py:576 +#: engine/core/docs/drf/viewsets.py:592 msgid "limit the results amount, 1 < limit < 10, default: 5" msgstr "" -#: core/docs/drf/viewsets.py:589 +#: engine/core/docs/drf/viewsets.py:605 msgid "list all feedbacks (simple view)" msgstr "" -#: core/docs/drf/viewsets.py:593 +#: engine/core/docs/drf/viewsets.py:609 msgid "retrieve a single feedback (detailed view)" msgstr "" -#: core/docs/drf/viewsets.py:597 +#: engine/core/docs/drf/viewsets.py:613 msgid "create a feedback" msgstr "" -#: core/docs/drf/viewsets.py:601 +#: engine/core/docs/drf/viewsets.py:617 msgid "delete a feedback" msgstr "" -#: core/docs/drf/viewsets.py:605 +#: engine/core/docs/drf/viewsets.py:621 msgid "rewrite an existing feedback saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:609 +#: engine/core/docs/drf/viewsets.py:625 msgid "rewrite some fields of an existing feedback saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:616 +#: engine/core/docs/drf/viewsets.py:632 msgid "list all order–product relations (simple view)" msgstr "" -#: core/docs/drf/viewsets.py:623 +#: engine/core/docs/drf/viewsets.py:639 msgid "retrieve a single order–product relation (detailed view)" msgstr "" -#: core/docs/drf/viewsets.py:630 +#: engine/core/docs/drf/viewsets.py:646 msgid "create a new order–product relation" msgstr "" -#: core/docs/drf/viewsets.py:637 +#: engine/core/docs/drf/viewsets.py:653 msgid "replace an existing order–product relation" msgstr "" -#: core/docs/drf/viewsets.py:644 +#: engine/core/docs/drf/viewsets.py:660 msgid "partially update an existing order–product relation" msgstr "" -#: core/docs/drf/viewsets.py:651 +#: engine/core/docs/drf/viewsets.py:667 msgid "delete an order–product relation" msgstr "" -#: core/docs/drf/viewsets.py:658 +#: engine/core/docs/drf/viewsets.py:674 msgid "add or remove feedback on an order–product relation" msgstr "" -#: core/docs/drf/viewsets.py:672 +#: engine/core/docs/drf/viewsets.py:688 msgid "list all brands (simple view)" msgstr "" -#: core/docs/drf/viewsets.py:676 +#: engine/core/docs/drf/viewsets.py:692 msgid "retrieve a single brand (detailed view)" msgstr "" -#: core/docs/drf/viewsets.py:680 +#: engine/core/docs/drf/viewsets.py:697 engine/core/docs/drf/viewsets.py:725 +msgid "Brand UUID or slug" +msgstr "" + +#: engine/core/docs/drf/viewsets.py:704 msgid "create a brand" msgstr "" -#: core/docs/drf/viewsets.py:684 +#: engine/core/docs/drf/viewsets.py:708 msgid "delete a brand" msgstr "" -#: core/docs/drf/viewsets.py:688 +#: engine/core/docs/drf/viewsets.py:712 msgid "rewrite an existing brand saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:692 +#: engine/core/docs/drf/viewsets.py:716 msgid "rewrite some fields of an existing brand saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:696 +#: engine/core/docs/drf/viewsets.py:720 msgid "SEO Meta snapshot for brand" msgstr "" -#: core/docs/drf/viewsets.py:703 +#: engine/core/docs/drf/viewsets.py:735 msgid "list all vendors (simple view)" msgstr "" -#: core/docs/drf/viewsets.py:707 +#: engine/core/docs/drf/viewsets.py:739 msgid "retrieve a single vendor (detailed view)" msgstr "" -#: core/docs/drf/viewsets.py:711 +#: engine/core/docs/drf/viewsets.py:743 msgid "create a vendor" msgstr "" -#: core/docs/drf/viewsets.py:715 +#: engine/core/docs/drf/viewsets.py:747 msgid "delete a vendor" msgstr "" -#: core/docs/drf/viewsets.py:719 +#: engine/core/docs/drf/viewsets.py:751 msgid "rewrite an existing vendor saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:723 +#: engine/core/docs/drf/viewsets.py:755 msgid "rewrite some fields of an existing vendor saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:730 +#: engine/core/docs/drf/viewsets.py:762 msgid "list all product images (simple view)" msgstr "" -#: core/docs/drf/viewsets.py:734 +#: engine/core/docs/drf/viewsets.py:766 msgid "retrieve a single product image (detailed view)" msgstr "" -#: core/docs/drf/viewsets.py:738 +#: engine/core/docs/drf/viewsets.py:770 msgid "create a product image" msgstr "" -#: core/docs/drf/viewsets.py:742 +#: engine/core/docs/drf/viewsets.py:774 msgid "delete a product image" msgstr "" -#: core/docs/drf/viewsets.py:746 +#: engine/core/docs/drf/viewsets.py:778 msgid "rewrite an existing product image saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:750 +#: engine/core/docs/drf/viewsets.py:782 msgid "rewrite some fields of an existing product image saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:757 +#: engine/core/docs/drf/viewsets.py:789 msgid "list all promo codes (simple view)" msgstr "" -#: core/docs/drf/viewsets.py:761 +#: engine/core/docs/drf/viewsets.py:793 msgid "retrieve a single promo code (detailed view)" msgstr "" -#: core/docs/drf/viewsets.py:765 +#: engine/core/docs/drf/viewsets.py:797 msgid "create a promo code" msgstr "" -#: core/docs/drf/viewsets.py:769 +#: engine/core/docs/drf/viewsets.py:801 msgid "delete a promo code" msgstr "" -#: core/docs/drf/viewsets.py:773 +#: engine/core/docs/drf/viewsets.py:805 msgid "rewrite an existing promo code saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:777 +#: engine/core/docs/drf/viewsets.py:809 msgid "rewrite some fields of an existing promo code saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:784 +#: engine/core/docs/drf/viewsets.py:816 msgid "list all promotions (simple view)" msgstr "" -#: core/docs/drf/viewsets.py:788 +#: engine/core/docs/drf/viewsets.py:820 msgid "retrieve a single promotion (detailed view)" msgstr "" -#: core/docs/drf/viewsets.py:792 +#: engine/core/docs/drf/viewsets.py:824 msgid "create a promotion" msgstr "" -#: core/docs/drf/viewsets.py:796 +#: engine/core/docs/drf/viewsets.py:828 msgid "delete a promotion" msgstr "" -#: core/docs/drf/viewsets.py:800 +#: engine/core/docs/drf/viewsets.py:832 msgid "rewrite an existing promotion saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:804 +#: engine/core/docs/drf/viewsets.py:836 msgid "rewrite some fields of an existing promotion saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:811 +#: engine/core/docs/drf/viewsets.py:843 msgid "list all stocks (simple view)" msgstr "" -#: core/docs/drf/viewsets.py:815 +#: engine/core/docs/drf/viewsets.py:847 msgid "retrieve a single stock (detailed view)" msgstr "" -#: core/docs/drf/viewsets.py:819 +#: engine/core/docs/drf/viewsets.py:851 msgid "create a stock record" msgstr "" -#: core/docs/drf/viewsets.py:823 +#: engine/core/docs/drf/viewsets.py:855 msgid "delete a stock record" msgstr "" -#: core/docs/drf/viewsets.py:827 +#: engine/core/docs/drf/viewsets.py:859 msgid "rewrite an existing stock record saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:831 +#: engine/core/docs/drf/viewsets.py:863 msgid "rewrite some fields of an existing stock record saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:838 +#: engine/core/docs/drf/viewsets.py:870 msgid "list all product tags (simple view)" msgstr "" -#: core/docs/drf/viewsets.py:842 +#: engine/core/docs/drf/viewsets.py:874 msgid "retrieve a single product tag (detailed view)" msgstr "" -#: core/docs/drf/viewsets.py:846 +#: engine/core/docs/drf/viewsets.py:878 msgid "create a product tag" msgstr "" -#: core/docs/drf/viewsets.py:850 +#: engine/core/docs/drf/viewsets.py:882 msgid "delete a product tag" msgstr "" -#: core/docs/drf/viewsets.py:854 +#: engine/core/docs/drf/viewsets.py:886 msgid "rewrite an existing product tag saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:858 +#: engine/core/docs/drf/viewsets.py:890 msgid "rewrite some fields of an existing product tag saving non-editables" msgstr "" -#: core/elasticsearch/__init__.py:118 core/elasticsearch/__init__.py:550 +#: engine/core/elasticsearch/__init__.py:122 +#: engine/core/elasticsearch/__init__.py:570 msgid "no search term provided." msgstr "" -#: core/filters.py:69 core/filters.py:412 core/filters.py:539 +#: engine/core/filters.py:69 engine/core/filters.py:426 +#: engine/core/filters.py:553 msgid "Search" msgstr "" -#: core/filters.py:70 core/filters.py:569 core/filters.py:598 +#: engine/core/filters.py:70 engine/core/filters.py:583 +#: engine/core/filters.py:612 msgid "UUID" msgstr "" -#: core/filters.py:71 core/filters.py:414 core/filters.py:541 +#: engine/core/filters.py:71 engine/core/filters.py:428 +#: engine/core/filters.py:555 msgid "Name" msgstr "" -#: core/filters.py:72 core/filters.py:543 +#: engine/core/filters.py:72 engine/core/filters.py:557 msgid "Categories" msgstr "" -#: core/filters.py:74 +#: engine/core/filters.py:74 msgid "Categories Slugs" msgstr "" -#: core/filters.py:75 core/filters.py:422 +#: engine/core/filters.py:75 engine/core/filters.py:436 msgid "Tags" msgstr "" -#: core/filters.py:76 +#: engine/core/filters.py:76 msgid "Min Price" msgstr "" -#: core/filters.py:77 +#: engine/core/filters.py:77 msgid "Max Price" msgstr "" -#: core/filters.py:78 +#: engine/core/filters.py:78 msgid "Is Active" msgstr "" -#: core/filters.py:79 +#: engine/core/filters.py:79 msgid "Brand" msgstr "" -#: core/filters.py:80 +#: engine/core/filters.py:80 msgid "Attributes" msgstr "" -#: core/filters.py:81 +#: engine/core/filters.py:81 msgid "Quantity" msgstr "" -#: core/filters.py:82 core/filters.py:416 core/filters.py:542 -#: core/models.py:322 core/models.py:483 core/models.py:637 +#: engine/core/filters.py:82 engine/core/filters.py:430 +#: engine/core/filters.py:556 engine/core/models.py:321 +#: engine/core/models.py:482 engine/core/models.py:637 msgid "Slug" msgstr "" -#: core/filters.py:83 +#: engine/core/filters.py:83 msgid "Is Digital" msgstr "" -#: core/filters.py:84 +#: engine/core/filters.py:84 msgid "Include sub-categories" msgstr "" -#: core/filters.py:87 +#: engine/core/filters.py:87 msgid "Include personal ordered" msgstr "" -#: core/filters.py:89 core/models.py:641 +#: engine/core/filters.py:89 engine/core/models.py:641 msgid "SKU" msgstr "" -#: core/filters.py:173 +#: engine/core/filters.py:184 msgid "there must be a category_uuid to use include_subcategories flag" msgstr "" -#: core/filters.py:339 +#: engine/core/filters.py:353 msgid "Search (ID, product name or part number)" msgstr "" -#: core/filters.py:342 +#: engine/core/filters.py:356 msgid "Bought after (inclusive)" msgstr "" -#: core/filters.py:343 +#: engine/core/filters.py:357 msgid "Bought before (inclusive)" msgstr "" -#: core/filters.py:346 core/filters.py:393 core/filters.py:600 +#: engine/core/filters.py:360 engine/core/filters.py:407 +#: engine/core/filters.py:614 msgid "User email" msgstr "" -#: core/filters.py:347 core/filters.py:394 core/filters.py:578 -#: core/filters.py:599 +#: engine/core/filters.py:361 engine/core/filters.py:408 +#: engine/core/filters.py:592 engine/core/filters.py:613 msgid "User UUID" msgstr "" -#: core/filters.py:348 +#: engine/core/filters.py:362 msgid "Status" msgstr "" -#: core/filters.py:352 +#: engine/core/filters.py:366 msgid "Human Readable ID" msgstr "" -#: core/filters.py:415 +#: engine/core/filters.py:429 msgid "Parent" msgstr "" -#: core/filters.py:419 +#: engine/core/filters.py:433 msgid "Whole category(has at least 1 product or not)" msgstr "" -#: core/filters.py:423 +#: engine/core/filters.py:437 msgid "Level" msgstr "" -#: core/filters.py:573 +#: engine/core/filters.py:587 msgid "Product UUID" msgstr "" -#: core/graphene/mutations.py:41 +#: engine/core/graphene/mutations.py:41 msgid "key to look for in or set into the cache" msgstr "" -#: core/graphene/mutations.py:42 +#: engine/core/graphene/mutations.py:42 msgid "data to store in cache" msgstr "" -#: core/graphene/mutations.py:45 +#: engine/core/graphene/mutations.py:45 msgid "timeout in seconds to set the data for into the cache" msgstr "" -#: core/graphene/mutations.py:48 +#: engine/core/graphene/mutations.py:48 msgid "cached data" msgstr "" -#: core/graphene/mutations.py:63 +#: engine/core/graphene/mutations.py:63 msgid "camelized JSON data from the requested URL" msgstr "" -#: core/graphene/mutations.py:68 core/views.py:232 +#: engine/core/graphene/mutations.py:68 engine/core/views.py:231 msgid "only URLs starting with http(s):// are allowed" msgstr "" -#: core/graphene/mutations.py:84 +#: engine/core/graphene/mutations.py:84 msgid "add a product to the order" msgstr "" -#: core/graphene/mutations.py:105 core/graphene/mutations.py:132 -#: core/graphene/mutations.py:240 core/graphene/mutations.py:288 +#: engine/core/graphene/mutations.py:105 engine/core/graphene/mutations.py:132 +#: engine/core/graphene/mutations.py:240 engine/core/graphene/mutations.py:288 #, python-brace-format msgid "order {order_uuid} not found" msgstr "" -#: core/graphene/mutations.py:111 core/graphene/mutations.py:160 +#: engine/core/graphene/mutations.py:111 engine/core/graphene/mutations.py:160 msgid "remove a product from the order" msgstr "" -#: core/graphene/mutations.py:138 +#: engine/core/graphene/mutations.py:138 msgid "remove all products from the order" msgstr "" -#: core/graphene/mutations.py:183 +#: engine/core/graphene/mutations.py:183 msgid "buy an order" msgstr "" -#: core/graphene/mutations.py:212 core/graphene/mutations.py:266 +#: engine/core/graphene/mutations.py:212 engine/core/graphene/mutations.py:266 msgid "please provide either order_uuid or order_hr_id - mutually exclusive" msgstr "" -#: core/graphene/mutations.py:237 core/graphene/mutations.py:502 -#: core/graphene/mutations.py:544 core/viewsets.py:704 +#: engine/core/graphene/mutations.py:237 engine/core/graphene/mutations.py:502 +#: engine/core/graphene/mutations.py:544 engine/core/viewsets.py:704 msgid "wrong type came from order.buy() method: {type(instance)!s}" msgstr "" -#: core/graphene/mutations.py:246 +#: engine/core/graphene/mutations.py:246 msgid "perform an action on a list of products in the order" msgstr "" -#: core/graphene/mutations.py:251 +#: engine/core/graphene/mutations.py:251 msgid "remove/add" msgstr "" -#: core/graphene/mutations.py:283 core/graphene/mutations.py:324 +#: engine/core/graphene/mutations.py:283 engine/core/graphene/mutations.py:324 msgid "action must be either add or remove" msgstr "" -#: core/graphene/mutations.py:294 +#: engine/core/graphene/mutations.py:294 msgid "perform an action on a list of products in the wishlist" msgstr "" -#: core/graphene/mutations.py:312 +#: engine/core/graphene/mutations.py:312 msgid "please provide wishlist_uuid value" msgstr "" -#: core/graphene/mutations.py:329 core/graphene/mutations.py:405 -#: core/graphene/mutations.py:433 core/graphene/mutations.py:461 -#: core/graphene/mutations.py:505 +#: engine/core/graphene/mutations.py:329 engine/core/graphene/mutations.py:405 +#: engine/core/graphene/mutations.py:433 engine/core/graphene/mutations.py:461 +#: engine/core/graphene/mutations.py:505 #, python-brace-format msgid "wishlist {wishlist_uuid} not found" msgstr "" -#: core/graphene/mutations.py:383 +#: engine/core/graphene/mutations.py:383 msgid "add a product to the wishlist" msgstr "" -#: core/graphene/mutations.py:411 +#: engine/core/graphene/mutations.py:411 msgid "remove a product from the wishlist" msgstr "" -#: core/graphene/mutations.py:439 +#: engine/core/graphene/mutations.py:439 msgid "remove all products from the wishlist" msgstr "" -#: core/graphene/mutations.py:467 +#: engine/core/graphene/mutations.py:467 msgid "buy all products from the wishlist" msgstr "" -#: core/graphene/mutations.py:511 +#: engine/core/graphene/mutations.py:511 msgid "buy a product" msgstr "" -#: core/graphene/mutations.py:517 +#: engine/core/graphene/mutations.py:517 msgid "" "please send the attributes as the string formatted like attr1=value1," "attr2=value2" msgstr "" -#: core/graphene/mutations.py:550 +#: engine/core/graphene/mutations.py:550 msgid "add or delete a feedback for orderproduct" msgstr "" -#: core/graphene/mutations.py:574 +#: engine/core/graphene/mutations.py:574 msgid "action must be either `add` or `remove`" msgstr "" -#: core/graphene/mutations.py:577 +#: engine/core/graphene/mutations.py:577 #, python-brace-format msgid "order product {order_product_uuid} not found" msgstr "" -#: core/graphene/mutations.py:644 +#: engine/core/graphene/mutations.py:644 msgid "original address string provided by the user" msgstr "" -#: core/graphene/mutations.py:680 core/models.py:930 core/models.py:943 -#: core/models.py:1358 core/models.py:1387 core/models.py:1412 -#: core/viewsets.py:707 +#: engine/core/graphene/mutations.py:680 engine/core/models.py:941 +#: engine/core/models.py:954 engine/core/models.py:1369 +#: engine/core/models.py:1398 engine/core/models.py:1423 +#: engine/core/viewsets.py:707 #, python-brace-format msgid "{name} does not exist: {uuid}" msgstr "" -#: core/graphene/mutations.py:694 +#: engine/core/graphene/mutations.py:694 msgid "limit must be between 1 and 10" msgstr "" -#: core/graphene/mutations.py:743 +#: engine/core/graphene/mutations.py:743 msgid "elasticsearch - works like a charm" msgstr "" -#: core/graphene/object_types.py:82 core/graphene/object_types.py:370 -#: core/graphene/object_types.py:417 core/models.py:754 core/models.py:1225 -#: core/models.py:1823 +#: engine/core/graphene/object_types.py:82 +#: engine/core/graphene/object_types.py:370 +#: engine/core/graphene/object_types.py:417 engine/core/models.py:765 +#: engine/core/models.py:1236 engine/core/models.py:1883 msgid "attributes" msgstr "" -#: core/graphene/object_types.py:95 +#: engine/core/graphene/object_types.py:95 msgid "grouped attributes" msgstr "" -#: core/graphene/object_types.py:102 +#: engine/core/graphene/object_types.py:102 msgid "groups of attributes" msgstr "" -#: core/graphene/object_types.py:116 core/graphene/object_types.py:193 -#: core/graphene/object_types.py:223 core/models.py:426 +#: engine/core/graphene/object_types.py:116 +#: engine/core/graphene/object_types.py:193 +#: engine/core/graphene/object_types.py:223 engine/core/models.py:425 msgid "categories" msgstr "" -#: core/graphene/object_types.py:124 core/models.py:497 +#: engine/core/graphene/object_types.py:124 engine/core/models.py:496 msgid "brands" msgstr "" -#: core/graphene/object_types.py:195 +#: engine/core/graphene/object_types.py:195 msgid "category image url" msgstr "" -#: core/graphene/object_types.py:196 core/graphene/object_types.py:317 -#: core/models.py:284 +#: engine/core/graphene/object_types.py:196 +#: engine/core/graphene/object_types.py:317 engine/core/models.py:283 msgid "markup percentage" msgstr "" -#: core/graphene/object_types.py:199 +#: engine/core/graphene/object_types.py:199 msgid "which attributes and values can be used for filtering this category." msgstr "" -#: core/graphene/object_types.py:203 +#: engine/core/graphene/object_types.py:203 msgid "minimum and maximum prices for products in this category, if available." msgstr "" -#: core/graphene/object_types.py:205 +#: engine/core/graphene/object_types.py:205 msgid "tags for this category" msgstr "" -#: core/graphene/object_types.py:206 +#: engine/core/graphene/object_types.py:206 msgid "products in this category" msgstr "" -#: core/graphene/object_types.py:324 core/models.py:189 +#: engine/core/graphene/object_types.py:324 engine/core/models.py:188 msgid "vendors" msgstr "" -#: core/graphene/object_types.py:328 +#: engine/core/graphene/object_types.py:328 msgid "Latitude (Y coordinate)" msgstr "" -#: core/graphene/object_types.py:329 +#: engine/core/graphene/object_types.py:329 msgid "Longitude (X coordinate)" msgstr "" -#: core/graphene/object_types.py:358 +#: engine/core/graphene/object_types.py:358 msgid "comment" msgstr "" -#: core/graphene/object_types.py:359 core/graphene/object_types.py:483 +#: engine/core/graphene/object_types.py:359 +#: engine/core/graphene/object_types.py:483 msgid "rating value from 1 to 10, inclusive, or 0 if not set." msgstr "" -#: core/graphene/object_types.py:366 +#: engine/core/graphene/object_types.py:366 msgid "represents feedback from a user." msgstr "" -#: core/graphene/object_types.py:371 core/graphene/object_types.py:418 -#: core/models.py:1219 +#: engine/core/graphene/object_types.py:371 +#: engine/core/graphene/object_types.py:418 engine/core/models.py:1230 msgid "notifications" msgstr "" -#: core/graphene/object_types.py:372 +#: engine/core/graphene/object_types.py:372 msgid "download url for this order product if applicable" msgstr "" -#: core/graphene/object_types.py:373 core/models.py:1939 +#: engine/core/graphene/object_types.py:373 engine/core/models.py:1722 msgid "feedback" msgstr "" -#: core/graphene/object_types.py:407 +#: engine/core/graphene/object_types.py:407 msgid "a list of order products in this order" msgstr "" -#: core/graphene/object_types.py:409 core/models.py:1189 +#: engine/core/graphene/object_types.py:409 engine/core/models.py:1200 msgid "billing address" msgstr "" -#: core/graphene/object_types.py:412 +#: engine/core/graphene/object_types.py:412 msgid "" "shipping address for this order, leave blank if same as billing address or " "if not applicable" msgstr "" -#: core/graphene/object_types.py:414 +#: engine/core/graphene/object_types.py:414 msgid "total price of this order" msgstr "" -#: core/graphene/object_types.py:415 +#: engine/core/graphene/object_types.py:415 msgid "total quantity of products in order" msgstr "" -#: core/graphene/object_types.py:416 +#: engine/core/graphene/object_types.py:416 msgid "are all products in the order digital" msgstr "" -#: core/graphene/object_types.py:419 +#: engine/core/graphene/object_types.py:419 msgid "transactions for this order" msgstr "" -#: core/graphene/object_types.py:438 core/models.py:1253 +#: engine/core/graphene/object_types.py:438 engine/core/models.py:1264 msgid "orders" msgstr "" -#: core/graphene/object_types.py:459 +#: engine/core/graphene/object_types.py:459 msgid "image url" msgstr "" -#: core/graphene/object_types.py:466 +#: engine/core/graphene/object_types.py:466 msgid "product's images" msgstr "" -#: core/graphene/object_types.py:473 core/models.py:425 core/models.py:579 +#: engine/core/graphene/object_types.py:473 engine/core/models.py:424 +#: engine/core/models.py:579 msgid "category" msgstr "" -#: core/graphene/object_types.py:475 core/models.py:1940 +#: engine/core/graphene/object_types.py:475 engine/core/models.py:1723 msgid "feedbacks" msgstr "" -#: core/graphene/object_types.py:476 core/models.py:496 core/models.py:588 +#: engine/core/graphene/object_types.py:476 engine/core/models.py:495 +#: engine/core/models.py:588 msgid "brand" msgstr "" -#: core/graphene/object_types.py:477 core/models.py:107 +#: engine/core/graphene/object_types.py:477 engine/core/models.py:106 msgid "attribute groups" msgstr "" -#: core/graphene/object_types.py:478 -#: core/templates/digital_order_created_email.html:111 -#: core/templates/digital_order_delivered_email.html:109 -#: core/templates/shipped_order_created_email.html:109 -#: core/templates/shipped_order_delivered_email.html:109 +#: engine/core/graphene/object_types.py:478 +#: engine/core/templates/digital_order_created_email.html:111 +#: engine/core/templates/digital_order_delivered_email.html:109 +#: engine/core/templates/shipped_order_created_email.html:109 +#: engine/core/templates/shipped_order_delivered_email.html:109 msgid "price" msgstr "" -#: core/graphene/object_types.py:479 -#: core/templates/digital_order_created_email.html:110 -#: core/templates/digital_order_delivered_email.html:108 -#: core/templates/shipped_order_created_email.html:108 -#: core/templates/shipped_order_delivered_email.html:108 +#: engine/core/graphene/object_types.py:479 +#: engine/core/templates/digital_order_created_email.html:110 +#: engine/core/templates/digital_order_delivered_email.html:108 +#: engine/core/templates/shipped_order_created_email.html:108 +#: engine/core/templates/shipped_order_delivered_email.html:108 msgid "quantity" msgstr "" -#: core/graphene/object_types.py:480 +#: engine/core/graphene/object_types.py:480 msgid "number of feedbacks" msgstr "" -#: core/graphene/object_types.py:481 +#: engine/core/graphene/object_types.py:481 msgid "only available for personal orders" msgstr "" -#: core/graphene/object_types.py:507 core/models.py:651 +#: engine/core/graphene/object_types.py:484 +msgid "discount price" +msgstr "" + +#: engine/core/graphene/object_types.py:508 engine/core/models.py:651 msgid "products" msgstr "" -#: core/graphene/object_types.py:607 +#: engine/core/graphene/object_types.py:611 msgid "promocodes" msgstr "" -#: core/graphene/object_types.py:617 +#: engine/core/graphene/object_types.py:621 msgid "products on sale" msgstr "" -#: core/graphene/object_types.py:624 core/models.py:879 +#: engine/core/graphene/object_types.py:628 engine/core/models.py:890 msgid "promotions" msgstr "" -#: core/graphene/object_types.py:628 core/models.py:188 +#: engine/core/graphene/object_types.py:632 engine/core/models.py:187 msgid "vendor" msgstr "" -#: core/graphene/object_types.py:629 core/models.py:650 -#: core/templates/digital_order_created_email.html:109 -#: core/templates/digital_order_delivered_email.html:107 -#: core/templates/shipped_order_created_email.html:107 -#: core/templates/shipped_order_delivered_email.html:107 +#: engine/core/graphene/object_types.py:633 engine/core/models.py:650 +#: 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 +#: engine/core/templates/shipped_order_delivered_email.html:107 msgid "product" msgstr "" -#: core/graphene/object_types.py:640 core/models.py:902 +#: engine/core/graphene/object_types.py:644 engine/core/models.py:913 msgid "wishlisted products" msgstr "" -#: core/graphene/object_types.py:646 core/models.py:919 +#: engine/core/graphene/object_types.py:650 engine/core/models.py:930 msgid "wishlists" msgstr "" -#: core/graphene/object_types.py:650 +#: engine/core/graphene/object_types.py:654 msgid "tagged products" msgstr "" -#: core/graphene/object_types.py:657 core/models.py:225 core/models.py:594 +#: engine/core/graphene/object_types.py:661 engine/core/models.py:224 +#: engine/core/models.py:594 msgid "product tags" msgstr "" -#: core/graphene/object_types.py:661 +#: engine/core/graphene/object_types.py:665 msgid "tagged categories" msgstr "" -#: core/graphene/object_types.py:668 +#: engine/core/graphene/object_types.py:672 msgid "categories tags" msgstr "" -#: core/graphene/object_types.py:672 +#: engine/core/graphene/object_types.py:676 msgid "project name" msgstr "" -#: core/graphene/object_types.py:673 +#: engine/core/graphene/object_types.py:677 msgid "company email" msgstr "" -#: core/graphene/object_types.py:674 +#: engine/core/graphene/object_types.py:678 msgid "company name" msgstr "" -#: core/graphene/object_types.py:675 +#: engine/core/graphene/object_types.py:679 msgid "company address" msgstr "" -#: core/graphene/object_types.py:676 +#: engine/core/graphene/object_types.py:680 msgid "company phone number" msgstr "" -#: core/graphene/object_types.py:677 +#: engine/core/graphene/object_types.py:681 msgid "email from, sometimes it must be used instead of host user value" msgstr "" -#: core/graphene/object_types.py:678 +#: engine/core/graphene/object_types.py:682 msgid "email host user" msgstr "" -#: core/graphene/object_types.py:679 +#: engine/core/graphene/object_types.py:683 msgid "maximum amount for payment" msgstr "" -#: core/graphene/object_types.py:680 +#: engine/core/graphene/object_types.py:684 msgid "minimum amount for payment" msgstr "" -#: core/graphene/object_types.py:681 +#: engine/core/graphene/object_types.py:685 msgid "analytics data" msgstr "" -#: core/graphene/object_types.py:682 +#: engine/core/graphene/object_types.py:686 msgid "advertisement data" msgstr "" -#: core/graphene/object_types.py:685 +#: engine/core/graphene/object_types.py:689 msgid "company configuration" msgstr "" -#: core/graphene/object_types.py:689 +#: engine/core/graphene/object_types.py:693 msgid "language code" msgstr "" -#: core/graphene/object_types.py:690 +#: engine/core/graphene/object_types.py:694 msgid "language name" msgstr "" -#: core/graphene/object_types.py:691 +#: engine/core/graphene/object_types.py:695 msgid "language flag, if exists :)" msgstr "" -#: core/graphene/object_types.py:694 +#: engine/core/graphene/object_types.py:698 msgid "supported languages" msgstr "" -#: core/graphene/object_types.py:725 core/graphene/object_types.py:726 -#: core/graphene/object_types.py:727 +#: engine/core/graphene/object_types.py:729 +#: engine/core/graphene/object_types.py:730 +#: engine/core/graphene/object_types.py:731 msgid "products search results" msgstr "" -#: core/graphene/object_types.py:728 +#: engine/core/graphene/object_types.py:732 msgid "posts search results" msgstr "" -#: core/models.py:76 +#: engine/core/models.py:75 msgid "" "Represents a group of attributes, which can be hierarchical. This class is " "used to manage and organize attribute groups. An attribute group can have a " @@ -1416,23 +1446,23 @@ msgid "" "categorizing and managing attributes more effectively in acomplex system." msgstr "" -#: core/models.py:92 +#: engine/core/models.py:91 msgid "parent of this group" msgstr "" -#: core/models.py:93 +#: engine/core/models.py:92 msgid "parent attribute group" msgstr "" -#: core/models.py:97 core/models.py:98 +#: engine/core/models.py:96 engine/core/models.py:97 msgid "attribute group's name" msgstr "" -#: core/models.py:106 core/models.py:716 +#: engine/core/models.py:105 engine/core/models.py:727 msgid "attribute group" msgstr "" -#: core/models.py:112 +#: engine/core/models.py:111 msgid "" "Represents a vendor entity capable of storing information about external " "vendors and their interaction requirements. The Vendor class is used to " @@ -1443,47 +1473,47 @@ msgid "" "use in systems that interact with third-party vendors." msgstr "" -#: core/models.py:125 +#: engine/core/models.py:124 msgid "stores credentials and endpoints required for vendor communication" msgstr "" -#: core/models.py:126 +#: engine/core/models.py:125 msgid "authentication info" msgstr "" -#: core/models.py:131 +#: engine/core/models.py:130 msgid "define the markup for products retrieved from this vendor" msgstr "" -#: core/models.py:132 +#: engine/core/models.py:131 msgid "vendor markup percentage" msgstr "" -#: core/models.py:136 +#: engine/core/models.py:135 msgid "name of this vendor" msgstr "" -#: core/models.py:137 +#: engine/core/models.py:136 msgid "vendor name" msgstr "" -#: core/models.py:148 +#: engine/core/models.py:147 msgid "response file" msgstr "" -#: core/models.py:149 +#: engine/core/models.py:148 msgid "vendor's last processing response" msgstr "" -#: core/models.py:155 +#: engine/core/models.py:154 msgid "vendor's integration file path" msgstr "" -#: core/models.py:156 +#: engine/core/models.py:155 msgid "integration path" msgstr "" -#: core/models.py:198 +#: engine/core/models.py:197 msgid "" "Represents a product tag used for classifying or identifying products. The " "ProductTag class is designed to uniquely identify and classify products " @@ -1492,42 +1522,42 @@ msgid "" "metadata customization for administrative purposes." msgstr "" -#: core/models.py:210 core/models.py:241 +#: engine/core/models.py:209 engine/core/models.py:240 msgid "internal tag identifier for the product tag" msgstr "" -#: core/models.py:211 core/models.py:242 +#: engine/core/models.py:210 engine/core/models.py:241 msgid "tag name" msgstr "" -#: core/models.py:215 core/models.py:246 +#: engine/core/models.py:214 engine/core/models.py:245 msgid "user-friendly name for the product tag" msgstr "" -#: core/models.py:216 core/models.py:247 +#: engine/core/models.py:215 engine/core/models.py:246 msgid "tag display name" msgstr "" -#: core/models.py:224 +#: engine/core/models.py:223 msgid "product tag" msgstr "" -#: core/models.py:230 +#: engine/core/models.py:229 msgid "" "Represents a category tag used for products. This class models a category " "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 "" -#: core/models.py:255 +#: engine/core/models.py:254 msgid "category tag" msgstr "" -#: core/models.py:256 core/models.py:328 +#: engine/core/models.py:255 engine/core/models.py:327 msgid "category tags" msgstr "" -#: core/models.py:261 +#: engine/core/models.py:260 msgid "" "Represents a category entity to organize and group related items in a " "hierarchical structure. Categories may have hierarchical relationships with " @@ -1540,51 +1570,51 @@ msgid "" "priority." msgstr "" -#: core/models.py:275 +#: engine/core/models.py:274 msgid "upload an image representing this category" msgstr "" -#: core/models.py:278 +#: engine/core/models.py:277 msgid "category image" msgstr "" -#: core/models.py:283 +#: engine/core/models.py:282 msgid "define a markup percentage for products in this category" msgstr "" -#: core/models.py:292 +#: engine/core/models.py:291 msgid "parent of this category to form a hierarchical structure" msgstr "" -#: core/models.py:293 +#: engine/core/models.py:292 msgid "parent category" msgstr "" -#: core/models.py:298 +#: engine/core/models.py:297 msgid "category name" msgstr "" -#: core/models.py:299 +#: engine/core/models.py:298 msgid "provide a name for this category" msgstr "" -#: core/models.py:306 +#: engine/core/models.py:305 msgid "add a detailed description for this category" msgstr "" -#: core/models.py:307 +#: engine/core/models.py:306 msgid "category description" msgstr "" -#: core/models.py:327 +#: engine/core/models.py:326 msgid "tags that help describe or group this category" msgstr "" -#: core/models.py:334 core/models.py:489 +#: engine/core/models.py:333 engine/core/models.py:488 msgid "priority" msgstr "" -#: core/models.py:432 +#: engine/core/models.py:431 msgid "" "Represents a Brand object in the system. This class handles information and " "attributes related to a brand, including its name, logos, description, " @@ -1592,47 +1622,47 @@ msgid "" "organization and representation of brand-related data within the application." msgstr "" -#: core/models.py:442 +#: engine/core/models.py:441 msgid "name of this brand" msgstr "" -#: core/models.py:443 +#: engine/core/models.py:442 msgid "brand name" msgstr "" -#: core/models.py:450 +#: engine/core/models.py:449 msgid "upload a logo representing this brand" msgstr "" -#: core/models.py:452 +#: engine/core/models.py:451 msgid "brand small image" msgstr "" -#: core/models.py:458 +#: engine/core/models.py:457 msgid "upload a big logo representing this brand" msgstr "" -#: core/models.py:460 +#: engine/core/models.py:459 msgid "brand big image" msgstr "" -#: core/models.py:465 +#: engine/core/models.py:464 msgid "add a detailed description of the brand" msgstr "" -#: core/models.py:466 +#: engine/core/models.py:465 msgid "brand description" msgstr "" -#: core/models.py:471 +#: engine/core/models.py:470 msgid "optional categories that this brand is associated with" msgstr "" -#: core/models.py:472 +#: engine/core/models.py:471 msgid "associated categories" msgstr "" -#: core/models.py:502 +#: engine/core/models.py:501 msgid "" "Represents the stock of a product managed in the system. This class provides " "details about the relationship between vendors, products, and their stock " @@ -1642,67 +1672,72 @@ msgid "" "from various vendors." msgstr "" -#: core/models.py:514 +#: engine/core/models.py:513 msgid "the vendor supplying this product stock" msgstr "" -#: core/models.py:515 +#: engine/core/models.py:514 msgid "associated vendor" msgstr "" -#: core/models.py:519 +#: engine/core/models.py:518 msgid "final price to the customer after markups" msgstr "" -#: core/models.py:520 +#: engine/core/models.py:519 msgid "selling price" msgstr "" -#: core/models.py:525 +#: engine/core/models.py:524 msgid "the product associated with this stock entry" msgstr "" -#: core/models.py:526 core/models.py:779 core/models.py:825 core/models.py:1718 +#: engine/core/models.py:525 engine/core/models.py:790 +#: engine/core/models.py:836 engine/core/models.py:1778 msgid "associated product" msgstr "" -#: core/models.py:533 +#: engine/core/models.py:532 msgid "the price paid to the vendor for this product" msgstr "" -#: core/models.py:534 +#: engine/core/models.py:533 msgid "vendor purchase price" msgstr "" -#: core/models.py:538 +#: engine/core/models.py:537 msgid "available quantity of the product in stock" msgstr "" -#: core/models.py:539 +#: engine/core/models.py:538 msgid "quantity in stock" msgstr "" -#: core/models.py:543 +#: engine/core/models.py:542 msgid "vendor-assigned SKU for identifying the product" msgstr "" -#: core/models.py:544 +#: engine/core/models.py:543 msgid "vendor sku" msgstr "" -#: core/models.py:550 +#: engine/core/models.py:549 msgid "digital file associated with this stock if applicable" msgstr "" -#: core/models.py:551 +#: engine/core/models.py:550 msgid "digital file" msgstr "" -#: core/models.py:560 +#: engine/core/models.py:553 +msgid "system attributes" +msgstr "" + +#: engine/core/models.py:560 msgid "stock entries" msgstr "" -#: core/models.py:565 +#: engine/core/models.py:565 msgid "" "Represents a product with attributes such as category, brand, tags, digital " "status, name, description, part number, and slug. Provides related utility " @@ -1714,55 +1749,55 @@ msgid "" "product data and its associated information within an application." msgstr "" -#: core/models.py:578 +#: engine/core/models.py:578 msgid "category this product belongs to" msgstr "" -#: core/models.py:587 +#: engine/core/models.py:587 msgid "optionally associate this product with a brand" msgstr "" -#: core/models.py:593 +#: engine/core/models.py:593 msgid "tags that help describe or group this product" msgstr "" -#: core/models.py:598 +#: engine/core/models.py:598 msgid "indicates whether this product is digitally delivered" msgstr "" -#: core/models.py:599 +#: engine/core/models.py:599 msgid "is product digital" msgstr "" -#: core/models.py:605 +#: engine/core/models.py:605 msgid "provide a clear identifying name for the product" msgstr "" -#: core/models.py:606 +#: engine/core/models.py:606 msgid "product name" msgstr "" -#: core/models.py:612 core/models.py:867 +#: engine/core/models.py:612 engine/core/models.py:878 msgid "add a detailed description of the product" msgstr "" -#: core/models.py:613 +#: engine/core/models.py:613 msgid "product description" msgstr "" -#: core/models.py:620 +#: engine/core/models.py:620 msgid "part number for this product" msgstr "" -#: core/models.py:621 +#: engine/core/models.py:621 msgid "part number" msgstr "" -#: core/models.py:640 +#: engine/core/models.py:640 msgid "stock keeping unit for this product" msgstr "" -#: core/models.py:702 +#: engine/core/models.py:713 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 " @@ -1772,83 +1807,83 @@ msgid "" "for dynamic and flexible data structuring." msgstr "" -#: core/models.py:715 +#: engine/core/models.py:726 msgid "group of this attribute" msgstr "" -#: core/models.py:721 +#: engine/core/models.py:732 msgid "string" msgstr "" -#: core/models.py:722 +#: engine/core/models.py:733 msgid "integer" msgstr "" -#: core/models.py:723 +#: engine/core/models.py:734 msgid "float" msgstr "" -#: core/models.py:724 +#: engine/core/models.py:735 msgid "boolean" msgstr "" -#: core/models.py:725 +#: engine/core/models.py:736 msgid "array" msgstr "" -#: core/models.py:726 +#: engine/core/models.py:737 msgid "object" msgstr "" -#: core/models.py:728 +#: engine/core/models.py:739 msgid "type of the attribute's value" msgstr "" -#: core/models.py:729 +#: engine/core/models.py:740 msgid "value type" msgstr "" -#: core/models.py:734 +#: engine/core/models.py:745 msgid "name of this attribute" msgstr "" -#: core/models.py:735 +#: engine/core/models.py:746 msgid "attribute's name" msgstr "" -#: core/models.py:740 +#: engine/core/models.py:751 msgid "is filterable" msgstr "" -#: core/models.py:741 +#: engine/core/models.py:752 msgid "designates whether this attribute can be used for filtering or not" msgstr "" -#: core/models.py:753 core/models.py:771 -#: core/templates/digital_order_delivered_email.html:134 +#: engine/core/models.py:764 engine/core/models.py:782 +#: engine/core/templates/digital_order_delivered_email.html:134 msgid "attribute" msgstr "" -#: core/models.py:759 +#: engine/core/models.py:770 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 "" -#: core/models.py:770 +#: engine/core/models.py:781 msgid "attribute of this value" msgstr "" -#: core/models.py:778 +#: engine/core/models.py:789 msgid "the specific product associated with this attribute's value" msgstr "" -#: core/models.py:784 +#: engine/core/models.py:795 msgid "the specific value for this attribute" msgstr "" -#: core/models.py:797 +#: engine/core/models.py:808 msgid "" "Represents a product image associated with a product in the system. This " "class is designed to manage images for products, including functionality for " @@ -1857,39 +1892,39 @@ msgid "" "with alternative text for the images." msgstr "" -#: core/models.py:808 +#: engine/core/models.py:819 msgid "provide alternative text for the image for accessibility" msgstr "" -#: core/models.py:809 +#: engine/core/models.py:820 msgid "image alt text" msgstr "" -#: core/models.py:812 +#: engine/core/models.py:823 msgid "upload the image file for this product" msgstr "" -#: core/models.py:813 core/models.py:837 +#: engine/core/models.py:824 engine/core/models.py:848 msgid "product image" msgstr "" -#: core/models.py:818 +#: engine/core/models.py:829 msgid "determines the order in which images are displayed" msgstr "" -#: core/models.py:819 +#: engine/core/models.py:830 msgid "display priority" msgstr "" -#: core/models.py:824 +#: engine/core/models.py:835 msgid "the product that this image represents" msgstr "" -#: core/models.py:838 +#: engine/core/models.py:849 msgid "product images" msgstr "" -#: core/models.py:843 +#: engine/core/models.py:854 msgid "" "Represents a promotional campaign for products with a discount. This class " "is used to define and manage promotional campaigns that offer a percentage-" @@ -1899,39 +1934,39 @@ msgid "" "affected items in the campaign." msgstr "" -#: core/models.py:855 +#: engine/core/models.py:866 msgid "percentage discount for the selected products" msgstr "" -#: core/models.py:856 +#: engine/core/models.py:867 msgid "discount percentage" msgstr "" -#: core/models.py:861 +#: engine/core/models.py:872 msgid "provide a unique name for this promotion" msgstr "" -#: core/models.py:862 +#: engine/core/models.py:873 msgid "promotion name" msgstr "" -#: core/models.py:868 +#: engine/core/models.py:879 msgid "promotion description" msgstr "" -#: core/models.py:873 +#: engine/core/models.py:884 msgid "select which products are included in this promotion" msgstr "" -#: core/models.py:874 +#: engine/core/models.py:885 msgid "included products" msgstr "" -#: core/models.py:878 +#: engine/core/models.py:889 msgid "promotion" msgstr "" -#: core/models.py:889 +#: engine/core/models.py:900 msgid "" "Represents a user's wishlist for storing and managing desired products. The " "class provides functionality to manage a collection of products, supporting " @@ -1939,23 +1974,23 @@ msgid "" "operations for adding and removing multiple products at once." msgstr "" -#: core/models.py:901 +#: engine/core/models.py:912 msgid "products that the user has marked as wanted" msgstr "" -#: core/models.py:909 +#: engine/core/models.py:920 msgid "user who owns this wishlist" msgstr "" -#: core/models.py:910 +#: engine/core/models.py:921 msgid "wishlist owner" msgstr "" -#: core/models.py:918 +#: engine/core/models.py:929 msgid "wishlist" msgstr "" -#: core/models.py:960 +#: engine/core/models.py:971 msgid "" "Represents a documentary record tied to a product. This class is used to " "store information about documentaries related to specific products, " @@ -1965,19 +2000,19 @@ msgid "" "custom features." msgstr "" -#: core/models.py:973 +#: engine/core/models.py:984 msgid "documentary" msgstr "" -#: core/models.py:974 +#: engine/core/models.py:985 msgid "documentaries" msgstr "" -#: core/models.py:984 +#: engine/core/models.py:995 msgid "unresolved" msgstr "" -#: core/models.py:989 +#: engine/core/models.py:1000 msgid "" "Represents an address entity that includes location details and associations " "with a user. Provides functionality for geographic and address data storage, " @@ -1989,59 +2024,59 @@ msgid "" "address with a user, facilitating personalized data handling." msgstr "" -#: core/models.py:1004 +#: engine/core/models.py:1015 msgid "address line for the customer" msgstr "" -#: core/models.py:1005 +#: engine/core/models.py:1016 msgid "address line" msgstr "" -#: core/models.py:1007 +#: engine/core/models.py:1018 msgid "street" msgstr "" -#: core/models.py:1008 +#: engine/core/models.py:1019 msgid "district" msgstr "" -#: core/models.py:1009 +#: engine/core/models.py:1020 msgid "city" msgstr "" -#: core/models.py:1010 +#: engine/core/models.py:1021 msgid "region" msgstr "" -#: core/models.py:1011 +#: engine/core/models.py:1022 msgid "postal code" msgstr "" -#: core/models.py:1012 +#: engine/core/models.py:1023 msgid "country" msgstr "" -#: core/models.py:1019 +#: engine/core/models.py:1030 msgid "geolocation point: (longitude, latitude)" msgstr "" -#: core/models.py:1022 +#: engine/core/models.py:1033 msgid "full JSON response from geocoder for this address" msgstr "" -#: core/models.py:1027 +#: engine/core/models.py:1038 msgid "stored JSON response from the geocoding service" msgstr "" -#: core/models.py:1035 +#: engine/core/models.py:1046 msgid "address" msgstr "" -#: core/models.py:1036 +#: engine/core/models.py:1047 msgid "addresses" msgstr "" -#: core/models.py:1048 +#: engine/core/models.py:1059 msgid "" "Represents a promotional code that can be used for discounts, managing its " "validity, type of discount, and application. The PromoCode class stores " @@ -2051,86 +2086,86 @@ msgid "" "apply the promo code to an order while ensuring constraints are met." msgstr "" -#: core/models.py:1062 +#: engine/core/models.py:1073 msgid "unique code used by a user to redeem a discount" msgstr "" -#: core/models.py:1063 +#: engine/core/models.py:1074 msgid "promo code identifier" msgstr "" -#: core/models.py:1070 +#: engine/core/models.py:1081 msgid "fixed discount amount applied if percent is not used" msgstr "" -#: core/models.py:1071 +#: engine/core/models.py:1082 msgid "fixed discount amount" msgstr "" -#: core/models.py:1077 +#: engine/core/models.py:1088 msgid "percentage discount applied if fixed amount is not used" msgstr "" -#: core/models.py:1078 +#: engine/core/models.py:1089 msgid "percentage discount" msgstr "" -#: core/models.py:1083 +#: engine/core/models.py:1094 msgid "timestamp when the promocode expires" msgstr "" -#: core/models.py:1084 +#: engine/core/models.py:1095 msgid "end validity time" msgstr "" -#: core/models.py:1089 +#: engine/core/models.py:1100 msgid "timestamp from which this promocode is valid" msgstr "" -#: core/models.py:1090 +#: engine/core/models.py:1101 msgid "start validity time" msgstr "" -#: core/models.py:1095 +#: engine/core/models.py:1106 msgid "timestamp when the promocode was used, blank if not used yet" msgstr "" -#: core/models.py:1096 +#: engine/core/models.py:1107 msgid "usage timestamp" msgstr "" -#: core/models.py:1101 +#: engine/core/models.py:1112 msgid "user assigned to this promocode if applicable" msgstr "" -#: core/models.py:1102 +#: engine/core/models.py:1113 msgid "assigned user" msgstr "" -#: core/models.py:1109 +#: engine/core/models.py:1120 msgid "promo code" msgstr "" -#: core/models.py:1110 +#: engine/core/models.py:1121 msgid "promo codes" msgstr "" -#: core/models.py:1125 +#: engine/core/models.py:1136 msgid "" "only one type of discount should be defined (amount or percent), but not " "both or neither." msgstr "" -#: core/models.py:1146 +#: engine/core/models.py:1157 msgid "promocode already used" msgstr "" -#: core/models.py:1162 +#: engine/core/models.py:1173 #, python-brace-format msgid "invalid discount type for promocode {self.uuid}" msgstr "" -#: core/models.py:1171 +#: engine/core/models.py:1182 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 " @@ -2140,144 +2175,178 @@ msgid "" "supports managing the products in the order lifecycle." msgstr "" -#: core/models.py:1188 +#: engine/core/models.py:1199 msgid "the billing address used for this order" msgstr "" -#: core/models.py:1196 +#: engine/core/models.py:1207 msgid "optional promo code applied to this order" msgstr "" -#: core/models.py:1197 +#: engine/core/models.py:1208 msgid "applied promo code" msgstr "" -#: core/models.py:1205 +#: engine/core/models.py:1216 msgid "the shipping address used for this order" msgstr "" -#: core/models.py:1206 +#: engine/core/models.py:1217 msgid "shipping address" msgstr "" -#: core/models.py:1212 +#: engine/core/models.py:1223 msgid "current status of the order in its lifecycle" msgstr "" -#: core/models.py:1213 +#: engine/core/models.py:1224 msgid "order status" msgstr "" -#: core/models.py:1218 core/models.py:1695 +#: engine/core/models.py:1229 engine/core/models.py:1755 msgid "json structure of notifications to display to users" msgstr "" -#: core/models.py:1224 +#: engine/core/models.py:1235 msgid "json representation of order attributes for this order" msgstr "" -#: core/models.py:1230 +#: engine/core/models.py:1241 msgid "the user who placed the order" msgstr "" -#: core/models.py:1231 +#: engine/core/models.py:1242 msgid "user" msgstr "" -#: core/models.py:1237 +#: engine/core/models.py:1248 msgid "the timestamp when the order was finalized" msgstr "" -#: core/models.py:1238 +#: engine/core/models.py:1249 msgid "buy time" msgstr "" -#: core/models.py:1245 +#: engine/core/models.py:1256 msgid "a human-readable identifier for the order" msgstr "" -#: core/models.py:1246 +#: engine/core/models.py:1257 msgid "human readable id" msgstr "" -#: core/models.py:1252 +#: engine/core/models.py:1263 msgid "order" msgstr "" -#: core/models.py:1294 +#: engine/core/models.py:1305 msgid "a user must have only one pending order at a time" msgstr "" -#: core/models.py:1326 +#: engine/core/models.py:1337 msgid "you cannot add products to an order that is not a pending one" msgstr "" -#: core/models.py:1331 +#: engine/core/models.py:1342 msgid "you cannot add inactive products to order" msgstr "" -#: core/models.py:1348 +#: engine/core/models.py:1359 msgid "you cannot add more products than available in stock" msgstr "" -#: core/models.py:1370 core/models.py:1395 core/models.py:1403 +#: engine/core/models.py:1381 engine/core/models.py:1406 +#: engine/core/models.py:1414 msgid "you cannot remove products from an order that is not a pending one" msgstr "" -#: core/models.py:1391 +#: engine/core/models.py:1402 #, python-brace-format msgid "{name} does not exist with query <{query}>" msgstr "" -#: core/models.py:1423 +#: engine/core/models.py:1434 msgid "promocode does not exist" msgstr "" -#: core/models.py:1429 +#: engine/core/models.py:1440 msgid "you can only buy physical products with shipping address specified" msgstr "" -#: core/models.py:1448 +#: engine/core/models.py:1459 msgid "address does not exist" msgstr "" -#: core/models.py:1469 core/models.py:1538 +#: engine/core/models.py:1480 engine/core/models.py:1549 msgid "you can not buy at this moment, please try again in a few minutes" msgstr "" -#: core/models.py:1472 core/models.py:1534 +#: engine/core/models.py:1483 engine/core/models.py:1545 msgid "invalid force value" msgstr "" -#: core/models.py:1478 core/models.py:1541 +#: engine/core/models.py:1489 engine/core/models.py:1552 msgid "you cannot purchase an empty order!" msgstr "" -#: core/models.py:1497 +#: engine/core/models.py:1508 msgid "you cannot buy an order without a user" msgstr "" -#: core/models.py:1511 +#: engine/core/models.py:1522 msgid "a user without a balance cannot buy with balance" msgstr "" -#: core/models.py:1516 +#: engine/core/models.py:1527 msgid "insufficient funds to complete the order" msgstr "" -#: core/models.py:1550 +#: engine/core/models.py:1561 msgid "" "you cannot buy without registration, please provide the following " "information: customer name, customer email, customer phone number" msgstr "" -#: core/models.py:1559 +#: engine/core/models.py:1570 #, python-brace-format msgid "" "invalid payment method: {payment_method} from {available_payment_methods}" msgstr "" -#: core/models.py:1668 +#: engine/core/models.py:1685 +msgid "" +"Manages user feedback for products. This class is designed to capture and " +"store user feedback for specific products that they have purchased. It " +"contains attributes to store user comments, a reference to the related " +"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:1697 +msgid "user-provided comments about their experience with the product" +msgstr "" + +#: engine/core/models.py:1698 +msgid "feedback comments" +msgstr "" + +#: engine/core/models.py:1705 +msgid "references the specific product in an order that this feedback is about" +msgstr "" + +#: engine/core/models.py:1706 +msgid "related order product" +msgstr "" + +#: engine/core/models.py:1711 +msgid "user-assigned rating for the product" +msgstr "" + +#: engine/core/models.py:1712 +msgid "product rating" +msgstr "" + +#: engine/core/models.py:1728 msgid "" "Represents products associated with orders and their attributes. The " "OrderProduct model maintains information about a product that is part of an " @@ -2290,108 +2359,108 @@ msgid "" "Product models and stores a reference to them." msgstr "" -#: core/models.py:1683 +#: engine/core/models.py:1743 msgid "the price paid by the customer for this product at purchase time" msgstr "" -#: core/models.py:1684 +#: engine/core/models.py:1744 msgid "purchase price at order time" msgstr "" -#: core/models.py:1689 +#: engine/core/models.py:1749 msgid "internal comments for admins about this ordered product" msgstr "" -#: core/models.py:1690 +#: engine/core/models.py:1750 msgid "internal comments" msgstr "" -#: core/models.py:1696 +#: engine/core/models.py:1756 msgid "user notifications" msgstr "" -#: core/models.py:1701 +#: engine/core/models.py:1761 msgid "json representation of this item's attributes" msgstr "" -#: core/models.py:1702 +#: engine/core/models.py:1762 msgid "ordered product attributes" msgstr "" -#: core/models.py:1707 +#: engine/core/models.py:1767 msgid "reference to the parent order that contains this product" msgstr "" -#: core/models.py:1708 +#: engine/core/models.py:1768 msgid "parent order" msgstr "" -#: core/models.py:1717 +#: engine/core/models.py:1777 msgid "the specific product associated with this order line" msgstr "" -#: core/models.py:1724 +#: engine/core/models.py:1784 msgid "quantity of this specific product in the order" msgstr "" -#: core/models.py:1725 +#: engine/core/models.py:1785 msgid "product quantity" msgstr "" -#: core/models.py:1732 +#: engine/core/models.py:1792 msgid "current status of this product in the order" msgstr "" -#: core/models.py:1733 +#: engine/core/models.py:1793 msgid "product line status" msgstr "" -#: core/models.py:1798 +#: engine/core/models.py:1858 msgid "order product must have an order" msgstr "" -#: core/models.py:1800 +#: engine/core/models.py:1860 #, python-brace-format msgid "wrong action specified for feedback: {action}" msgstr "" -#: core/models.py:1814 +#: engine/core/models.py:1874 msgid "you cannot feedback an order which is not received" msgstr "" -#: core/models.py:1820 +#: engine/core/models.py:1880 msgid "name" msgstr "" -#: core/models.py:1821 +#: engine/core/models.py:1881 msgid "URL of the integration" msgstr "" -#: core/models.py:1822 +#: engine/core/models.py:1882 msgid "authentication credentials" msgstr "" -#: core/models.py:1844 +#: engine/core/models.py:1904 msgid "you can only have one default CRM provider" msgstr "" -#: core/models.py:1854 +#: engine/core/models.py:1914 msgid "CRM" msgstr "" -#: core/models.py:1855 +#: engine/core/models.py:1915 msgid "CRMs" msgstr "" -#: core/models.py:1867 +#: engine/core/models.py:1927 msgid "order CRM link" msgstr "" -#: core/models.py:1868 +#: engine/core/models.py:1928 msgid "orders CRM links" msgstr "" -#: core/models.py:1873 +#: engine/core/models.py:1933 msgid "" "Represents the downloading functionality for digital assets associated with " "orders. The DigitalAssetDownload class provides the ability to manage and " @@ -2401,94 +2470,57 @@ msgid "" "the asset when the associated order is in a completed status." msgstr "" -#: core/models.py:1887 +#: engine/core/models.py:1947 msgid "download" msgstr "" -#: core/models.py:1888 +#: engine/core/models.py:1948 msgid "downloads" msgstr "" -#: core/models.py:1902 -msgid "" -"Manages user feedback for products. This class is designed to capture and " -"store user feedback for specific products that they have purchased. It " -"contains attributes to store user comments, a reference to the related " -"product in the order, and a user-assigned rating. The class uses database " -"fields to effectively model and manage feedback data." -msgstr "" - -#: core/models.py:1914 -msgid "user-provided comments about their experience with the product" -msgstr "" - -#: core/models.py:1915 -msgid "feedback comments" -msgstr "" - -#: core/models.py:1922 -msgid "references the specific product in an order that this feedback is about" -msgstr "" - -#: core/models.py:1923 -msgid "related order product" -msgstr "" - -#: core/models.py:1928 -msgid "user-assigned rating for the product" -msgstr "" - -#: core/models.py:1929 -msgid "product rating" -msgstr "" - -#: core/serializers/utility.py:89 +#: engine/core/serializers/utility.py:89 msgid "" "you must provide a comment, rating, and order product uuid to add feedback." msgstr "" -#: core/signals.py:73 -msgid "error during promocode creation: {e!s}" -msgstr "" - -#: core/sitemaps.py:25 +#: engine/core/sitemaps.py:25 msgid "Home" msgstr "" -#: core/sitemaps.py:30 +#: engine/core/sitemaps.py:30 msgid "Contact Us" msgstr "" -#: core/sitemaps.py:35 +#: engine/core/sitemaps.py:35 msgid "About Us" msgstr "" -#: core/templates/digital_order_created_email.html:7 -#: core/templates/digital_order_created_email.html:100 -#: core/templates/digital_order_delivered_email.html:6 -#: core/templates/shipped_order_created_email.html:7 -#: core/templates/shipped_order_created_email.html:99 -#: core/templates/shipped_order_delivered_email.html:7 -#: core/templates/shipped_order_delivered_email.html:99 +#: engine/core/templates/digital_order_created_email.html:7 +#: engine/core/templates/digital_order_created_email.html:100 +#: engine/core/templates/digital_order_delivered_email.html:6 +#: engine/core/templates/shipped_order_created_email.html:7 +#: engine/core/templates/shipped_order_created_email.html:99 +#: engine/core/templates/shipped_order_delivered_email.html:7 +#: engine/core/templates/shipped_order_delivered_email.html:99 msgid "order confirmation" msgstr "" -#: core/templates/digital_order_created_email.html:95 -#: core/templates/digital_order_delivered_email.html:94 -#: core/templates/promocode_granted_email.html:94 -#: core/templates/shipped_order_created_email.html:94 -#: core/templates/shipped_order_delivered_email.html:94 +#: engine/core/templates/digital_order_created_email.html:95 +#: engine/core/templates/digital_order_delivered_email.html:94 +#: engine/core/templates/promocode_granted_email.html:94 +#: engine/core/templates/shipped_order_created_email.html:94 +#: engine/core/templates/shipped_order_delivered_email.html:94 msgid "logo" msgstr "" -#: core/templates/digital_order_created_email.html:101 -#: core/templates/shipped_order_created_email.html:100 -#: core/templates/shipped_order_delivered_email.html:100 +#: engine/core/templates/digital_order_created_email.html:101 +#: engine/core/templates/shipped_order_created_email.html:100 +#: engine/core/templates/shipped_order_delivered_email.html:100 #, python-format msgid "hello %(order.user.first_name)s," msgstr "" -#: core/templates/digital_order_created_email.html:102 +#: engine/core/templates/digital_order_created_email.html:102 #, python-format msgid "" "thank you for your order #%(order.pk)s! we are pleased to inform you that\n" @@ -2497,220 +2529,220 @@ msgid "" " order:" msgstr "" -#: core/templates/digital_order_created_email.html:112 -#: core/templates/digital_order_delivered_email.html:110 -#: core/templates/shipped_order_created_email.html:110 -#: core/templates/shipped_order_delivered_email.html:110 +#: engine/core/templates/digital_order_created_email.html:112 +#: engine/core/templates/digital_order_delivered_email.html:110 +#: engine/core/templates/shipped_order_created_email.html:110 +#: engine/core/templates/shipped_order_delivered_email.html:110 msgid "total" msgstr "" -#: core/templates/digital_order_created_email.html:125 -#: core/templates/digital_order_delivered_email.html:157 -#: core/templates/shipped_order_created_email.html:127 -#: core/templates/shipped_order_delivered_email.html:127 +#: engine/core/templates/digital_order_created_email.html:125 +#: engine/core/templates/digital_order_delivered_email.html:157 +#: engine/core/templates/shipped_order_created_email.html:127 +#: engine/core/templates/shipped_order_delivered_email.html:127 msgid "total price" msgstr "" -#: core/templates/digital_order_created_email.html:131 -#: core/templates/shipped_order_created_email.html:140 -#: core/templates/shipped_order_delivered_email.html:140 +#: engine/core/templates/digital_order_created_email.html:131 +#: engine/core/templates/shipped_order_created_email.html:140 +#: engine/core/templates/shipped_order_delivered_email.html:140 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" " %(config.EMAIL_HOST_USER)s." msgstr "" -#: core/templates/digital_order_created_email.html:133 +#: engine/core/templates/digital_order_created_email.html:133 #, python-format msgid "best regards,
the %(config.PROJECT_NAME)s team" msgstr "" -#: core/templates/digital_order_created_email.html:139 -#: core/templates/digital_order_delivered_email.html:171 -#: core/templates/promocode_granted_email.html:114 +#: engine/core/templates/digital_order_created_email.html:139 +#: engine/core/templates/digital_order_delivered_email.html:171 +#: engine/core/templates/promocode_granted_email.html:114 msgid "all rights reserved" msgstr "" -#: core/templates/digital_order_delivered_email.html:99 +#: engine/core/templates/digital_order_delivered_email.html:99 msgid "order delivered" msgstr "" -#: core/templates/digital_order_delivered_email.html:100 -#: core/templates/promocode_granted_email.html:100 +#: engine/core/templates/digital_order_delivered_email.html:100 +#: engine/core/templates/promocode_granted_email.html:100 #, python-format msgid "hello %(user_first_name)s," msgstr "" -#: core/templates/digital_order_delivered_email.html:101 +#: engine/core/templates/digital_order_delivered_email.html:101 #, python-format msgid "" "we have successfully processed your order №%(order_uuid)s! below are the\n" " details of your order:" msgstr "" -#: core/templates/digital_order_delivered_email.html:128 +#: engine/core/templates/digital_order_delivered_email.html:128 msgid "" "additional\n" " information" msgstr "" -#: core/templates/digital_order_delivered_email.html:137 -#: core/templates/json_table_widget.html:6 +#: engine/core/templates/digital_order_delivered_email.html:137 +#: engine/core/templates/json_table_widget.html:6 msgid "value" msgstr "" -#: core/templates/digital_order_delivered_email.html:163 -#: core/templates/promocode_granted_email.html:106 +#: engine/core/templates/digital_order_delivered_email.html:163 +#: engine/core/templates/promocode_granted_email.html:106 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" " %(contact_email)s." msgstr "" -#: core/templates/digital_order_delivered_email.html:165 -#: core/templates/promocode_granted_email.html:108 +#: engine/core/templates/digital_order_delivered_email.html:165 +#: engine/core/templates/promocode_granted_email.html:108 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "" -#: core/templates/json_table_widget.html:5 +#: engine/core/templates/json_table_widget.html:5 msgid "key" msgstr "" -#: core/templates/json_table_widget.html:40 +#: engine/core/templates/json_table_widget.html:40 msgid "Add Row" msgstr "" -#: core/templates/promocode_granted_email.html:6 -#: core/templates/promocode_granted_email.html:99 +#: engine/core/templates/promocode_granted_email.html:6 +#: engine/core/templates/promocode_granted_email.html:99 msgid "promocode granted" msgstr "" -#: core/templates/promocode_granted_email.html:101 +#: engine/core/templates/promocode_granted_email.html:101 msgid "" "Thank you for staying with us! We have granted you with a promocode\n" " for " msgstr "" -#: core/templates/shipped_order_created_email.html:101 -#: core/templates/shipped_order_delivered_email.html:101 +#: 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" " the details of your order:" msgstr "" -#: core/templates/shipped_order_created_email.html:123 -#: core/templates/shipped_order_delivered_email.html:123 +#: engine/core/templates/shipped_order_created_email.html:123 +#: engine/core/templates/shipped_order_delivered_email.html:123 msgid "shipping price" msgstr "" -#: core/templates/shipped_order_created_email.html:133 -#: core/templates/shipped_order_delivered_email.html:133 +#: engine/core/templates/shipped_order_created_email.html:133 +#: engine/core/templates/shipped_order_delivered_email.html:133 msgid "your order will be delivered to the following address:" msgstr "" -#: core/templates/shipped_order_created_email.html:142 -#: core/templates/shipped_order_delivered_email.html:142 +#: engine/core/templates/shipped_order_created_email.html:142 +#: engine/core/templates/shipped_order_delivered_email.html:142 #, python-format msgid "best regards,
The %(config.PROJECT_NAME)s team" msgstr "" -#: core/templates/shipped_order_created_email.html:147 -#: core/templates/shipped_order_delivered_email.html:147 +#: engine/core/templates/shipped_order_created_email.html:147 +#: engine/core/templates/shipped_order_delivered_email.html:147 msgid "" "all rights\n" " reserved" msgstr "" -#: core/utils/caching.py:44 +#: engine/core/utils/caching.py:44 msgid "both data and timeout are required" msgstr "" -#: core/utils/caching.py:46 +#: engine/core/utils/caching.py:46 msgid "invalid timeout value, it must be between 0 and 216000 seconds" msgstr "" -#: core/utils/emailing.py:27 +#: engine/core/utils/emailing.py:27 #, python-brace-format msgid "{config.PROJECT_NAME} | contact us initiated" msgstr "" -#: core/utils/emailing.py:73 +#: engine/core/utils/emailing.py:73 #, python-brace-format msgid "{config.PROJECT_NAME} | order confirmation" msgstr "" -#: core/utils/emailing.py:105 +#: engine/core/utils/emailing.py:105 #, python-brace-format msgid "{config.PROJECT_NAME} | order delivered" msgstr "" -#: core/utils/emailing.py:188 +#: engine/core/utils/emailing.py:188 #, python-brace-format msgid "{config.PROJECT_NAME} | promocode granted" msgstr "" -#: core/utils/messages.py:3 +#: engine/core/utils/messages.py:3 msgid "you do not have permission to perform this action." msgstr "" -#: core/utils/nominatim.py:8 +#: engine/core/utils/nominatim.py:8 msgid "NOMINATIM_URL must be configured." msgstr "" -#: core/validators.py:16 +#: engine/core/validators.py:16 #, python-brace-format msgid "image dimensions should not exceed w{max_width} x h{max_height} pixels" msgstr "" -#: core/views.py:72 +#: engine/core/views.py:71 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 "" -#: core/views.py:87 +#: engine/core/views.py:86 msgid "" "Handles the detailed view response for a sitemap. This function processes " "the request, fetches the appropriate sitemap detail response, and sets the " "Content-Type header for XML." msgstr "" -#: core/views.py:116 +#: engine/core/views.py:115 msgid "" "Returns a list of supported languages and their corresponding information." msgstr "" -#: core/views.py:148 +#: engine/core/views.py:147 msgid "Returns the parameters of the website as a JSON object." msgstr "" -#: core/views.py:167 +#: engine/core/views.py:166 msgid "" "Handles cache operations such as reading and setting cache data with a " "specified key and timeout." msgstr "" -#: core/views.py:194 +#: engine/core/views.py:193 msgid "Handles `contact us` form submissions." msgstr "" -#: core/views.py:215 +#: engine/core/views.py:214 msgid "" "Handles requests for processing and validating URLs from incoming POST " "requests." msgstr "" -#: core/views.py:255 +#: engine/core/views.py:254 msgid "Handles global search queries." msgstr "" -#: core/views.py:270 +#: engine/core/views.py:269 msgid "Handles the logic of buying as a business without registration." msgstr "" -#: core/views.py:306 +#: engine/core/views.py:305 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 " @@ -2718,27 +2750,27 @@ msgid "" "error is raised to indicate the resource is unavailable." msgstr "" -#: core/views.py:316 +#: engine/core/views.py:315 msgid "order_product_uuid is required" msgstr "" -#: core/views.py:322 +#: engine/core/views.py:321 msgid "you can only download the digital asset once" msgstr "" -#: core/views.py:325 +#: engine/core/views.py:324 msgid "the order must be paid before downloading the digital asset" msgstr "" -#: core/views.py:331 +#: engine/core/views.py:330 msgid "the order product does not have a product" msgstr "" -#: core/views.py:369 +#: engine/core/views.py:368 msgid "favicon not found" msgstr "" -#: core/views.py:374 +#: engine/core/views.py:373 msgid "" "Handles requests for the favicon of a website.\n" "This function attempts to serve the favicon file located in the static " @@ -2746,18 +2778,18 @@ msgid "" "error is raised to indicate the resource is unavailable." msgstr "" -#: core/views.py:386 +#: engine/core/views.py:385 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. " "It uses Django's `redirect` function for handling the HTTP redirection." msgstr "" -#: core/views.py:399 +#: engine/core/views.py:398 msgid "Returns current version of the eVibes. " msgstr "" -#: core/viewsets.py:137 +#: engine/core/viewsets.py:137 msgid "" "Defines a viewset for managing Evibes-related operations. The EvibesViewSet " "class inherits from ModelViewSet and provides functionality for handling " @@ -2766,7 +2798,7 @@ msgid "" "and rendering formats." msgstr "" -#: core/viewsets.py:157 +#: engine/core/viewsets.py:157 msgid "" "Represents a viewset for managing AttributeGroup objects. Handles operations " "related to AttributeGroup, including filtering, serialization, and retrieval " @@ -2774,7 +2806,7 @@ msgid "" "standardized way to process requests and responses for AttributeGroup data." msgstr "" -#: core/viewsets.py:176 +#: engine/core/viewsets.py:176 msgid "" "Handles operations related to Attribute objects within the application. " "Provides a set of API endpoints to interact with Attribute data. This class " @@ -2784,7 +2816,7 @@ msgid "" "depending on the request." msgstr "" -#: core/viewsets.py:195 +#: engine/core/viewsets.py:195 msgid "" "A viewset for managing AttributeValue objects. This viewset provides " "functionality for listing, retrieving, creating, updating, and deleting " @@ -2793,7 +2825,7 @@ msgid "" "capabilities are provided through the DjangoFilterBackend." msgstr "" -#: core/viewsets.py:214 +#: engine/core/viewsets.py:214 msgid "" "Manages views for Category-related operations. The CategoryViewSet class is " "responsible for handling operations related to the Category model in the " @@ -2802,7 +2834,7 @@ msgid "" "can access specific data." msgstr "" -#: core/viewsets.py:326 +#: engine/core/viewsets.py:326 msgid "" "Represents a viewset for managing Brand instances. This class provides " "functionality for querying, filtering, and serializing Brand objects. It " @@ -2810,7 +2842,7 @@ msgid "" "endpoints for Brand objects." msgstr "" -#: core/viewsets.py:438 +#: engine/core/viewsets.py:438 msgid "" "Manages operations related to the `Product` model in the system. This class " "provides a viewset for managing products, including their filtering, " @@ -2821,7 +2853,7 @@ msgid "" "product." msgstr "" -#: core/viewsets.py:568 +#: engine/core/viewsets.py:568 msgid "" "Represents a viewset for managing Vendor objects. This viewset allows " "fetching, filtering, and serializing Vendor data. It defines the queryset, " @@ -2830,7 +2862,7 @@ msgid "" "Vendor-related resources through the Django REST framework." msgstr "" -#: core/viewsets.py:588 +#: engine/core/viewsets.py:588 msgid "" "Representation of a view set handling Feedback objects. This class manages " "operations related to Feedback objects, including listing, filtering, and " @@ -2840,7 +2872,7 @@ msgid "" "use of Django's filtering system for querying data." msgstr "" -#: core/viewsets.py:615 +#: engine/core/viewsets.py:615 msgid "" "ViewSet for managing orders and related operations. This class provides " "functionality to retrieve, modify, and manage order objects. It includes " @@ -2851,7 +2883,7 @@ msgid "" "enforces permissions accordingly while interacting with order data." msgstr "" -#: core/viewsets.py:813 +#: engine/core/viewsets.py:813 msgid "" "Provides a viewset for managing OrderProduct entities. This viewset enables " "CRUD operations and custom actions specific to the OrderProduct model. It " @@ -2860,25 +2892,25 @@ msgid "" "feedback on OrderProduct instances" msgstr "" -#: core/viewsets.py:867 +#: engine/core/viewsets.py:867 msgid "Manages operations related to Product images in the application. " msgstr "" -#: core/viewsets.py:880 +#: engine/core/viewsets.py:880 msgid "" "Manages the retrieval and handling of PromoCode instances through various " "API actions." msgstr "" -#: core/viewsets.py:902 +#: engine/core/viewsets.py:902 msgid "Represents a view set for managing promotions. " msgstr "" -#: core/viewsets.py:915 +#: engine/core/viewsets.py:915 msgid "Handles operations related to Stock data in the system." msgstr "" -#: core/viewsets.py:929 +#: engine/core/viewsets.py:929 msgid "" "ViewSet for managing Wishlist operations. The WishlistViewSet provides " "endpoints for interacting with a user's wish list, allowing for the " @@ -2889,7 +2921,7 @@ msgid "" "are granted." msgstr "" -#: core/viewsets.py:1044 +#: engine/core/viewsets.py:1044 msgid "" "This class provides viewset functionality for managing `Address` objects. " "The AddressViewSet class enables CRUD operations, filtering, and custom " @@ -2898,12 +2930,12 @@ msgid "" "on the request context." msgstr "" -#: core/viewsets.py:1111 +#: engine/core/viewsets.py:1111 #, python-brace-format msgid "Geocoding error: {e}" msgstr "" -#: core/viewsets.py:1119 +#: engine/core/viewsets.py:1119 msgid "" "Handles operations related to Product Tags within the application. This " "class provides functionality for retrieving, filtering, and serializing " diff --git a/engine/core/locale/fr_FR/LC_MESSAGES/django.mo b/engine/core/locale/fr_FR/LC_MESSAGES/django.mo new file mode 100644 index 00000000..cbaeda47 Binary files /dev/null and b/engine/core/locale/fr_FR/LC_MESSAGES/django.mo differ diff --git a/core/locale/fr_FR/LC_MESSAGES/django.po b/engine/core/locale/fr_FR/LC_MESSAGES/django.po similarity index 68% rename from core/locale/fr_FR/LC_MESSAGES/django.po rename to engine/core/locale/fr_FR/LC_MESSAGES/django.po index 6193fce9..0ac454c4 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,213 +13,217 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: core/abstract.py:12 +#: engine/core/abstract.py:12 msgid "unique id" msgstr "Unique ID" -#: core/abstract.py:13 +#: engine/core/abstract.py:13 msgid "unique id is used to surely identify any database object" msgstr "" "L'identifiant unique est utilisé pour identifier de manière sûre tout objet " "de la base de données." -#: core/abstract.py:20 +#: engine/core/abstract.py:20 msgid "is active" msgstr "Est actif" -#: core/abstract.py:21 +#: engine/core/abstract.py:21 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." -#: core/abstract.py:23 core/choices.py:18 +#: engine/core/abstract.py:23 engine/core/choices.py:18 msgid "created" msgstr "Créée" -#: core/abstract.py:23 +#: engine/core/abstract.py:23 msgid "when the object first appeared on the database" msgstr "Date de la première apparition de l'objet dans la base de données" -#: core/abstract.py:24 +#: engine/core/abstract.py:24 msgid "modified" msgstr "Modifié" -#: core/abstract.py:24 +#: engine/core/abstract.py:24 msgid "when the object was last modified" msgstr "Date de la dernière modification de l'objet" -#: core/admin.py:68 +#: engine/core/admin.py:68 msgid "translations" msgstr "Traductions" -#: core/admin.py:72 +#: engine/core/admin.py:72 msgid "general" msgstr "Général" -#: core/admin.py:74 +#: engine/core/admin.py:74 msgid "relations" msgstr "Relations" -#: core/admin.py:76 +#: engine/core/admin.py:76 msgid "additional info" msgstr "Informations complémentaires" -#: core/admin.py:94 +#: engine/core/admin.py:94 msgid "metadata" msgstr "Métadonnées" -#: core/admin.py:101 +#: engine/core/admin.py:101 msgid "timestamps" msgstr "Horodatage" -#: core/admin.py:116 +#: engine/core/admin.py:116 #, python-format msgid "activate selected %(verbose_name_plural)s" msgstr "Activer la %(verbose_name_plural)s sélectionnée" -#: core/admin.py:121 +#: engine/core/admin.py:121 msgid "selected items have been activated." msgstr "Les articles sélectionnés ont été activés !" -#: core/admin.py:127 +#: engine/core/admin.py:127 #, python-format msgid "deactivate selected %(verbose_name_plural)s" msgstr "Désactiver la %(verbose_name_plural)s sélectionnée" -#: core/admin.py:132 +#: engine/core/admin.py:132 msgid "selected items have been deactivated." msgstr "Les articles sélectionnés ont été désactivés !" -#: core/admin.py:144 core/graphene/object_types.py:582 -#: core/graphene/object_types.py:589 core/models.py:783 core/models.py:791 +#: engine/core/admin.py:144 engine/core/graphene/object_types.py:586 +#: engine/core/graphene/object_types.py:593 engine/core/models.py:794 +#: engine/core/models.py:802 msgid "attribute value" msgstr "Valeur de l'attribut" -#: core/admin.py:145 core/graphene/object_types.py:75 core/models.py:792 +#: engine/core/admin.py:145 engine/core/graphene/object_types.py:75 +#: engine/core/models.py:803 msgid "attribute values" msgstr "Valeurs des attributs" -#: core/admin.py:156 +#: engine/core/admin.py:156 msgid "image" msgstr "Image" -#: core/admin.py:157 core/graphene/object_types.py:474 +#: engine/core/admin.py:157 engine/core/graphene/object_types.py:474 msgid "images" msgstr "Images" -#: core/admin.py:168 core/models.py:559 +#: engine/core/admin.py:169 engine/core/models.py:559 msgid "stock" msgstr "Stock" -#: core/admin.py:169 core/graphene/object_types.py:636 +#: engine/core/admin.py:170 engine/core/graphene/object_types.py:640 msgid "stocks" msgstr "Stocks" -#: core/admin.py:182 core/models.py:1744 +#: engine/core/admin.py:183 engine/core/models.py:1804 msgid "order product" msgstr "Commander un produit" -#: core/admin.py:183 core/graphene/object_types.py:389 core/models.py:1745 +#: engine/core/admin.py:184 engine/core/graphene/object_types.py:389 +#: engine/core/models.py:1805 msgid "order products" msgstr "Commander des produits" -#: core/admin.py:196 core/admin.py:197 +#: engine/core/admin.py:197 engine/core/admin.py:198 msgid "children" msgstr "Les enfants" -#: core/admin.py:965 +#: engine/core/admin.py:969 msgid "Config" msgstr "Config" -#: core/apps.py:8 +#: engine/core/apps.py:8 msgid "core" msgstr "Cœur de métier" -#: core/choices.py:4 core/choices.py:20 +#: engine/core/choices.py:4 engine/core/choices.py:20 msgid "finished" msgstr "Fini" -#: core/choices.py:5 core/choices.py:19 +#: engine/core/choices.py:5 engine/core/choices.py:19 msgid "delivering" msgstr "Délivrer" -#: core/choices.py:6 +#: engine/core/choices.py:6 msgid "delivered" msgstr "Livré" -#: core/choices.py:7 +#: engine/core/choices.py:7 msgid "canceled" msgstr "Annulé" -#: core/choices.py:8 core/choices.py:16 core/choices.py:24 +#: engine/core/choices.py:8 engine/core/choices.py:16 engine/core/choices.py:24 msgid "failed" msgstr "Échec" -#: core/choices.py:9 core/choices.py:15 +#: engine/core/choices.py:9 engine/core/choices.py:15 msgid "pending" msgstr "En attente" -#: core/choices.py:10 +#: engine/core/choices.py:10 msgid "accepted" msgstr "Accepté" -#: core/choices.py:11 +#: engine/core/choices.py:11 msgid "money returned" msgstr "Argent restitué" -#: core/choices.py:17 +#: engine/core/choices.py:17 msgid "payment" msgstr "Paiement" -#: core/choices.py:21 +#: engine/core/choices.py:21 msgid "momental" msgstr "Momental" -#: core/choices.py:24 +#: engine/core/choices.py:24 msgid "successful" msgstr "Réussite" -#: core/docs/drf/views.py:17 core/graphene/mutations.py:38 +#: engine/core/docs/drf/views.py:17 engine/core/graphene/mutations.py:38 msgid "cache I/O" msgstr "Cache I/O" -#: core/docs/drf/views.py:19 +#: engine/core/docs/drf/views.py:19 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." -#: core/docs/drf/views.py:32 +#: engine/core/docs/drf/views.py:32 msgid "get a list of supported languages" msgstr "Obtenir la liste des langues prises en charge" -#: core/docs/drf/views.py:41 +#: engine/core/docs/drf/views.py:41 msgid "get application's exposable parameters" msgstr "Obtenir les paramètres exposables de l'application" -#: core/docs/drf/views.py:48 +#: engine/core/docs/drf/views.py:48 msgid "send a message to the support team" msgstr "Envoyer un message à l'équipe d'assistance" -#: core/docs/drf/views.py:59 core/graphene/mutations.py:58 +#: engine/core/docs/drf/views.py:59 engine/core/graphene/mutations.py:58 msgid "request a CORSed URL" msgstr "Demander une URL CORSée. Seul https est autorisé." -#: core/docs/drf/views.py:85 +#: engine/core/docs/drf/views.py:85 msgid "global search endpoint to query across project's tables" msgstr "" "Point d'arrivée de la recherche globale pour interroger les tables du projet" -#: core/docs/drf/views.py:91 +#: engine/core/docs/drf/views.py:91 msgid "purchase an order as a business" msgstr "Acheter une commande en tant qu'entreprise" -#: core/docs/drf/views.py:98 +#: engine/core/docs/drf/views.py:98 msgid "" "purchase an order as a business, using the provided `products` with " "`product_uuid` and `attributes`." @@ -227,244 +231,247 @@ msgstr "" "Acheter une commande en tant qu'entreprise, en utilisant les `produits` " "fournis avec `product_uuid` et `attributs`." -#: core/docs/drf/viewsets.py:58 +#: engine/core/docs/drf/viewsets.py:58 msgid "list all attribute groups (simple view)" msgstr "Liste de tous les groupes d'attributs (vue simple)" -#: core/docs/drf/viewsets.py:62 +#: engine/core/docs/drf/viewsets.py:62 msgid "retrieve a single attribute group (detailed view)" msgstr "Récupérer un seul groupe d'attributs (vue détaillée)" -#: core/docs/drf/viewsets.py:66 +#: engine/core/docs/drf/viewsets.py:66 msgid "create an attribute group" msgstr "Créer un groupe d'attributs" -#: core/docs/drf/viewsets.py:70 +#: engine/core/docs/drf/viewsets.py:70 msgid "delete an attribute group" msgstr "Supprimer un groupe d'attributs" -#: core/docs/drf/viewsets.py:74 +#: engine/core/docs/drf/viewsets.py:74 msgid "rewrite an existing attribute group saving non-editables" msgstr "" "Réécrire un groupe d'attributs existant en sauvegardant les éléments non " "modifiables" -#: core/docs/drf/viewsets.py:78 -msgid "" -"rewrite some fields of an existing attribute group saving non-editables" +#: engine/core/docs/drf/viewsets.py:78 +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" -#: core/docs/drf/viewsets.py:85 +#: engine/core/docs/drf/viewsets.py:85 msgid "list all attributes (simple view)" msgstr "Liste de tous les attributs (vue simple)" -#: core/docs/drf/viewsets.py:89 +#: engine/core/docs/drf/viewsets.py:89 msgid "retrieve a single attribute (detailed view)" msgstr "Récupérer un seul attribut (vue détaillée)" -#: core/docs/drf/viewsets.py:93 +#: engine/core/docs/drf/viewsets.py:93 msgid "create an attribute" msgstr "Créer un attribut" -#: core/docs/drf/viewsets.py:97 +#: engine/core/docs/drf/viewsets.py:97 msgid "delete an attribute" msgstr "Supprimer un attribut" -#: core/docs/drf/viewsets.py:101 +#: engine/core/docs/drf/viewsets.py:101 msgid "rewrite an existing attribute saving non-editables" msgstr "" "Réécrire un attribut existant en sauvegardant les éléments non modifiables" -#: core/docs/drf/viewsets.py:105 +#: engine/core/docs/drf/viewsets.py:105 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" -#: core/docs/drf/viewsets.py:112 +#: engine/core/docs/drf/viewsets.py:112 msgid "list all attribute values (simple view)" msgstr "Liste de toutes les valeurs d'attributs (vue simple)" -#: core/docs/drf/viewsets.py:116 +#: engine/core/docs/drf/viewsets.py:116 msgid "retrieve a single attribute value (detailed view)" msgstr "Récupérer une seule valeur d'attribut (vue détaillée)" -#: core/docs/drf/viewsets.py:120 +#: engine/core/docs/drf/viewsets.py:120 msgid "create an attribute value" msgstr "Créer une valeur d'attribut" -#: core/docs/drf/viewsets.py:124 +#: engine/core/docs/drf/viewsets.py:124 msgid "delete an attribute value" msgstr "Supprimer une valeur d'attribut" -#: core/docs/drf/viewsets.py:128 +#: engine/core/docs/drf/viewsets.py:128 msgid "rewrite an existing attribute value saving non-editables" msgstr "" "Réécrire une valeur d'attribut existante en sauvegardant les éléments non " "modifiables" -#: core/docs/drf/viewsets.py:132 -msgid "" -"rewrite some fields of an existing attribute value saving non-editables" +#: engine/core/docs/drf/viewsets.py:132 +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" -#: core/docs/drf/viewsets.py:139 core/docs/drf/viewsets.py:140 +#: engine/core/docs/drf/viewsets.py:139 engine/core/docs/drf/viewsets.py:140 msgid "list all categories (simple view)" msgstr "Liste de toutes les catégories (vue simple)" -#: core/docs/drf/viewsets.py:144 core/docs/drf/viewsets.py:145 +#: engine/core/docs/drf/viewsets.py:144 engine/core/docs/drf/viewsets.py:145 msgid "retrieve a single category (detailed view)" msgstr "Récupérer une seule catégorie (vue détaillée)" -#: core/docs/drf/viewsets.py:149 core/docs/drf/viewsets.py:150 +#: engine/core/docs/drf/viewsets.py:150 engine/core/docs/drf/viewsets.py:183 +msgid "Category UUID or slug" +msgstr "Catégorie UUID ou slug" + +#: engine/core/docs/drf/viewsets.py:157 engine/core/docs/drf/viewsets.py:158 msgid "create a category" msgstr "Créer une catégorie" -#: core/docs/drf/viewsets.py:154 core/docs/drf/viewsets.py:155 +#: engine/core/docs/drf/viewsets.py:162 engine/core/docs/drf/viewsets.py:163 msgid "delete a category" msgstr "Supprimer une catégorie" -#: core/docs/drf/viewsets.py:159 core/docs/drf/viewsets.py:160 +#: engine/core/docs/drf/viewsets.py:167 engine/core/docs/drf/viewsets.py:168 msgid "rewrite an existing category saving non-editables" msgstr "Réécrire une catégorie existante en sauvegardant les non-éditables" -#: core/docs/drf/viewsets.py:164 core/docs/drf/viewsets.py:165 +#: engine/core/docs/drf/viewsets.py:172 engine/core/docs/drf/viewsets.py:173 msgid "rewrite some fields of an existing category saving non-editables" msgstr "" "Réécrire certains champs d'une catégorie existante en sauvegardant les non-" "éditables" -#: core/docs/drf/viewsets.py:169 core/docs/drf/viewsets.py:501 -#: core/graphene/object_types.py:117 core/graphene/object_types.py:207 -#: core/graphene/object_types.py:482 +#: engine/core/docs/drf/viewsets.py:177 engine/core/docs/drf/viewsets.py:517 +#: engine/core/graphene/object_types.py:117 +#: engine/core/graphene/object_types.py:207 +#: engine/core/graphene/object_types.py:482 msgid "SEO Meta snapshot" msgstr "Méta snapshot SEO" -#: core/docs/drf/viewsets.py:170 +#: engine/core/docs/drf/viewsets.py:178 msgid "returns a snapshot of the category's SEO meta data" msgstr "Renvoie un instantané des métadonnées SEO de la catégorie." -#: core/docs/drf/viewsets.py:175 -msgid "Category UUID or slug" -msgstr "Catégorie UUID ou slug" - -#: core/docs/drf/viewsets.py:188 +#: engine/core/docs/drf/viewsets.py:196 msgid "list all orders (simple view)" msgstr "Liste de toutes les catégories (vue simple)" -#: core/docs/drf/viewsets.py:189 +#: engine/core/docs/drf/viewsets.py:197 msgid "for non-staff users, only their own orders are returned." msgstr "" "Pour les utilisateurs non fonctionnaires, seules leurs propres commandes " "sont renvoyées." -#: core/docs/drf/viewsets.py:195 +#: engine/core/docs/drf/viewsets.py:203 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" -#: core/docs/drf/viewsets.py:202 +#: engine/core/docs/drf/viewsets.py:210 msgid "Filter orders with buy_time >= this ISO 8601 datetime" msgstr "Filtrer les commandes dont l'heure d'achat est >= cette date ISO 8601" -#: core/docs/drf/viewsets.py:207 +#: engine/core/docs/drf/viewsets.py:215 msgid "Filter orders with buy_time <= this ISO 8601 datetime" msgstr "Filtrer les commandes avec buy_time <= this ISO 8601 datetime" -#: core/docs/drf/viewsets.py:212 +#: engine/core/docs/drf/viewsets.py:220 msgid "Filter by exact order UUID" msgstr "Filtre sur l'UUID exact de l'ordre" -#: core/docs/drf/viewsets.py:217 +#: engine/core/docs/drf/viewsets.py:225 msgid "Filter by exact human-readable order ID" msgstr "Filtre sur l'identifiant exact de la commande, lisible par l'homme" -#: core/docs/drf/viewsets.py:222 +#: engine/core/docs/drf/viewsets.py:230 msgid "Filter by user's email (case-insensitive exact match)" msgstr "" "Filtre sur l'adresse électronique de l'utilisateur (correspondance exacte " "insensible à la casse)" -#: core/docs/drf/viewsets.py:227 +#: engine/core/docs/drf/viewsets.py:235 msgid "Filter by user's UUID" msgstr "Filtrer par UUID de l'utilisateur" -#: core/docs/drf/viewsets.py:232 +#: engine/core/docs/drf/viewsets.py:240 msgid "Filter by order status (case-insensitive substring match)" msgstr "" "Filtre sur l'état de la commande (correspondance insensible aux majuscules " "et aux minuscules)" -#: core/docs/drf/viewsets.py:238 +#: engine/core/docs/drf/viewsets.py:246 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')." -#: core/docs/drf/viewsets.py:247 +#: engine/core/docs/drf/viewsets.py:255 msgid "retrieve a single order (detailed view)" msgstr "Récupérer une seule catégorie (vue détaillée)" -#: core/docs/drf/viewsets.py:251 +#: engine/core/docs/drf/viewsets.py:260 +msgid "Order UUID or human-readable id" +msgstr "UUID de la commande ou identifiant lisible par l'homme" + +#: engine/core/docs/drf/viewsets.py:267 msgid "create an order" msgstr "Créer un attribut" -#: core/docs/drf/viewsets.py:252 +#: engine/core/docs/drf/viewsets.py:268 msgid "doesn't work for non-staff users." msgstr "Ne fonctionne pas pour les utilisateurs non fonctionnaires." -#: core/docs/drf/viewsets.py:256 +#: engine/core/docs/drf/viewsets.py:272 msgid "delete an order" msgstr "Supprimer un attribut" -#: core/docs/drf/viewsets.py:260 +#: engine/core/docs/drf/viewsets.py:276 msgid "rewrite an existing order saving non-editables" msgstr "Réécrire une catégorie existante en sauvegardant les non-éditables" -#: core/docs/drf/viewsets.py:264 +#: engine/core/docs/drf/viewsets.py:280 msgid "rewrite some fields of an existing order saving non-editables" msgstr "" "Réécrire certains champs d'une catégorie existante en sauvegardant les non-" "éditables" -#: core/docs/drf/viewsets.py:268 +#: engine/core/docs/drf/viewsets.py:284 msgid "purchase an order" msgstr "Prix d'achat au moment de la commande" -#: core/docs/drf/viewsets.py:270 +#: engine/core/docs/drf/viewsets.py:286 msgid "" "finalizes the order purchase. if `force_balance` is used, the purchase is " "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." -#: core/docs/drf/viewsets.py:282 core/graphene/mutations.py:335 +#: engine/core/docs/drf/viewsets.py:298 engine/core/graphene/mutations.py:335 msgid "purchase an order without account creation" msgstr "acheter une commande sans créer de compte" -#: core/docs/drf/viewsets.py:283 +#: engine/core/docs/drf/viewsets.py:299 msgid "finalizes the order purchase for a non-registered user." msgstr "finalise l'achat d'une commande pour un utilisateur non enregistré." -#: core/docs/drf/viewsets.py:291 +#: engine/core/docs/drf/viewsets.py:307 msgid "add product to order" msgstr "Ajouter un produit à la commande" -#: core/docs/drf/viewsets.py:292 +#: engine/core/docs/drf/viewsets.py:308 msgid "" "adds a product to an order using the provided `product_uuid` and " "`attributes`." @@ -472,13 +479,13 @@ msgstr "" "Ajoute un produit à une commande en utilisant le `product_uuid` et les " "`attributs` fournis." -#: core/docs/drf/viewsets.py:297 +#: engine/core/docs/drf/viewsets.py:313 msgid "add a list of products to order, quantities will not count" msgstr "" "Ajouter une liste de produits à la commande, les quantités ne seront pas " "prises en compte" -#: core/docs/drf/viewsets.py:298 +#: engine/core/docs/drf/viewsets.py:314 msgid "" "adds a list of products to an order using the provided `product_uuid` and " "`attributes`." @@ -486,11 +493,11 @@ msgstr "" "Ajoute une liste de produits à une commande en utilisant le `product_uuid` " "et les `attributs` fournis." -#: core/docs/drf/viewsets.py:303 +#: engine/core/docs/drf/viewsets.py:319 msgid "remove product from order" msgstr "Supprimer un produit de la commande" -#: core/docs/drf/viewsets.py:304 +#: engine/core/docs/drf/viewsets.py:320 msgid "" "removes a product from an order using the provided `product_uuid` and " "`attributes`." @@ -498,1035 +505,1068 @@ msgstr "" "Supprime un produit d'une commande en utilisant le `product_uuid` et les " "`attributs` fournis." -#: core/docs/drf/viewsets.py:309 +#: engine/core/docs/drf/viewsets.py:325 msgid "remove product from order, quantities will not count" msgstr "" "Retirer un produit de la commande, les quantités ne seront pas prises en " "compte" -#: core/docs/drf/viewsets.py:310 +#: engine/core/docs/drf/viewsets.py:326 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." -#: core/docs/drf/viewsets.py:318 +#: engine/core/docs/drf/viewsets.py:334 msgid "list all wishlists (simple view)" msgstr "Liste de tous les attributs (vue simple)" -#: core/docs/drf/viewsets.py:319 +#: engine/core/docs/drf/viewsets.py:335 msgid "for non-staff users, only their own wishlists are returned." msgstr "" "Pour les utilisateurs non fonctionnaires, seules leurs propres listes de " "souhaits sont renvoyées." -#: core/docs/drf/viewsets.py:323 +#: engine/core/docs/drf/viewsets.py:339 msgid "retrieve a single wishlist (detailed view)" msgstr "Récupérer un seul attribut (vue détaillée)" -#: core/docs/drf/viewsets.py:327 +#: engine/core/docs/drf/viewsets.py:343 msgid "create an wishlist" msgstr "Créer un attribut" -#: core/docs/drf/viewsets.py:328 +#: engine/core/docs/drf/viewsets.py:344 msgid "Doesn't work for non-staff users." msgstr "Ne fonctionne pas pour les utilisateurs non fonctionnaires." -#: core/docs/drf/viewsets.py:332 +#: engine/core/docs/drf/viewsets.py:348 msgid "delete an wishlist" msgstr "Supprimer un attribut" -#: core/docs/drf/viewsets.py:336 +#: engine/core/docs/drf/viewsets.py:352 msgid "rewrite an existing wishlist saving non-editables" msgstr "" "Réécrire un attribut existant en sauvegardant les éléments non modifiables" -#: core/docs/drf/viewsets.py:340 +#: engine/core/docs/drf/viewsets.py:356 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" -#: core/docs/drf/viewsets.py:344 +#: engine/core/docs/drf/viewsets.py:360 msgid "add product to wishlist" msgstr "Ajouter un produit à la commande" -#: core/docs/drf/viewsets.py:345 +#: engine/core/docs/drf/viewsets.py:361 msgid "adds a product to an wishlist using the provided `product_uuid`" msgstr "" "Ajoute un produit à une liste de souhaits en utilisant le `product_uuid` " "fourni" -#: core/docs/drf/viewsets.py:350 +#: engine/core/docs/drf/viewsets.py:366 msgid "remove product from wishlist" msgstr "Supprimer un produit de la liste de souhaits" -#: core/docs/drf/viewsets.py:351 +#: engine/core/docs/drf/viewsets.py:367 msgid "removes a product from an wishlist using the provided `product_uuid`" msgstr "" "Supprime un produit d'une liste de souhaits en utilisant l'identifiant " "`product_uuid` fourni." -#: core/docs/drf/viewsets.py:356 +#: engine/core/docs/drf/viewsets.py:372 msgid "add many products to wishlist" msgstr "Ajouter plusieurs produits à la liste de souhaits" -#: core/docs/drf/viewsets.py:357 +#: engine/core/docs/drf/viewsets.py:373 msgid "adds many products to an wishlist using the provided `product_uuids`" msgstr "" "Ajoute plusieurs produits à une liste de souhaits en utilisant les " "`product_uuids` fournis" -#: core/docs/drf/viewsets.py:362 +#: engine/core/docs/drf/viewsets.py:378 msgid "remove many products from wishlist" msgstr "Supprimer un produit de la commande" -#: core/docs/drf/viewsets.py:363 +#: engine/core/docs/drf/viewsets.py:379 msgid "" "removes many products from an wishlist using the provided `product_uuids`" msgstr "" "Supprime plusieurs produits d'une liste de souhaits en utilisant les " "`product_uuids` fournis" -#: core/docs/drf/viewsets.py:370 +#: engine/core/docs/drf/viewsets.py:386 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`" -#: core/docs/drf/viewsets.py:386 core/docs/drf/viewsets.py:387 +#: engine/core/docs/drf/viewsets.py:402 engine/core/docs/drf/viewsets.py:403 msgid "list all products (simple view)" msgstr "Liste de tous les produits (vue simple)" -#: core/docs/drf/viewsets.py:392 +#: engine/core/docs/drf/viewsets.py:408 msgid "(exact) Product UUID" msgstr "UUID (exact) du produit" -#: core/docs/drf/viewsets.py:399 +#: engine/core/docs/drf/viewsets.py:415 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" -#: core/docs/drf/viewsets.py:413 core/docs/drf/viewsets.py:414 +#: engine/core/docs/drf/viewsets.py:429 engine/core/docs/drf/viewsets.py:430 msgid "retrieve a single product (detailed view)" msgstr "Récupérer un seul produit (vue détaillée)" -#: core/docs/drf/viewsets.py:419 core/docs/drf/viewsets.py:443 -#: core/docs/drf/viewsets.py:459 core/docs/drf/viewsets.py:475 -#: core/docs/drf/viewsets.py:491 core/docs/drf/viewsets.py:507 +#: engine/core/docs/drf/viewsets.py:435 engine/core/docs/drf/viewsets.py:459 +#: engine/core/docs/drf/viewsets.py:475 engine/core/docs/drf/viewsets.py:491 +#: engine/core/docs/drf/viewsets.py:507 engine/core/docs/drf/viewsets.py:523 msgid "Product UUID or slug" msgstr "UUID ou Slug du produit" -#: core/docs/drf/viewsets.py:429 core/docs/drf/viewsets.py:430 +#: engine/core/docs/drf/viewsets.py:445 engine/core/docs/drf/viewsets.py:446 msgid "create a product" msgstr "Créer un produit" -#: core/docs/drf/viewsets.py:437 core/docs/drf/viewsets.py:438 +#: engine/core/docs/drf/viewsets.py:453 engine/core/docs/drf/viewsets.py:454 msgid "rewrite an existing product, preserving non-editable fields" msgstr "Réécrire un produit existant en préservant les champs non modifiables" -#: core/docs/drf/viewsets.py:453 core/docs/drf/viewsets.py:454 +#: engine/core/docs/drf/viewsets.py:469 engine/core/docs/drf/viewsets.py:470 msgid "" "update some fields of an existing product, preserving non-editable fields" msgstr "" "Mettre à jour certains champs d'un produit existant, en préservant les " "champs non modifiables" -#: core/docs/drf/viewsets.py:469 core/docs/drf/viewsets.py:470 +#: engine/core/docs/drf/viewsets.py:485 engine/core/docs/drf/viewsets.py:486 msgid "delete a product" msgstr "Supprimer un produit" -#: core/docs/drf/viewsets.py:485 core/docs/drf/viewsets.py:486 +#: engine/core/docs/drf/viewsets.py:501 engine/core/docs/drf/viewsets.py:502 msgid "lists all permitted feedbacks for a product" msgstr "liste tous les commentaires autorisés pour un produit" -#: core/docs/drf/viewsets.py:502 +#: engine/core/docs/drf/viewsets.py:518 msgid "returns a snapshot of the product's SEO meta data" msgstr "Renvoie un instantané des métadonnées SEO du produit" -#: core/docs/drf/viewsets.py:520 +#: engine/core/docs/drf/viewsets.py:536 msgid "list all addresses" msgstr "Liste de toutes les adresses" -#: core/docs/drf/viewsets.py:527 +#: engine/core/docs/drf/viewsets.py:543 msgid "retrieve a single address" msgstr "Récupérer une seule adresse" -#: core/docs/drf/viewsets.py:534 +#: engine/core/docs/drf/viewsets.py:550 msgid "create a new address" msgstr "Créer une nouvelle adresse" -#: core/docs/drf/viewsets.py:542 +#: engine/core/docs/drf/viewsets.py:558 msgid "delete an address" msgstr "Supprimer une adresse" -#: core/docs/drf/viewsets.py:549 +#: engine/core/docs/drf/viewsets.py:565 msgid "update an entire address" msgstr "Mise à jour d'une adresse entière" -#: core/docs/drf/viewsets.py:557 +#: engine/core/docs/drf/viewsets.py:573 msgid "partially update an address" msgstr "Mise à jour partielle d'une adresse" -#: core/docs/drf/viewsets.py:565 +#: engine/core/docs/drf/viewsets.py:581 msgid "autocomplete address suggestions" msgstr "Saisie automatique des adresses" -#: core/docs/drf/viewsets.py:570 +#: engine/core/docs/drf/viewsets.py:586 msgid "raw data query string, please append with data from geo-IP endpoint" msgstr "" "Chaîne de requête de données brutes, à compléter avec les données du point " "d'extrémité géo-IP" -#: core/docs/drf/viewsets.py:576 +#: engine/core/docs/drf/viewsets.py:592 msgid "limit the results amount, 1 < limit < 10, default: 5" msgstr "limite la quantité de résultats, 1 < limite < 10, par défaut : 5" -#: core/docs/drf/viewsets.py:589 +#: engine/core/docs/drf/viewsets.py:605 msgid "list all feedbacks (simple view)" msgstr "liste de tous les commentaires (vue simple)" -#: core/docs/drf/viewsets.py:593 +#: engine/core/docs/drf/viewsets.py:609 msgid "retrieve a single feedback (detailed view)" msgstr "récupérer un seul retour d'information (vue détaillée)" -#: core/docs/drf/viewsets.py:597 +#: engine/core/docs/drf/viewsets.py:613 msgid "create a feedback" msgstr "créer un retour d'information" -#: core/docs/drf/viewsets.py:601 +#: engine/core/docs/drf/viewsets.py:617 msgid "delete a feedback" msgstr "supprimer un feedback" -#: core/docs/drf/viewsets.py:605 +#: engine/core/docs/drf/viewsets.py:621 msgid "rewrite an existing feedback saving non-editables" msgstr "" "réécrire un feedback existant en sauvegardant les éléments non modifiables" -#: core/docs/drf/viewsets.py:609 +#: engine/core/docs/drf/viewsets.py:625 msgid "rewrite some fields of an existing feedback saving non-editables" msgstr "" "Réécrire certains champs d'une catégorie existante en sauvegardant les non-" "éditables" -#: core/docs/drf/viewsets.py:616 +#: engine/core/docs/drf/viewsets.py:632 msgid "list all order–product relations (simple view)" msgstr "lister toutes les relations commande-produit (vue simple)" -#: core/docs/drf/viewsets.py:623 +#: engine/core/docs/drf/viewsets.py:639 msgid "retrieve a single order–product relation (detailed view)" msgstr "récupérer une seule relation commande-produit (vue détaillée)" -#: core/docs/drf/viewsets.py:630 +#: engine/core/docs/drf/viewsets.py:646 msgid "create a new order–product relation" msgstr "créer une nouvelle relation commande-produit" -#: core/docs/drf/viewsets.py:637 +#: engine/core/docs/drf/viewsets.py:653 msgid "replace an existing order–product relation" msgstr "remplacer une relation commande-produit existante" -#: core/docs/drf/viewsets.py:644 +#: engine/core/docs/drf/viewsets.py:660 msgid "partially update an existing order–product relation" msgstr "mettre à jour partiellement une relation commande-produit existante" -#: core/docs/drf/viewsets.py:651 +#: engine/core/docs/drf/viewsets.py:667 msgid "delete an order–product relation" msgstr "supprimer une relation commande-produit" -#: core/docs/drf/viewsets.py:658 +#: engine/core/docs/drf/viewsets.py:674 msgid "add or remove feedback on an order–product relation" msgstr "" "ajouter ou supprimer un retour d'information sur une relation commande-" "produit" -#: core/docs/drf/viewsets.py:672 +#: engine/core/docs/drf/viewsets.py:688 msgid "list all brands (simple view)" msgstr "Liste de toutes les marques (vue simple)" -#: core/docs/drf/viewsets.py:676 +#: engine/core/docs/drf/viewsets.py:692 msgid "retrieve a single brand (detailed view)" msgstr "Récupérer une seule marque (vue détaillée)" -#: core/docs/drf/viewsets.py:680 +#: engine/core/docs/drf/viewsets.py:697 engine/core/docs/drf/viewsets.py:725 +msgid "Brand UUID or slug" +msgstr "UUID ou slug de la marque" + +#: engine/core/docs/drf/viewsets.py:704 msgid "create a brand" msgstr "Créer une marque" -#: core/docs/drf/viewsets.py:684 +#: engine/core/docs/drf/viewsets.py:708 msgid "delete a brand" msgstr "Supprimer une marque" -#: core/docs/drf/viewsets.py:688 +#: engine/core/docs/drf/viewsets.py:712 msgid "rewrite an existing brand saving non-editables" msgstr "Réécrire une marque existante en sauvegardant les non-éditables" -#: core/docs/drf/viewsets.py:692 +#: engine/core/docs/drf/viewsets.py:716 msgid "rewrite some fields of an existing brand saving non-editables" msgstr "" "Réécrire certains champs d'une catégorie existante en sauvegardant les non-" "éditables" -#: core/docs/drf/viewsets.py:696 +#: engine/core/docs/drf/viewsets.py:720 msgid "SEO Meta snapshot for brand" msgstr "Meta snapshot SEO pour la marque" -#: core/docs/drf/viewsets.py:703 +#: engine/core/docs/drf/viewsets.py:735 msgid "list all vendors (simple view)" msgstr "Liste de tous les fournisseurs (vue simple)" -#: core/docs/drf/viewsets.py:707 +#: engine/core/docs/drf/viewsets.py:739 msgid "retrieve a single vendor (detailed view)" msgstr "Récupérer un seul fournisseur (vue détaillée)" -#: core/docs/drf/viewsets.py:711 +#: engine/core/docs/drf/viewsets.py:743 msgid "create a vendor" msgstr "Créer un fournisseur" -#: core/docs/drf/viewsets.py:715 +#: engine/core/docs/drf/viewsets.py:747 msgid "delete a vendor" msgstr "Supprimer un fournisseur" -#: core/docs/drf/viewsets.py:719 +#: engine/core/docs/drf/viewsets.py:751 msgid "rewrite an existing vendor saving non-editables" msgstr "" "Réécrire un vendeur existant en sauvegardant les éléments non modifiables" -#: core/docs/drf/viewsets.py:723 +#: engine/core/docs/drf/viewsets.py:755 msgid "rewrite some fields of an existing vendor saving non-editables" msgstr "" "Réécrire certains champs d'une catégorie existante en sauvegardant les non-" "éditables" -#: core/docs/drf/viewsets.py:730 +#: engine/core/docs/drf/viewsets.py:762 msgid "list all product images (simple view)" msgstr "Liste de toutes les images de produits (vue simple)" -#: core/docs/drf/viewsets.py:734 +#: engine/core/docs/drf/viewsets.py:766 msgid "retrieve a single product image (detailed view)" msgstr "Récupérer l'image d'un seul produit (vue détaillée)" -#: core/docs/drf/viewsets.py:738 +#: engine/core/docs/drf/viewsets.py:770 msgid "create a product image" msgstr "Créer une image du produit" -#: core/docs/drf/viewsets.py:742 +#: engine/core/docs/drf/viewsets.py:774 msgid "delete a product image" msgstr "Supprimer une image de produit" -#: core/docs/drf/viewsets.py:746 +#: engine/core/docs/drf/viewsets.py:778 msgid "rewrite an existing product image saving non-editables" msgstr "" "Réécrire l'image d'un produit existant en sauvegardant les éléments non " "modifiables" -#: core/docs/drf/viewsets.py:750 +#: engine/core/docs/drf/viewsets.py:782 msgid "rewrite some fields of an existing product image saving non-editables" msgstr "" "Réécrire certains champs d'une catégorie existante en sauvegardant les non-" "éditables" -#: core/docs/drf/viewsets.py:757 +#: engine/core/docs/drf/viewsets.py:789 msgid "list all promo codes (simple view)" msgstr "Liste de tous les codes promo (vue simple)" -#: core/docs/drf/viewsets.py:761 +#: engine/core/docs/drf/viewsets.py:793 msgid "retrieve a single promo code (detailed view)" msgstr "Récupérer un seul code promo (vue détaillée)" -#: core/docs/drf/viewsets.py:765 +#: engine/core/docs/drf/viewsets.py:797 msgid "create a promo code" msgstr "Créer un code promo" -#: core/docs/drf/viewsets.py:769 +#: engine/core/docs/drf/viewsets.py:801 msgid "delete a promo code" msgstr "Supprimer un code promo" -#: core/docs/drf/viewsets.py:773 +#: engine/core/docs/drf/viewsets.py:805 msgid "rewrite an existing promo code saving non-editables" msgstr "Réécrire un code promo existant en sauvegardant les non-éditables" -#: core/docs/drf/viewsets.py:777 +#: engine/core/docs/drf/viewsets.py:809 msgid "rewrite some fields of an existing promo code saving non-editables" msgstr "" "Réécrire certains champs d'une catégorie existante en sauvegardant les non-" "éditables" -#: core/docs/drf/viewsets.py:784 +#: engine/core/docs/drf/viewsets.py:816 msgid "list all promotions (simple view)" msgstr "Liste de toutes les promotions (vue simple)" -#: core/docs/drf/viewsets.py:788 +#: engine/core/docs/drf/viewsets.py:820 msgid "retrieve a single promotion (detailed view)" msgstr "Récupérer une seule promotion (vue détaillée)" -#: core/docs/drf/viewsets.py:792 +#: engine/core/docs/drf/viewsets.py:824 msgid "create a promotion" msgstr "Créer une promotion" -#: core/docs/drf/viewsets.py:796 +#: engine/core/docs/drf/viewsets.py:828 msgid "delete a promotion" msgstr "Supprimer une promotion" -#: core/docs/drf/viewsets.py:800 +#: engine/core/docs/drf/viewsets.py:832 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" -#: core/docs/drf/viewsets.py:804 +#: engine/core/docs/drf/viewsets.py:836 msgid "rewrite some fields of an existing promotion saving non-editables" msgstr "" "Réécrire certains champs d'une catégorie existante en sauvegardant les non-" "éditables" -#: core/docs/drf/viewsets.py:811 +#: engine/core/docs/drf/viewsets.py:843 msgid "list all stocks (simple view)" msgstr "Liste de toutes les actions (vue simple)" -#: core/docs/drf/viewsets.py:815 +#: engine/core/docs/drf/viewsets.py:847 msgid "retrieve a single stock (detailed view)" msgstr "Récupérer une seule action (vue détaillée)" -#: core/docs/drf/viewsets.py:819 +#: engine/core/docs/drf/viewsets.py:851 msgid "create a stock record" msgstr "Créer une fiche de stock" -#: core/docs/drf/viewsets.py:823 +#: engine/core/docs/drf/viewsets.py:855 msgid "delete a stock record" msgstr "Supprimer une fiche de stock" -#: core/docs/drf/viewsets.py:827 +#: engine/core/docs/drf/viewsets.py:859 msgid "rewrite an existing stock record saving non-editables" msgstr "" "Réécrire une fiche de stock existante en sauvegardant les éléments non " "modifiables" -#: core/docs/drf/viewsets.py:831 +#: engine/core/docs/drf/viewsets.py:863 msgid "rewrite some fields of an existing stock record saving non-editables" msgstr "" "Réécrire certains champs d'une catégorie existante en sauvegardant les non-" "éditables" -#: core/docs/drf/viewsets.py:838 +#: engine/core/docs/drf/viewsets.py:870 msgid "list all product tags (simple view)" msgstr "Liste de toutes les étiquettes de produits (vue simple)" -#: core/docs/drf/viewsets.py:842 +#: engine/core/docs/drf/viewsets.py:874 msgid "retrieve a single product tag (detailed view)" msgstr "Récupérer une seule étiquette de produit (vue détaillée)" -#: core/docs/drf/viewsets.py:846 +#: engine/core/docs/drf/viewsets.py:878 msgid "create a product tag" msgstr "Créer une étiquette de produit" -#: core/docs/drf/viewsets.py:850 +#: engine/core/docs/drf/viewsets.py:882 msgid "delete a product tag" msgstr "Supprimer une étiquette de produit" -#: core/docs/drf/viewsets.py:854 +#: engine/core/docs/drf/viewsets.py:886 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" -#: core/docs/drf/viewsets.py:858 +#: engine/core/docs/drf/viewsets.py:890 msgid "rewrite some fields of an existing product tag saving non-editables" msgstr "" "Réécrire certains champs d'une catégorie existante en sauvegardant les non-" "éditables" -#: core/elasticsearch/__init__.py:118 core/elasticsearch/__init__.py:550 +#: engine/core/elasticsearch/__init__.py:122 +#: engine/core/elasticsearch/__init__.py:570 msgid "no search term provided." msgstr "Aucun terme de recherche n'est fourni." -#: core/filters.py:69 core/filters.py:412 core/filters.py:539 +#: engine/core/filters.py:69 engine/core/filters.py:426 +#: engine/core/filters.py:553 msgid "Search" msgstr "Recherche" -#: core/filters.py:70 core/filters.py:569 core/filters.py:598 +#: engine/core/filters.py:70 engine/core/filters.py:583 +#: engine/core/filters.py:612 msgid "UUID" msgstr "UUID" -#: core/filters.py:71 core/filters.py:414 core/filters.py:541 +#: engine/core/filters.py:71 engine/core/filters.py:428 +#: engine/core/filters.py:555 msgid "Name" msgstr "Nom" -#: core/filters.py:72 core/filters.py:543 +#: engine/core/filters.py:72 engine/core/filters.py:557 msgid "Categories" msgstr "Catégories" -#: core/filters.py:74 +#: engine/core/filters.py:74 msgid "Categories Slugs" msgstr "Catégories Limaces" -#: core/filters.py:75 core/filters.py:422 +#: engine/core/filters.py:75 engine/core/filters.py:436 msgid "Tags" msgstr "Tags" -#: core/filters.py:76 +#: engine/core/filters.py:76 msgid "Min Price" msgstr "Prix minimum" -#: core/filters.py:77 +#: engine/core/filters.py:77 msgid "Max Price" msgstr "Prix maximum" -#: core/filters.py:78 +#: engine/core/filters.py:78 msgid "Is Active" msgstr "Est actif" -#: core/filters.py:79 +#: engine/core/filters.py:79 msgid "Brand" msgstr "Marque" -#: core/filters.py:80 +#: engine/core/filters.py:80 msgid "Attributes" msgstr "Attributs" -#: core/filters.py:81 +#: engine/core/filters.py:81 msgid "Quantity" msgstr "Quantité" -#: core/filters.py:82 core/filters.py:416 core/filters.py:542 -#: core/models.py:322 core/models.py:483 core/models.py:637 +#: engine/core/filters.py:82 engine/core/filters.py:430 +#: engine/core/filters.py:556 engine/core/models.py:321 +#: engine/core/models.py:482 engine/core/models.py:637 msgid "Slug" msgstr "Limace" -#: core/filters.py:83 +#: engine/core/filters.py:83 msgid "Is Digital" msgstr "Is Digital" -#: core/filters.py:84 +#: engine/core/filters.py:84 msgid "Include sub-categories" msgstr "Inclure des sous-catégories" -#: core/filters.py:87 +#: engine/core/filters.py:87 msgid "Include personal ordered" msgstr "Inclure les produits commandés par les particuliers" -#: core/filters.py:89 core/models.py:641 +#: engine/core/filters.py:89 engine/core/models.py:641 msgid "SKU" msgstr "SKU" -#: core/filters.py:173 +#: engine/core/filters.py:184 msgid "there must be a category_uuid to use include_subcategories flag" msgstr "" "Il doit y avoir un category_uuid pour utiliser le drapeau " "include_subcategories" -#: core/filters.py:339 +#: engine/core/filters.py:353 msgid "Search (ID, product name or part number)" msgstr "Recherche (ID, nom du produit ou numéro de pièce)" -#: core/filters.py:342 +#: engine/core/filters.py:356 msgid "Bought after (inclusive)" msgstr "Acheté après (inclus)" -#: core/filters.py:343 +#: engine/core/filters.py:357 msgid "Bought before (inclusive)" msgstr "Acheté avant (inclus)" -#: core/filters.py:346 core/filters.py:393 core/filters.py:600 +#: engine/core/filters.py:360 engine/core/filters.py:407 +#: engine/core/filters.py:614 msgid "User email" msgstr "Courriel de l'utilisateur" -#: core/filters.py:347 core/filters.py:394 core/filters.py:578 -#: core/filters.py:599 +#: engine/core/filters.py:361 engine/core/filters.py:408 +#: engine/core/filters.py:592 engine/core/filters.py:613 msgid "User UUID" msgstr "UUID de l'utilisateur" -#: core/filters.py:348 +#: engine/core/filters.py:362 msgid "Status" msgstr "Statut" -#: core/filters.py:352 +#: engine/core/filters.py:366 msgid "Human Readable ID" msgstr "ID lisible par l'homme" -#: core/filters.py:415 +#: engine/core/filters.py:429 msgid "Parent" msgstr "Parent" -#: core/filters.py:419 +#: engine/core/filters.py:433 msgid "Whole category(has at least 1 product or not)" msgstr "Catégorie entière (avec au moins 1 produit ou non)" -#: core/filters.py:423 +#: engine/core/filters.py:437 msgid "Level" msgstr "Niveau" -#: core/filters.py:573 +#: engine/core/filters.py:587 msgid "Product UUID" msgstr "UUID du produit" -#: core/graphene/mutations.py:41 +#: engine/core/graphene/mutations.py:41 msgid "key to look for in or set into the cache" msgstr "Clé à rechercher ou à insérer dans la cache" -#: core/graphene/mutations.py:42 +#: engine/core/graphene/mutations.py:42 msgid "data to store in cache" msgstr "Données à stocker dans la mémoire cache" -#: core/graphene/mutations.py:45 +#: engine/core/graphene/mutations.py:45 msgid "timeout in seconds to set the data for into the cache" msgstr "Délai d'attente en secondes pour placer les données dans le cache" -#: core/graphene/mutations.py:48 +#: engine/core/graphene/mutations.py:48 msgid "cached data" msgstr "Données mises en cache" -#: core/graphene/mutations.py:63 +#: engine/core/graphene/mutations.py:63 msgid "camelized JSON data from the requested URL" msgstr "Données JSON camélisées provenant de l'URL demandée" -#: core/graphene/mutations.py:68 core/views.py:232 +#: engine/core/graphene/mutations.py:68 engine/core/views.py:231 msgid "only URLs starting with http(s):// are allowed" msgstr "Seuls les URL commençant par http(s):// sont autorisés." -#: core/graphene/mutations.py:84 +#: engine/core/graphene/mutations.py:84 msgid "add a product to the order" msgstr "Ajouter un produit à la commande" -#: core/graphene/mutations.py:105 core/graphene/mutations.py:132 -#: core/graphene/mutations.py:240 core/graphene/mutations.py:288 +#: engine/core/graphene/mutations.py:105 engine/core/graphene/mutations.py:132 +#: engine/core/graphene/mutations.py:240 engine/core/graphene/mutations.py:288 #, python-brace-format msgid "order {order_uuid} not found" msgstr "Ordre {order_uuid} introuvable !" -#: core/graphene/mutations.py:111 core/graphene/mutations.py:160 +#: engine/core/graphene/mutations.py:111 engine/core/graphene/mutations.py:160 msgid "remove a product from the order" msgstr "Supprimer un produit de la commande" -#: core/graphene/mutations.py:138 +#: engine/core/graphene/mutations.py:138 msgid "remove all products from the order" msgstr "Supprimer tous les produits de la commande" -#: core/graphene/mutations.py:183 +#: engine/core/graphene/mutations.py:183 msgid "buy an order" msgstr "Acheter une commande" -#: core/graphene/mutations.py:212 core/graphene/mutations.py:266 +#: engine/core/graphene/mutations.py:212 engine/core/graphene/mutations.py:266 msgid "please provide either order_uuid or order_hr_id - mutually exclusive" msgstr "" "Veuillez fournir soit order_uuid, soit order_hr_id - les deux s'excluent " "mutuellement !" -#: core/graphene/mutations.py:237 core/graphene/mutations.py:502 -#: core/graphene/mutations.py:544 core/viewsets.py:704 +#: engine/core/graphene/mutations.py:237 engine/core/graphene/mutations.py:502 +#: engine/core/graphene/mutations.py:544 engine/core/viewsets.py:704 msgid "wrong type came from order.buy() method: {type(instance)!s}" msgstr "" "Le mauvais type provient de la méthode order.buy() : {type(instance)!s}" -#: core/graphene/mutations.py:246 +#: engine/core/graphene/mutations.py:246 msgid "perform an action on a list of products in the order" msgstr "Effectuer une action sur une liste de produits dans la commande" -#: core/graphene/mutations.py:251 +#: engine/core/graphene/mutations.py:251 msgid "remove/add" msgstr "Supprimer/Ajouter" -#: core/graphene/mutations.py:283 core/graphene/mutations.py:324 +#: engine/core/graphene/mutations.py:283 engine/core/graphene/mutations.py:324 msgid "action must be either add or remove" msgstr "L'action doit être soit \"ajouter\", soit \"supprimer\" !" -#: core/graphene/mutations.py:294 +#: engine/core/graphene/mutations.py:294 msgid "perform an action on a list of products in the wishlist" msgstr "" "Effectuer une action sur une liste de produits dans la liste de souhaits" -#: core/graphene/mutations.py:312 +#: engine/core/graphene/mutations.py:312 msgid "please provide wishlist_uuid value" msgstr "Veuillez indiquer la valeur de `wishlist_uuid`." -#: core/graphene/mutations.py:329 core/graphene/mutations.py:405 -#: core/graphene/mutations.py:433 core/graphene/mutations.py:461 -#: core/graphene/mutations.py:505 +#: engine/core/graphene/mutations.py:329 engine/core/graphene/mutations.py:405 +#: engine/core/graphene/mutations.py:433 engine/core/graphene/mutations.py:461 +#: engine/core/graphene/mutations.py:505 #, python-brace-format msgid "wishlist {wishlist_uuid} not found" msgstr "Wishlist {wishlist_uuid} introuvable !" -#: core/graphene/mutations.py:383 +#: engine/core/graphene/mutations.py:383 msgid "add a product to the wishlist" msgstr "Ajouter un produit à la commande" -#: core/graphene/mutations.py:411 +#: engine/core/graphene/mutations.py:411 msgid "remove a product from the wishlist" msgstr "Supprimer un produit de la commande" -#: core/graphene/mutations.py:439 +#: engine/core/graphene/mutations.py:439 msgid "remove all products from the wishlist" msgstr "Supprimer un produit de la commande" -#: core/graphene/mutations.py:467 +#: engine/core/graphene/mutations.py:467 msgid "buy all products from the wishlist" msgstr "Supprimer un produit de la commande" -#: core/graphene/mutations.py:511 +#: engine/core/graphene/mutations.py:511 msgid "buy a product" msgstr "Acheter une commande" -#: core/graphene/mutations.py:517 +#: engine/core/graphene/mutations.py:517 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." -#: core/graphene/mutations.py:550 +#: engine/core/graphene/mutations.py:550 msgid "add or delete a feedback for orderproduct" msgstr "" "ajouter ou supprimer un retour d'information sur une relation commande-" "produit" -#: core/graphene/mutations.py:574 +#: engine/core/graphene/mutations.py:574 msgid "action must be either `add` or `remove`" msgstr "L'action doit être soit `add` soit `remove` !" -#: core/graphene/mutations.py:577 +#: engine/core/graphene/mutations.py:577 #, python-brace-format msgid "order product {order_product_uuid} not found" msgstr "Le produit {order_product_uuid} n'a pas été trouvé !" -#: core/graphene/mutations.py:644 +#: engine/core/graphene/mutations.py:644 msgid "original address string provided by the user" msgstr "Chaîne d'adresse originale fournie par l'utilisateur" -#: core/graphene/mutations.py:680 core/models.py:930 core/models.py:943 -#: core/models.py:1358 core/models.py:1387 core/models.py:1412 -#: core/viewsets.py:707 +#: engine/core/graphene/mutations.py:680 engine/core/models.py:941 +#: engine/core/models.py:954 engine/core/models.py:1369 +#: engine/core/models.py:1398 engine/core/models.py:1423 +#: engine/core/viewsets.py:707 #, python-brace-format msgid "{name} does not exist: {uuid}" msgstr "{name} n'existe pas : {uuid} !" -#: core/graphene/mutations.py:694 +#: engine/core/graphene/mutations.py:694 msgid "limit must be between 1 and 10" msgstr "La limite doit être comprise entre 1 et 10" -#: core/graphene/mutations.py:743 +#: engine/core/graphene/mutations.py:743 msgid "elasticsearch - works like a charm" msgstr "ElasticSearch - fonctionne comme un charme" -#: core/graphene/object_types.py:82 core/graphene/object_types.py:370 -#: core/graphene/object_types.py:417 core/models.py:754 core/models.py:1225 -#: core/models.py:1823 +#: engine/core/graphene/object_types.py:82 +#: engine/core/graphene/object_types.py:370 +#: engine/core/graphene/object_types.py:417 engine/core/models.py:765 +#: engine/core/models.py:1236 engine/core/models.py:1883 msgid "attributes" msgstr "Attributs" -#: core/graphene/object_types.py:95 +#: engine/core/graphene/object_types.py:95 msgid "grouped attributes" msgstr "Attributs groupés" -#: core/graphene/object_types.py:102 +#: engine/core/graphene/object_types.py:102 msgid "groups of attributes" msgstr "Groupes d'attributs" -#: core/graphene/object_types.py:116 core/graphene/object_types.py:193 -#: core/graphene/object_types.py:223 core/models.py:426 +#: engine/core/graphene/object_types.py:116 +#: engine/core/graphene/object_types.py:193 +#: engine/core/graphene/object_types.py:223 engine/core/models.py:425 msgid "categories" msgstr "Catégories" -#: core/graphene/object_types.py:124 core/models.py:497 +#: engine/core/graphene/object_types.py:124 engine/core/models.py:496 msgid "brands" msgstr "Marques" -#: core/graphene/object_types.py:195 +#: engine/core/graphene/object_types.py:195 msgid "category image url" msgstr "Catégories" -#: core/graphene/object_types.py:196 core/graphene/object_types.py:317 -#: core/models.py:284 +#: engine/core/graphene/object_types.py:196 +#: engine/core/graphene/object_types.py:317 engine/core/models.py:283 msgid "markup percentage" msgstr "Markup Percentage" -#: core/graphene/object_types.py:199 +#: engine/core/graphene/object_types.py:199 msgid "which attributes and values can be used for filtering this category." msgstr "" "Quels attributs et valeurs peuvent être utilisés pour filtrer cette " "catégorie." -#: core/graphene/object_types.py:203 -msgid "" -"minimum and maximum prices for products in this category, if available." +#: engine/core/graphene/object_types.py:203 +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." -#: core/graphene/object_types.py:205 +#: engine/core/graphene/object_types.py:205 msgid "tags for this category" msgstr "Tags pour cette catégorie" -#: core/graphene/object_types.py:206 +#: engine/core/graphene/object_types.py:206 msgid "products in this category" msgstr "Produits dans cette catégorie" -#: core/graphene/object_types.py:324 core/models.py:189 +#: engine/core/graphene/object_types.py:324 engine/core/models.py:188 msgid "vendors" msgstr "Vendeurs" -#: core/graphene/object_types.py:328 +#: engine/core/graphene/object_types.py:328 msgid "Latitude (Y coordinate)" msgstr "Latitude (coordonnée Y)" -#: core/graphene/object_types.py:329 +#: engine/core/graphene/object_types.py:329 msgid "Longitude (X coordinate)" msgstr "Longitude (coordonnée X)" -#: core/graphene/object_types.py:358 +#: engine/core/graphene/object_types.py:358 msgid "comment" msgstr "Comment" -#: core/graphene/object_types.py:359 core/graphene/object_types.py:483 +#: engine/core/graphene/object_types.py:359 +#: engine/core/graphene/object_types.py:483 msgid "rating value from 1 to 10, inclusive, or 0 if not set." msgstr "Valeur d'évaluation de 1 à 10 inclus, ou 0 si elle n'est pas définie." -#: core/graphene/object_types.py:366 +#: engine/core/graphene/object_types.py:366 msgid "represents feedback from a user." msgstr "Représente le retour d'information d'un utilisateur." -#: core/graphene/object_types.py:371 core/graphene/object_types.py:418 -#: core/models.py:1219 +#: engine/core/graphene/object_types.py:371 +#: engine/core/graphene/object_types.py:418 engine/core/models.py:1230 msgid "notifications" msgstr "Notifications" -#: core/graphene/object_types.py:372 +#: engine/core/graphene/object_types.py:372 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" -#: core/graphene/object_types.py:373 core/models.py:1939 +#: engine/core/graphene/object_types.py:373 engine/core/models.py:1722 msgid "feedback" msgstr "Retour d'information" -#: core/graphene/object_types.py:407 +#: engine/core/graphene/object_types.py:407 msgid "a list of order products in this order" msgstr "Une liste des produits commandés dans cette commande" -#: core/graphene/object_types.py:409 core/models.py:1189 +#: engine/core/graphene/object_types.py:409 engine/core/models.py:1200 msgid "billing address" msgstr "Adresse de facturation" -#: core/graphene/object_types.py:412 +#: engine/core/graphene/object_types.py:412 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" -#: core/graphene/object_types.py:414 +#: engine/core/graphene/object_types.py:414 msgid "total price of this order" msgstr "Prix total de la commande" -#: core/graphene/object_types.py:415 +#: engine/core/graphene/object_types.py:415 msgid "total quantity of products in order" msgstr "Quantité totale de produits dans la commande" -#: core/graphene/object_types.py:416 +#: engine/core/graphene/object_types.py:416 msgid "are all products in the order digital" msgstr "Tous les produits de la commande sont-ils numériques ?" -#: core/graphene/object_types.py:419 +#: engine/core/graphene/object_types.py:419 msgid "transactions for this order" msgstr "Transactions pour cette commande" -#: core/graphene/object_types.py:438 core/models.py:1253 +#: engine/core/graphene/object_types.py:438 engine/core/models.py:1264 msgid "orders" msgstr "Commandes" -#: core/graphene/object_types.py:459 +#: engine/core/graphene/object_types.py:459 msgid "image url" msgstr "Image URL" -#: core/graphene/object_types.py:466 +#: engine/core/graphene/object_types.py:466 msgid "product's images" msgstr "Images du produit" -#: core/graphene/object_types.py:473 core/models.py:425 core/models.py:579 +#: engine/core/graphene/object_types.py:473 engine/core/models.py:424 +#: engine/core/models.py:579 msgid "category" msgstr "Catégorie" -#: core/graphene/object_types.py:475 core/models.py:1940 +#: engine/core/graphene/object_types.py:475 engine/core/models.py:1723 msgid "feedbacks" msgstr "Retour d'information" -#: core/graphene/object_types.py:476 core/models.py:496 core/models.py:588 +#: engine/core/graphene/object_types.py:476 engine/core/models.py:495 +#: engine/core/models.py:588 msgid "brand" msgstr "Marque" -#: core/graphene/object_types.py:477 core/models.py:107 +#: engine/core/graphene/object_types.py:477 engine/core/models.py:106 msgid "attribute groups" msgstr "Groupes d'attributs" -#: core/graphene/object_types.py:478 -#: core/templates/digital_order_created_email.html:111 -#: core/templates/digital_order_delivered_email.html:109 -#: core/templates/shipped_order_created_email.html:109 -#: core/templates/shipped_order_delivered_email.html:109 +#: engine/core/graphene/object_types.py:478 +#: engine/core/templates/digital_order_created_email.html:111 +#: engine/core/templates/digital_order_delivered_email.html:109 +#: engine/core/templates/shipped_order_created_email.html:109 +#: engine/core/templates/shipped_order_delivered_email.html:109 msgid "price" msgstr "Prix" -#: core/graphene/object_types.py:479 -#: core/templates/digital_order_created_email.html:110 -#: core/templates/digital_order_delivered_email.html:108 -#: core/templates/shipped_order_created_email.html:108 -#: core/templates/shipped_order_delivered_email.html:108 +#: engine/core/graphene/object_types.py:479 +#: engine/core/templates/digital_order_created_email.html:110 +#: engine/core/templates/digital_order_delivered_email.html:108 +#: engine/core/templates/shipped_order_created_email.html:108 +#: engine/core/templates/shipped_order_delivered_email.html:108 msgid "quantity" msgstr "Quantité" -#: core/graphene/object_types.py:480 +#: engine/core/graphene/object_types.py:480 msgid "number of feedbacks" msgstr "Nombre de retours d'information" -#: core/graphene/object_types.py:481 +#: engine/core/graphene/object_types.py:481 msgid "only available for personal orders" msgstr "Produits disponibles uniquement pour les commandes personnelles" -#: core/graphene/object_types.py:507 core/models.py:651 +#: engine/core/graphene/object_types.py:484 +msgid "discount price" +msgstr "Prix d'escompte" + +#: engine/core/graphene/object_types.py:508 engine/core/models.py:651 msgid "products" msgstr "Produits" -#: core/graphene/object_types.py:607 +#: engine/core/graphene/object_types.py:611 msgid "promocodes" msgstr "Promocodes" -#: core/graphene/object_types.py:617 +#: engine/core/graphene/object_types.py:621 msgid "products on sale" msgstr "Produits en vente" -#: core/graphene/object_types.py:624 core/models.py:879 +#: engine/core/graphene/object_types.py:628 engine/core/models.py:890 msgid "promotions" msgstr "Promotions" -#: core/graphene/object_types.py:628 core/models.py:188 +#: engine/core/graphene/object_types.py:632 engine/core/models.py:187 msgid "vendor" msgstr "Vendeur" -#: core/graphene/object_types.py:629 core/models.py:650 -#: core/templates/digital_order_created_email.html:109 -#: core/templates/digital_order_delivered_email.html:107 -#: core/templates/shipped_order_created_email.html:107 -#: core/templates/shipped_order_delivered_email.html:107 +#: engine/core/graphene/object_types.py:633 engine/core/models.py:650 +#: 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 +#: engine/core/templates/shipped_order_delivered_email.html:107 msgid "product" msgstr "Produit" -#: core/graphene/object_types.py:640 core/models.py:902 +#: engine/core/graphene/object_types.py:644 engine/core/models.py:913 msgid "wishlisted products" msgstr "Produits en liste de souhaits" -#: core/graphene/object_types.py:646 core/models.py:919 +#: engine/core/graphene/object_types.py:650 engine/core/models.py:930 msgid "wishlists" msgstr "Liste de souhaits" -#: core/graphene/object_types.py:650 +#: engine/core/graphene/object_types.py:654 msgid "tagged products" msgstr "Produits marqués" -#: core/graphene/object_types.py:657 core/models.py:225 core/models.py:594 +#: engine/core/graphene/object_types.py:661 engine/core/models.py:224 +#: engine/core/models.py:594 msgid "product tags" msgstr "Étiquettes du produit" -#: core/graphene/object_types.py:661 +#: engine/core/graphene/object_types.py:665 msgid "tagged categories" msgstr "Catégories marquées" -#: core/graphene/object_types.py:668 +#: engine/core/graphene/object_types.py:672 msgid "categories tags" msgstr "Tags des catégories" -#: core/graphene/object_types.py:672 +#: engine/core/graphene/object_types.py:676 msgid "project name" msgstr "Nom du projet" -#: core/graphene/object_types.py:673 +#: engine/core/graphene/object_types.py:677 msgid "company email" msgstr "Courriel de l'entreprise" -#: core/graphene/object_types.py:674 +#: engine/core/graphene/object_types.py:678 msgid "company name" msgstr "Nom de l'entreprise" -#: core/graphene/object_types.py:675 +#: engine/core/graphene/object_types.py:679 msgid "company address" msgstr "Adresse de l'entreprise" -#: core/graphene/object_types.py:676 +#: engine/core/graphene/object_types.py:680 msgid "company phone number" msgstr "Numéro de téléphone de l'entreprise" -#: core/graphene/object_types.py:677 +#: engine/core/graphene/object_types.py:681 msgid "email from, sometimes it must be used instead of host user value" msgstr "" "'email from', parfois il doit être utilisé à la place de la valeur de " "l'utilisateur de l'hôte" -#: core/graphene/object_types.py:678 +#: engine/core/graphene/object_types.py:682 msgid "email host user" msgstr "Utilisateur de l'hôte de messagerie" -#: core/graphene/object_types.py:679 +#: engine/core/graphene/object_types.py:683 msgid "maximum amount for payment" msgstr "Montant maximum du paiement" -#: core/graphene/object_types.py:680 +#: engine/core/graphene/object_types.py:684 msgid "minimum amount for payment" msgstr "Montant minimum pour le paiement" -#: core/graphene/object_types.py:681 +#: engine/core/graphene/object_types.py:685 msgid "analytics data" msgstr "Données analytiques" -#: core/graphene/object_types.py:682 +#: engine/core/graphene/object_types.py:686 msgid "advertisement data" msgstr "Advertisement data" -#: core/graphene/object_types.py:685 +#: engine/core/graphene/object_types.py:689 msgid "company configuration" msgstr "Configuration" -#: core/graphene/object_types.py:689 +#: engine/core/graphene/object_types.py:693 msgid "language code" msgstr "Code langue" -#: core/graphene/object_types.py:690 +#: engine/core/graphene/object_types.py:694 msgid "language name" msgstr "Nom de la langue" -#: core/graphene/object_types.py:691 +#: engine/core/graphene/object_types.py:695 msgid "language flag, if exists :)" msgstr "Drapeau linguistique, s'il existe :)" -#: core/graphene/object_types.py:694 +#: engine/core/graphene/object_types.py:698 msgid "supported languages" msgstr "Obtenir la liste des langues prises en charge" -#: core/graphene/object_types.py:725 core/graphene/object_types.py:726 -#: core/graphene/object_types.py:727 +#: engine/core/graphene/object_types.py:729 +#: engine/core/graphene/object_types.py:730 +#: engine/core/graphene/object_types.py:731 msgid "products search results" msgstr "Résultats de la recherche de produits" -#: core/graphene/object_types.py:728 +#: engine/core/graphene/object_types.py:732 msgid "posts search results" msgstr "Résultats de la recherche de produits" -#: core/models.py:76 +#: engine/core/models.py:75 msgid "" "Represents a group of attributes, which can be hierarchical. This class is " "used to manage and organize attribute groups. An attribute group can have a " @@ -1539,23 +1579,23 @@ msgstr "" "hiérarchique. Cela peut être utile pour catégoriser et gérer les attributs " "plus efficacement dans un système complexe." -#: core/models.py:92 +#: engine/core/models.py:91 msgid "parent of this group" msgstr "Parent de ce groupe" -#: core/models.py:93 +#: engine/core/models.py:92 msgid "parent attribute group" msgstr "Groupe d'attributs parent" -#: core/models.py:97 core/models.py:98 +#: engine/core/models.py:96 engine/core/models.py:97 msgid "attribute group's name" msgstr "Nom du groupe d'attributs" -#: core/models.py:106 core/models.py:716 +#: engine/core/models.py:105 engine/core/models.py:727 msgid "attribute group" msgstr "Groupe d'attributs" -#: core/models.py:112 +#: engine/core/models.py:111 msgid "" "Represents a vendor entity capable of storing information about external " "vendors and their interaction requirements. The Vendor class is used to " @@ -1567,58 +1607,58 @@ 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 " "permet de l'utiliser dans des systèmes qui interagissent avec des vendeurs " "tiers." -#: core/models.py:125 +#: engine/core/models.py:124 msgid "stores credentials and endpoints required for vendor communication" msgstr "" "Stocke les informations d'identification et les points d'extrémité " "nécessaires à la communication avec l'API du fournisseur." -#: core/models.py:126 +#: engine/core/models.py:125 msgid "authentication info" msgstr "Informations sur l'authentification" -#: core/models.py:131 +#: engine/core/models.py:130 msgid "define the markup for products retrieved from this vendor" msgstr "" "Définir la majoration pour les produits récupérés auprès de ce fournisseur" -#: core/models.py:132 +#: engine/core/models.py:131 msgid "vendor markup percentage" msgstr "Pourcentage de marge du vendeur" -#: core/models.py:136 +#: engine/core/models.py:135 msgid "name of this vendor" msgstr "Nom de ce vendeur" -#: core/models.py:137 +#: engine/core/models.py:136 msgid "vendor name" msgstr "Nom du vendeur" -#: core/models.py:148 +#: engine/core/models.py:147 msgid "response file" msgstr "dossier de réponse" -#: core/models.py:149 +#: engine/core/models.py:148 msgid "vendor's last processing response" msgstr "la dernière réponse du vendeur en matière de traitement" -#: core/models.py:155 +#: engine/core/models.py:154 msgid "vendor's integration file path" msgstr "Chemin d'accès au fichier d'intégration du fournisseur" -#: core/models.py:156 +#: engine/core/models.py:155 msgid "integration path" msgstr "Parcours d'intégration" -#: core/models.py:198 +#: engine/core/models.py:197 msgid "" "Represents a product tag used for classifying or identifying products. The " "ProductTag class is designed to uniquely identify and classify products " @@ -1633,46 +1673,46 @@ msgstr "" "biais de mixins et permet de personnaliser les métadonnées à des fins " "administratives." -#: core/models.py:210 core/models.py:241 +#: engine/core/models.py:209 engine/core/models.py:240 msgid "internal tag identifier for the product tag" msgstr "Identifiant interne de l'étiquette du produit" -#: core/models.py:211 core/models.py:242 +#: engine/core/models.py:210 engine/core/models.py:241 msgid "tag name" msgstr "Nom du jour" -#: core/models.py:215 core/models.py:246 +#: engine/core/models.py:214 engine/core/models.py:245 msgid "user-friendly name for the product tag" msgstr "Nom convivial pour l'étiquette du produit" -#: core/models.py:216 core/models.py:247 +#: engine/core/models.py:215 engine/core/models.py:246 msgid "tag display name" msgstr "Nom d'affichage de l'étiquette" -#: core/models.py:224 +#: engine/core/models.py:223 msgid "product tag" msgstr "Étiquette du produit" -#: core/models.py:230 +#: engine/core/models.py:229 msgid "" "Represents a category tag used for products. This class models a category " "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 "" "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." -#: core/models.py:255 +#: engine/core/models.py:254 msgid "category tag" msgstr "étiquette de catégorie" -#: core/models.py:256 core/models.py:328 +#: engine/core/models.py:255 engine/core/models.py:327 msgid "category tags" msgstr "balises de catégorie" -#: core/models.py:261 +#: engine/core/models.py:260 msgid "" "Represents a category entity to organize and group related items in a " "hierarchical structure. Categories may have hierarchical relationships with " @@ -1689,116 +1729,115 @@ 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 " "balises ou une priorité." -#: core/models.py:275 +#: engine/core/models.py:274 msgid "upload an image representing this category" msgstr "Télécharger une image représentant cette catégorie" -#: core/models.py:278 +#: engine/core/models.py:277 msgid "category image" msgstr "Image de catégorie" -#: core/models.py:283 +#: engine/core/models.py:282 msgid "define a markup percentage for products in this category" msgstr "" "Définir un pourcentage de majoration pour les produits de cette catégorie" -#: core/models.py:292 +#: engine/core/models.py:291 msgid "parent of this category to form a hierarchical structure" msgstr "Parent de cette catégorie pour former une structure hiérarchique" -#: core/models.py:293 +#: engine/core/models.py:292 msgid "parent category" msgstr "Catégorie de parents" -#: core/models.py:298 +#: engine/core/models.py:297 msgid "category name" msgstr "Nom de la catégorie" -#: core/models.py:299 +#: engine/core/models.py:298 msgid "provide a name for this category" msgstr "Donnez un nom à cette catégorie" -#: core/models.py:306 +#: engine/core/models.py:305 msgid "add a detailed description for this category" msgstr "Ajouter une description détaillée pour cette catégorie" -#: core/models.py:307 +#: engine/core/models.py:306 msgid "category description" msgstr "Description de la catégorie" -#: core/models.py:327 +#: engine/core/models.py:326 msgid "tags that help describe or group this category" msgstr "les étiquettes qui aident à décrire ou à regrouper cette catégorie" -#: core/models.py:334 core/models.py:489 +#: engine/core/models.py:333 engine/core/models.py:488 msgid "priority" msgstr "Priorité" -#: core/models.py:432 +#: engine/core/models.py:431 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." -#: core/models.py:442 +#: engine/core/models.py:441 msgid "name of this brand" msgstr "Nom de cette marque" -#: core/models.py:443 +#: engine/core/models.py:442 msgid "brand name" msgstr "Nom de marque" -#: core/models.py:450 +#: engine/core/models.py:449 msgid "upload a logo representing this brand" msgstr "Télécharger un logo représentant cette marque" -#: core/models.py:452 +#: engine/core/models.py:451 msgid "brand small image" msgstr "Petite image de marque" -#: core/models.py:458 +#: engine/core/models.py:457 msgid "upload a big logo representing this brand" msgstr "Télécharger un grand logo représentant cette marque" -#: core/models.py:460 +#: engine/core/models.py:459 msgid "brand big image" msgstr "Une grande image de marque" -#: core/models.py:465 +#: engine/core/models.py:464 msgid "add a detailed description of the brand" msgstr "Ajouter une description détaillée de la marque" -#: core/models.py:466 +#: engine/core/models.py:465 msgid "brand description" msgstr "Description de la marque" -#: core/models.py:471 +#: engine/core/models.py:470 msgid "optional categories that this brand is associated with" msgstr "Catégories facultatives auxquelles cette marque est associée" -#: core/models.py:472 +#: engine/core/models.py:471 msgid "associated categories" msgstr "Catégories" -#: core/models.py:502 +#: engine/core/models.py:501 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 " @@ -1808,71 +1847,75 @@ 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." -#: core/models.py:514 +#: engine/core/models.py:513 msgid "the vendor supplying this product stock" msgstr "Le vendeur qui fournit ce stock de produits" -#: core/models.py:515 +#: engine/core/models.py:514 msgid "associated vendor" msgstr "Vendeur associé" -#: core/models.py:519 +#: engine/core/models.py:518 msgid "final price to the customer after markups" msgstr "Prix final pour le client après majoration" -#: core/models.py:520 +#: engine/core/models.py:519 msgid "selling price" msgstr "Prix de vente" -#: core/models.py:525 +#: engine/core/models.py:524 msgid "the product associated with this stock entry" msgstr "Le produit associé à cette entrée de stock" -#: core/models.py:526 core/models.py:779 core/models.py:825 -#: core/models.py:1718 +#: engine/core/models.py:525 engine/core/models.py:790 +#: engine/core/models.py:836 engine/core/models.py:1778 msgid "associated product" msgstr "Produit associé" -#: core/models.py:533 +#: engine/core/models.py:532 msgid "the price paid to the vendor for this product" msgstr "Le prix payé au vendeur pour ce produit" -#: core/models.py:534 +#: engine/core/models.py:533 msgid "vendor purchase price" msgstr "Prix d'achat du vendeur" -#: core/models.py:538 +#: engine/core/models.py:537 msgid "available quantity of the product in stock" msgstr "Quantité disponible du produit en stock" -#: core/models.py:539 +#: engine/core/models.py:538 msgid "quantity in stock" msgstr "Quantité en stock" -#: core/models.py:543 +#: engine/core/models.py:542 msgid "vendor-assigned SKU for identifying the product" msgstr "SKU attribué par le fournisseur pour identifier le produit" -#: core/models.py:544 +#: engine/core/models.py:543 msgid "vendor sku" msgstr "UGS du vendeur" -#: core/models.py:550 +#: engine/core/models.py:549 msgid "digital file associated with this stock if applicable" msgstr "Fichier numérique associé à ce stock, le cas échéant" -#: core/models.py:551 +#: engine/core/models.py:550 msgid "digital file" msgstr "Fichier numérique" -#: core/models.py:560 +#: engine/core/models.py:553 +msgid "system attributes" +msgstr "Attributs du système" + +#: engine/core/models.py:560 msgid "stock entries" msgstr "Entrées de stock" -#: core/models.py:565 +#: engine/core/models.py:565 msgid "" "Represents a product with attributes such as category, brand, tags, digital " "status, name, description, part number, and slug. Provides related utility " @@ -1884,8 +1927,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 " @@ -1894,208 +1937,207 @@ msgstr "" "performances. Elle est utilisée pour définir et manipuler les données " "produit et les informations associées dans une application." -#: core/models.py:578 +#: engine/core/models.py:578 msgid "category this product belongs to" msgstr "Catégorie à laquelle appartient ce produit" -#: core/models.py:587 +#: engine/core/models.py:587 msgid "optionally associate this product with a brand" msgstr "Possibilité d'associer ce produit à une marque" -#: core/models.py:593 +#: engine/core/models.py:593 msgid "tags that help describe or group this product" msgstr "Étiquettes permettant de décrire ou de regrouper ce produit" -#: core/models.py:598 +#: engine/core/models.py:598 msgid "indicates whether this product is digitally delivered" msgstr "Indique si ce produit est livré numériquement" -#: core/models.py:599 +#: engine/core/models.py:599 msgid "is product digital" msgstr "Le produit est-il numérique ?" -#: core/models.py:605 +#: engine/core/models.py:605 msgid "provide a clear identifying name for the product" msgstr "Fournir un nom d'identification clair pour le produit" -#: core/models.py:606 +#: engine/core/models.py:606 msgid "product name" msgstr "Nom du produit" -#: core/models.py:612 core/models.py:867 +#: engine/core/models.py:612 engine/core/models.py:878 msgid "add a detailed description of the product" msgstr "Ajouter une description détaillée du produit" -#: core/models.py:613 +#: engine/core/models.py:613 msgid "product description" msgstr "Description du produit" -#: core/models.py:620 +#: engine/core/models.py:620 msgid "part number for this product" msgstr "Numéro de pièce pour ce produit" -#: core/models.py:621 +#: engine/core/models.py:621 msgid "part number" msgstr "Numéro de pièce" -#: core/models.py:640 +#: engine/core/models.py:640 msgid "stock keeping unit for this product" msgstr "Unité de gestion des stocks pour ce produit" -#: core/models.py:702 +#: engine/core/models.py:713 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." -#: core/models.py:715 +#: engine/core/models.py:726 msgid "group of this attribute" msgstr "Groupe de cet attribut" -#: core/models.py:721 +#: engine/core/models.py:732 msgid "string" msgstr "Chaîne" -#: core/models.py:722 +#: engine/core/models.py:733 msgid "integer" msgstr "Entier" -#: core/models.py:723 +#: engine/core/models.py:734 msgid "float" msgstr "Flotteur" -#: core/models.py:724 +#: engine/core/models.py:735 msgid "boolean" msgstr "Booléen" -#: core/models.py:725 +#: engine/core/models.py:736 msgid "array" msgstr "Tableau" -#: core/models.py:726 +#: engine/core/models.py:737 msgid "object" msgstr "Objet" -#: core/models.py:728 +#: engine/core/models.py:739 msgid "type of the attribute's value" msgstr "Type de la valeur de l'attribut" -#: core/models.py:729 +#: engine/core/models.py:740 msgid "value type" msgstr "Type de valeur" -#: core/models.py:734 +#: engine/core/models.py:745 msgid "name of this attribute" msgstr "Nom de cet attribut" -#: core/models.py:735 +#: engine/core/models.py:746 msgid "attribute's name" msgstr "Nom de l'attribut" -#: core/models.py:740 +#: engine/core/models.py:751 msgid "is filterable" msgstr "est filtrable" -#: core/models.py:741 +#: engine/core/models.py:752 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." -#: core/models.py:753 core/models.py:771 -#: core/templates/digital_order_delivered_email.html:134 +#: engine/core/models.py:764 engine/core/models.py:782 +#: engine/core/templates/digital_order_delivered_email.html:134 msgid "attribute" msgstr "Attribut" -#: core/models.py:759 +#: engine/core/models.py:770 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." -#: core/models.py:770 +#: engine/core/models.py:781 msgid "attribute of this value" msgstr "Attribut de cette valeur" -#: core/models.py:778 +#: engine/core/models.py:789 msgid "the specific product associated with this attribute's value" msgstr "Le produit spécifique associé à la valeur de cet attribut" -#: core/models.py:784 +#: engine/core/models.py:795 msgid "the specific value for this attribute" msgstr "La valeur spécifique de cet attribut" -#: core/models.py:797 +#: engine/core/models.py:808 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." -#: core/models.py:808 +#: engine/core/models.py:819 msgid "provide alternative text for the image for accessibility" msgstr "Fournir un texte alternatif pour l'image afin d'en faciliter l'accès" -#: core/models.py:809 +#: engine/core/models.py:820 msgid "image alt text" msgstr "Texte alt de l'image" -#: core/models.py:812 +#: engine/core/models.py:823 msgid "upload the image file for this product" msgstr "Télécharger le fichier image pour ce produit" -#: core/models.py:813 core/models.py:837 +#: engine/core/models.py:824 engine/core/models.py:848 msgid "product image" msgstr "Image du produit" -#: core/models.py:818 +#: engine/core/models.py:829 msgid "determines the order in which images are displayed" msgstr "Détermine l'ordre d'affichage des images" -#: core/models.py:819 +#: engine/core/models.py:830 msgid "display priority" msgstr "Priorité à l'affichage" -#: core/models.py:824 +#: engine/core/models.py:835 msgid "the product that this image represents" msgstr "Le produit que cette image représente" -#: core/models.py:838 +#: engine/core/models.py:849 msgid "product images" msgstr "Images du produit" -#: core/models.py:843 +#: engine/core/models.py:854 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 " @@ -2105,39 +2147,39 @@ msgstr "" "Elle s'intègre au catalogue de produits pour déterminer les articles " "concernés par la campagne." -#: core/models.py:855 +#: engine/core/models.py:866 msgid "percentage discount for the selected products" msgstr "Pourcentage de réduction pour les produits sélectionnés" -#: core/models.py:856 +#: engine/core/models.py:867 msgid "discount percentage" msgstr "Pourcentage de réduction" -#: core/models.py:861 +#: engine/core/models.py:872 msgid "provide a unique name for this promotion" msgstr "Donnez un nom unique à cette promotion" -#: core/models.py:862 +#: engine/core/models.py:873 msgid "promotion name" msgstr "Nom de la promotion" -#: core/models.py:868 +#: engine/core/models.py:879 msgid "promotion description" msgstr "Promotion description" -#: core/models.py:873 +#: engine/core/models.py:884 msgid "select which products are included in this promotion" msgstr "Sélectionnez les produits inclus dans cette promotion" -#: core/models.py:874 +#: engine/core/models.py:885 msgid "included products" msgstr "Produits inclus" -#: core/models.py:878 +#: engine/core/models.py:889 msgid "promotion" msgstr "Promotion" -#: core/models.py:889 +#: engine/core/models.py:900 msgid "" "Represents a user's wishlist for storing and managing desired products. The " "class provides functionality to manage a collection of products, supporting " @@ -2148,130 +2190,129 @@ 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." -#: core/models.py:901 +#: engine/core/models.py:912 msgid "products that the user has marked as wanted" msgstr "Produits que l'utilisateur a marqués comme souhaités" -#: core/models.py:909 +#: engine/core/models.py:920 msgid "user who owns this wishlist" msgstr "Utilisateur qui possède cette liste de souhaits" -#: core/models.py:910 +#: engine/core/models.py:921 msgid "wishlist owner" msgstr "Propriétaire de la liste de souhaits" -#: core/models.py:918 +#: engine/core/models.py:929 msgid "wishlist" msgstr "Liste de souhaits" -#: core/models.py:960 +#: engine/core/models.py:971 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." -#: core/models.py:973 +#: engine/core/models.py:984 msgid "documentary" msgstr "Documentaire" -#: core/models.py:974 +#: engine/core/models.py:985 msgid "documentaries" msgstr "Documentaires" -#: core/models.py:984 +#: engine/core/models.py:995 msgid "unresolved" msgstr "Non résolu" -#: core/models.py:989 +#: engine/core/models.py:1000 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." -#: core/models.py:1004 +#: engine/core/models.py:1015 msgid "address line for the customer" msgstr "Ligne d'adresse du client" -#: core/models.py:1005 +#: engine/core/models.py:1016 msgid "address line" msgstr "Ligne d'adresse" -#: core/models.py:1007 +#: engine/core/models.py:1018 msgid "street" msgstr "Rue" -#: core/models.py:1008 +#: engine/core/models.py:1019 msgid "district" msgstr "District" -#: core/models.py:1009 +#: engine/core/models.py:1020 msgid "city" msgstr "Ville" -#: core/models.py:1010 +#: engine/core/models.py:1021 msgid "region" msgstr "Région" -#: core/models.py:1011 +#: engine/core/models.py:1022 msgid "postal code" msgstr "Code postal" -#: core/models.py:1012 +#: engine/core/models.py:1023 msgid "country" msgstr "Pays" -#: core/models.py:1019 +#: engine/core/models.py:1030 msgid "geolocation point: (longitude, latitude)" msgstr "Point de géolocalisation (longitude, latitude)" -#: core/models.py:1022 +#: engine/core/models.py:1033 msgid "full JSON response from geocoder for this address" msgstr "Réponse JSON complète du géocodeur pour cette adresse" -#: core/models.py:1027 +#: engine/core/models.py:1038 msgid "stored JSON response from the geocoding service" msgstr "Réponse JSON stockée du service de géocodage" -#: core/models.py:1035 +#: engine/core/models.py:1046 msgid "address" msgstr "Adresse" -#: core/models.py:1036 +#: engine/core/models.py:1047 msgid "addresses" msgstr "Adresses" -#: core/models.py:1048 +#: engine/core/models.py:1059 msgid "" "Represents a promotional code that can be used for discounts, managing its " "validity, type of discount, and application. The PromoCode class stores " @@ -2282,83 +2323,80 @@ 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." -#: core/models.py:1062 +#: engine/core/models.py:1073 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" -#: core/models.py:1063 +#: engine/core/models.py:1074 msgid "promo code identifier" msgstr "Identifiant du code promotionnel" -#: core/models.py:1070 +#: engine/core/models.py:1081 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é" -#: core/models.py:1071 +#: engine/core/models.py:1082 msgid "fixed discount amount" msgstr "Montant de l'escompte fixe" -#: core/models.py:1077 +#: engine/core/models.py:1088 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é" -#: core/models.py:1078 +#: engine/core/models.py:1089 msgid "percentage discount" msgstr "Pourcentage de réduction" -#: core/models.py:1083 +#: engine/core/models.py:1094 msgid "timestamp when the promocode expires" msgstr "Date d'expiration du code promotionnel" -#: core/models.py:1084 +#: engine/core/models.py:1095 msgid "end validity time" msgstr "Heure de fin de validité" -#: core/models.py:1089 +#: engine/core/models.py:1100 msgid "timestamp from which this promocode is valid" msgstr "Date à partir de laquelle ce code promotionnel est valable" -#: core/models.py:1090 +#: engine/core/models.py:1101 msgid "start validity time" msgstr "Heure de début de validité" -#: core/models.py:1095 +#: engine/core/models.py:1106 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é." -#: core/models.py:1096 +#: engine/core/models.py:1107 msgid "usage timestamp" msgstr "Horodatage de l'utilisation" -#: core/models.py:1101 +#: engine/core/models.py:1112 msgid "user assigned to this promocode if applicable" msgstr "Utilisateur assigné à ce code promo, le cas échéant" -#: core/models.py:1102 +#: engine/core/models.py:1113 msgid "assigned user" msgstr "Utilisateur assigné" -#: core/models.py:1109 +#: engine/core/models.py:1120 msgid "promo code" msgstr "Code promo" -#: core/models.py:1110 +#: engine/core/models.py:1121 msgid "promo codes" msgstr "Codes promotionnels" -#: core/models.py:1125 +#: engine/core/models.py:1136 msgid "" "only one type of discount should be defined (amount or percent), but not " "both or neither." @@ -2366,172 +2404,172 @@ msgstr "" "Un seul type de remise doit être défini (montant ou pourcentage), mais pas " "les deux ni aucun des deux." -#: core/models.py:1146 +#: engine/core/models.py:1157 msgid "promocode already used" msgstr "Le code promotionnel a déjà été utilisé" -#: core/models.py:1162 +#: engine/core/models.py:1173 #, python-brace-format msgid "invalid discount type for promocode {self.uuid}" msgstr "Type de réduction non valide pour le code promo {self.uuid} !" -#: core/models.py:1171 +#: engine/core/models.py:1182 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." -#: core/models.py:1188 +#: engine/core/models.py:1199 msgid "the billing address used for this order" msgstr "L'adresse de facturation utilisée pour cette commande" -#: core/models.py:1196 +#: engine/core/models.py:1207 msgid "optional promo code applied to this order" msgstr "Code promo optionnel appliqué à cette commande" -#: core/models.py:1197 +#: engine/core/models.py:1208 msgid "applied promo code" msgstr "Code promo appliqué" -#: core/models.py:1205 +#: engine/core/models.py:1216 msgid "the shipping address used for this order" msgstr "L'adresse de livraison utilisée pour cette commande" -#: core/models.py:1206 +#: engine/core/models.py:1217 msgid "shipping address" msgstr "Adresse de livraison" -#: core/models.py:1212 +#: engine/core/models.py:1223 msgid "current status of the order in its lifecycle" msgstr "Statut actuel de la commande dans son cycle de vie" -#: core/models.py:1213 +#: engine/core/models.py:1224 msgid "order status" msgstr "Statut de la commande" -#: core/models.py:1218 core/models.py:1695 +#: engine/core/models.py:1229 engine/core/models.py:1755 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." -#: core/models.py:1224 +#: engine/core/models.py:1235 msgid "json representation of order attributes for this order" msgstr "Représentation JSON des attributs de cette commande" -#: core/models.py:1230 +#: engine/core/models.py:1241 msgid "the user who placed the order" msgstr "L'utilisateur qui a passé la commande" -#: core/models.py:1231 +#: engine/core/models.py:1242 msgid "user" msgstr "Utilisateur" -#: core/models.py:1237 +#: engine/core/models.py:1248 msgid "the timestamp when the order was finalized" msgstr "L'heure à laquelle la commande a été finalisée." -#: core/models.py:1238 +#: engine/core/models.py:1249 msgid "buy time" msgstr "Temps d'achat" -#: core/models.py:1245 +#: engine/core/models.py:1256 msgid "a human-readable identifier for the order" msgstr "Un identifiant lisible par l'homme pour la commande" -#: core/models.py:1246 +#: engine/core/models.py:1257 msgid "human readable id" msgstr "ID lisible par l'homme" -#: core/models.py:1252 +#: engine/core/models.py:1263 msgid "order" msgstr "Commande" -#: core/models.py:1294 +#: engine/core/models.py:1305 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 !" -#: core/models.py:1326 +#: engine/core/models.py:1337 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." -#: core/models.py:1331 +#: engine/core/models.py:1342 msgid "you cannot add inactive products to order" msgstr "Vous ne pouvez pas ajouter des produits inactifs à la commande" -#: core/models.py:1348 +#: engine/core/models.py:1359 msgid "you cannot add more products than available in stock" msgstr "" "Vous ne pouvez pas ajouter plus de produits que ceux disponibles en stock" -#: core/models.py:1370 core/models.py:1395 core/models.py:1403 +#: engine/core/models.py:1381 engine/core/models.py:1406 +#: engine/core/models.py:1414 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." -#: core/models.py:1391 +#: engine/core/models.py:1402 #, python-brace-format msgid "{name} does not exist with query <{query}>" msgstr "{name} n'existe pas avec la requête <{query}> !" -#: core/models.py:1423 +#: engine/core/models.py:1434 msgid "promocode does not exist" msgstr "Le code promotionnel n'existe pas" -#: core/models.py:1429 +#: engine/core/models.py:1440 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 !" -#: core/models.py:1448 +#: engine/core/models.py:1459 msgid "address does not exist" msgstr "L'adresse n'existe pas" -#: core/models.py:1469 core/models.py:1538 +#: engine/core/models.py:1480 engine/core/models.py:1549 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." -#: core/models.py:1472 core/models.py:1534 +#: engine/core/models.py:1483 engine/core/models.py:1545 msgid "invalid force value" msgstr "Valeur de force non valide" -#: core/models.py:1478 core/models.py:1541 +#: engine/core/models.py:1489 engine/core/models.py:1552 msgid "you cannot purchase an empty order!" msgstr "Vous ne pouvez pas acheter une commande vide !" -#: core/models.py:1497 +#: engine/core/models.py:1508 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." -#: core/models.py:1511 +#: engine/core/models.py:1522 msgid "a user without a balance cannot buy with balance" msgstr "Un utilisateur sans solde ne peut pas acheter avec un solde !" -#: core/models.py:1516 +#: engine/core/models.py:1527 msgid "insufficient funds to complete the order" msgstr "Insuffisance de fonds pour compléter la commande" -#: core/models.py:1550 +#: engine/core/models.py:1561 msgid "" "you cannot buy without registration, please provide the following " "information: customer name, customer email, customer phone number" @@ -2540,7 +2578,7 @@ msgstr "" "informations suivantes : nom du client, courriel du client, numéro de " "téléphone du client" -#: core/models.py:1559 +#: engine/core/models.py:1570 #, python-brace-format msgid "" "invalid payment method: {payment_method} from {available_payment_methods}" @@ -2548,160 +2586,7 @@ msgstr "" "Méthode de paiement non valide : {payment_method} de " "{available_payment_methods} !" -#: core/models.py:1668 -msgid "" -"Represents products associated with orders and their attributes. The " -"OrderProduct model maintains information about a product that is part of an " -"order, including details such as purchase price, quantity, product " -"attributes, and status. It manages notifications for the user and " -"administrators and handles operations such as returning the product balance " -"or adding feedback. This model also provides methods and properties that " -"support business logic, such as calculating the total price or generating a " -"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." - -#: core/models.py:1683 -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" - -#: core/models.py:1684 -msgid "purchase price at order time" -msgstr "Prix d'achat au moment de la commande" - -#: core/models.py:1689 -msgid "internal comments for admins about this ordered product" -msgstr "" -"Commentaires internes pour les administrateurs sur ce produit commandé" - -#: core/models.py:1690 -msgid "internal comments" -msgstr "Commentaires internes" - -#: core/models.py:1696 -msgid "user notifications" -msgstr "Notifications aux utilisateurs" - -#: core/models.py:1701 -msgid "json representation of this item's attributes" -msgstr "Représentation JSON des attributs de cet élément" - -#: core/models.py:1702 -msgid "ordered product attributes" -msgstr "Attributs du produit ordonnés" - -#: core/models.py:1707 -msgid "reference to the parent order that contains this product" -msgstr "Référence à l'ordre parent qui contient ce produit" - -#: core/models.py:1708 -msgid "parent order" -msgstr "Ordonnance parentale" - -#: core/models.py:1717 -msgid "the specific product associated with this order line" -msgstr "Le produit spécifique associé à cette ligne de commande" - -#: core/models.py:1724 -msgid "quantity of this specific product in the order" -msgstr "Quantité de ce produit spécifique dans la commande" - -#: core/models.py:1725 -msgid "product quantity" -msgstr "Quantité de produits" - -#: core/models.py:1732 -msgid "current status of this product in the order" -msgstr "Statut actuel de ce produit dans la commande" - -#: core/models.py:1733 -msgid "product line status" -msgstr "Statut de la ligne de produits" - -#: core/models.py:1798 -msgid "order product must have an order" -msgstr "Le produit doit être associé à une commande !" - -#: core/models.py:1800 -#, python-brace-format -msgid "wrong action specified for feedback: {action}" -msgstr "Mauvaise action spécifiée pour le retour d'information : {action} !" - -#: core/models.py:1814 -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." - -#: core/models.py:1820 -msgid "name" -msgstr "Nom" - -#: core/models.py:1821 -msgid "URL of the integration" -msgstr "URL de l'intégration" - -#: core/models.py:1822 -msgid "authentication credentials" -msgstr "Références d'authentification" - -#: core/models.py:1844 -msgid "you can only have one default CRM provider" -msgstr "Vous ne pouvez avoir qu'un seul fournisseur de CRM par défaut" - -#: core/models.py:1854 -msgid "CRM" -msgstr "CRM" - -#: core/models.py:1855 -msgid "CRMs" -msgstr "CRM" - -#: core/models.py:1867 -msgid "order CRM link" -msgstr "Lien CRM de la commande" - -#: core/models.py:1868 -msgid "orders CRM links" -msgstr "Liens CRM des commandes" - -#: core/models.py:1873 -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." -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 " -"d'accéder aux téléchargements liés aux produits de la commande. Elle " -"conserve des informations sur le produit de commande associé, le nombre de " -"téléchargements et la visibilité publique de l'actif. Elle comprend une " -"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." - -#: core/models.py:1887 -msgid "download" -msgstr "Télécharger" - -#: core/models.py:1888 -msgid "downloads" -msgstr "Téléchargements" - -#: core/models.py:1902 +#: engine/core/models.py:1685 msgid "" "Manages user feedback for products. This class is designed to capture and " "store user feedback for specific products that they have purchased. It " @@ -2717,109 +2602,256 @@ msgstr "" "La classe utilise des champs de base de données pour modéliser et gérer " "efficacement les données de feedback." -#: core/models.py:1914 +#: engine/core/models.py:1697 msgid "user-provided comments about their experience with the product" msgstr "Commentaires des utilisateurs sur leur expérience du produit" -#: core/models.py:1915 +#: engine/core/models.py:1698 msgid "feedback comments" msgstr "Commentaires" -#: core/models.py:1922 -msgid "" -"references the specific product in an order that this feedback is about" +#: engine/core/models.py:1705 +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." -#: core/models.py:1923 +#: engine/core/models.py:1706 msgid "related order product" msgstr "Produit de commande apparenté" -#: core/models.py:1928 +#: engine/core/models.py:1711 msgid "user-assigned rating for the product" msgstr "Note attribuée par l'utilisateur au produit" -#: core/models.py:1929 +#: engine/core/models.py:1712 msgid "product rating" msgstr "Evaluation du produit" -#: core/serializers/utility.py:89 +#: engine/core/models.py:1728 +msgid "" +"Represents products associated with orders and their attributes. The " +"OrderProduct model maintains information about a product that is part of an " +"order, including details such as purchase price, quantity, product " +"attributes, and status. It manages notifications for the user and " +"administrators and handles operations such as returning the product balance " +"or adding feedback. This model also provides methods and properties that " +"support business logic, such as calculating the total price or generating a " +"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." + +#: engine/core/models.py:1743 +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:1744 +msgid "purchase price at order time" +msgstr "Prix d'achat au moment de la commande" + +#: engine/core/models.py:1749 +msgid "internal comments for admins about this ordered product" +msgstr "Commentaires internes pour les administrateurs sur ce produit commandé" + +#: engine/core/models.py:1750 +msgid "internal comments" +msgstr "Commentaires internes" + +#: engine/core/models.py:1756 +msgid "user notifications" +msgstr "Notifications aux utilisateurs" + +#: engine/core/models.py:1761 +msgid "json representation of this item's attributes" +msgstr "Représentation JSON des attributs de cet élément" + +#: engine/core/models.py:1762 +msgid "ordered product attributes" +msgstr "Attributs du produit ordonnés" + +#: engine/core/models.py:1767 +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:1768 +msgid "parent order" +msgstr "Ordonnance parentale" + +#: engine/core/models.py:1777 +msgid "the specific product associated with this order line" +msgstr "Le produit spécifique associé à cette ligne de commande" + +#: engine/core/models.py:1784 +msgid "quantity of this specific product in the order" +msgstr "Quantité de ce produit spécifique dans la commande" + +#: engine/core/models.py:1785 +msgid "product quantity" +msgstr "Quantité de produits" + +#: engine/core/models.py:1792 +msgid "current status of this product in the order" +msgstr "Statut actuel de ce produit dans la commande" + +#: engine/core/models.py:1793 +msgid "product line status" +msgstr "Statut de la ligne de produits" + +#: engine/core/models.py:1858 +msgid "order product must have an order" +msgstr "Le produit doit être associé à une commande !" + +#: engine/core/models.py:1860 +#, 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:1874 +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:1880 +msgid "name" +msgstr "Nom" + +#: engine/core/models.py:1881 +msgid "URL of the integration" +msgstr "URL de l'intégration" + +#: engine/core/models.py:1882 +msgid "authentication credentials" +msgstr "Références d'authentification" + +#: engine/core/models.py:1904 +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:1914 +msgid "CRM" +msgstr "CRM" + +#: engine/core/models.py:1915 +msgid "CRMs" +msgstr "CRM" + +#: engine/core/models.py:1927 +msgid "order CRM link" +msgstr "Lien CRM de la commande" + +#: engine/core/models.py:1928 +msgid "orders CRM links" +msgstr "Liens CRM des commandes" + +#: engine/core/models.py:1933 +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." +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 " +"d'accéder aux téléchargements liés aux produits de la commande. Elle " +"conserve des informations sur le produit de commande associé, le nombre de " +"téléchargements et la visibilité publique de l'actif. Elle comprend une " +"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:1947 +msgid "download" +msgstr "Télécharger" + +#: engine/core/models.py:1948 +msgid "downloads" +msgstr "Téléchargements" + +#: engine/core/serializers/utility.py:89 msgid "" "you must provide a comment, rating, and order product uuid to add feedback." msgstr "" "vous devez fournir un commentaire, une note et l'uuid du produit commandé " "pour ajouter un commentaire." -#: core/signals.py:73 -msgid "error during promocode creation: {e!s}" -msgstr "Erreur lors de la création du promocode : {e!s}" - -#: core/sitemaps.py:25 +#: engine/core/sitemaps.py:25 msgid "Home" msgstr "Accueil" -#: core/sitemaps.py:30 +#: engine/core/sitemaps.py:30 msgid "Contact Us" msgstr "Nous contacter" -#: core/sitemaps.py:35 +#: engine/core/sitemaps.py:35 msgid "About Us" msgstr "À propos de nous" -#: core/templates/digital_order_created_email.html:7 -#: core/templates/digital_order_created_email.html:100 -#: core/templates/digital_order_delivered_email.html:6 -#: core/templates/shipped_order_created_email.html:7 -#: core/templates/shipped_order_created_email.html:99 -#: core/templates/shipped_order_delivered_email.html:7 -#: core/templates/shipped_order_delivered_email.html:99 +#: engine/core/templates/digital_order_created_email.html:7 +#: engine/core/templates/digital_order_created_email.html:100 +#: engine/core/templates/digital_order_delivered_email.html:6 +#: engine/core/templates/shipped_order_created_email.html:7 +#: engine/core/templates/shipped_order_created_email.html:99 +#: engine/core/templates/shipped_order_delivered_email.html:7 +#: engine/core/templates/shipped_order_delivered_email.html:99 msgid "order confirmation" msgstr "Confirmation de commande" -#: core/templates/digital_order_created_email.html:95 -#: core/templates/digital_order_delivered_email.html:94 -#: core/templates/promocode_granted_email.html:94 -#: core/templates/shipped_order_created_email.html:94 -#: core/templates/shipped_order_delivered_email.html:94 +#: engine/core/templates/digital_order_created_email.html:95 +#: engine/core/templates/digital_order_delivered_email.html:94 +#: engine/core/templates/promocode_granted_email.html:94 +#: engine/core/templates/shipped_order_created_email.html:94 +#: engine/core/templates/shipped_order_delivered_email.html:94 msgid "logo" msgstr "Logo" -#: core/templates/digital_order_created_email.html:101 -#: core/templates/shipped_order_created_email.html:100 -#: core/templates/shipped_order_delivered_email.html:100 +#: engine/core/templates/digital_order_created_email.html:101 +#: engine/core/templates/shipped_order_created_email.html:100 +#: engine/core/templates/shipped_order_delivered_email.html:100 #, python-format msgid "hello %(order.user.first_name)s," msgstr "Bonjour %(order.user.first_name)s," -#: core/templates/digital_order_created_email.html:102 +#: engine/core/templates/digital_order_created_email.html:102 #, 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 " "informer que nous avons pris en compte votre commande. Vous trouverez ci-" "dessous les détails de votre commande :" -#: core/templates/digital_order_created_email.html:112 -#: core/templates/digital_order_delivered_email.html:110 -#: core/templates/shipped_order_created_email.html:110 -#: core/templates/shipped_order_delivered_email.html:110 +#: engine/core/templates/digital_order_created_email.html:112 +#: engine/core/templates/digital_order_delivered_email.html:110 +#: engine/core/templates/shipped_order_created_email.html:110 +#: engine/core/templates/shipped_order_delivered_email.html:110 msgid "total" msgstr "Total" -#: core/templates/digital_order_created_email.html:125 -#: core/templates/digital_order_delivered_email.html:157 -#: core/templates/shipped_order_created_email.html:127 -#: core/templates/shipped_order_delivered_email.html:127 +#: engine/core/templates/digital_order_created_email.html:125 +#: engine/core/templates/digital_order_delivered_email.html:157 +#: engine/core/templates/shipped_order_created_email.html:127 +#: engine/core/templates/shipped_order_delivered_email.html:127 msgid "total price" msgstr "Prix total" -#: core/templates/digital_order_created_email.html:131 -#: core/templates/shipped_order_created_email.html:140 -#: core/templates/shipped_order_delivered_email.html:140 +#: engine/core/templates/digital_order_created_email.html:131 +#: engine/core/templates/shipped_order_created_email.html:140 +#: engine/core/templates/shipped_order_delivered_email.html:140 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" @@ -2828,28 +2860,28 @@ msgstr "" "Si vous avez des questions, n'hésitez pas à contacter notre support à " "%(config.EMAIL_HOST_USER)s." -#: core/templates/digital_order_created_email.html:133 +#: engine/core/templates/digital_order_created_email.html:133 #, python-format msgid "best regards,
the %(config.PROJECT_NAME)s team" msgstr "Meilleures salutations,
l'équipe %(config.PROJECT_NAME)s" -#: core/templates/digital_order_created_email.html:139 -#: core/templates/digital_order_delivered_email.html:171 -#: core/templates/promocode_granted_email.html:114 +#: engine/core/templates/digital_order_created_email.html:139 +#: engine/core/templates/digital_order_delivered_email.html:171 +#: engine/core/templates/promocode_granted_email.html:114 msgid "all rights reserved" msgstr "Tous droits réservés" -#: core/templates/digital_order_delivered_email.html:99 +#: engine/core/templates/digital_order_delivered_email.html:99 msgid "order delivered" msgstr "Commande livrée" -#: core/templates/digital_order_delivered_email.html:100 -#: core/templates/promocode_granted_email.html:100 +#: engine/core/templates/digital_order_delivered_email.html:100 +#: engine/core/templates/promocode_granted_email.html:100 #, python-format msgid "hello %(user_first_name)s," msgstr "Bonjour %(user_first_name)s," -#: core/templates/digital_order_delivered_email.html:101 +#: engine/core/templates/digital_order_delivered_email.html:101 #, python-format msgid "" "we have successfully processed your order №%(order_uuid)s! below are the\n" @@ -2858,7 +2890,7 @@ msgstr "" "Nous avons traité avec succès votre commande №%(order_uuid)s ! Vous " "trouverez ci-dessous les détails de votre commande :" -#: core/templates/digital_order_delivered_email.html:128 +#: engine/core/templates/digital_order_delivered_email.html:128 msgid "" "additional\n" " information" @@ -2866,13 +2898,13 @@ msgstr "" "informations\n" " complémentaires" -#: core/templates/digital_order_delivered_email.html:137 -#: core/templates/json_table_widget.html:6 +#: engine/core/templates/digital_order_delivered_email.html:137 +#: engine/core/templates/json_table_widget.html:6 msgid "value" msgstr "Valeur" -#: core/templates/digital_order_delivered_email.html:163 -#: core/templates/promocode_granted_email.html:106 +#: engine/core/templates/digital_order_delivered_email.html:163 +#: engine/core/templates/promocode_granted_email.html:106 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" @@ -2881,26 +2913,26 @@ msgstr "" "Si vous avez des questions, n'hésitez pas à contacter notre service " "d'assistance à %(contact_email)s." -#: core/templates/digital_order_delivered_email.html:165 -#: core/templates/promocode_granted_email.html:108 +#: engine/core/templates/digital_order_delivered_email.html:165 +#: engine/core/templates/promocode_granted_email.html:108 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "Meilleures salutations,
l'équipe %(project_name)s" -#: core/templates/json_table_widget.html:5 +#: engine/core/templates/json_table_widget.html:5 msgid "key" msgstr "Clé" -#: core/templates/json_table_widget.html:40 +#: engine/core/templates/json_table_widget.html:40 msgid "Add Row" msgstr "Ajouter une rangée" -#: core/templates/promocode_granted_email.html:6 -#: core/templates/promocode_granted_email.html:99 +#: engine/core/templates/promocode_granted_email.html:6 +#: engine/core/templates/promocode_granted_email.html:99 msgid "promocode granted" msgstr "Promocode granted" -#: core/templates/promocode_granted_email.html:101 +#: engine/core/templates/promocode_granted_email.html:101 msgid "" "Thank you for staying with us! We have granted you with a promocode\n" " for " @@ -2908,34 +2940,35 @@ msgstr "" "Merci de rester avec nous ! Nous vous avons accordé un code promo\n" " pour" -#: core/templates/shipped_order_created_email.html:101 -#: core/templates/shipped_order_delivered_email.html:101 +#: 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 " "confirmer votre achat. Vous trouverez ci-dessous les détails de votre " "commande :" -#: core/templates/shipped_order_created_email.html:123 -#: core/templates/shipped_order_delivered_email.html:123 +#: engine/core/templates/shipped_order_created_email.html:123 +#: engine/core/templates/shipped_order_delivered_email.html:123 msgid "shipping price" msgstr "Prix d'expédition" -#: core/templates/shipped_order_created_email.html:133 -#: core/templates/shipped_order_delivered_email.html:133 +#: engine/core/templates/shipped_order_created_email.html:133 +#: engine/core/templates/shipped_order_delivered_email.html:133 msgid "your order will be delivered to the following address:" msgstr "Votre commande sera livrée à l'adresse suivante :" -#: core/templates/shipped_order_created_email.html:142 -#: core/templates/shipped_order_delivered_email.html:142 +#: engine/core/templates/shipped_order_created_email.html:142 +#: engine/core/templates/shipped_order_delivered_email.html:142 #, python-format msgid "best regards,
The %(config.PROJECT_NAME)s team" msgstr "Meilleures salutations,
L'équipe %(config.PROJECT_NAME)s" -#: core/templates/shipped_order_created_email.html:147 -#: core/templates/shipped_order_delivered_email.html:147 +#: engine/core/templates/shipped_order_created_email.html:147 +#: engine/core/templates/shipped_order_delivered_email.html:147 msgid "" "all rights\n" " reserved" @@ -2943,52 +2976,52 @@ msgstr "" "tous les droits\n" " réservés" -#: core/utils/caching.py:44 +#: engine/core/utils/caching.py:44 msgid "both data and timeout are required" msgstr "Les données et le délai d'attente sont tous deux nécessaires" -#: core/utils/caching.py:46 +#: engine/core/utils/caching.py:46 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." -#: core/utils/emailing.py:27 +#: engine/core/utils/emailing.py:27 #, python-brace-format msgid "{config.PROJECT_NAME} | contact us initiated" msgstr "{config.PROJECT_NAME} | nous contacter initié" -#: core/utils/emailing.py:73 +#: engine/core/utils/emailing.py:73 #, python-brace-format msgid "{config.PROJECT_NAME} | order confirmation" msgstr "{config.PROJECT_NAME} | Confirmation de commande" -#: core/utils/emailing.py:105 +#: engine/core/utils/emailing.py:105 #, python-brace-format msgid "{config.PROJECT_NAME} | order delivered" msgstr "{config.PROJECT_NAME} | Commande livrée" -#: core/utils/emailing.py:188 +#: engine/core/utils/emailing.py:188 #, python-brace-format msgid "{config.PROJECT_NAME} | promocode granted" msgstr "{config.PROJECT_NAME} | promocode accordé" -#: core/utils/messages.py:3 +#: engine/core/utils/messages.py:3 msgid "you do not have permission to perform this action." msgstr "Vous n'êtes pas autorisé à effectuer cette action." -#: core/utils/nominatim.py:8 +#: engine/core/utils/nominatim.py:8 msgid "NOMINATIM_URL must be configured." msgstr "Le paramètre NOMINATIM_URL doit être configuré !" -#: core/validators.py:16 +#: engine/core/validators.py:16 #, python-brace-format msgid "image dimensions should not exceed w{max_width} x h{max_height} pixels" msgstr "" "Les dimensions de l'image ne doivent pas dépasser w{max_width} x " "h{max_height} pixels." -#: core/views.py:72 +#: engine/core/views.py:71 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." @@ -2996,28 +3029,28 @@ msgstr "" "Gère la demande d'index sitemap et renvoie une réponse XML. Il s'assure que " "la réponse inclut l'en-tête de type de contenu approprié pour XML." -#: core/views.py:87 +#: engine/core/views.py:86 msgid "" "Handles the detailed view response for a sitemap. This function processes " "the request, fetches the appropriate sitemap detail response, and sets the " "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." -#: core/views.py:116 +#: engine/core/views.py:115 msgid "" "Returns a list of supported languages and their corresponding information." msgstr "" "Renvoie une liste des langues prises en charge et des informations " "correspondantes." -#: core/views.py:148 +#: engine/core/views.py:147 msgid "Returns the parameters of the website as a JSON object." msgstr "Renvoie les paramètres du site web sous la forme d'un objet JSON." -#: core/views.py:167 +#: engine/core/views.py:166 msgid "" "Handles cache operations such as reading and setting cache data with a " "specified key and timeout." @@ -3025,11 +3058,11 @@ msgstr "" "Gère les opérations de cache telles que la lecture et la définition des " "données de cache avec une clé et un délai spécifiés." -#: core/views.py:194 +#: engine/core/views.py:193 msgid "Handles `contact us` form submissions." msgstr "Gère les soumissions du formulaire `contact us`." -#: core/views.py:215 +#: engine/core/views.py:214 msgid "" "Handles requests for processing and validating URLs from incoming POST " "requests." @@ -3037,66 +3070,75 @@ msgstr "" "Gère les demandes de traitement et de validation des URL à partir des " "requêtes POST entrantes." -#: core/views.py:255 +#: engine/core/views.py:254 msgid "Handles global search queries." msgstr "Traite les demandes de recherche globales." -#: core/views.py:270 +#: engine/core/views.py:269 msgid "Handles the logic of buying as a business without registration." msgstr "Gère la logique de l'achat en tant qu'entreprise sans enregistrement." -#: core/views.py:306 +#: engine/core/views.py:305 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." -#: core/views.py:316 +#: engine/core/views.py:315 msgid "order_product_uuid is required" msgstr "order_product_uuid est obligatoire" -#: core/views.py:322 +#: engine/core/views.py:321 msgid "you can only download the digital asset once" msgstr "Vous ne pouvez télécharger le bien numérique qu'une seule fois" -#: core/views.py:325 +#: engine/core/views.py:324 msgid "the order must be paid before downloading the digital asset" msgstr "la commande doit être payée avant le téléchargement du bien numérique" -#: core/views.py:331 +#: engine/core/views.py:330 msgid "the order product does not have a product" msgstr "Le produit de la commande n'a pas de produit" -#: core/views.py:369 +#: engine/core/views.py:368 msgid "favicon not found" msgstr "favicon introuvable" -#: core/views.py:374 +#: engine/core/views.py:373 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." -#: core/views.py:386 +#: engine/core/views.py:385 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." -#: core/views.py:399 +#: engine/core/views.py:398 msgid "Returns current version of the eVibes. " msgstr "Renvoie la version actuelle d'eVibes." -#: core/viewsets.py:137 +#: engine/core/viewsets.py:137 msgid "" "Defines a viewset for managing Evibes-related operations. The EvibesViewSet " "class inherits from ModelViewSet and provides functionality for handling " @@ -3111,13 +3153,12 @@ msgstr "" "l'action en cours, les autorisations personnalisables et les formats de " "rendu." -#: core/viewsets.py:157 +#: engine/core/viewsets.py:157 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 " @@ -3125,7 +3166,7 @@ msgstr "" "couche API de l'application et fournit un moyen normalisé de traiter les " "demandes et les réponses concernant les données de l'AttributeGroup." -#: core/viewsets.py:176 +#: engine/core/viewsets.py:176 msgid "" "Handles operations related to Attribute objects within the application. " "Provides a set of API endpoints to interact with Attribute data. This class " @@ -3142,22 +3183,21 @@ msgstr "" "récupération d'informations détaillées ou simplifiées en fonction de la " "demande." -#: core/viewsets.py:195 +#: engine/core/viewsets.py:195 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." -#: core/viewsets.py:214 +#: engine/core/viewsets.py:214 msgid "" "Manages views for Category-related operations. The CategoryViewSet class is " "responsible for handling operations related to the Category model in the " @@ -3166,13 +3206,13 @@ 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." -#: core/viewsets.py:326 +#: engine/core/viewsets.py:326 msgid "" "Represents a viewset for managing Brand instances. This class provides " "functionality for querying, filtering, and serializing Brand objects. It " @@ -3181,11 +3221,11 @@ 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." -#: core/viewsets.py:438 +#: engine/core/viewsets.py:438 msgid "" "Manages operations related to the `Product` model in the system. This class " "provides a viewset for managing products, including their filtering, " @@ -3200,10 +3240,10 @@ msgstr "" "sérialisation et les opérations sur des instances spécifiques. Elle s'étend " "à partir de `EvibesViewSet` 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." -#: core/viewsets.py:568 +#: engine/core/viewsets.py:568 msgid "" "Represents a viewset for managing Vendor objects. This viewset allows " "fetching, filtering, and serializing Vendor data. It defines the queryset, " @@ -3211,21 +3251,21 @@ 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 " "ressources relatives aux vendeurs par l'intermédiaire du cadre REST de " "Django." -#: core/viewsets.py:588 +#: engine/core/viewsets.py:588 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 `EvibesViewSet` 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 " @@ -3237,14 +3277,14 @@ msgstr "" "la classe de base `EvibesViewSet` et utilise le système de filtrage de " "Django pour l'interrogation des données." -#: core/viewsets.py:615 +#: engine/core/viewsets.py:615 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 " @@ -3257,26 +3297,26 @@ msgstr "" "autorisations en conséquence lors de l'interaction avec les données de la " "commande." -#: core/viewsets.py:813 +#: engine/core/viewsets.py:813 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." -#: core/viewsets.py:867 +#: engine/core/viewsets.py:867 msgid "Manages operations related to Product images in the application. " msgstr "Gère les opérations liées aux images des produits dans l'application." -#: core/viewsets.py:880 +#: engine/core/viewsets.py:880 msgid "" "Manages the retrieval and handling of PromoCode instances through various " "API actions." @@ -3284,20 +3324,20 @@ msgstr "" "Gère la récupération et le traitement des instances de PromoCode par le " "biais de diverses actions API." -#: core/viewsets.py:902 +#: engine/core/viewsets.py:902 msgid "Represents a view set for managing promotions. " msgstr "Représente un jeu de vues pour la gestion des promotions." -#: core/viewsets.py:915 +#: engine/core/viewsets.py:915 msgid "Handles operations related to Stock data in the system." msgstr "Gère les opérations liées aux données de stock dans le système." -#: core/viewsets.py:929 +#: engine/core/viewsets.py:929 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." @@ -3305,14 +3345,14 @@ 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." -#: core/viewsets.py:1044 +#: engine/core/viewsets.py:1044 msgid "" "This class provides viewset functionality for managing `Address` objects. " "The AddressViewSet class enables CRUD operations, filtering, and custom " @@ -3321,18 +3361,18 @@ 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." -#: core/viewsets.py:1111 +#: engine/core/viewsets.py:1111 #, python-brace-format msgid "Geocoding error: {e}" msgstr "Erreur de géocodage : {e}" -#: core/viewsets.py:1119 +#: engine/core/viewsets.py:1119 msgid "" "Handles operations related to Product Tags within the application. This " "class provides functionality for retrieving, filtering, and serializing " diff --git a/engine/core/locale/he_IL/LC_MESSAGES/django.mo b/engine/core/locale/he_IL/LC_MESSAGES/django.mo new file mode 100644 index 00000000..6d7e03b9 Binary files /dev/null and b/engine/core/locale/he_IL/LC_MESSAGES/django.mo differ diff --git a/core/locale/he_IL/LC_MESSAGES/django.po b/engine/core/locale/he_IL/LC_MESSAGES/django.po similarity index 69% rename from core/locale/he_IL/LC_MESSAGES/django.po rename to engine/core/locale/he_IL/LC_MESSAGES/django.po index b17741f6..e2ba2b72 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,176 +13,178 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: core/abstract.py:12 +#: engine/core/abstract.py:12 msgid "unique id" msgstr "מזהה ייחודי" -#: core/abstract.py:13 +#: engine/core/abstract.py:13 msgid "unique id is used to surely identify any database object" msgstr "מזהה ייחודי משמש לזיהוי ודאי של כל אובייקט במסד הנתונים." -#: core/abstract.py:20 +#: engine/core/abstract.py:20 msgid "is active" msgstr "פעיל" -#: core/abstract.py:21 +#: engine/core/abstract.py:21 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, אובייקט זה לא יהיה גלוי למשתמשים ללא ההרשאה הנדרשת." -#: core/abstract.py:23 core/choices.py:18 +#: engine/core/abstract.py:23 engine/core/choices.py:18 msgid "created" msgstr "נוצר" -#: core/abstract.py:23 +#: engine/core/abstract.py:23 msgid "when the object first appeared on the database" msgstr "כאשר האובייקט הופיע לראשונה במסד הנתונים" -#: core/abstract.py:24 +#: engine/core/abstract.py:24 msgid "modified" msgstr "משונה" -#: core/abstract.py:24 +#: engine/core/abstract.py:24 msgid "when the object was last modified" msgstr "מתי האובייקט נערך לאחרונה" -#: core/admin.py:68 +#: engine/core/admin.py:68 msgid "translations" msgstr "תרגומים" -#: core/admin.py:72 +#: engine/core/admin.py:72 msgid "general" msgstr "כללי" -#: core/admin.py:74 +#: engine/core/admin.py:74 msgid "relations" msgstr "יחסים" -#: core/admin.py:76 +#: engine/core/admin.py:76 msgid "additional info" msgstr "מידע נוסף" -#: core/admin.py:94 +#: engine/core/admin.py:94 msgid "metadata" msgstr "מטא-נתונים" -#: core/admin.py:101 +#: engine/core/admin.py:101 msgid "timestamps" msgstr "חותמות זמן" -#: core/admin.py:116 +#: engine/core/admin.py:116 #, python-format msgid "activate selected %(verbose_name_plural)s" msgstr "הפעל את %(verbose_name_plural)s שנבחר" -#: core/admin.py:121 +#: engine/core/admin.py:121 msgid "selected items have been activated." msgstr "הפריטים שנבחרו הופעלו!" -#: core/admin.py:127 +#: engine/core/admin.py:127 #, python-format msgid "deactivate selected %(verbose_name_plural)s" msgstr "השבת את %(verbose_name_plural)s שנבחר" -#: core/admin.py:132 +#: engine/core/admin.py:132 msgid "selected items have been deactivated." msgstr "פריטים נבחרים הושבתו!" -#: core/admin.py:144 core/graphene/object_types.py:582 -#: core/graphene/object_types.py:589 core/models.py:783 core/models.py:791 +#: engine/core/admin.py:144 engine/core/graphene/object_types.py:586 +#: engine/core/graphene/object_types.py:593 engine/core/models.py:794 +#: engine/core/models.py:802 msgid "attribute value" msgstr "ערך התכונה" -#: core/admin.py:145 core/graphene/object_types.py:75 core/models.py:792 +#: engine/core/admin.py:145 engine/core/graphene/object_types.py:75 +#: engine/core/models.py:803 msgid "attribute values" msgstr "ערכי תכונות" -#: core/admin.py:156 +#: engine/core/admin.py:156 msgid "image" msgstr "תמונה" -#: core/admin.py:157 core/graphene/object_types.py:474 +#: engine/core/admin.py:157 engine/core/graphene/object_types.py:474 msgid "images" msgstr "תמונות" -#: core/admin.py:168 core/models.py:559 +#: engine/core/admin.py:169 engine/core/models.py:559 msgid "stock" msgstr "מלאי" -#: core/admin.py:169 core/graphene/object_types.py:636 +#: engine/core/admin.py:170 engine/core/graphene/object_types.py:640 msgid "stocks" msgstr "מניות" -#: core/admin.py:182 core/models.py:1744 +#: engine/core/admin.py:183 engine/core/models.py:1804 msgid "order product" msgstr "הזמן מוצר" -#: core/admin.py:183 core/graphene/object_types.py:389 core/models.py:1745 +#: engine/core/admin.py:184 engine/core/graphene/object_types.py:389 +#: engine/core/models.py:1805 msgid "order products" msgstr "הזמנת מוצרים" -#: core/admin.py:196 core/admin.py:197 +#: engine/core/admin.py:197 engine/core/admin.py:198 msgid "children" msgstr "ילדים" -#: core/admin.py:965 +#: engine/core/admin.py:969 msgid "Config" msgstr "תצורה" -#: core/apps.py:8 +#: engine/core/apps.py:8 msgid "core" msgstr "ליבה" -#: core/choices.py:4 core/choices.py:20 +#: engine/core/choices.py:4 engine/core/choices.py:20 msgid "finished" msgstr "סיימתי" -#: core/choices.py:5 core/choices.py:19 +#: engine/core/choices.py:5 engine/core/choices.py:19 msgid "delivering" msgstr "משלוח" -#: core/choices.py:6 +#: engine/core/choices.py:6 msgid "delivered" msgstr "נמסר" -#: core/choices.py:7 +#: engine/core/choices.py:7 msgid "canceled" msgstr "בוטל" -#: core/choices.py:8 core/choices.py:16 core/choices.py:24 +#: engine/core/choices.py:8 engine/core/choices.py:16 engine/core/choices.py:24 msgid "failed" msgstr "נכשל" -#: core/choices.py:9 core/choices.py:15 +#: engine/core/choices.py:9 engine/core/choices.py:15 msgid "pending" msgstr "בהמתנה" -#: core/choices.py:10 +#: engine/core/choices.py:10 msgid "accepted" msgstr "התקבל" -#: core/choices.py:11 +#: engine/core/choices.py:11 msgid "money returned" msgstr "החזר כספי" -#: core/choices.py:17 +#: engine/core/choices.py:17 msgid "payment" msgstr "תשלום" -#: core/choices.py:21 +#: engine/core/choices.py:21 msgid "momental" msgstr "Momental" -#: core/choices.py:24 +#: engine/core/choices.py:24 msgid "successful" msgstr "מוצלח" -#: core/docs/drf/views.py:17 core/graphene/mutations.py:38 +#: engine/core/docs/drf/views.py:17 engine/core/graphene/mutations.py:38 msgid "cache I/O" msgstr "קלט/פלט מטמון" -#: core/docs/drf/views.py:19 +#: engine/core/docs/drf/views.py:19 msgid "" "apply only a key to read permitted data from cache.\n" "apply key, data and timeout with authentication to write data to cache." @@ -190,1247 +192,1283 @@ msgstr "" "החל רק מפתח לקריאת נתונים מותרים מהמטמון. החל מפתח, נתונים וזמן המתנה עם " "אימות כדי לכתוב נתונים למטמון." -#: core/docs/drf/views.py:32 +#: engine/core/docs/drf/views.py:32 msgid "get a list of supported languages" msgstr "קבל רשימה של השפות הנתמכות" -#: core/docs/drf/views.py:41 +#: engine/core/docs/drf/views.py:41 msgid "get application's exposable parameters" msgstr "קבל את הפרמטרים החשופים של היישום" -#: core/docs/drf/views.py:48 +#: engine/core/docs/drf/views.py:48 msgid "send a message to the support team" msgstr "שלח הודעה לצוות התמיכה" -#: core/docs/drf/views.py:59 core/graphene/mutations.py:58 +#: engine/core/docs/drf/views.py:59 engine/core/graphene/mutations.py:58 msgid "request a CORSed URL" msgstr "בקש כתובת URL של CORS. מותר להשתמש רק ב-https." -#: core/docs/drf/views.py:85 +#: engine/core/docs/drf/views.py:85 msgid "global search endpoint to query across project's tables" msgstr "נקודת קצה לחיפוש גלובלי לשאילתות בטבלאות הפרויקט" -#: core/docs/drf/views.py:91 +#: engine/core/docs/drf/views.py:91 msgid "purchase an order as a business" msgstr "רכשו הזמנה כעסק" -#: core/docs/drf/views.py:98 +#: engine/core/docs/drf/views.py:98 msgid "" "purchase an order as a business, using the provided `products` with " "`product_uuid` and `attributes`." msgstr "" "רכשו הזמנה כעסק, באמצעות `products` המסופק עם `product_uuid` ו-`attributes`." -#: core/docs/drf/viewsets.py:58 +#: engine/core/docs/drf/viewsets.py:58 msgid "list all attribute groups (simple view)" msgstr "הצג את כל קבוצות התכונות (תצוגה פשוטה)" -#: core/docs/drf/viewsets.py:62 +#: engine/core/docs/drf/viewsets.py:62 msgid "retrieve a single attribute group (detailed view)" msgstr "איתור קבוצת תכונות אחת (תצוגה מפורטת)" -#: core/docs/drf/viewsets.py:66 +#: engine/core/docs/drf/viewsets.py:66 msgid "create an attribute group" msgstr "צור קבוצת תכונות" -#: core/docs/drf/viewsets.py:70 +#: engine/core/docs/drf/viewsets.py:70 msgid "delete an attribute group" msgstr "מחיקת קבוצת תכונות" -#: core/docs/drf/viewsets.py:74 +#: engine/core/docs/drf/viewsets.py:74 msgid "rewrite an existing attribute group saving non-editables" msgstr "שכתוב קבוצת תכונות קיימת תוך שמירת תכונות שאינן ניתנות לעריכה" -#: core/docs/drf/viewsets.py:78 -msgid "" -"rewrite some fields of an existing attribute group saving non-editables" +#: engine/core/docs/drf/viewsets.py:78 +msgid "rewrite some fields of an existing attribute group saving non-editables" msgstr "" "שכתוב שדות מסוימים בקבוצת תכונות קיימת תוך שמירת תכונות שאינן ניתנות לעריכה" -#: core/docs/drf/viewsets.py:85 +#: engine/core/docs/drf/viewsets.py:85 msgid "list all attributes (simple view)" msgstr "הצג את כל התכונות (תצוגה פשוטה)" -#: core/docs/drf/viewsets.py:89 +#: engine/core/docs/drf/viewsets.py:89 msgid "retrieve a single attribute (detailed view)" msgstr "איתור תכונה בודדת (תצוגה מפורטת)" -#: core/docs/drf/viewsets.py:93 +#: engine/core/docs/drf/viewsets.py:93 msgid "create an attribute" msgstr "צור תכונה" -#: core/docs/drf/viewsets.py:97 +#: engine/core/docs/drf/viewsets.py:97 msgid "delete an attribute" msgstr "מחיקת תכונה" -#: core/docs/drf/viewsets.py:101 +#: engine/core/docs/drf/viewsets.py:101 msgid "rewrite an existing attribute saving non-editables" msgstr "שכתוב תכונה קיימת תוך שמירת תכונות שאינן ניתנות לעריכה" -#: core/docs/drf/viewsets.py:105 +#: engine/core/docs/drf/viewsets.py:105 msgid "rewrite some fields of an existing attribute saving non-editables" msgstr "שכתוב שדות מסוימים של תכונה קיימת תוך שמירת שדות שאינם ניתנים לעריכה" -#: core/docs/drf/viewsets.py:112 +#: engine/core/docs/drf/viewsets.py:112 msgid "list all attribute values (simple view)" msgstr "רשימת כל ערכי התכונות (תצוגה פשוטה)" -#: core/docs/drf/viewsets.py:116 +#: engine/core/docs/drf/viewsets.py:116 msgid "retrieve a single attribute value (detailed view)" msgstr "איתור ערך תכונה בודד (תצוגה מפורטת)" -#: core/docs/drf/viewsets.py:120 +#: engine/core/docs/drf/viewsets.py:120 msgid "create an attribute value" msgstr "צור ערך תכונה" -#: core/docs/drf/viewsets.py:124 +#: engine/core/docs/drf/viewsets.py:124 msgid "delete an attribute value" msgstr "מחיקת ערך תכונה" -#: core/docs/drf/viewsets.py:128 +#: engine/core/docs/drf/viewsets.py:128 msgid "rewrite an existing attribute value saving non-editables" msgstr "שכתוב ערך תכונה קיים תוך שמירת תכונות שאינן ניתנות לעריכה" -#: core/docs/drf/viewsets.py:132 -msgid "" -"rewrite some fields of an existing attribute value saving non-editables" +#: engine/core/docs/drf/viewsets.py:132 +msgid "rewrite some fields of an existing attribute value saving non-editables" msgstr "" "שכתוב שדות מסוימים של ערך תכונה קיים תוך שמירת שדות שאינם ניתנים לעריכה" -#: core/docs/drf/viewsets.py:139 core/docs/drf/viewsets.py:140 +#: engine/core/docs/drf/viewsets.py:139 engine/core/docs/drf/viewsets.py:140 msgid "list all categories (simple view)" msgstr "הצג את כל הקטגוריות (תצוגה פשוטה)" -#: core/docs/drf/viewsets.py:144 core/docs/drf/viewsets.py:145 +#: engine/core/docs/drf/viewsets.py:144 engine/core/docs/drf/viewsets.py:145 msgid "retrieve a single category (detailed view)" msgstr "איתור קטגוריה אחת (תצוגה מפורטת)" -#: core/docs/drf/viewsets.py:149 core/docs/drf/viewsets.py:150 -msgid "create a category" -msgstr "צור קטגוריה" - -#: core/docs/drf/viewsets.py:154 core/docs/drf/viewsets.py:155 -msgid "delete a category" -msgstr "מחק קטגוריה" - -#: core/docs/drf/viewsets.py:159 core/docs/drf/viewsets.py:160 -msgid "rewrite an existing category saving non-editables" -msgstr "שכתוב קטגוריה קיימת תוך שמירת פריטים שאינם ניתנים לעריכה" - -#: core/docs/drf/viewsets.py:164 core/docs/drf/viewsets.py:165 -msgid "rewrite some fields of an existing category saving non-editables" -msgstr "שכתוב שדות מסוימים בקטגוריה קיימת תוך שמירת שדות שאינם ניתנים לעריכה" - -#: core/docs/drf/viewsets.py:169 core/docs/drf/viewsets.py:501 -#: core/graphene/object_types.py:117 core/graphene/object_types.py:207 -#: core/graphene/object_types.py:482 -msgid "SEO Meta snapshot" -msgstr "תמונת מצב SEO Meta" - -#: core/docs/drf/viewsets.py:170 -msgid "returns a snapshot of the category's SEO meta data" -msgstr "מחזיר תמונת מצב של מטא-נתוני SEO של הקטגוריה" - -#: core/docs/drf/viewsets.py:175 +#: engine/core/docs/drf/viewsets.py:150 engine/core/docs/drf/viewsets.py:183 msgid "Category UUID or slug" msgstr "קטגוריה UUID או slug" -#: core/docs/drf/viewsets.py:188 +#: engine/core/docs/drf/viewsets.py:157 engine/core/docs/drf/viewsets.py:158 +msgid "create a category" +msgstr "צור קטגוריה" + +#: engine/core/docs/drf/viewsets.py:162 engine/core/docs/drf/viewsets.py:163 +msgid "delete a category" +msgstr "מחק קטגוריה" + +#: engine/core/docs/drf/viewsets.py:167 engine/core/docs/drf/viewsets.py:168 +msgid "rewrite an existing category saving non-editables" +msgstr "שכתוב קטגוריה קיימת תוך שמירת פריטים שאינם ניתנים לעריכה" + +#: engine/core/docs/drf/viewsets.py:172 engine/core/docs/drf/viewsets.py:173 +msgid "rewrite some fields of an existing category saving non-editables" +msgstr "שכתוב שדות מסוימים בקטגוריה קיימת תוך שמירת שדות שאינם ניתנים לעריכה" + +#: engine/core/docs/drf/viewsets.py:177 engine/core/docs/drf/viewsets.py:517 +#: engine/core/graphene/object_types.py:117 +#: engine/core/graphene/object_types.py:207 +#: engine/core/graphene/object_types.py:482 +msgid "SEO Meta snapshot" +msgstr "תמונת מצב SEO Meta" + +#: engine/core/docs/drf/viewsets.py:178 +msgid "returns a snapshot of the category's SEO meta data" +msgstr "מחזיר תמונת מצב של מטא-נתוני SEO של הקטגוריה" + +#: engine/core/docs/drf/viewsets.py:196 msgid "list all orders (simple view)" msgstr "הצג את כל הקטגוריות (תצוגה פשוטה)" -#: core/docs/drf/viewsets.py:189 +#: engine/core/docs/drf/viewsets.py:197 msgid "for non-staff users, only their own orders are returned." msgstr "למשתמשים שאינם אנשי צוות, מוצגות רק ההזמנות שלהם." -#: core/docs/drf/viewsets.py:195 +#: engine/core/docs/drf/viewsets.py:203 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" -#: core/docs/drf/viewsets.py:202 +#: engine/core/docs/drf/viewsets.py:210 msgid "Filter orders with buy_time >= this ISO 8601 datetime" msgstr "סנן הזמנות עם buy_time >= תאריך ושעה זה ב-ISO 8601" -#: core/docs/drf/viewsets.py:207 +#: engine/core/docs/drf/viewsets.py:215 msgid "Filter orders with buy_time <= this ISO 8601 datetime" msgstr "סנן הזמנות עם buy_time <= תאריך ושעה זה ב-ISO 8601" -#: core/docs/drf/viewsets.py:212 +#: engine/core/docs/drf/viewsets.py:220 msgid "Filter by exact order UUID" msgstr "סינון לפי UUID של הזמנה מדויק" -#: core/docs/drf/viewsets.py:217 +#: engine/core/docs/drf/viewsets.py:225 msgid "Filter by exact human-readable order ID" msgstr "סינון לפי מספר הזמנה מדויק הניתן לקריאה על ידי בני אדם" -#: core/docs/drf/viewsets.py:222 +#: engine/core/docs/drf/viewsets.py:230 msgid "Filter by user's email (case-insensitive exact match)" msgstr "" "סינון לפי כתובת הדוא\"ל של המשתמש (התאמה מדויקת ללא הבחנה בין אותיות רישיות " "לאותיות קטנות)" -#: core/docs/drf/viewsets.py:227 +#: engine/core/docs/drf/viewsets.py:235 msgid "Filter by user's UUID" msgstr "סינון לפי UUID של המשתמש" -#: core/docs/drf/viewsets.py:232 +#: engine/core/docs/drf/viewsets.py:240 msgid "Filter by order status (case-insensitive substring match)" msgstr "" "סינון לפי סטטוס הזמנה (התאמת תת-מחרוזת ללא הבחנה בין אותיות גדולות וקטנות)" -#: core/docs/drf/viewsets.py:238 +#: engine/core/docs/drf/viewsets.py:246 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')." -#: core/docs/drf/viewsets.py:247 +#: engine/core/docs/drf/viewsets.py:255 msgid "retrieve a single order (detailed view)" msgstr "איתור קטגוריה אחת (תצוגה מפורטת)" -#: core/docs/drf/viewsets.py:251 +#: engine/core/docs/drf/viewsets.py:260 +msgid "Order UUID or human-readable id" +msgstr "הזמן UUID או מזהה קריא לאדם" + +#: engine/core/docs/drf/viewsets.py:267 msgid "create an order" msgstr "צור תכונה" -#: core/docs/drf/viewsets.py:252 +#: engine/core/docs/drf/viewsets.py:268 msgid "doesn't work for non-staff users." msgstr "לא עובד עבור משתמשים שאינם עובדים." -#: core/docs/drf/viewsets.py:256 +#: engine/core/docs/drf/viewsets.py:272 msgid "delete an order" msgstr "מחיקת תכונה" -#: core/docs/drf/viewsets.py:260 +#: engine/core/docs/drf/viewsets.py:276 msgid "rewrite an existing order saving non-editables" msgstr "שכתוב קטגוריה קיימת תוך שמירת פריטים שאינם ניתנים לעריכה" -#: core/docs/drf/viewsets.py:264 +#: engine/core/docs/drf/viewsets.py:280 msgid "rewrite some fields of an existing order saving non-editables" msgstr "שכתוב שדות מסוימים בקטגוריה קיימת תוך שמירת שדות שאינם ניתנים לעריכה" -#: core/docs/drf/viewsets.py:268 +#: engine/core/docs/drf/viewsets.py:284 msgid "purchase an order" msgstr "מחיר הרכישה בעת ההזמנה" -#: core/docs/drf/viewsets.py:270 +#: engine/core/docs/drf/viewsets.py:286 msgid "" "finalizes the order purchase. if `force_balance` is used, the purchase is " "completed using the user's balance; if `force_payment` is used, a " "transaction is initiated." msgstr "" -"מסיים את רכישת ההזמנה. אם נעשה שימוש ב-`force_balance`, הרכישה תושלם באמצעות" -" היתרה של המשתמש; אם נעשה שימוש ב-`force_payment`, תתבצע עסקה." +"מסיים את רכישת ההזמנה. אם נעשה שימוש ב-`force_balance`, הרכישה תושלם באמצעות " +"היתרה של המשתמש; אם נעשה שימוש ב-`force_payment`, תתבצע עסקה." -#: core/docs/drf/viewsets.py:282 core/graphene/mutations.py:335 +#: engine/core/docs/drf/viewsets.py:298 engine/core/graphene/mutations.py:335 msgid "purchase an order without account creation" msgstr "לרכוש הזמנה ללא יצירת חשבון" -#: core/docs/drf/viewsets.py:283 +#: engine/core/docs/drf/viewsets.py:299 msgid "finalizes the order purchase for a non-registered user." msgstr "מסיים את רכישת ההזמנה עבור משתמש לא רשום." -#: core/docs/drf/viewsets.py:291 +#: engine/core/docs/drf/viewsets.py:307 msgid "add product to order" msgstr "הוסף מוצר להזמנה" -#: core/docs/drf/viewsets.py:292 +#: engine/core/docs/drf/viewsets.py:308 msgid "" "adds a product to an order using the provided `product_uuid` and " "`attributes`." msgstr "מוסיף מוצר להזמנה באמצעות `product_uuid` ו-`attributes` שסופקו." -#: core/docs/drf/viewsets.py:297 +#: engine/core/docs/drf/viewsets.py:313 msgid "add a list of products to order, quantities will not count" msgstr "הוסף רשימת מוצרים להזמנה, הכמויות לא ייספרו" -#: core/docs/drf/viewsets.py:298 +#: engine/core/docs/drf/viewsets.py:314 msgid "" "adds a list of products to an order using the provided `product_uuid` and " "`attributes`." msgstr "" "מוסיף רשימת מוצרים להזמנה באמצעות `product_uuid` ו-`attributes` שסופקו." -#: core/docs/drf/viewsets.py:303 +#: engine/core/docs/drf/viewsets.py:319 msgid "remove product from order" msgstr "הסר מוצר מההזמנה" -#: core/docs/drf/viewsets.py:304 +#: engine/core/docs/drf/viewsets.py:320 msgid "" "removes a product from an order using the provided `product_uuid` and " "`attributes`." msgstr "מסיר מוצר מהזמנה באמצעות `product_uuid` ו-`attributes` שסופקו." -#: core/docs/drf/viewsets.py:309 +#: engine/core/docs/drf/viewsets.py:325 msgid "remove product from order, quantities will not count" msgstr "הסר מוצר מההזמנה, הכמויות לא ייספרו" -#: core/docs/drf/viewsets.py:310 +#: engine/core/docs/drf/viewsets.py:326 msgid "" "removes a list of products from an order using the provided `product_uuid` " "and `attributes`" -msgstr "" -"מסיר רשימת מוצרים מהזמנה באמצעות `product_uuid` ו-`attributes` שסופקו." +msgstr "מסיר רשימת מוצרים מהזמנה באמצעות `product_uuid` ו-`attributes` שסופקו." -#: core/docs/drf/viewsets.py:318 +#: engine/core/docs/drf/viewsets.py:334 msgid "list all wishlists (simple view)" msgstr "הצג את כל התכונות (תצוגה פשוטה)" -#: core/docs/drf/viewsets.py:319 +#: engine/core/docs/drf/viewsets.py:335 msgid "for non-staff users, only their own wishlists are returned." msgstr "למשתמשים שאינם אנשי צוות, מוצגות רק רשימות המשאלות שלהם." -#: core/docs/drf/viewsets.py:323 +#: engine/core/docs/drf/viewsets.py:339 msgid "retrieve a single wishlist (detailed view)" msgstr "איתור תכונה בודדת (תצוגה מפורטת)" -#: core/docs/drf/viewsets.py:327 +#: engine/core/docs/drf/viewsets.py:343 msgid "create an wishlist" msgstr "צור תכונה" -#: core/docs/drf/viewsets.py:328 +#: engine/core/docs/drf/viewsets.py:344 msgid "Doesn't work for non-staff users." msgstr "לא עובד עבור משתמשים שאינם עובדים." -#: core/docs/drf/viewsets.py:332 +#: engine/core/docs/drf/viewsets.py:348 msgid "delete an wishlist" msgstr "מחיקת תכונה" -#: core/docs/drf/viewsets.py:336 +#: engine/core/docs/drf/viewsets.py:352 msgid "rewrite an existing wishlist saving non-editables" msgstr "שכתוב תכונה קיימת תוך שמירת תכונות שאינן ניתנות לעריכה" -#: core/docs/drf/viewsets.py:340 +#: engine/core/docs/drf/viewsets.py:356 msgid "rewrite some fields of an existing wishlist saving non-editables" msgstr "שכתוב שדות מסוימים של תכונה קיימת תוך שמירת שדות שאינם ניתנים לעריכה" -#: core/docs/drf/viewsets.py:344 +#: engine/core/docs/drf/viewsets.py:360 msgid "add product to wishlist" msgstr "הוסף מוצר להזמנה" -#: core/docs/drf/viewsets.py:345 +#: engine/core/docs/drf/viewsets.py:361 msgid "adds a product to an wishlist using the provided `product_uuid`" msgstr "מוסיף מוצר לרשימת המשאלות באמצעות `product_uuid` שסופק." -#: core/docs/drf/viewsets.py:350 +#: engine/core/docs/drf/viewsets.py:366 msgid "remove product from wishlist" msgstr "הסר מוצר מרשימת המשאלות" -#: core/docs/drf/viewsets.py:351 +#: engine/core/docs/drf/viewsets.py:367 msgid "removes a product from an wishlist using the provided `product_uuid`" msgstr "מסיר מוצר מרשימת המשאלות באמצעות `product_uuid` שסופק." -#: core/docs/drf/viewsets.py:356 +#: engine/core/docs/drf/viewsets.py:372 msgid "add many products to wishlist" msgstr "הוסף מוצרים רבים לרשימת המשאלות" -#: core/docs/drf/viewsets.py:357 +#: engine/core/docs/drf/viewsets.py:373 msgid "adds many products to an wishlist using the provided `product_uuids`" msgstr "מוסיף מוצרים רבים לרשימת המשאלות באמצעות `product_uuids` שסופק." -#: core/docs/drf/viewsets.py:362 +#: engine/core/docs/drf/viewsets.py:378 msgid "remove many products from wishlist" msgstr "הסר מוצר מההזמנה" -#: core/docs/drf/viewsets.py:363 +#: engine/core/docs/drf/viewsets.py:379 msgid "" "removes many products from an wishlist using the provided `product_uuids`" msgstr "מסיר מוצרים רבים מרשימת המשאלות באמצעות `product_uuids` שסופק." -#: core/docs/drf/viewsets.py:370 +#: engine/core/docs/drf/viewsets.py:386 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`" -#: core/docs/drf/viewsets.py:386 core/docs/drf/viewsets.py:387 +#: engine/core/docs/drf/viewsets.py:402 engine/core/docs/drf/viewsets.py:403 msgid "list all products (simple view)" msgstr "הצג את כל המוצרים (תצוגה פשוטה)" -#: core/docs/drf/viewsets.py:392 +#: engine/core/docs/drf/viewsets.py:408 msgid "(exact) Product UUID" msgstr "(מדויק) UUID של המוצר" -#: core/docs/drf/viewsets.py:399 +#: engine/core/docs/drf/viewsets.py:415 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" -#: core/docs/drf/viewsets.py:413 core/docs/drf/viewsets.py:414 +#: engine/core/docs/drf/viewsets.py:429 engine/core/docs/drf/viewsets.py:430 msgid "retrieve a single product (detailed view)" msgstr "איתור מוצר בודד (תצוגה מפורטת)" -#: core/docs/drf/viewsets.py:419 core/docs/drf/viewsets.py:443 -#: core/docs/drf/viewsets.py:459 core/docs/drf/viewsets.py:475 -#: core/docs/drf/viewsets.py:491 core/docs/drf/viewsets.py:507 +#: engine/core/docs/drf/viewsets.py:435 engine/core/docs/drf/viewsets.py:459 +#: engine/core/docs/drf/viewsets.py:475 engine/core/docs/drf/viewsets.py:491 +#: engine/core/docs/drf/viewsets.py:507 engine/core/docs/drf/viewsets.py:523 msgid "Product UUID or slug" msgstr "UUID או Slug של המוצר" -#: core/docs/drf/viewsets.py:429 core/docs/drf/viewsets.py:430 +#: engine/core/docs/drf/viewsets.py:445 engine/core/docs/drf/viewsets.py:446 msgid "create a product" msgstr "צור מוצר" -#: core/docs/drf/viewsets.py:437 core/docs/drf/viewsets.py:438 +#: engine/core/docs/drf/viewsets.py:453 engine/core/docs/drf/viewsets.py:454 msgid "rewrite an existing product, preserving non-editable fields" msgstr "שכתוב מוצר קיים, תוך שמירה על שדות שאינם ניתנים לעריכה" -#: core/docs/drf/viewsets.py:453 core/docs/drf/viewsets.py:454 +#: engine/core/docs/drf/viewsets.py:469 engine/core/docs/drf/viewsets.py:470 msgid "" "update some fields of an existing product, preserving non-editable fields" msgstr "עדכן שדות מסוימים של מוצר קיים, תוך שמירה על שדות שאינם ניתנים לעריכה" -#: core/docs/drf/viewsets.py:469 core/docs/drf/viewsets.py:470 +#: engine/core/docs/drf/viewsets.py:485 engine/core/docs/drf/viewsets.py:486 msgid "delete a product" msgstr "מחק מוצר" -#: core/docs/drf/viewsets.py:485 core/docs/drf/viewsets.py:486 +#: engine/core/docs/drf/viewsets.py:501 engine/core/docs/drf/viewsets.py:502 msgid "lists all permitted feedbacks for a product" msgstr "מפרט את כל המשובים המותרים עבור מוצר" -#: core/docs/drf/viewsets.py:502 +#: engine/core/docs/drf/viewsets.py:518 msgid "returns a snapshot of the product's SEO meta data" msgstr "מחזיר תמונת מצב של מטא-נתוני SEO של המוצר" -#: core/docs/drf/viewsets.py:520 +#: engine/core/docs/drf/viewsets.py:536 msgid "list all addresses" msgstr "רשימת כל הכתובות" -#: core/docs/drf/viewsets.py:527 +#: engine/core/docs/drf/viewsets.py:543 msgid "retrieve a single address" msgstr "איתור כתובת אחת" -#: core/docs/drf/viewsets.py:534 +#: engine/core/docs/drf/viewsets.py:550 msgid "create a new address" msgstr "צור כתובת חדשה" -#: core/docs/drf/viewsets.py:542 +#: engine/core/docs/drf/viewsets.py:558 msgid "delete an address" msgstr "מחק כתובת" -#: core/docs/drf/viewsets.py:549 +#: engine/core/docs/drf/viewsets.py:565 msgid "update an entire address" msgstr "עדכון כתובת שלמה" -#: core/docs/drf/viewsets.py:557 +#: engine/core/docs/drf/viewsets.py:573 msgid "partially update an address" msgstr "עדכון חלקי של כתובת" -#: core/docs/drf/viewsets.py:565 +#: engine/core/docs/drf/viewsets.py:581 msgid "autocomplete address suggestions" msgstr "השלמת כתובת אוטומטית" -#: core/docs/drf/viewsets.py:570 +#: engine/core/docs/drf/viewsets.py:586 msgid "raw data query string, please append with data from geo-IP endpoint" msgstr "מחרוזת שאילתת נתונים גולמיים, אנא הוסף נתונים מנקודת הקצה של geo-IP" -#: core/docs/drf/viewsets.py:576 +#: engine/core/docs/drf/viewsets.py:592 msgid "limit the results amount, 1 < limit < 10, default: 5" msgstr "מגביל את כמות התוצאות, 1 < limit < 10, ברירת מחדל: 5" -#: core/docs/drf/viewsets.py:589 +#: engine/core/docs/drf/viewsets.py:605 msgid "list all feedbacks (simple view)" msgstr "הצג את כל המשובים (תצוגה פשוטה)" -#: core/docs/drf/viewsets.py:593 +#: engine/core/docs/drf/viewsets.py:609 msgid "retrieve a single feedback (detailed view)" msgstr "איתור משוב בודד (תצוגה מפורטת)" -#: core/docs/drf/viewsets.py:597 +#: engine/core/docs/drf/viewsets.py:613 msgid "create a feedback" msgstr "ליצור משוב" -#: core/docs/drf/viewsets.py:601 +#: engine/core/docs/drf/viewsets.py:617 msgid "delete a feedback" msgstr "מחק משוב" -#: core/docs/drf/viewsets.py:605 +#: engine/core/docs/drf/viewsets.py:621 msgid "rewrite an existing feedback saving non-editables" msgstr "לשכתב משוב קיים תוך שמירת פריטים שאינם ניתנים לעריכה" -#: core/docs/drf/viewsets.py:609 +#: engine/core/docs/drf/viewsets.py:625 msgid "rewrite some fields of an existing feedback saving non-editables" msgstr "לשכתב כמה שדות של משוב קיים תוך שמירת שדות שאינם ניתנים לעריכה" -#: core/docs/drf/viewsets.py:616 +#: engine/core/docs/drf/viewsets.py:632 msgid "list all order–product relations (simple view)" msgstr "רשימת כל קשרי ההזמנות-מוצרים (תצוגה פשוטה)" -#: core/docs/drf/viewsets.py:623 +#: engine/core/docs/drf/viewsets.py:639 msgid "retrieve a single order–product relation (detailed view)" msgstr "איתור קשר יחיד בין הזמנה למוצר (תצוגה מפורטת)" -#: core/docs/drf/viewsets.py:630 +#: engine/core/docs/drf/viewsets.py:646 msgid "create a new order–product relation" msgstr "יצירת קשר חדש בין הזמנה למוצר" -#: core/docs/drf/viewsets.py:637 +#: engine/core/docs/drf/viewsets.py:653 msgid "replace an existing order–product relation" msgstr "החלפת קשר בין הזמנה למוצר קיים" -#: core/docs/drf/viewsets.py:644 +#: engine/core/docs/drf/viewsets.py:660 msgid "partially update an existing order–product relation" msgstr "עדכון חלקי של קשר בין הזמנה למוצר קיים" -#: core/docs/drf/viewsets.py:651 +#: engine/core/docs/drf/viewsets.py:667 msgid "delete an order–product relation" msgstr "מחיקת קשר בין הזמנה למוצר" -#: core/docs/drf/viewsets.py:658 +#: engine/core/docs/drf/viewsets.py:674 msgid "add or remove feedback on an order–product relation" msgstr "הוספה או הסרה של משוב על קשר בין הזמנה למוצר" -#: core/docs/drf/viewsets.py:672 +#: engine/core/docs/drf/viewsets.py:688 msgid "list all brands (simple view)" msgstr "הצג את כל המותגים (תצוגה פשוטה)" -#: core/docs/drf/viewsets.py:676 +#: engine/core/docs/drf/viewsets.py:692 msgid "retrieve a single brand (detailed view)" msgstr "איתור מותג בודד (תצוגה מפורטת)" -#: core/docs/drf/viewsets.py:680 +#: engine/core/docs/drf/viewsets.py:697 engine/core/docs/drf/viewsets.py:725 +msgid "Brand UUID or slug" +msgstr "UUID או סלאג של המותג" + +#: engine/core/docs/drf/viewsets.py:704 msgid "create a brand" msgstr "יצירת מותג" -#: core/docs/drf/viewsets.py:684 +#: engine/core/docs/drf/viewsets.py:708 msgid "delete a brand" msgstr "מחק מותג" -#: core/docs/drf/viewsets.py:688 +#: engine/core/docs/drf/viewsets.py:712 msgid "rewrite an existing brand saving non-editables" msgstr "שכתוב מותג קיים תוך שמירה על אלמנטים שאינם ניתנים לעריכה" -#: core/docs/drf/viewsets.py:692 +#: engine/core/docs/drf/viewsets.py:716 msgid "rewrite some fields of an existing brand saving non-editables" msgstr "שכתוב שדות מסוימים של מותג קיים תוך שמירה על שדות שאינם ניתנים לעריכה" -#: core/docs/drf/viewsets.py:696 +#: engine/core/docs/drf/viewsets.py:720 msgid "SEO Meta snapshot for brand" msgstr "תמונת מצב SEO Meta עבור המותג" -#: core/docs/drf/viewsets.py:703 +#: engine/core/docs/drf/viewsets.py:735 msgid "list all vendors (simple view)" msgstr "הצג את כל הספקים (תצוגה פשוטה)" -#: core/docs/drf/viewsets.py:707 +#: engine/core/docs/drf/viewsets.py:739 msgid "retrieve a single vendor (detailed view)" msgstr "איתור ספק בודד (תצוגה מפורטת)" -#: core/docs/drf/viewsets.py:711 +#: engine/core/docs/drf/viewsets.py:743 msgid "create a vendor" msgstr "צור ספק" -#: core/docs/drf/viewsets.py:715 +#: engine/core/docs/drf/viewsets.py:747 msgid "delete a vendor" msgstr "מחק את הספק" -#: core/docs/drf/viewsets.py:719 +#: engine/core/docs/drf/viewsets.py:751 msgid "rewrite an existing vendor saving non-editables" msgstr "שכתוב ספק קיים תוך שמירת פריטים שאינם ניתנים לעריכה" -#: core/docs/drf/viewsets.py:723 +#: engine/core/docs/drf/viewsets.py:755 msgid "rewrite some fields of an existing vendor saving non-editables" msgstr "שכתוב שדות מסוימים של ספק קיים תוך שמירת שדות שאינם ניתנים לעריכה" -#: core/docs/drf/viewsets.py:730 +#: engine/core/docs/drf/viewsets.py:762 msgid "list all product images (simple view)" msgstr "הצג את כל תמונות המוצר (תצוגה פשוטה)" -#: core/docs/drf/viewsets.py:734 +#: engine/core/docs/drf/viewsets.py:766 msgid "retrieve a single product image (detailed view)" msgstr "איתור תמונה של מוצר בודד (תצוגה מפורטת)" -#: core/docs/drf/viewsets.py:738 +#: engine/core/docs/drf/viewsets.py:770 msgid "create a product image" msgstr "צור תמונה של המוצר" -#: core/docs/drf/viewsets.py:742 +#: engine/core/docs/drf/viewsets.py:774 msgid "delete a product image" msgstr "מחיקת תמונת מוצר" -#: core/docs/drf/viewsets.py:746 +#: engine/core/docs/drf/viewsets.py:778 msgid "rewrite an existing product image saving non-editables" msgstr "שכתוב תמונה קיימת של מוצר תוך שמירת אלמנטים שאינם ניתנים לעריכה" -#: core/docs/drf/viewsets.py:750 +#: engine/core/docs/drf/viewsets.py:782 msgid "rewrite some fields of an existing product image saving non-editables" msgstr "" "שכתוב שדות מסוימים בתמונת מוצר קיימת תוך שמירת שדות שאינם ניתנים לעריכה" -#: core/docs/drf/viewsets.py:757 +#: engine/core/docs/drf/viewsets.py:789 msgid "list all promo codes (simple view)" msgstr "הצג את כל קודי המבצע (תצוגה פשוטה)" -#: core/docs/drf/viewsets.py:761 +#: engine/core/docs/drf/viewsets.py:793 msgid "retrieve a single promo code (detailed view)" msgstr "איתור קוד קידום מכירות בודד (תצוגה מפורטת)" -#: core/docs/drf/viewsets.py:765 +#: engine/core/docs/drf/viewsets.py:797 msgid "create a promo code" msgstr "צור קוד קידום מכירות" -#: core/docs/drf/viewsets.py:769 +#: engine/core/docs/drf/viewsets.py:801 msgid "delete a promo code" msgstr "מחק את קוד המבצע" -#: core/docs/drf/viewsets.py:773 +#: engine/core/docs/drf/viewsets.py:805 msgid "rewrite an existing promo code saving non-editables" msgstr "שכתוב קוד קידום מכירות קיים תוך שמירה על תוכן שאינו ניתן לעריכה" -#: core/docs/drf/viewsets.py:777 +#: engine/core/docs/drf/viewsets.py:809 msgid "rewrite some fields of an existing promo code saving non-editables" msgstr "" "שכתוב שדות מסוימים בקוד קידום מכירות קיים תוך שמירה על שדות שאינם ניתנים " "לעריכה" -#: core/docs/drf/viewsets.py:784 +#: engine/core/docs/drf/viewsets.py:816 msgid "list all promotions (simple view)" msgstr "הצג את כל המבצעים (תצוגה פשוטה)" -#: core/docs/drf/viewsets.py:788 +#: engine/core/docs/drf/viewsets.py:820 msgid "retrieve a single promotion (detailed view)" msgstr "איתור מבצע בודד (תצוגה מפורטת)" -#: core/docs/drf/viewsets.py:792 +#: engine/core/docs/drf/viewsets.py:824 msgid "create a promotion" msgstr "צור מבצע" -#: core/docs/drf/viewsets.py:796 +#: engine/core/docs/drf/viewsets.py:828 msgid "delete a promotion" msgstr "מחק מבצע" -#: core/docs/drf/viewsets.py:800 +#: engine/core/docs/drf/viewsets.py:832 msgid "rewrite an existing promotion saving non-editables" msgstr "שכתוב מבצע קיים תוך שמירת פריטים שאינם ניתנים לעריכה" -#: core/docs/drf/viewsets.py:804 +#: engine/core/docs/drf/viewsets.py:836 msgid "rewrite some fields of an existing promotion saving non-editables" msgstr "שכתוב שדות מסוימים של מבצע קיים תוך שמירת שדות שאינם ניתנים לעריכה" -#: core/docs/drf/viewsets.py:811 +#: engine/core/docs/drf/viewsets.py:843 msgid "list all stocks (simple view)" msgstr "הצג את כל המניות (תצוגה פשוטה)" -#: core/docs/drf/viewsets.py:815 +#: engine/core/docs/drf/viewsets.py:847 msgid "retrieve a single stock (detailed view)" msgstr "איתור מניה בודדת (תצוגה מפורטת)" -#: core/docs/drf/viewsets.py:819 +#: engine/core/docs/drf/viewsets.py:851 msgid "create a stock record" msgstr "צור רישום מלאי" -#: core/docs/drf/viewsets.py:823 +#: engine/core/docs/drf/viewsets.py:855 msgid "delete a stock record" msgstr "מחיקת רשומת מלאי" -#: core/docs/drf/viewsets.py:827 +#: engine/core/docs/drf/viewsets.py:859 msgid "rewrite an existing stock record saving non-editables" msgstr "שכתוב רשומת מלאי קיימת תוך שמירת פריטים שאינם ניתנים לעריכה" -#: core/docs/drf/viewsets.py:831 +#: engine/core/docs/drf/viewsets.py:863 msgid "rewrite some fields of an existing stock record saving non-editables" msgstr "" "שכתוב שדות מסוימים ברשומת מלאי קיימת תוך שמירת שדות שאינם ניתנים לעריכה" -#: core/docs/drf/viewsets.py:838 +#: engine/core/docs/drf/viewsets.py:870 msgid "list all product tags (simple view)" msgstr "הצג את כל תגי המוצר (תצוגה פשוטה)" -#: core/docs/drf/viewsets.py:842 +#: engine/core/docs/drf/viewsets.py:874 msgid "retrieve a single product tag (detailed view)" msgstr "איתור תגית מוצר בודדת (תצוגה מפורטת)" -#: core/docs/drf/viewsets.py:846 +#: engine/core/docs/drf/viewsets.py:878 msgid "create a product tag" msgstr "צור תגית מוצר" -#: core/docs/drf/viewsets.py:850 +#: engine/core/docs/drf/viewsets.py:882 msgid "delete a product tag" msgstr "מחק תווית מוצר" -#: core/docs/drf/viewsets.py:854 +#: engine/core/docs/drf/viewsets.py:886 msgid "rewrite an existing product tag saving non-editables" msgstr "שכתוב תגית מוצר קיימת תוך שמירת תוכן שאינו ניתן לעריכה" -#: core/docs/drf/viewsets.py:858 +#: engine/core/docs/drf/viewsets.py:890 msgid "rewrite some fields of an existing product tag saving non-editables" -msgstr "" -"שכתוב שדות מסוימים בתגית מוצר קיימת תוך שמירת שדות שאינם ניתנים לעריכה" +msgstr "שכתוב שדות מסוימים בתגית מוצר קיימת תוך שמירת שדות שאינם ניתנים לעריכה" -#: core/elasticsearch/__init__.py:118 core/elasticsearch/__init__.py:550 +#: engine/core/elasticsearch/__init__.py:122 +#: engine/core/elasticsearch/__init__.py:570 msgid "no search term provided." msgstr "לא צויין מונח חיפוש." -#: core/filters.py:69 core/filters.py:412 core/filters.py:539 +#: engine/core/filters.py:69 engine/core/filters.py:426 +#: engine/core/filters.py:553 msgid "Search" msgstr "חיפוש" -#: core/filters.py:70 core/filters.py:569 core/filters.py:598 +#: engine/core/filters.py:70 engine/core/filters.py:583 +#: engine/core/filters.py:612 msgid "UUID" msgstr "UUID" -#: core/filters.py:71 core/filters.py:414 core/filters.py:541 +#: engine/core/filters.py:71 engine/core/filters.py:428 +#: engine/core/filters.py:555 msgid "Name" msgstr "שם" -#: core/filters.py:72 core/filters.py:543 +#: engine/core/filters.py:72 engine/core/filters.py:557 msgid "Categories" msgstr "קטגוריות" -#: core/filters.py:74 +#: engine/core/filters.py:74 msgid "Categories Slugs" msgstr "קטגוריות שבלולים" -#: core/filters.py:75 core/filters.py:422 +#: engine/core/filters.py:75 engine/core/filters.py:436 msgid "Tags" msgstr "תגיות" -#: core/filters.py:76 +#: engine/core/filters.py:76 msgid "Min Price" msgstr "מחיר מינימום" -#: core/filters.py:77 +#: engine/core/filters.py:77 msgid "Max Price" msgstr "מחיר מקסימלי" -#: core/filters.py:78 +#: engine/core/filters.py:78 msgid "Is Active" msgstr "פעיל" -#: core/filters.py:79 +#: engine/core/filters.py:79 msgid "Brand" msgstr "מותג" -#: core/filters.py:80 +#: engine/core/filters.py:80 msgid "Attributes" msgstr "תכונות" -#: core/filters.py:81 +#: engine/core/filters.py:81 msgid "Quantity" msgstr "כמות" -#: core/filters.py:82 core/filters.py:416 core/filters.py:542 -#: core/models.py:322 core/models.py:483 core/models.py:637 +#: engine/core/filters.py:82 engine/core/filters.py:430 +#: engine/core/filters.py:556 engine/core/models.py:321 +#: engine/core/models.py:482 engine/core/models.py:637 msgid "Slug" msgstr "שבלול" -#: core/filters.py:83 +#: engine/core/filters.py:83 msgid "Is Digital" msgstr "האם דיגיטלי" -#: core/filters.py:84 +#: engine/core/filters.py:84 msgid "Include sub-categories" msgstr "כלול תת-קטגוריות" -#: core/filters.py:87 +#: engine/core/filters.py:87 msgid "Include personal ordered" msgstr "כלול מוצרים שהוזמנו באופן אישי" -#: core/filters.py:89 core/models.py:641 +#: engine/core/filters.py:89 engine/core/models.py:641 msgid "SKU" msgstr "מספר קטלוגי" -#: core/filters.py:173 +#: engine/core/filters.py:184 msgid "there must be a category_uuid to use include_subcategories flag" msgstr "חייב להיות category_uuid כדי להשתמש בדגל include_subcategories" -#: core/filters.py:339 +#: engine/core/filters.py:353 msgid "Search (ID, product name or part number)" msgstr "חיפוש (מזהה, שם מוצר או מספר חלק)" -#: core/filters.py:342 +#: engine/core/filters.py:356 msgid "Bought after (inclusive)" msgstr "נקנה לאחר (כולל)" -#: core/filters.py:343 +#: engine/core/filters.py:357 msgid "Bought before (inclusive)" msgstr "נקנה לפני כן (כולל)" -#: core/filters.py:346 core/filters.py:393 core/filters.py:600 +#: engine/core/filters.py:360 engine/core/filters.py:407 +#: engine/core/filters.py:614 msgid "User email" msgstr "דוא\"ל המשתמש" -#: core/filters.py:347 core/filters.py:394 core/filters.py:578 -#: core/filters.py:599 +#: engine/core/filters.py:361 engine/core/filters.py:408 +#: engine/core/filters.py:592 engine/core/filters.py:613 msgid "User UUID" msgstr "UUID של המשתמש" -#: core/filters.py:348 +#: engine/core/filters.py:362 msgid "Status" msgstr "סטטוס" -#: core/filters.py:352 +#: engine/core/filters.py:366 msgid "Human Readable ID" msgstr "מזהה קריא על ידי בני אדם" -#: core/filters.py:415 +#: engine/core/filters.py:429 msgid "Parent" msgstr "הורה" -#: core/filters.py:419 +#: engine/core/filters.py:433 msgid "Whole category(has at least 1 product or not)" msgstr "קטגוריה שלמה (יש לפחות מוצר אחד או לא)" -#: core/filters.py:423 +#: engine/core/filters.py:437 msgid "Level" msgstr "רמה" -#: core/filters.py:573 +#: engine/core/filters.py:587 msgid "Product UUID" msgstr "UUID של המוצר" -#: core/graphene/mutations.py:41 +#: engine/core/graphene/mutations.py:41 msgid "key to look for in or set into the cache" msgstr "מפתח לחיפוש או להגדרה במטמון" -#: core/graphene/mutations.py:42 +#: engine/core/graphene/mutations.py:42 msgid "data to store in cache" msgstr "נתונים לאחסון במטמון" -#: core/graphene/mutations.py:45 +#: engine/core/graphene/mutations.py:45 msgid "timeout in seconds to set the data for into the cache" msgstr "פסק זמן בשניות להגדרת הנתונים במטמון" -#: core/graphene/mutations.py:48 +#: engine/core/graphene/mutations.py:48 msgid "cached data" msgstr "נתונים במטמון" -#: core/graphene/mutations.py:63 +#: engine/core/graphene/mutations.py:63 msgid "camelized JSON data from the requested URL" msgstr "נתוני JSON שעברו קמלאיזציה מה-URL המבוקש" -#: core/graphene/mutations.py:68 core/views.py:232 +#: engine/core/graphene/mutations.py:68 engine/core/views.py:231 msgid "only URLs starting with http(s):// are allowed" msgstr "רק כתובות URL המתחילות ב-http(s):// מותרות" -#: core/graphene/mutations.py:84 +#: engine/core/graphene/mutations.py:84 msgid "add a product to the order" msgstr "הוסף מוצר להזמנה" -#: core/graphene/mutations.py:105 core/graphene/mutations.py:132 -#: core/graphene/mutations.py:240 core/graphene/mutations.py:288 +#: engine/core/graphene/mutations.py:105 engine/core/graphene/mutations.py:132 +#: engine/core/graphene/mutations.py:240 engine/core/graphene/mutations.py:288 #, python-brace-format msgid "order {order_uuid} not found" msgstr "ההזמנה {order_uuid} לא נמצאה!" -#: core/graphene/mutations.py:111 core/graphene/mutations.py:160 +#: engine/core/graphene/mutations.py:111 engine/core/graphene/mutations.py:160 msgid "remove a product from the order" msgstr "הסר מוצר מההזמנה" -#: core/graphene/mutations.py:138 +#: engine/core/graphene/mutations.py:138 msgid "remove all products from the order" msgstr "הסר את כל המוצרים מההזמנה" -#: core/graphene/mutations.py:183 +#: engine/core/graphene/mutations.py:183 msgid "buy an order" msgstr "קנה הזמנה" -#: core/graphene/mutations.py:212 core/graphene/mutations.py:266 +#: engine/core/graphene/mutations.py:212 engine/core/graphene/mutations.py:266 msgid "please provide either order_uuid or order_hr_id - mutually exclusive" msgstr "אנא ספק את order_uuid או order_hr_id - אחד מהם בלבד!" -#: core/graphene/mutations.py:237 core/graphene/mutations.py:502 -#: core/graphene/mutations.py:544 core/viewsets.py:704 +#: engine/core/graphene/mutations.py:237 engine/core/graphene/mutations.py:502 +#: engine/core/graphene/mutations.py:544 engine/core/viewsets.py:704 msgid "wrong type came from order.buy() method: {type(instance)!s}" msgstr "סוג שגוי הגיע משיטת order.buy(): {type(instance)!s}" -#: core/graphene/mutations.py:246 +#: engine/core/graphene/mutations.py:246 msgid "perform an action on a list of products in the order" msgstr "בצע פעולה ברשימת המוצרים בהזמנה" -#: core/graphene/mutations.py:251 +#: engine/core/graphene/mutations.py:251 msgid "remove/add" msgstr "הסר/הוסף" -#: core/graphene/mutations.py:283 core/graphene/mutations.py:324 +#: engine/core/graphene/mutations.py:283 engine/core/graphene/mutations.py:324 msgid "action must be either add or remove" msgstr "הפעולה חייבת להיות \"הוספה\" או \"הסרה\"!" -#: core/graphene/mutations.py:294 +#: engine/core/graphene/mutations.py:294 msgid "perform an action on a list of products in the wishlist" msgstr "בצע פעולה ברשימת המוצרים ברשימת המשאלות" -#: core/graphene/mutations.py:312 +#: engine/core/graphene/mutations.py:312 msgid "please provide wishlist_uuid value" msgstr "אנא ספק את הערך `wishlist_uuid`." -#: core/graphene/mutations.py:329 core/graphene/mutations.py:405 -#: core/graphene/mutations.py:433 core/graphene/mutations.py:461 -#: core/graphene/mutations.py:505 +#: engine/core/graphene/mutations.py:329 engine/core/graphene/mutations.py:405 +#: engine/core/graphene/mutations.py:433 engine/core/graphene/mutations.py:461 +#: engine/core/graphene/mutations.py:505 #, python-brace-format msgid "wishlist {wishlist_uuid} not found" msgstr "רשימת המשאלות {wishlist_uuid} לא נמצאה!" -#: core/graphene/mutations.py:383 +#: engine/core/graphene/mutations.py:383 msgid "add a product to the wishlist" msgstr "הוסף מוצר להזמנה" -#: core/graphene/mutations.py:411 +#: engine/core/graphene/mutations.py:411 msgid "remove a product from the wishlist" msgstr "הסר מוצר מההזמנה" -#: core/graphene/mutations.py:439 +#: engine/core/graphene/mutations.py:439 msgid "remove all products from the wishlist" msgstr "הסר מוצר מההזמנה" -#: core/graphene/mutations.py:467 +#: engine/core/graphene/mutations.py:467 msgid "buy all products from the wishlist" msgstr "הסר מוצר מההזמנה" -#: core/graphene/mutations.py:511 +#: engine/core/graphene/mutations.py:511 msgid "buy a product" msgstr "קנה הזמנה" -#: core/graphene/mutations.py:517 +#: engine/core/graphene/mutations.py:517 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" -#: core/graphene/mutations.py:550 +#: engine/core/graphene/mutations.py:550 msgid "add or delete a feedback for orderproduct" msgstr "הוספה או מחיקה של משוב עבור המוצר שהוזמן" -#: core/graphene/mutations.py:574 +#: engine/core/graphene/mutations.py:574 msgid "action must be either `add` or `remove`" msgstr "הפעולה חייבת להיות `add` או `remove`!" -#: core/graphene/mutations.py:577 +#: engine/core/graphene/mutations.py:577 #, python-brace-format msgid "order product {order_product_uuid} not found" msgstr "המוצר {order_product_uuid} לא נמצא!" -#: core/graphene/mutations.py:644 +#: engine/core/graphene/mutations.py:644 msgid "original address string provided by the user" msgstr "מחרוזת הכתובת המקורית שסופקה על ידי המשתמש" -#: core/graphene/mutations.py:680 core/models.py:930 core/models.py:943 -#: core/models.py:1358 core/models.py:1387 core/models.py:1412 -#: core/viewsets.py:707 +#: engine/core/graphene/mutations.py:680 engine/core/models.py:941 +#: engine/core/models.py:954 engine/core/models.py:1369 +#: engine/core/models.py:1398 engine/core/models.py:1423 +#: engine/core/viewsets.py:707 #, python-brace-format msgid "{name} does not exist: {uuid}" msgstr "{name} אינו קיים: {uuid}!" -#: core/graphene/mutations.py:694 +#: engine/core/graphene/mutations.py:694 msgid "limit must be between 1 and 10" msgstr "הגבול חייב להיות בין 1 ל-10" -#: core/graphene/mutations.py:743 +#: engine/core/graphene/mutations.py:743 msgid "elasticsearch - works like a charm" msgstr "ElasticSearch - עובד כמו קסם" -#: core/graphene/object_types.py:82 core/graphene/object_types.py:370 -#: core/graphene/object_types.py:417 core/models.py:754 core/models.py:1225 -#: core/models.py:1823 +#: engine/core/graphene/object_types.py:82 +#: engine/core/graphene/object_types.py:370 +#: engine/core/graphene/object_types.py:417 engine/core/models.py:765 +#: engine/core/models.py:1236 engine/core/models.py:1883 msgid "attributes" msgstr "תכונות" -#: core/graphene/object_types.py:95 +#: engine/core/graphene/object_types.py:95 msgid "grouped attributes" msgstr "תכונות מקובצות" -#: core/graphene/object_types.py:102 +#: engine/core/graphene/object_types.py:102 msgid "groups of attributes" msgstr "קבוצות תכונות" -#: core/graphene/object_types.py:116 core/graphene/object_types.py:193 -#: core/graphene/object_types.py:223 core/models.py:426 +#: engine/core/graphene/object_types.py:116 +#: engine/core/graphene/object_types.py:193 +#: engine/core/graphene/object_types.py:223 engine/core/models.py:425 msgid "categories" msgstr "קטגוריות" -#: core/graphene/object_types.py:124 core/models.py:497 +#: engine/core/graphene/object_types.py:124 engine/core/models.py:496 msgid "brands" msgstr "מותגים" -#: core/graphene/object_types.py:195 +#: engine/core/graphene/object_types.py:195 msgid "category image url" msgstr "קטגוריות" -#: core/graphene/object_types.py:196 core/graphene/object_types.py:317 -#: core/models.py:284 +#: engine/core/graphene/object_types.py:196 +#: engine/core/graphene/object_types.py:317 engine/core/models.py:283 msgid "markup percentage" msgstr "אחוז הסימון" -#: core/graphene/object_types.py:199 +#: engine/core/graphene/object_types.py:199 msgid "which attributes and values can be used for filtering this category." msgstr "אילו תכונות וערכים ניתן להשתמש בהם לסינון קטגוריה זו." -#: core/graphene/object_types.py:203 -msgid "" -"minimum and maximum prices for products in this category, if available." +#: engine/core/graphene/object_types.py:203 +msgid "minimum and maximum prices for products in this category, if available." msgstr "מחירים מינימליים ומקסימליים עבור מוצרים בקטגוריה זו, אם זמינים." -#: core/graphene/object_types.py:205 +#: engine/core/graphene/object_types.py:205 msgid "tags for this category" msgstr "תגיות עבור קטגוריה זו" -#: core/graphene/object_types.py:206 +#: engine/core/graphene/object_types.py:206 msgid "products in this category" msgstr "מוצרים בקטגוריה זו" -#: core/graphene/object_types.py:324 core/models.py:189 +#: engine/core/graphene/object_types.py:324 engine/core/models.py:188 msgid "vendors" msgstr "ספקים" -#: core/graphene/object_types.py:328 +#: engine/core/graphene/object_types.py:328 msgid "Latitude (Y coordinate)" msgstr "קו רוחב (קואורדינטת Y)" -#: core/graphene/object_types.py:329 +#: engine/core/graphene/object_types.py:329 msgid "Longitude (X coordinate)" msgstr "אורך (קואורדינטת X)" -#: core/graphene/object_types.py:358 +#: engine/core/graphene/object_types.py:358 msgid "comment" msgstr "איך" -#: core/graphene/object_types.py:359 core/graphene/object_types.py:483 +#: engine/core/graphene/object_types.py:359 +#: engine/core/graphene/object_types.py:483 msgid "rating value from 1 to 10, inclusive, or 0 if not set." msgstr "ערך דירוג בין 1 ל-10, כולל, או 0 אם לא הוגדר." -#: core/graphene/object_types.py:366 +#: engine/core/graphene/object_types.py:366 msgid "represents feedback from a user." msgstr "מייצג משוב ממשתמש." -#: core/graphene/object_types.py:371 core/graphene/object_types.py:418 -#: core/models.py:1219 +#: engine/core/graphene/object_types.py:371 +#: engine/core/graphene/object_types.py:418 engine/core/models.py:1230 msgid "notifications" msgstr "הודעות" -#: core/graphene/object_types.py:372 +#: engine/core/graphene/object_types.py:372 msgid "download url for this order product if applicable" msgstr "כתובת URL להורדת המוצר שהוזמן, אם רלוונטי" -#: core/graphene/object_types.py:373 core/models.py:1939 +#: engine/core/graphene/object_types.py:373 engine/core/models.py:1722 msgid "feedback" msgstr "משוב" -#: core/graphene/object_types.py:407 +#: engine/core/graphene/object_types.py:407 msgid "a list of order products in this order" msgstr "רשימת המוצרים בהזמנה זו" -#: core/graphene/object_types.py:409 core/models.py:1189 +#: engine/core/graphene/object_types.py:409 engine/core/models.py:1200 msgid "billing address" msgstr "כתובת לחיוב" -#: core/graphene/object_types.py:412 +#: engine/core/graphene/object_types.py:412 msgid "" "shipping address for this order, leave blank if same as billing address or " "if not applicable" msgstr "" "כתובת משלוח עבור הזמנה זו, השאר ריק אם זהה לכתובת החיוב או אם לא רלוונטי" -#: core/graphene/object_types.py:414 +#: engine/core/graphene/object_types.py:414 msgid "total price of this order" msgstr "המחיר הכולל של הזמנה זו" -#: core/graphene/object_types.py:415 +#: engine/core/graphene/object_types.py:415 msgid "total quantity of products in order" msgstr "כמות המוצרים הכוללת בהזמנה" -#: core/graphene/object_types.py:416 +#: engine/core/graphene/object_types.py:416 msgid "are all products in the order digital" msgstr "האם כל המוצרים בהזמנה הם דיגיטליים?" -#: core/graphene/object_types.py:419 +#: engine/core/graphene/object_types.py:419 msgid "transactions for this order" msgstr "עסקאות עבור הזמנה זו" -#: core/graphene/object_types.py:438 core/models.py:1253 +#: engine/core/graphene/object_types.py:438 engine/core/models.py:1264 msgid "orders" msgstr "הזמנות" -#: core/graphene/object_types.py:459 +#: engine/core/graphene/object_types.py:459 msgid "image url" msgstr "כתובת URL של התמונה" -#: core/graphene/object_types.py:466 +#: engine/core/graphene/object_types.py:466 msgid "product's images" msgstr "תמונות המוצר" -#: core/graphene/object_types.py:473 core/models.py:425 core/models.py:579 +#: engine/core/graphene/object_types.py:473 engine/core/models.py:424 +#: engine/core/models.py:579 msgid "category" msgstr "קטגוריה" -#: core/graphene/object_types.py:475 core/models.py:1940 +#: engine/core/graphene/object_types.py:475 engine/core/models.py:1723 msgid "feedbacks" msgstr "משובים" -#: core/graphene/object_types.py:476 core/models.py:496 core/models.py:588 +#: engine/core/graphene/object_types.py:476 engine/core/models.py:495 +#: engine/core/models.py:588 msgid "brand" msgstr "מותג" -#: core/graphene/object_types.py:477 core/models.py:107 +#: engine/core/graphene/object_types.py:477 engine/core/models.py:106 msgid "attribute groups" msgstr "קבוצות תכונות" -#: core/graphene/object_types.py:478 -#: core/templates/digital_order_created_email.html:111 -#: core/templates/digital_order_delivered_email.html:109 -#: core/templates/shipped_order_created_email.html:109 -#: core/templates/shipped_order_delivered_email.html:109 +#: engine/core/graphene/object_types.py:478 +#: engine/core/templates/digital_order_created_email.html:111 +#: engine/core/templates/digital_order_delivered_email.html:109 +#: engine/core/templates/shipped_order_created_email.html:109 +#: engine/core/templates/shipped_order_delivered_email.html:109 msgid "price" msgstr "מחיר" -#: core/graphene/object_types.py:479 -#: core/templates/digital_order_created_email.html:110 -#: core/templates/digital_order_delivered_email.html:108 -#: core/templates/shipped_order_created_email.html:108 -#: core/templates/shipped_order_delivered_email.html:108 +#: engine/core/graphene/object_types.py:479 +#: engine/core/templates/digital_order_created_email.html:110 +#: engine/core/templates/digital_order_delivered_email.html:108 +#: engine/core/templates/shipped_order_created_email.html:108 +#: engine/core/templates/shipped_order_delivered_email.html:108 msgid "quantity" msgstr "כמות" -#: core/graphene/object_types.py:480 +#: engine/core/graphene/object_types.py:480 msgid "number of feedbacks" msgstr "מספר המשובים" -#: core/graphene/object_types.py:481 +#: engine/core/graphene/object_types.py:481 msgid "only available for personal orders" msgstr "מוצרים זמינים רק להזמנות אישיות" -#: core/graphene/object_types.py:507 core/models.py:651 +#: engine/core/graphene/object_types.py:484 +msgid "discount price" +msgstr "מחיר מוזל" + +#: engine/core/graphene/object_types.py:508 engine/core/models.py:651 msgid "products" msgstr "מוצרים" -#: core/graphene/object_types.py:607 +#: engine/core/graphene/object_types.py:611 msgid "promocodes" msgstr "קודי קידום מכירות" -#: core/graphene/object_types.py:617 +#: engine/core/graphene/object_types.py:621 msgid "products on sale" msgstr "מוצרים במבצע" -#: core/graphene/object_types.py:624 core/models.py:879 +#: engine/core/graphene/object_types.py:628 engine/core/models.py:890 msgid "promotions" msgstr "מבצעים" -#: core/graphene/object_types.py:628 core/models.py:188 +#: engine/core/graphene/object_types.py:632 engine/core/models.py:187 msgid "vendor" msgstr "ספק" -#: core/graphene/object_types.py:629 core/models.py:650 -#: core/templates/digital_order_created_email.html:109 -#: core/templates/digital_order_delivered_email.html:107 -#: core/templates/shipped_order_created_email.html:107 -#: core/templates/shipped_order_delivered_email.html:107 +#: engine/core/graphene/object_types.py:633 engine/core/models.py:650 +#: 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 +#: engine/core/templates/shipped_order_delivered_email.html:107 msgid "product" msgstr "מוצר" -#: core/graphene/object_types.py:640 core/models.py:902 +#: engine/core/graphene/object_types.py:644 engine/core/models.py:913 msgid "wishlisted products" msgstr "מוצרים ברשימת המשאלות" -#: core/graphene/object_types.py:646 core/models.py:919 +#: engine/core/graphene/object_types.py:650 engine/core/models.py:930 msgid "wishlists" msgstr "רשימות משאלות" -#: core/graphene/object_types.py:650 +#: engine/core/graphene/object_types.py:654 msgid "tagged products" msgstr "מוצרים מתויגים" -#: core/graphene/object_types.py:657 core/models.py:225 core/models.py:594 +#: engine/core/graphene/object_types.py:661 engine/core/models.py:224 +#: engine/core/models.py:594 msgid "product tags" msgstr "תגיות מוצר" -#: core/graphene/object_types.py:661 +#: engine/core/graphene/object_types.py:665 msgid "tagged categories" msgstr "קטגוריות מתויגות" -#: core/graphene/object_types.py:668 +#: engine/core/graphene/object_types.py:672 msgid "categories tags" msgstr "תגיות קטגוריות" -#: core/graphene/object_types.py:672 +#: engine/core/graphene/object_types.py:676 msgid "project name" msgstr "שם הפרויקט" -#: core/graphene/object_types.py:673 +#: engine/core/graphene/object_types.py:677 msgid "company email" msgstr "דוא\"ל החברה" -#: core/graphene/object_types.py:674 +#: engine/core/graphene/object_types.py:678 msgid "company name" msgstr "שם החברה" -#: core/graphene/object_types.py:675 +#: engine/core/graphene/object_types.py:679 msgid "company address" msgstr "כתובת החברה" -#: core/graphene/object_types.py:676 +#: engine/core/graphene/object_types.py:680 msgid "company phone number" msgstr "מספר הטלפון של החברה" -#: core/graphene/object_types.py:677 +#: engine/core/graphene/object_types.py:681 msgid "email from, sometimes it must be used instead of host user value" msgstr "'email from', לעיתים יש להשתמש בו במקום בערך המשתמש המארח" -#: core/graphene/object_types.py:678 +#: engine/core/graphene/object_types.py:682 msgid "email host user" msgstr "משתמש מארח דוא\"ל" -#: core/graphene/object_types.py:679 +#: engine/core/graphene/object_types.py:683 msgid "maximum amount for payment" msgstr "סכום מקסימלי לתשלום" -#: core/graphene/object_types.py:680 +#: engine/core/graphene/object_types.py:684 msgid "minimum amount for payment" msgstr "סכום מינימום לתשלום" -#: core/graphene/object_types.py:681 +#: engine/core/graphene/object_types.py:685 msgid "analytics data" msgstr "נתוני ניתוח" -#: core/graphene/object_types.py:682 +#: engine/core/graphene/object_types.py:686 msgid "advertisement data" msgstr "נתוני פרסום" -#: core/graphene/object_types.py:685 +#: engine/core/graphene/object_types.py:689 msgid "company configuration" msgstr "תצורה" -#: core/graphene/object_types.py:689 +#: engine/core/graphene/object_types.py:693 msgid "language code" msgstr "קוד שפה" -#: core/graphene/object_types.py:690 +#: engine/core/graphene/object_types.py:694 msgid "language name" msgstr "שם השפה" -#: core/graphene/object_types.py:691 +#: engine/core/graphene/object_types.py:695 msgid "language flag, if exists :)" msgstr "דגל השפה, אם קיים :)" -#: core/graphene/object_types.py:694 +#: engine/core/graphene/object_types.py:698 msgid "supported languages" msgstr "קבל רשימה של השפות הנתמכות" -#: core/graphene/object_types.py:725 core/graphene/object_types.py:726 -#: core/graphene/object_types.py:727 +#: engine/core/graphene/object_types.py:729 +#: engine/core/graphene/object_types.py:730 +#: engine/core/graphene/object_types.py:731 msgid "products search results" msgstr "תוצאות חיפוש מוצרים" -#: core/graphene/object_types.py:728 +#: engine/core/graphene/object_types.py:732 msgid "posts search results" msgstr "תוצאות חיפוש מוצרים" -#: core/models.py:76 +#: engine/core/models.py:75 msgid "" "Represents a group of attributes, which can be hierarchical. This class is " "used to manage and organize attribute groups. An attribute group can have a " @@ -1441,23 +1479,23 @@ msgstr "" "קבוצות תכונות. לקבוצת תכונות יכולה להיות קבוצת אב, היוצרת מבנה היררכי. זה " "יכול להיות שימושי לסיווג וניהול תכונות בצורה יעילה יותר במערכת מורכבת." -#: core/models.py:92 +#: engine/core/models.py:91 msgid "parent of this group" msgstr "הורה של קבוצה זו" -#: core/models.py:93 +#: engine/core/models.py:92 msgid "parent attribute group" msgstr "קבוצת תכונות הורה" -#: core/models.py:97 core/models.py:98 +#: engine/core/models.py:96 engine/core/models.py:97 msgid "attribute group's name" msgstr "שם קבוצת התכונות" -#: core/models.py:106 core/models.py:716 +#: engine/core/models.py:105 engine/core/models.py:727 msgid "attribute group" msgstr "קבוצת תכונות" -#: core/models.py:112 +#: engine/core/models.py:111 msgid "" "Represents a vendor entity capable of storing information about external " "vendors and their interaction requirements. The Vendor class is used to " @@ -1473,47 +1511,47 @@ msgstr "" "הנרכשים מהספק. מודל זה גם מתחזק מטא-נתונים ואילוצים נוספים, מה שהופך אותו " "מתאים לשימוש במערכות המקיימות אינטראקציה עם ספקים צד שלישי." -#: core/models.py:125 +#: engine/core/models.py:124 msgid "stores credentials and endpoints required for vendor communication" msgstr "מאחסן את פרטי ההזדהות ונקודות הקצה הנדרשים לתקשורת API של הספק" -#: core/models.py:126 +#: engine/core/models.py:125 msgid "authentication info" msgstr "מידע אימות" -#: core/models.py:131 +#: engine/core/models.py:130 msgid "define the markup for products retrieved from this vendor" msgstr "הגדר את הסימון עבור מוצרים שנרכשו מספק זה" -#: core/models.py:132 +#: engine/core/models.py:131 msgid "vendor markup percentage" msgstr "אחוז תוספת הספק" -#: core/models.py:136 +#: engine/core/models.py:135 msgid "name of this vendor" msgstr "שם הספק הזה" -#: core/models.py:137 +#: engine/core/models.py:136 msgid "vendor name" msgstr "שם הספק" -#: core/models.py:148 +#: engine/core/models.py:147 msgid "response file" msgstr "קובץ תגובה" -#: core/models.py:149 +#: engine/core/models.py:148 msgid "vendor's last processing response" msgstr "תגובת העיבוד האחרונה של הספק" -#: core/models.py:155 +#: engine/core/models.py:154 msgid "vendor's integration file path" msgstr "נתיב קובץ האינטגרציה של הספק" -#: core/models.py:156 +#: engine/core/models.py:155 msgid "integration path" msgstr "נתיב אינטגרציה" -#: core/models.py:198 +#: engine/core/models.py:197 msgid "" "Represents a product tag used for classifying or identifying products. The " "ProductTag class is designed to uniquely identify and classify products " @@ -1523,48 +1561,48 @@ msgid "" msgstr "" "מייצג תגית מוצר המשמשת לסיווג או זיהוי מוצרים. מחלקת ProductTag נועדה לזהות " "ולסווג מוצרים באופן ייחודי באמצעות שילוב של מזהה תגית פנימי ושם תצוגה " -"ידידותי למשתמש. היא תומכת בפעולות המיוצאות באמצעות mixins ומספקת התאמה אישית" -" של מטא-נתונים למטרות ניהוליות." +"ידידותי למשתמש. היא תומכת בפעולות המיוצאות באמצעות mixins ומספקת התאמה אישית " +"של מטא-נתונים למטרות ניהוליות." -#: core/models.py:210 core/models.py:241 +#: engine/core/models.py:209 engine/core/models.py:240 msgid "internal tag identifier for the product tag" msgstr "מזהה תווית פנימי עבור תווית המוצר" -#: core/models.py:211 core/models.py:242 +#: engine/core/models.py:210 engine/core/models.py:241 msgid "tag name" msgstr "שם היום" -#: core/models.py:215 core/models.py:246 +#: engine/core/models.py:214 engine/core/models.py:245 msgid "user-friendly name for the product tag" msgstr "שם ידידותי למשתמש עבור תווית המוצר" -#: core/models.py:216 core/models.py:247 +#: engine/core/models.py:215 engine/core/models.py:246 msgid "tag display name" msgstr "שם תצוגה של התג" -#: core/models.py:224 +#: engine/core/models.py:223 msgid "product tag" msgstr "תגית מוצר" -#: core/models.py:230 +#: engine/core/models.py:229 msgid "" "Represents a category tag used for products. This class models a category " "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 "" "מייצג תווית קטגוריה המשמשת למוצרים. מחלקה זו מדגמת תווית קטגוריה שניתן " -"להשתמש בה כדי לקשר ולסווג מוצרים. היא כוללת תכונות עבור מזהה תווית פנימי ושם" -" תצוגה ידידותי למשתמש." +"להשתמש בה כדי לקשר ולסווג מוצרים. היא כוללת תכונות עבור מזהה תווית פנימי ושם " +"תצוגה ידידותי למשתמש." -#: core/models.py:255 +#: engine/core/models.py:254 msgid "category tag" msgstr "תגית קטגוריה" -#: core/models.py:256 core/models.py:328 +#: engine/core/models.py:255 engine/core/models.py:327 msgid "category tags" msgstr "תגיות קטגוריה" -#: core/models.py:261 +#: engine/core/models.py:260 msgid "" "Represents a category entity to organize and group related items in a " "hierarchical structure. Categories may have hierarchical relationships with " @@ -1583,106 +1621,105 @@ msgstr "" "דומות אחרות בתוך יישום, ומאפשרת למשתמשים או למנהלים לציין את השם, התיאור " "וההיררכיה של הקטגוריות, וכן להקצות תכונות כגון תמונות, תגיות או עדיפות." -#: core/models.py:275 +#: engine/core/models.py:274 msgid "upload an image representing this category" msgstr "העלה תמונה המייצגת קטגוריה זו" -#: core/models.py:278 +#: engine/core/models.py:277 msgid "category image" msgstr "תמונה בקטגוריה" -#: core/models.py:283 +#: engine/core/models.py:282 msgid "define a markup percentage for products in this category" msgstr "הגדר אחוז תוספת מחיר עבור מוצרים בקטגוריה זו" -#: core/models.py:292 +#: engine/core/models.py:291 msgid "parent of this category to form a hierarchical structure" msgstr "הורה של קטגוריה זו כדי ליצור מבנה היררכי" -#: core/models.py:293 +#: engine/core/models.py:292 msgid "parent category" msgstr "קטגוריה ראשית" -#: core/models.py:298 +#: engine/core/models.py:297 msgid "category name" msgstr "שם הקטגוריה" -#: core/models.py:299 +#: engine/core/models.py:298 msgid "provide a name for this category" msgstr "ציין שם לקטגוריה זו" -#: core/models.py:306 +#: engine/core/models.py:305 msgid "add a detailed description for this category" msgstr "הוסף תיאור מפורט לקטגוריה זו" -#: core/models.py:307 +#: engine/core/models.py:306 msgid "category description" msgstr "תיאור הקטגוריה" -#: core/models.py:327 +#: engine/core/models.py:326 msgid "tags that help describe or group this category" msgstr "תגיות המסייעות לתאר או לקבץ קטגוריה זו" -#: core/models.py:334 core/models.py:489 +#: engine/core/models.py:333 engine/core/models.py:488 msgid "priority" msgstr "עדיפות" -#: core/models.py:432 +#: engine/core/models.py:431 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 "" -"מייצג אובייקט מותג במערכת. מחלקה זו מטפלת במידע ובתכונות הקשורים למותג, כולל" -" שמו, לוגואים, תיאור, קטגוריות קשורות, סלוגן ייחודי וסדר עדיפות. היא מאפשרת " +"מייצג אובייקט מותג במערכת. מחלקה זו מטפלת במידע ובתכונות הקשורים למותג, כולל " +"שמו, לוגואים, תיאור, קטגוריות קשורות, סלוגן ייחודי וסדר עדיפות. היא מאפשרת " "ארגון וייצוג של נתונים הקשורים למותג בתוך היישום." -#: core/models.py:442 +#: engine/core/models.py:441 msgid "name of this brand" msgstr "שם המותג" -#: core/models.py:443 +#: engine/core/models.py:442 msgid "brand name" msgstr "שם המותג" -#: core/models.py:450 +#: engine/core/models.py:449 msgid "upload a logo representing this brand" msgstr "העלה לוגו המייצג את המותג הזה" -#: core/models.py:452 +#: engine/core/models.py:451 msgid "brand small image" msgstr "תמונה קטנה של המותג" -#: core/models.py:458 +#: engine/core/models.py:457 msgid "upload a big logo representing this brand" msgstr "העלה לוגו גדול המייצג את המותג הזה" -#: core/models.py:460 +#: engine/core/models.py:459 msgid "brand big image" msgstr "תמונה גדולה של המותג" -#: core/models.py:465 +#: engine/core/models.py:464 msgid "add a detailed description of the brand" msgstr "הוסף תיאור מפורט של המותג" -#: core/models.py:466 +#: engine/core/models.py:465 msgid "brand description" msgstr "תיאור המותג" -#: core/models.py:471 +#: engine/core/models.py:470 msgid "optional categories that this brand is associated with" msgstr "קטגוריות אופציונליות שהמותג הזה קשור אליהן" -#: core/models.py:472 +#: engine/core/models.py:471 msgid "associated categories" msgstr "קטגוריות" -#: core/models.py:502 +#: engine/core/models.py:501 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 " @@ -1693,68 +1730,72 @@ msgstr "" "רכישה, כמות, SKU ונכסים דיגיטליים. היא מהווה חלק ממערכת ניהול המלאי ומאפשרת " "מעקב והערכה של מוצרים הזמינים מספקים שונים." -#: core/models.py:514 +#: engine/core/models.py:513 msgid "the vendor supplying this product stock" msgstr "הספק המספק את מלאי המוצר הזה" -#: core/models.py:515 +#: engine/core/models.py:514 msgid "associated vendor" msgstr "ספק נלווה" -#: core/models.py:519 +#: engine/core/models.py:518 msgid "final price to the customer after markups" msgstr "המחיר הסופי ללקוח לאחר תוספות" -#: core/models.py:520 +#: engine/core/models.py:519 msgid "selling price" msgstr "מחיר המכירה" -#: core/models.py:525 +#: engine/core/models.py:524 msgid "the product associated with this stock entry" msgstr "המוצר הקשור לרישום המלאי הזה" -#: core/models.py:526 core/models.py:779 core/models.py:825 -#: core/models.py:1718 +#: engine/core/models.py:525 engine/core/models.py:790 +#: engine/core/models.py:836 engine/core/models.py:1778 msgid "associated product" msgstr "מוצר נלווה" -#: core/models.py:533 +#: engine/core/models.py:532 msgid "the price paid to the vendor for this product" msgstr "המחיר ששולם למוכר עבור מוצר זה" -#: core/models.py:534 +#: engine/core/models.py:533 msgid "vendor purchase price" msgstr "מחיר הרכישה של הספק" -#: core/models.py:538 +#: engine/core/models.py:537 msgid "available quantity of the product in stock" msgstr "כמות המוצר הזמינה במלאי" -#: core/models.py:539 +#: engine/core/models.py:538 msgid "quantity in stock" msgstr "כמות במלאי" -#: core/models.py:543 +#: engine/core/models.py:542 msgid "vendor-assigned SKU for identifying the product" msgstr "SKU שהוקצה על ידי הספק לזיהוי המוצר" -#: core/models.py:544 +#: engine/core/models.py:543 msgid "vendor sku" msgstr "מק\"ט הספק" -#: core/models.py:550 +#: engine/core/models.py:549 msgid "digital file associated with this stock if applicable" msgstr "קובץ דיגיטלי הקשור למלאי זה, אם רלוונטי" -#: core/models.py:551 +#: engine/core/models.py:550 msgid "digital file" msgstr "קובץ דיגיטלי" -#: core/models.py:560 +#: engine/core/models.py:553 +msgid "system attributes" +msgstr "מאפייני המערכת" + +#: engine/core/models.py:560 msgid "stock entries" msgstr "רישומים במלאי" -#: core/models.py:565 +#: engine/core/models.py:565 msgid "" "Represents a product with attributes such as category, brand, tags, digital " "status, name, description, part number, and slug. Provides related utility " @@ -1766,158 +1807,157 @@ msgid "" "product data and its associated information within an application." msgstr "" "מייצג מוצר עם תכונות כגון קטגוריה, מותג, תגיות, סטטוס דיגיטלי, שם, תיאור, " -"מספר חלק ו-slug. מספק תכונות שירות נלוות לאחזור דירוגים, ספירת משובים, מחיר," -" כמות והזמנות סה\"כ. מיועד לשימוש במערכת המטפלת במסחר אלקטרוני או בניהול " +"מספר חלק ו-slug. מספק תכונות שירות נלוות לאחזור דירוגים, ספירת משובים, מחיר, " +"כמות והזמנות סה\"כ. מיועד לשימוש במערכת המטפלת במסחר אלקטרוני או בניהול " "מלאי. מחלקה זו מתקשרת עם מודלים נלווים (כגון קטגוריה, מותג ותגית מוצר) " -"ומנהלת את המטמון עבור תכונות הנגישות בתדירות גבוהה כדי לשפר את הביצועים. הוא" -" משמש להגדרה ולעיבוד נתוני מוצר והמידע הקשור אליו בתוך יישום." +"ומנהלת את המטמון עבור תכונות הנגישות בתדירות גבוהה כדי לשפר את הביצועים. הוא " +"משמש להגדרה ולעיבוד נתוני מוצר והמידע הקשור אליו בתוך יישום." -#: core/models.py:578 +#: engine/core/models.py:578 msgid "category this product belongs to" msgstr "הקטגוריה אליה שייך מוצר זה" -#: core/models.py:587 +#: engine/core/models.py:587 msgid "optionally associate this product with a brand" msgstr "באופן אופציונלי, ניתן לשייך מוצר זה למותג" -#: core/models.py:593 +#: engine/core/models.py:593 msgid "tags that help describe or group this product" msgstr "תגיות המסייעות לתאר או לקבץ מוצר זה" -#: core/models.py:598 +#: engine/core/models.py:598 msgid "indicates whether this product is digitally delivered" msgstr "מציין אם מוצר זה נמסר באופן דיגיטלי" -#: core/models.py:599 +#: engine/core/models.py:599 msgid "is product digital" msgstr "האם המוצר הוא דיגיטלי?" -#: core/models.py:605 +#: engine/core/models.py:605 msgid "provide a clear identifying name for the product" msgstr "ספק שם מזהה ברור למוצר" -#: core/models.py:606 +#: engine/core/models.py:606 msgid "product name" msgstr "שם המוצר" -#: core/models.py:612 core/models.py:867 +#: engine/core/models.py:612 engine/core/models.py:878 msgid "add a detailed description of the product" msgstr "הוסף תיאור מפורט של המוצר" -#: core/models.py:613 +#: engine/core/models.py:613 msgid "product description" msgstr "תיאור המוצר" -#: core/models.py:620 +#: engine/core/models.py:620 msgid "part number for this product" msgstr "מספר חלק עבור מוצר זה" -#: core/models.py:621 +#: engine/core/models.py:621 msgid "part number" msgstr "מספר חלק" -#: core/models.py:640 +#: engine/core/models.py:640 msgid "stock keeping unit for this product" msgstr "יחידת אחסון מלאי עבור מוצר זה" -#: core/models.py:702 +#: engine/core/models.py:713 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 "" "מייצג תכונה במערכת. מחלקה זו משמשת להגדרת תכונות ולניהולן. תכונות הן נתונים " -"הניתנים להתאמה אישית, שניתן לקשר לישויות אחרות. לתכונות יש קטגוריות, קבוצות," -" סוגי ערכים ושמות משויכים. המודל תומך בסוגים רבים של ערכים, כולל מחרוזת, " -"מספר שלם, מספר צף, בוליאני, מערך ואובייקט. הדבר מאפשר בניית נתונים דינמית " -"וגמישה." +"הניתנים להתאמה אישית, שניתן לקשר לישויות אחרות. לתכונות יש קטגוריות, קבוצות, " +"סוגי ערכים ושמות משויכים. המודל תומך בסוגים רבים של ערכים, כולל מחרוזת, מספר " +"שלם, מספר צף, בוליאני, מערך ואובייקט. הדבר מאפשר בניית נתונים דינמית וגמישה." -#: core/models.py:715 +#: engine/core/models.py:726 msgid "group of this attribute" msgstr "קבוצה של תכונה זו" -#: core/models.py:721 +#: engine/core/models.py:732 msgid "string" msgstr "מחרוזת" -#: core/models.py:722 +#: engine/core/models.py:733 msgid "integer" msgstr "יושרה" -#: core/models.py:723 +#: engine/core/models.py:734 msgid "float" msgstr "צף" -#: core/models.py:724 +#: engine/core/models.py:735 msgid "boolean" msgstr "בוליאני" -#: core/models.py:725 +#: engine/core/models.py:736 msgid "array" msgstr "מערך" -#: core/models.py:726 +#: engine/core/models.py:737 msgid "object" msgstr "אובייקט" -#: core/models.py:728 +#: engine/core/models.py:739 msgid "type of the attribute's value" msgstr "סוג ערך התכונה" -#: core/models.py:729 +#: engine/core/models.py:740 msgid "value type" msgstr "סוג ערך" -#: core/models.py:734 +#: engine/core/models.py:745 msgid "name of this attribute" msgstr "שם התכונה הזו" -#: core/models.py:735 +#: engine/core/models.py:746 msgid "attribute's name" msgstr "שם התכונה" -#: core/models.py:740 +#: engine/core/models.py:751 msgid "is filterable" msgstr "ניתן לסינון" -#: core/models.py:741 +#: engine/core/models.py:752 msgid "designates whether this attribute can be used for filtering or not" msgstr "מציין אם ניתן להשתמש בתכונה זו לצורך סינון או לא" -#: core/models.py:753 core/models.py:771 -#: core/templates/digital_order_delivered_email.html:134 +#: engine/core/models.py:764 engine/core/models.py:782 +#: engine/core/templates/digital_order_delivered_email.html:134 msgid "attribute" msgstr "תכונה" -#: core/models.py:759 +#: engine/core/models.py:770 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 "" "מייצג ערך ספציפי עבור תכונה המקושרת למוצר. הוא מקשר את ה\"תכונה\" ל\"ערך\" " "ייחודי, ומאפשר ארגון טוב יותר וייצוג דינמי של מאפייני המוצר." -#: core/models.py:770 +#: engine/core/models.py:781 msgid "attribute of this value" msgstr "תכונה של ערך זה" -#: core/models.py:778 +#: engine/core/models.py:789 msgid "the specific product associated with this attribute's value" msgstr "המוצר הספציפי הקשור לערך של תכונה זו" -#: core/models.py:784 +#: engine/core/models.py:795 msgid "the specific value for this attribute" msgstr "הערך הספציפי עבור תכונה זו" -#: core/models.py:797 +#: engine/core/models.py:808 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 "" @@ -1925,85 +1965,85 @@ msgstr "" "כולל פונקציונליות להעלאת קבצי תמונה, שיוכם למוצרים ספציפיים וקביעת סדר " "התצוגה שלהם. היא כוללת גם תכונת נגישות עם טקסט חלופי לתמונות." -#: core/models.py:808 +#: engine/core/models.py:819 msgid "provide alternative text for the image for accessibility" msgstr "ספק טקסט חלופי לתמונה לצורך נגישות" -#: core/models.py:809 +#: engine/core/models.py:820 msgid "image alt text" msgstr "טקסט חלופי לתמונה" -#: core/models.py:812 +#: engine/core/models.py:823 msgid "upload the image file for this product" msgstr "העלה את קובץ התמונה עבור מוצר זה" -#: core/models.py:813 core/models.py:837 +#: engine/core/models.py:824 engine/core/models.py:848 msgid "product image" msgstr "תמונת מוצר" -#: core/models.py:818 +#: engine/core/models.py:829 msgid "determines the order in which images are displayed" msgstr "קובע את סדר הצגת התמונות" -#: core/models.py:819 +#: engine/core/models.py:830 msgid "display priority" msgstr "עדיפות תצוגה" -#: core/models.py:824 +#: engine/core/models.py:835 msgid "the product that this image represents" msgstr "המוצר שהדימוי הזה מייצג" -#: core/models.py:838 +#: engine/core/models.py:849 msgid "product images" msgstr "תמונות מוצרים" -#: core/models.py:843 +#: engine/core/models.py:854 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 "" "מייצג קמפיין קידום מכירות למוצרים בהנחה. מחלקה זו משמשת להגדרת וניהול " "קמפיינים לקידום מכירות המציעים הנחה באחוזים על מוצרים. המחלקה כוללת תכונות " "להגדרת שיעור ההנחה, מתן פרטים על המבצע וקישורו למוצרים הרלוונטיים. היא " "משתלבת בקטלוג המוצרים כדי לקבוע את הפריטים המושפעים בקמפיין." -#: core/models.py:855 +#: engine/core/models.py:866 msgid "percentage discount for the selected products" msgstr "אחוז ההנחה עבור המוצרים שנבחרו" -#: core/models.py:856 +#: engine/core/models.py:867 msgid "discount percentage" msgstr "אחוז ההנחה" -#: core/models.py:861 +#: engine/core/models.py:872 msgid "provide a unique name for this promotion" msgstr "ציין שם ייחודי לקידום מכירות זה" -#: core/models.py:862 +#: engine/core/models.py:873 msgid "promotion name" msgstr "שם המבצע" -#: core/models.py:868 +#: engine/core/models.py:879 msgid "promotion description" msgstr "תיאור המבצע" -#: core/models.py:873 +#: engine/core/models.py:884 msgid "select which products are included in this promotion" msgstr "בחר אילו מוצרים כלולים במבצע זה" -#: core/models.py:874 +#: engine/core/models.py:885 msgid "included products" msgstr "מוצרים כלולים" -#: core/models.py:878 +#: engine/core/models.py:889 msgid "promotion" msgstr "קידום" -#: core/models.py:889 +#: engine/core/models.py:900 msgid "" "Represents a user's wishlist for storing and managing desired products. The " "class provides functionality to manage a collection of products, supporting " @@ -2014,120 +2054,119 @@ msgstr "" "פונקציונליות לניהול אוסף מוצרים, תומכת בפעולות כגון הוספה והסרה של מוצרים, " "וכן תומכת בפעולות להוספה והסרה של מספר מוצרים בבת אחת." -#: core/models.py:901 +#: engine/core/models.py:912 msgid "products that the user has marked as wanted" msgstr "מוצרים שהמשתמש סימן כנחשקים" -#: core/models.py:909 +#: engine/core/models.py:920 msgid "user who owns this wishlist" msgstr "המשתמש שבבעלותו רשימת המשאלות הזו" -#: core/models.py:910 +#: engine/core/models.py:921 msgid "wishlist owner" msgstr "בעל רשימת המשאלות" -#: core/models.py:918 +#: engine/core/models.py:929 msgid "wishlist" msgstr "רשימת משאלות" -#: core/models.py:960 +#: engine/core/models.py:971 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 "" "מייצג תיעוד הקשור למוצר. מחלקה זו משמשת לאחסון מידע על תיעוד הקשור למוצרים " "ספציפיים, כולל העלאת קבצים ומטא-נתונים שלהם. היא מכילה שיטות ותכונות לטיפול " "בסוג הקובץ ובנתיב האחסון של קבצי התיעוד. היא מרחיבה את הפונקציונליות של " "מיקסים ספציפיים ומספקת תכונות מותאמות אישית נוספות." -#: core/models.py:973 +#: engine/core/models.py:984 msgid "documentary" msgstr "סרט תיעודי" -#: core/models.py:974 +#: engine/core/models.py:985 msgid "documentaries" msgstr "סרטים תיעודיים" -#: core/models.py:984 +#: engine/core/models.py:995 msgid "unresolved" msgstr "לא פתור" -#: core/models.py:989 +#: engine/core/models.py:1000 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 גולמיות לעיבוד או בדיקה נוספים. " +"הסוג גם מאפשר לקשר כתובת למשתמש, מה שמקל על טיפול בנתונים מותאמים אישית." -#: core/models.py:1004 +#: engine/core/models.py:1015 msgid "address line for the customer" msgstr "שורת כתובת עבור הלקוח" -#: core/models.py:1005 +#: engine/core/models.py:1016 msgid "address line" msgstr "שורת כתובת" -#: core/models.py:1007 +#: engine/core/models.py:1018 msgid "street" msgstr "רחוב" -#: core/models.py:1008 +#: engine/core/models.py:1019 msgid "district" msgstr "מחוז" -#: core/models.py:1009 +#: engine/core/models.py:1020 msgid "city" msgstr "עיר" -#: core/models.py:1010 +#: engine/core/models.py:1021 msgid "region" msgstr "אזור" -#: core/models.py:1011 +#: engine/core/models.py:1022 msgid "postal code" msgstr "מיקוד" -#: core/models.py:1012 +#: engine/core/models.py:1023 msgid "country" msgstr "מדינה" -#: core/models.py:1019 +#: engine/core/models.py:1030 msgid "geolocation point: (longitude, latitude)" msgstr "נקודת מיקום גיאוגרפי (אורך, רוחב)" -#: core/models.py:1022 +#: engine/core/models.py:1033 msgid "full JSON response from geocoder for this address" msgstr "תגובה JSON מלאה מ-geocoder עבור כתובת זו" -#: core/models.py:1027 +#: engine/core/models.py:1038 msgid "stored JSON response from the geocoding service" msgstr "תגובת JSON שמורה משירות הגיאו-קידוד" -#: core/models.py:1035 +#: engine/core/models.py:1046 msgid "address" msgstr "כתובת" -#: core/models.py:1036 +#: engine/core/models.py:1047 msgid "addresses" msgstr "כתובות" -#: core/models.py:1048 +#: engine/core/models.py:1059 msgid "" "Represents a promotional code that can be used for discounts, managing its " "validity, type of discount, and application. The PromoCode class stores " @@ -2139,232 +2178,233 @@ msgstr "" "מייצג קוד קידום מכירות שניתן להשתמש בו לקבלת הנחות, לניהול תוקפו, סוג ההנחה " "והשימוש בו. מחלקת PromoCode מאחסנת פרטים אודות קוד קידום מכירות, כולל המזהה " "הייחודי שלו, מאפייני ההנחה (סכום או אחוז), תקופת התוקף, המשתמש המשויך (אם " -"יש) ומצב השימוש בו. היא כוללת פונקציונליות לאימות והחלת קוד הקידום על הזמנה," -" תוך הקפדה על עמידה באילוצים." +"יש) ומצב השימוש בו. היא כוללת פונקציונליות לאימות והחלת קוד הקידום על הזמנה, " +"תוך הקפדה על עמידה באילוצים." -#: core/models.py:1062 +#: engine/core/models.py:1073 msgid "unique code used by a user to redeem a discount" msgstr "קוד ייחודי המשמש את המשתמש למימוש הנחה" -#: core/models.py:1063 +#: engine/core/models.py:1074 msgid "promo code identifier" msgstr "מזהה קוד קידום מכירות" -#: core/models.py:1070 +#: engine/core/models.py:1081 msgid "fixed discount amount applied if percent is not used" msgstr "סכום הנחה קבוע המוחל אם לא נעשה שימוש באחוזים" -#: core/models.py:1071 +#: engine/core/models.py:1082 msgid "fixed discount amount" msgstr "סכום הנחה קבוע" -#: core/models.py:1077 +#: engine/core/models.py:1088 msgid "percentage discount applied if fixed amount is not used" msgstr "אחוז ההנחה שיחול אם לא ייעשה שימוש בסכום הקבוע" -#: core/models.py:1078 +#: engine/core/models.py:1089 msgid "percentage discount" msgstr "אחוז ההנחה" -#: core/models.py:1083 +#: engine/core/models.py:1094 msgid "timestamp when the promocode expires" msgstr "חותמת זמן לתוקף הקוד המקדם מכירות" -#: core/models.py:1084 +#: engine/core/models.py:1095 msgid "end validity time" msgstr "תוקף הסוף" -#: core/models.py:1089 +#: engine/core/models.py:1100 msgid "timestamp from which this promocode is valid" msgstr "תאריך התחילה של תוקף קוד המבצע" -#: core/models.py:1090 +#: engine/core/models.py:1101 msgid "start validity time" msgstr "תחילת תוקף" -#: core/models.py:1095 +#: engine/core/models.py:1106 msgid "timestamp when the promocode was used, blank if not used yet" msgstr "חותמת זמן שבה נעשה שימוש בקוד המבצע, ריק אם טרם נעשה בו שימוש" -#: core/models.py:1096 +#: engine/core/models.py:1107 msgid "usage timestamp" msgstr "חותמת זמן שימוש" -#: core/models.py:1101 +#: engine/core/models.py:1112 msgid "user assigned to this promocode if applicable" msgstr "משתמש שהוקצה לקוד קידום מכירות זה, אם רלוונטי" -#: core/models.py:1102 +#: engine/core/models.py:1113 msgid "assigned user" msgstr "משתמש שהוקצה" -#: core/models.py:1109 +#: engine/core/models.py:1120 msgid "promo code" msgstr "קוד קידום מכירות" -#: core/models.py:1110 +#: engine/core/models.py:1121 msgid "promo codes" msgstr "קודי קידום מכירות" -#: core/models.py:1125 +#: engine/core/models.py:1136 msgid "" "only one type of discount should be defined (amount or percent), but not " "both or neither." msgstr "" "יש להגדיר סוג הנחה אחד בלבד (סכום או אחוז), אך לא את שניהם או אף אחד מהם." -#: core/models.py:1146 +#: engine/core/models.py:1157 msgid "promocode already used" msgstr "קוד המבצע כבר נוצל" -#: core/models.py:1162 +#: engine/core/models.py:1173 #, python-brace-format msgid "invalid discount type for promocode {self.uuid}" msgstr "סוג הנחה לא חוקי עבור קוד קידום מכירות {self.uuid}!" -#: core/models.py:1171 +#: engine/core/models.py:1182 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 "" "מייצג הזמנה שבוצעה על ידי משתמש. מחלקה זו מדמה הזמנה בתוך היישום, כולל " "תכונותיה השונות כגון פרטי חיוב ומשלוח, סטטוס, משתמש קשור, התראות ופעולות " "נלוות. להזמנות יכולות להיות מוצרים נלווים, ניתן להחיל עליהן מבצעים, להגדיר " -"כתובות ולעדכן פרטי משלוח או חיוב. כמו כן, הפונקציונליות תומכת בניהול המוצרים" -" במחזור החיים של ההזמנה." +"כתובות ולעדכן פרטי משלוח או חיוב. כמו כן, הפונקציונליות תומכת בניהול המוצרים " +"במחזור החיים של ההזמנה." -#: core/models.py:1188 +#: engine/core/models.py:1199 msgid "the billing address used for this order" msgstr "כתובת החיוב המשמשת להזמנה זו" -#: core/models.py:1196 +#: engine/core/models.py:1207 msgid "optional promo code applied to this order" msgstr "קוד קידום מכירות אופציונלי שהוחל על הזמנה זו" -#: core/models.py:1197 +#: engine/core/models.py:1208 msgid "applied promo code" msgstr "קוד קידום מכירות שהוחל" -#: core/models.py:1205 +#: engine/core/models.py:1216 msgid "the shipping address used for this order" msgstr "כתובת המשלוח המשמשת להזמנה זו" -#: core/models.py:1206 +#: engine/core/models.py:1217 msgid "shipping address" msgstr "כתובת למשלוח" -#: core/models.py:1212 +#: engine/core/models.py:1223 msgid "current status of the order in its lifecycle" msgstr "הסטטוס הנוכחי של ההזמנה במחזור החיים שלה" -#: core/models.py:1213 +#: engine/core/models.py:1224 msgid "order status" msgstr "סטטוס ההזמנה" -#: core/models.py:1218 core/models.py:1695 +#: engine/core/models.py:1229 engine/core/models.py:1755 msgid "json structure of notifications to display to users" msgstr "" "מבנה JSON של הודעות שיוצגו למשתמשים, בממשק המשתמש המנהלי נעשה שימוש בתצוגת " "טבלה." -#: core/models.py:1224 +#: engine/core/models.py:1235 msgid "json representation of order attributes for this order" msgstr "ייצוג JSON של תכונות ההזמנה עבור הזמנה זו" -#: core/models.py:1230 +#: engine/core/models.py:1241 msgid "the user who placed the order" msgstr "המשתמש שהזמין את ההזמנה" -#: core/models.py:1231 +#: engine/core/models.py:1242 msgid "user" msgstr "משתמש" -#: core/models.py:1237 +#: engine/core/models.py:1248 msgid "the timestamp when the order was finalized" msgstr "החותמת הזמן שבה הושלמה ההזמנה" -#: core/models.py:1238 +#: engine/core/models.py:1249 msgid "buy time" msgstr "לקנות זמן" -#: core/models.py:1245 +#: engine/core/models.py:1256 msgid "a human-readable identifier for the order" msgstr "מזהה קריא לאדם עבור ההזמנה" -#: core/models.py:1246 +#: engine/core/models.py:1257 msgid "human readable id" msgstr "מזהה קריא על ידי בני אדם" -#: core/models.py:1252 +#: engine/core/models.py:1263 msgid "order" msgstr "הזמנה" -#: core/models.py:1294 +#: engine/core/models.py:1305 msgid "a user must have only one pending order at a time" msgstr "למשתמש יכול להיות רק הזמנה אחת בהמתנה בכל פעם!" -#: core/models.py:1326 +#: engine/core/models.py:1337 msgid "you cannot add products to an order that is not a pending one" msgstr "לא ניתן להוסיף מוצרים להזמנה שאינה בהמתנה." -#: core/models.py:1331 +#: engine/core/models.py:1342 msgid "you cannot add inactive products to order" msgstr "לא ניתן להוסיף מוצרים לא פעילים להזמנה" -#: core/models.py:1348 +#: engine/core/models.py:1359 msgid "you cannot add more products than available in stock" msgstr "לא ניתן להוסיף מוצרים מעבר למלאי הזמין" -#: core/models.py:1370 core/models.py:1395 core/models.py:1403 +#: engine/core/models.py:1381 engine/core/models.py:1406 +#: engine/core/models.py:1414 msgid "you cannot remove products from an order that is not a pending one" msgstr "לא ניתן להסיר מוצרים מהזמנה שאינה בהמתנה." -#: core/models.py:1391 +#: engine/core/models.py:1402 #, python-brace-format msgid "{name} does not exist with query <{query}>" msgstr "{name} אינו קיים בשאילתה <{query}>!" -#: core/models.py:1423 +#: engine/core/models.py:1434 msgid "promocode does not exist" msgstr "קוד קידום מכירות אינו קיים" -#: core/models.py:1429 +#: engine/core/models.py:1440 msgid "you can only buy physical products with shipping address specified" msgstr "ניתן לרכוש מוצרים פיזיים רק עם ציון כתובת משלוח!" -#: core/models.py:1448 +#: engine/core/models.py:1459 msgid "address does not exist" msgstr "הכתובת אינה קיימת" -#: core/models.py:1469 core/models.py:1538 +#: engine/core/models.py:1480 engine/core/models.py:1549 msgid "you can not buy at this moment, please try again in a few minutes" msgstr "לא ניתן לבצע רכישה כרגע, אנא נסה שוב בעוד מספר דקות." -#: core/models.py:1472 core/models.py:1534 +#: engine/core/models.py:1483 engine/core/models.py:1545 msgid "invalid force value" msgstr "ערך כוח לא חוקי" -#: core/models.py:1478 core/models.py:1541 +#: engine/core/models.py:1489 engine/core/models.py:1552 msgid "you cannot purchase an empty order!" msgstr "אי אפשר לרכוש הזמנה ריקה!" -#: core/models.py:1497 +#: engine/core/models.py:1508 msgid "you cannot buy an order without a user" msgstr "אי אפשר לקנות הזמנה בלי משתמש!" -#: core/models.py:1511 +#: engine/core/models.py:1522 msgid "a user without a balance cannot buy with balance" msgstr "משתמש ללא יתרה לא יכול לקנות עם יתרה!" -#: core/models.py:1516 +#: engine/core/models.py:1527 msgid "insufficient funds to complete the order" msgstr "אין מספיק כסף כדי להשלים את ההזמנה" -#: core/models.py:1550 +#: engine/core/models.py:1561 msgid "" "you cannot buy without registration, please provide the following " "information: customer name, customer email, customer phone number" @@ -2372,13 +2412,50 @@ msgstr "" "אינך יכול לרכוש ללא רישום, אנא ספק את הפרטים הבאים: שם הלקוח, דוא\"ל הלקוח, " "מספר הטלפון של הלקוח" -#: core/models.py:1559 +#: engine/core/models.py:1570 #, python-brace-format msgid "" "invalid payment method: {payment_method} from {available_payment_methods}" msgstr "אמצעי תשלום לא חוקי: {payment_method} מ-{available_payment_methods}!" -#: core/models.py:1668 +#: engine/core/models.py:1685 +msgid "" +"Manages user feedback for products. This class is designed to capture and " +"store user feedback for specific products that they have purchased. It " +"contains attributes to store user comments, a reference to the related " +"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:1697 +msgid "user-provided comments about their experience with the product" +msgstr "הערות שסיפקו המשתמשים על חווייתם עם המוצר" + +#: engine/core/models.py:1698 +msgid "feedback comments" +msgstr "הערות משוב" + +#: engine/core/models.py:1705 +msgid "references the specific product in an order that this feedback is about" +msgstr "מתייחס למוצר הספציפי בהזמנה שעליה מתייחס משוב זה." + +#: engine/core/models.py:1706 +msgid "related order product" +msgstr "מוצר בהזמנה קשורה" + +#: engine/core/models.py:1711 +msgid "user-assigned rating for the product" +msgstr "דירוג שהוקצה על ידי המשתמש למוצר" + +#: engine/core/models.py:1712 +msgid "product rating" +msgstr "דירוג מוצר" + +#: engine/core/models.py:1728 msgid "" "Represents products associated with orders and their attributes. The " "OrderProduct model maintains information about a product that is part of an " @@ -2390,248 +2467,207 @@ 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 ומאחסן הפניה אליהם." -#: core/models.py:1683 +#: engine/core/models.py:1743 msgid "the price paid by the customer for this product at purchase time" msgstr "המחיר ששילם הלקוח עבור מוצר זה בעת הרכישה" -#: core/models.py:1684 +#: engine/core/models.py:1744 msgid "purchase price at order time" msgstr "מחיר הרכישה בעת ההזמנה" -#: core/models.py:1689 +#: engine/core/models.py:1749 msgid "internal comments for admins about this ordered product" msgstr "הערות פנימיות למנהלים אודות מוצר זה שהוזמן" -#: core/models.py:1690 +#: engine/core/models.py:1750 msgid "internal comments" msgstr "הערות פנימיות" -#: core/models.py:1696 +#: engine/core/models.py:1756 msgid "user notifications" msgstr "הודעות למשתמשים" -#: core/models.py:1701 +#: engine/core/models.py:1761 msgid "json representation of this item's attributes" msgstr "ייצוג JSON של תכונות פריט זה" -#: core/models.py:1702 +#: engine/core/models.py:1762 msgid "ordered product attributes" msgstr "תכונות המוצר שהוזמן" -#: core/models.py:1707 +#: engine/core/models.py:1767 msgid "reference to the parent order that contains this product" msgstr "הפניה להזמנה הראשית המכילה מוצר זה" -#: core/models.py:1708 +#: engine/core/models.py:1768 msgid "parent order" msgstr "הזמנת הורים" -#: core/models.py:1717 +#: engine/core/models.py:1777 msgid "the specific product associated with this order line" msgstr "המוצר הספציפי הקשור לשורת הזמנה זו" -#: core/models.py:1724 +#: engine/core/models.py:1784 msgid "quantity of this specific product in the order" msgstr "כמות המוצר הספציפי הזה בהזמנה" -#: core/models.py:1725 +#: engine/core/models.py:1785 msgid "product quantity" msgstr "כמות המוצר" -#: core/models.py:1732 +#: engine/core/models.py:1792 msgid "current status of this product in the order" msgstr "הסטטוס הנוכחי של מוצר זה בהזמנה" -#: core/models.py:1733 +#: engine/core/models.py:1793 msgid "product line status" msgstr "סטטוס קו המוצרים" -#: core/models.py:1798 +#: engine/core/models.py:1858 msgid "order product must have an order" msgstr "המוצר בהזמנה חייב להיות קשור להזמנה!" -#: core/models.py:1800 +#: engine/core/models.py:1860 #, python-brace-format msgid "wrong action specified for feedback: {action}" msgstr "פעולה שגויה שצוינה עבור משוב: {action}!" -#: core/models.py:1814 +#: engine/core/models.py:1874 msgid "you cannot feedback an order which is not received" msgstr "אינך יכול להחזיר הזמנה שלא התקבלה" -#: core/models.py:1820 +#: engine/core/models.py:1880 msgid "name" msgstr "שם" -#: core/models.py:1821 +#: engine/core/models.py:1881 msgid "URL of the integration" msgstr "כתובת ה-URL של האינטגרציה" -#: core/models.py:1822 +#: engine/core/models.py:1882 msgid "authentication credentials" msgstr "אישורי אימות" -#: core/models.py:1844 +#: engine/core/models.py:1904 msgid "you can only have one default CRM provider" msgstr "ניתן להגדיר ספק CRM ברירת מחדל אחד בלבד" -#: core/models.py:1854 +#: engine/core/models.py:1914 msgid "CRM" msgstr "CRM" -#: core/models.py:1855 +#: engine/core/models.py:1915 msgid "CRMs" msgstr "CRM" -#: core/models.py:1867 +#: engine/core/models.py:1927 msgid "order CRM link" msgstr "קישור CRM של ההזמנה" -#: core/models.py:1868 +#: engine/core/models.py:1928 msgid "orders CRM links" msgstr "קישורי CRM של הזמנות" -#: core/models.py:1873 +#: engine/core/models.py:1933 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 להורדת הנכס כאשר ההזמנה הקשורה נמצאת במצב " "'הושלמה'." -#: core/models.py:1887 +#: engine/core/models.py:1947 msgid "download" msgstr "הורדה" -#: core/models.py:1888 +#: engine/core/models.py:1948 msgid "downloads" msgstr "הורדות" -#: core/models.py:1902 -msgid "" -"Manages user feedback for products. This class is designed to capture and " -"store user feedback for specific products that they have purchased. It " -"contains attributes to store user comments, a reference to the related " -"product in the order, and a user-assigned rating. The class uses database " -"fields to effectively model and manage feedback data." -msgstr "" -"מנהל משוב משתמשים על מוצרים. מחלקה זו נועדה לאסוף ולאחסן משוב משתמשים על " -"מוצרים ספציפיים שרכשו. היא מכילה תכונות לאחסון הערות משתמשים, הפניה למוצר " -"הקשור בהזמנה ודירוג שהוקצה על ידי המשתמש. המחלקה משתמשת בשדות מסד נתונים כדי" -" למדל ולנהל ביעילות נתוני משוב." - -#: core/models.py:1914 -msgid "user-provided comments about their experience with the product" -msgstr "הערות שסיפקו המשתמשים על חווייתם עם המוצר" - -#: core/models.py:1915 -msgid "feedback comments" -msgstr "הערות משוב" - -#: core/models.py:1922 -msgid "" -"references the specific product in an order that this feedback is about" -msgstr "מתייחס למוצר הספציפי בהזמנה שעליה מתייחס משוב זה." - -#: core/models.py:1923 -msgid "related order product" -msgstr "מוצר בהזמנה קשורה" - -#: core/models.py:1928 -msgid "user-assigned rating for the product" -msgstr "דירוג שהוקצה על ידי המשתמש למוצר" - -#: core/models.py:1929 -msgid "product rating" -msgstr "דירוג מוצר" - -#: core/serializers/utility.py:89 +#: engine/core/serializers/utility.py:89 msgid "" "you must provide a comment, rating, and order product uuid to add feedback." msgstr "עליך לספק תגובה, דירוג ומספר זיהוי מוצר (uuid) כדי להוסיף משוב." -#: core/signals.py:73 -msgid "error during promocode creation: {e!s}" -msgstr "שגיאה במהלך יצירת קוד קידום מכירות: {e!s}" - -#: core/sitemaps.py:25 +#: engine/core/sitemaps.py:25 msgid "Home" msgstr "בית" -#: core/sitemaps.py:30 +#: engine/core/sitemaps.py:30 msgid "Contact Us" msgstr "צור קשר" -#: core/sitemaps.py:35 +#: engine/core/sitemaps.py:35 msgid "About Us" msgstr "אודות" -#: core/templates/digital_order_created_email.html:7 -#: core/templates/digital_order_created_email.html:100 -#: core/templates/digital_order_delivered_email.html:6 -#: core/templates/shipped_order_created_email.html:7 -#: core/templates/shipped_order_created_email.html:99 -#: core/templates/shipped_order_delivered_email.html:7 -#: core/templates/shipped_order_delivered_email.html:99 +#: engine/core/templates/digital_order_created_email.html:7 +#: engine/core/templates/digital_order_created_email.html:100 +#: engine/core/templates/digital_order_delivered_email.html:6 +#: engine/core/templates/shipped_order_created_email.html:7 +#: engine/core/templates/shipped_order_created_email.html:99 +#: engine/core/templates/shipped_order_delivered_email.html:7 +#: engine/core/templates/shipped_order_delivered_email.html:99 msgid "order confirmation" msgstr "אישור הזמנה" -#: core/templates/digital_order_created_email.html:95 -#: core/templates/digital_order_delivered_email.html:94 -#: core/templates/promocode_granted_email.html:94 -#: core/templates/shipped_order_created_email.html:94 -#: core/templates/shipped_order_delivered_email.html:94 +#: engine/core/templates/digital_order_created_email.html:95 +#: engine/core/templates/digital_order_delivered_email.html:94 +#: engine/core/templates/promocode_granted_email.html:94 +#: engine/core/templates/shipped_order_created_email.html:94 +#: engine/core/templates/shipped_order_delivered_email.html:94 msgid "logo" msgstr "לוגו" -#: core/templates/digital_order_created_email.html:101 -#: core/templates/shipped_order_created_email.html:100 -#: core/templates/shipped_order_delivered_email.html:100 +#: engine/core/templates/digital_order_created_email.html:101 +#: engine/core/templates/shipped_order_created_email.html:100 +#: engine/core/templates/shipped_order_delivered_email.html:100 #, python-format msgid "hello %(order.user.first_name)s," msgstr "שלום %(order.user.first_name)s," -#: core/templates/digital_order_created_email.html:102 +#: engine/core/templates/digital_order_created_email.html:102 #, 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! אנו שמחים להודיע לך שהזמנתך נכנסה לעיבוד. להלן " +"פרטי הזמנתך:" -#: core/templates/digital_order_created_email.html:112 -#: core/templates/digital_order_delivered_email.html:110 -#: core/templates/shipped_order_created_email.html:110 -#: core/templates/shipped_order_delivered_email.html:110 +#: engine/core/templates/digital_order_created_email.html:112 +#: engine/core/templates/digital_order_delivered_email.html:110 +#: engine/core/templates/shipped_order_created_email.html:110 +#: engine/core/templates/shipped_order_delivered_email.html:110 msgid "total" msgstr "סה\"כ" -#: core/templates/digital_order_created_email.html:125 -#: core/templates/digital_order_delivered_email.html:157 -#: core/templates/shipped_order_created_email.html:127 -#: core/templates/shipped_order_delivered_email.html:127 +#: engine/core/templates/digital_order_created_email.html:125 +#: engine/core/templates/digital_order_delivered_email.html:157 +#: engine/core/templates/shipped_order_created_email.html:127 +#: engine/core/templates/shipped_order_delivered_email.html:127 msgid "total price" msgstr "מחיר כולל" -#: core/templates/digital_order_created_email.html:131 -#: core/templates/shipped_order_created_email.html:140 -#: core/templates/shipped_order_delivered_email.html:140 +#: engine/core/templates/digital_order_created_email.html:131 +#: engine/core/templates/shipped_order_created_email.html:140 +#: engine/core/templates/shipped_order_delivered_email.html:140 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" @@ -2639,158 +2675,159 @@ msgid "" msgstr "" "אם יש לך שאלות, אל תהסס לפנות לתמיכה שלנו ב-%(config.EMAIL_HOST_USER)s." -#: core/templates/digital_order_created_email.html:133 +#: engine/core/templates/digital_order_created_email.html:133 #, python-format msgid "best regards,
the %(config.PROJECT_NAME)s team" msgstr "בברכה,
צוות %(config.PROJECT_NAME)s" -#: core/templates/digital_order_created_email.html:139 -#: core/templates/digital_order_delivered_email.html:171 -#: core/templates/promocode_granted_email.html:114 +#: engine/core/templates/digital_order_created_email.html:139 +#: engine/core/templates/digital_order_delivered_email.html:171 +#: engine/core/templates/promocode_granted_email.html:114 msgid "all rights reserved" msgstr "כל הזכויות שמורות" -#: core/templates/digital_order_delivered_email.html:99 +#: engine/core/templates/digital_order_delivered_email.html:99 msgid "order delivered" msgstr "ההזמנה נמסרה" -#: core/templates/digital_order_delivered_email.html:100 -#: core/templates/promocode_granted_email.html:100 +#: engine/core/templates/digital_order_delivered_email.html:100 +#: engine/core/templates/promocode_granted_email.html:100 #, python-format msgid "hello %(user_first_name)s," msgstr "שלום %(user_first_name)s," -#: core/templates/digital_order_delivered_email.html:101 +#: engine/core/templates/digital_order_delivered_email.html:101 #, python-format msgid "" "we have successfully processed your order №%(order_uuid)s! below are the\n" " details of your order:" msgstr "הזמנתך №%(order_uuid)s טופלה בהצלחה! להלן פרטי הזמנתך:" -#: core/templates/digital_order_delivered_email.html:128 +#: engine/core/templates/digital_order_delivered_email.html:128 msgid "" "additional\n" " information" msgstr "מידע נוסף" -#: core/templates/digital_order_delivered_email.html:137 -#: core/templates/json_table_widget.html:6 +#: engine/core/templates/digital_order_delivered_email.html:137 +#: engine/core/templates/json_table_widget.html:6 msgid "value" msgstr "ערך" -#: core/templates/digital_order_delivered_email.html:163 -#: core/templates/promocode_granted_email.html:106 +#: engine/core/templates/digital_order_delivered_email.html:163 +#: engine/core/templates/promocode_granted_email.html:106 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" " %(contact_email)s." msgstr "אם יש לך שאלות, אל תהסס לפנות לתמיכה שלנו ב-%(contact_email)s." -#: core/templates/digital_order_delivered_email.html:165 -#: core/templates/promocode_granted_email.html:108 +#: engine/core/templates/digital_order_delivered_email.html:165 +#: engine/core/templates/promocode_granted_email.html:108 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "בברכה,
צוות %(project_name)s" -#: core/templates/json_table_widget.html:5 +#: engine/core/templates/json_table_widget.html:5 msgid "key" msgstr "מפתח" -#: core/templates/json_table_widget.html:40 +#: engine/core/templates/json_table_widget.html:40 msgid "Add Row" msgstr "הוסף שורה" -#: core/templates/promocode_granted_email.html:6 -#: core/templates/promocode_granted_email.html:99 +#: engine/core/templates/promocode_granted_email.html:6 +#: engine/core/templates/promocode_granted_email.html:99 msgid "promocode granted" msgstr "קוד קידום מכירות מוענק" -#: core/templates/promocode_granted_email.html:101 +#: engine/core/templates/promocode_granted_email.html:101 msgid "" "Thank you for staying with us! We have granted you with a promocode\n" " for " msgstr "תודה על שהייתכם איתנו! הענקנו לכם קוד קידום מכירות עבור" -#: core/templates/shipped_order_created_email.html:101 -#: core/templates/shipped_order_delivered_email.html:101 +#: 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 "תודה על הזמנתך! אנו שמחים לאשר את רכישתך. להלן פרטי הזמנתך:" -#: core/templates/shipped_order_created_email.html:123 -#: core/templates/shipped_order_delivered_email.html:123 +#: engine/core/templates/shipped_order_created_email.html:123 +#: engine/core/templates/shipped_order_delivered_email.html:123 msgid "shipping price" msgstr "מחיר משלוח" -#: core/templates/shipped_order_created_email.html:133 -#: core/templates/shipped_order_delivered_email.html:133 +#: engine/core/templates/shipped_order_created_email.html:133 +#: engine/core/templates/shipped_order_delivered_email.html:133 msgid "your order will be delivered to the following address:" msgstr "ההזמנה שלך תסופק לכתובת הבאה:" -#: core/templates/shipped_order_created_email.html:142 -#: core/templates/shipped_order_delivered_email.html:142 +#: engine/core/templates/shipped_order_created_email.html:142 +#: engine/core/templates/shipped_order_delivered_email.html:142 #, python-format msgid "best regards,
The %(config.PROJECT_NAME)s team" msgstr "בברכה,
צוות %(config.PROJECT_NAME)s" -#: core/templates/shipped_order_created_email.html:147 -#: core/templates/shipped_order_delivered_email.html:147 +#: engine/core/templates/shipped_order_created_email.html:147 +#: engine/core/templates/shipped_order_delivered_email.html:147 msgid "" "all rights\n" " reserved" msgstr "כל הזכויות שמורות" -#: core/utils/caching.py:44 +#: engine/core/utils/caching.py:44 msgid "both data and timeout are required" msgstr "נדרשים הן הנתונים והן זמן ההמתנה" -#: core/utils/caching.py:46 +#: engine/core/utils/caching.py:46 msgid "invalid timeout value, it must be between 0 and 216000 seconds" msgstr "ערך זמן המתנה לא חוקי, הוא חייב להיות בין 0 ל-216000 שניות" -#: core/utils/emailing.py:27 +#: engine/core/utils/emailing.py:27 #, python-brace-format msgid "{config.PROJECT_NAME} | contact us initiated" msgstr "{config.PROJECT_NAME} | צור קשר יוזם" -#: core/utils/emailing.py:73 +#: engine/core/utils/emailing.py:73 #, python-brace-format msgid "{config.PROJECT_NAME} | order confirmation" msgstr "{config.PROJECT_NAME} | אישור הזמנה" -#: core/utils/emailing.py:105 +#: engine/core/utils/emailing.py:105 #, python-brace-format msgid "{config.PROJECT_NAME} | order delivered" msgstr "{config.PROJECT_NAME} | הזמנה נמסרה" -#: core/utils/emailing.py:188 +#: engine/core/utils/emailing.py:188 #, python-brace-format msgid "{config.PROJECT_NAME} | promocode granted" msgstr "{config.PROJECT_NAME} | קוד קידום מכירות מוענק" -#: core/utils/messages.py:3 +#: engine/core/utils/messages.py:3 msgid "you do not have permission to perform this action." msgstr "אין לך הרשאה לבצע פעולה זו." -#: core/utils/nominatim.py:8 +#: engine/core/utils/nominatim.py:8 msgid "NOMINATIM_URL must be configured." msgstr "יש להגדיר את הפרמטר NOMINATIM_URL!" -#: core/validators.py:16 +#: engine/core/validators.py:16 #, 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} פיקסלים!" -#: core/views.py:72 +#: engine/core/views.py:71 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." -#: core/views.py:87 +#: engine/core/views.py:86 msgid "" "Handles the detailed view response for a sitemap. This function processes " "the request, fetches the appropriate sitemap detail response, and sets the " @@ -2799,93 +2836,97 @@ msgstr "" "מטפל בתגובה לתצוגה מפורטת של מפת אתר. פונקציה זו מעבדת את הבקשה, משיגה את " "התגובה המתאימה לפרטי מפת האתר, וקובעת את כותרת Content-Type עבור XML." -#: core/views.py:116 +#: engine/core/views.py:115 msgid "" "Returns a list of supported languages and their corresponding information." msgstr "מחזיר רשימה של שפות נתמכות והמידע המתאים להן." -#: core/views.py:148 +#: engine/core/views.py:147 msgid "Returns the parameters of the website as a JSON object." msgstr "מחזיר את הפרמטרים של האתר כאובייקט JSON." -#: core/views.py:167 +#: engine/core/views.py:166 msgid "" "Handles cache operations such as reading and setting cache data with a " "specified key and timeout." msgstr "" "מטפל בפעולות מטמון כגון קריאה והגדרת נתוני מטמון עם מפתח וזמן המתנה מוגדרים." -#: core/views.py:194 +#: engine/core/views.py:193 msgid "Handles `contact us` form submissions." msgstr "מטפל בהגשת טפסי \"צור קשר\"." -#: core/views.py:215 +#: engine/core/views.py:214 msgid "" "Handles requests for processing and validating URLs from incoming POST " "requests." msgstr "מטפל בבקשות לעיבוד ואימות כתובות URL מבקשות POST נכנסות." -#: core/views.py:255 +#: engine/core/views.py:254 msgid "Handles global search queries." msgstr "מטפל בשאילתות חיפוש גלובליות." -#: core/views.py:270 +#: engine/core/views.py:269 msgid "Handles the logic of buying as a business without registration." msgstr "מטפל בהיגיון הרכישה כעסק ללא רישום." -#: core/views.py:306 +#: engine/core/views.py:305 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 המציינת שהמשאב אינו זמין." -#: core/views.py:316 +#: engine/core/views.py:315 msgid "order_product_uuid is required" msgstr "order_product_uuid נדרש" -#: core/views.py:322 +#: engine/core/views.py:321 msgid "you can only download the digital asset once" msgstr "ניתן להוריד את הנכס הדיגיטלי פעם אחת בלבד" -#: core/views.py:325 +#: engine/core/views.py:324 msgid "the order must be paid before downloading the digital asset" msgstr "יש לשלם את ההזמנה לפני הורדת הנכס הדיגיטלי" -#: core/views.py:331 +#: engine/core/views.py:330 msgid "the order product does not have a product" msgstr "למוצר ההזמנה אין מוצר" -#: core/views.py:369 +#: engine/core/views.py:368 msgid "favicon not found" msgstr "לא נמצא סמל מועדף" -#: core/views.py:374 +#: engine/core/views.py:373 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 "" "מטפל בבקשות לסמל המועדף של אתר אינטרנט. פונקציה זו מנסה להציג את קובץ הסמל " "המועדף הנמצא בספרייה הסטטית של הפרויקט. אם קובץ הסמל המועדף לא נמצא, מתקבלת " "שגיאת HTTP 404 המציינת שהמשאב אינו זמין." -#: core/views.py:386 +#: engine/core/views.py:385 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." -#: core/views.py:399 +#: engine/core/views.py:398 msgid "Returns current version of the eVibes. " msgstr "מחזיר את הגרסה הנוכחית של eVibes." -#: core/viewsets.py:137 +#: engine/core/viewsets.py:137 msgid "" "Defines a viewset for managing Evibes-related operations. The EvibesViewSet " "class inherits from ModelViewSet and provides functionality for handling " @@ -2893,25 +2934,24 @@ msgid "" "serializer classes based on the current action, customizable permissions, " "and rendering formats." msgstr "" -"מגדיר קבוצת תצוגות לניהול פעולות הקשורות ל-Evibes. מחלקת EvibesViewSet יורשת" -" מ-ModelViewSet ומספקת פונקציונליות לטיפול בפעולות ובפעולות על ישויות " -"Evibes. היא כוללת תמיכה במחלוקות סריאליזציה דינמיות המבוססות על הפעולה " -"הנוכחית, הרשאות הניתנות להתאמה אישית ופורמטים של עיבוד." +"מגדיר קבוצת תצוגות לניהול פעולות הקשורות ל-Evibes. מחלקת EvibesViewSet יורשת " +"מ-ModelViewSet ומספקת פונקציונליות לטיפול בפעולות ובפעולות על ישויות Evibes. " +"היא כוללת תמיכה במחלוקות סריאליזציה דינמיות המבוססות על הפעולה הנוכחית, " +"הרשאות הניתנות להתאמה אישית ופורמטים של עיבוד." -#: core/viewsets.py:157 +#: engine/core/viewsets.py:157 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." -#: core/viewsets.py:176 +#: engine/core/viewsets.py:176 msgid "" "Handles operations related to Attribute objects within the application. " "Provides a set of API endpoints to interact with Attribute data. This class " @@ -2925,20 +2965,20 @@ msgstr "" "של אובייקטי Attribute, ומאפשרת שליטה דינמית על הנתונים המוחזרים, כגון סינון " "לפי שדות ספציפיים או אחזור מידע מפורט לעומת מידע מפושט, בהתאם לבקשה." -#: core/viewsets.py:195 +#: engine/core/viewsets.py:195 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." -#: core/viewsets.py:214 +#: engine/core/viewsets.py:214 msgid "" "Manages views for Category-related operations. The CategoryViewSet class is " "responsible for handling operations related to the Category model in the " @@ -2951,7 +2991,7 @@ msgstr "" "וסידור נתוני קטגוריות. מערך התצוגות גם אוכף הרשאות כדי להבטיח שרק משתמשים " "מורשים יוכלו לגשת לנתונים ספציפיים." -#: core/viewsets.py:326 +#: engine/core/viewsets.py:326 msgid "" "Represents a viewset for managing Brand instances. This class provides " "functionality for querying, filtering, and serializing Brand objects. It " @@ -2962,7 +3002,7 @@ msgstr "" "לשאילתה, סינון וסידור אובייקטים של מותג. היא משתמשת במערך ViewSet של Django " "כדי לפשט את היישום של נקודות קצה API לאובייקטים של מותג." -#: core/viewsets.py:438 +#: engine/core/viewsets.py:438 msgid "" "Manages operations related to the `Product` model in the system. This class " "provides a viewset for managing products, including their filtering, " @@ -2972,13 +3012,13 @@ msgid "" "product details, applying permissions, and accessing related feedback of a " "product." msgstr "" -"מנהל פעולות הקשורות למודל `Product` במערכת. מחלקה זו מספקת מערך תצוגה לניהול" -" מוצרים, כולל סינון, סידור סדרתי ופעולות על מופעים ספציפיים. היא מרחיבה את " -"`EvibesViewSet` כדי להשתמש בפונקציונליות משותפת ומשתלבת עם מסגרת Django REST" -" עבור פעולות RESTful API. כוללת שיטות לאחזור פרטי מוצר, החלת הרשאות וגישה " +"מנהל פעולות הקשורות למודל `Product` במערכת. מחלקה זו מספקת מערך תצוגה לניהול " +"מוצרים, כולל סינון, סידור סדרתי ופעולות על מופעים ספציפיים. היא מרחיבה את " +"`EvibesViewSet` כדי להשתמש בפונקציונליות משותפת ומשתלבת עם מסגרת Django REST " +"עבור פעולות RESTful API. כוללת שיטות לאחזור פרטי מוצר, החלת הרשאות וגישה " "למשוב הקשור למוצר." -#: core/viewsets.py:568 +#: engine/core/viewsets.py:568 msgid "" "Represents a viewset for managing Vendor objects. This viewset allows " "fetching, filtering, and serializing Vendor data. It defines the queryset, " @@ -2987,48 +3027,48 @@ msgid "" "Vendor-related resources through the Django REST framework." msgstr "" "מייצג קבוצת תצוגות לניהול אובייקטי ספק. קבוצת תצוגות זו מאפשרת לאחזר, לסנן " -"ולסדר נתוני ספק. היא מגדירה את קבוצת השאילתות, תצורות המסננים ומחלקות הסידור" -" המשמשות לטיפול בפעולות שונות. מטרת מחלקה זו היא לספק גישה יעילה למשאבים " +"ולסדר נתוני ספק. היא מגדירה את קבוצת השאילתות, תצורות המסננים ומחלקות הסידור " +"המשמשות לטיפול בפעולות שונות. מטרת מחלקה זו היא לספק גישה יעילה למשאבים " "הקשורים לספק באמצעות מסגרת Django REST." -#: core/viewsets.py:588 +#: engine/core/viewsets.py:588 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 `EvibesViewSet` and makes " "use of Django's filtering system for querying data." msgstr "" "ייצוג של קבוצת תצוגה המטפלת באובייקטי משוב. מחלקה זו מנהלת פעולות הקשורות " -"לאובייקטי משוב, כולל רישום, סינון ואחזור פרטים. מטרת קבוצת תצוגה זו היא לספק" -" סדרנים שונים לפעולות שונות וליישם טיפול מבוסס הרשאות באובייקטי משוב נגישים." -" היא מרחיבה את `EvibesViewSet` הבסיסי ומשתמשת במערכת הסינון של Django " -"לשאילתת נתונים." +"לאובייקטי משוב, כולל רישום, סינון ואחזור פרטים. מטרת קבוצת תצוגה זו היא לספק " +"סדרנים שונים לפעולות שונות וליישם טיפול מבוסס הרשאות באובייקטי משוב נגישים. " +"היא מרחיבה את `EvibesViewSet` הבסיסי ומשתמשת במערכת הסינון של Django לשאילתת " +"נתונים." -#: core/viewsets.py:615 +#: engine/core/viewsets.py:615 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 משתמש במספר סדרנים " "בהתאם לפעולה הספציפית המתבצעת ומאכוף הרשאות בהתאם בעת אינטראקציה עם נתוני " "הזמנה." -#: core/viewsets.py:813 +#: engine/core/viewsets.py:813 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 " @@ -3036,30 +3076,30 @@ msgstr "" "הרשאות והחלפת סריאלייזר בהתאם לפעולה המבוקשת. בנוסף, הוא מספק פעולה מפורטת " "לטיפול במשוב על מופעים של OrderProduct." -#: core/viewsets.py:867 +#: engine/core/viewsets.py:867 msgid "Manages operations related to Product images in the application. " msgstr "מנהל פעולות הקשורות לתמונות מוצרים ביישום." -#: core/viewsets.py:880 +#: engine/core/viewsets.py:880 msgid "" "Manages the retrieval and handling of PromoCode instances through various " "API actions." msgstr "מנהל את אחזור וטיפול במקרי PromoCode באמצעות פעולות API שונות." -#: core/viewsets.py:902 +#: engine/core/viewsets.py:902 msgid "Represents a view set for managing promotions. " msgstr "מייצג קבוצת תצוגות לניהול מבצעים." -#: core/viewsets.py:915 +#: engine/core/viewsets.py:915 msgid "Handles operations related to Stock data in the system." msgstr "מטפל בפעולות הקשורות לנתוני המלאי במערכת." -#: core/viewsets.py:929 +#: engine/core/viewsets.py:929 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." @@ -3071,7 +3111,7 @@ msgstr "" "שמשתמשים יוכלו לנהל רק את רשימות המשאלות שלהם, אלא אם כן ניתנו הרשאות " "מפורשות." -#: core/viewsets.py:1044 +#: engine/core/viewsets.py:1044 msgid "" "This class provides viewset functionality for managing `Address` objects. " "The AddressViewSet class enables CRUD operations, filtering, and custom " @@ -3084,12 +3124,12 @@ msgstr "" "לישויות כתובת. היא כוללת התנהגויות מיוחדות עבור שיטות HTTP שונות, עקיפת " "סריאלייזר וטיפול בהרשאות בהתבסס על הקשר הבקשה." -#: core/viewsets.py:1111 +#: engine/core/viewsets.py:1111 #, python-brace-format msgid "Geocoding error: {e}" msgstr "שגיאת קידוד גיאוגרפי: {e}" -#: core/viewsets.py:1119 +#: engine/core/viewsets.py:1119 msgid "" "Handles operations related to Product Tags within the application. This " "class provides functionality for retrieving, filtering, and serializing " diff --git a/core/locale/hi_IN/LC_MESSAGES/django.mo b/engine/core/locale/hi_IN/LC_MESSAGES/django.mo similarity index 74% rename from core/locale/hi_IN/LC_MESSAGES/django.mo rename to engine/core/locale/hi_IN/LC_MESSAGES/django.mo index 692bae97..7640ce00 100644 Binary files a/core/locale/hi_IN/LC_MESSAGES/django.mo and b/engine/core/locale/hi_IN/LC_MESSAGES/django.mo differ diff --git a/core/locale/hi_IN/LC_MESSAGES/django.po b/engine/core/locale/hi_IN/LC_MESSAGES/django.po similarity index 62% rename from core/locale/hi_IN/LC_MESSAGES/django.po rename to engine/core/locale/hi_IN/LC_MESSAGES/django.po index b17c781f..4ab99bc1 100644 --- a/core/locale/hi_IN/LC_MESSAGES/django.po +++ b/engine/core/locale/hi_IN/LC_MESSAGES/django.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: EVIBES 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -16,518 +16,526 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: core/abstract.py:12 +#: engine/core/abstract.py:12 msgid "unique id" msgstr "" -#: core/abstract.py:13 +#: engine/core/abstract.py:13 msgid "unique id is used to surely identify any database object" msgstr "" -#: core/abstract.py:20 +#: engine/core/abstract.py:20 msgid "is active" msgstr "" -#: core/abstract.py:21 +#: engine/core/abstract.py:21 msgid "" "if set to false, this object can't be seen by users without needed permission" msgstr "" -#: core/abstract.py:23 core/choices.py:18 +#: engine/core/abstract.py:23 engine/core/choices.py:18 msgid "created" msgstr "" -#: core/abstract.py:23 +#: engine/core/abstract.py:23 msgid "when the object first appeared on the database" msgstr "" -#: core/abstract.py:24 +#: engine/core/abstract.py:24 msgid "modified" msgstr "" -#: core/abstract.py:24 +#: engine/core/abstract.py:24 msgid "when the object was last modified" msgstr "" -#: core/admin.py:68 +#: engine/core/admin.py:68 msgid "translations" msgstr "" -#: core/admin.py:72 +#: engine/core/admin.py:72 msgid "general" msgstr "" -#: core/admin.py:74 +#: engine/core/admin.py:74 msgid "relations" msgstr "" -#: core/admin.py:76 +#: engine/core/admin.py:76 msgid "additional info" msgstr "" -#: core/admin.py:94 +#: engine/core/admin.py:94 msgid "metadata" msgstr "" -#: core/admin.py:101 +#: engine/core/admin.py:101 msgid "timestamps" msgstr "" -#: core/admin.py:116 +#: engine/core/admin.py:116 #, python-format msgid "activate selected %(verbose_name_plural)s" msgstr "" -#: core/admin.py:121 +#: engine/core/admin.py:121 msgid "selected items have been activated." msgstr "" -#: core/admin.py:127 +#: engine/core/admin.py:127 #, python-format msgid "deactivate selected %(verbose_name_plural)s" msgstr "" -#: core/admin.py:132 +#: engine/core/admin.py:132 msgid "selected items have been deactivated." msgstr "" -#: core/admin.py:144 core/graphene/object_types.py:582 -#: core/graphene/object_types.py:589 core/models.py:783 core/models.py:791 +#: engine/core/admin.py:144 engine/core/graphene/object_types.py:586 +#: engine/core/graphene/object_types.py:593 engine/core/models.py:794 +#: engine/core/models.py:802 msgid "attribute value" msgstr "" -#: core/admin.py:145 core/graphene/object_types.py:75 core/models.py:792 +#: engine/core/admin.py:145 engine/core/graphene/object_types.py:75 +#: engine/core/models.py:803 msgid "attribute values" msgstr "" -#: core/admin.py:156 +#: engine/core/admin.py:156 msgid "image" msgstr "" -#: core/admin.py:157 core/graphene/object_types.py:474 +#: engine/core/admin.py:157 engine/core/graphene/object_types.py:474 msgid "images" msgstr "" -#: core/admin.py:168 core/models.py:559 +#: engine/core/admin.py:169 engine/core/models.py:559 msgid "stock" msgstr "" -#: core/admin.py:169 core/graphene/object_types.py:636 +#: engine/core/admin.py:170 engine/core/graphene/object_types.py:640 msgid "stocks" msgstr "" -#: core/admin.py:182 core/models.py:1744 +#: engine/core/admin.py:183 engine/core/models.py:1804 msgid "order product" msgstr "" -#: core/admin.py:183 core/graphene/object_types.py:389 core/models.py:1745 +#: engine/core/admin.py:184 engine/core/graphene/object_types.py:389 +#: engine/core/models.py:1805 msgid "order products" msgstr "" -#: core/admin.py:196 core/admin.py:197 +#: engine/core/admin.py:197 engine/core/admin.py:198 msgid "children" msgstr "" -#: core/admin.py:965 +#: engine/core/admin.py:969 msgid "Config" msgstr "" -#: core/apps.py:8 +#: engine/core/apps.py:8 msgid "core" msgstr "" -#: core/choices.py:4 core/choices.py:20 +#: engine/core/choices.py:4 engine/core/choices.py:20 msgid "finished" msgstr "" -#: core/choices.py:5 core/choices.py:19 +#: engine/core/choices.py:5 engine/core/choices.py:19 msgid "delivering" msgstr "" -#: core/choices.py:6 +#: engine/core/choices.py:6 msgid "delivered" msgstr "" -#: core/choices.py:7 +#: engine/core/choices.py:7 msgid "canceled" msgstr "" -#: core/choices.py:8 core/choices.py:16 core/choices.py:24 +#: engine/core/choices.py:8 engine/core/choices.py:16 engine/core/choices.py:24 msgid "failed" msgstr "" -#: core/choices.py:9 core/choices.py:15 +#: engine/core/choices.py:9 engine/core/choices.py:15 msgid "pending" msgstr "" -#: core/choices.py:10 +#: engine/core/choices.py:10 msgid "accepted" msgstr "" -#: core/choices.py:11 +#: engine/core/choices.py:11 msgid "money returned" msgstr "" -#: core/choices.py:17 +#: engine/core/choices.py:17 msgid "payment" msgstr "" -#: core/choices.py:21 +#: engine/core/choices.py:21 msgid "momental" msgstr "" -#: core/choices.py:24 +#: engine/core/choices.py:24 msgid "successful" msgstr "" -#: core/docs/drf/views.py:17 core/graphene/mutations.py:38 +#: engine/core/docs/drf/views.py:17 engine/core/graphene/mutations.py:38 msgid "cache I/O" msgstr "" -#: core/docs/drf/views.py:19 +#: engine/core/docs/drf/views.py:19 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 "" -#: core/docs/drf/views.py:32 +#: engine/core/docs/drf/views.py:32 msgid "get a list of supported languages" msgstr "" -#: core/docs/drf/views.py:41 +#: engine/core/docs/drf/views.py:41 msgid "get application's exposable parameters" msgstr "" -#: core/docs/drf/views.py:48 +#: engine/core/docs/drf/views.py:48 msgid "send a message to the support team" msgstr "" -#: core/docs/drf/views.py:59 core/graphene/mutations.py:58 +#: engine/core/docs/drf/views.py:59 engine/core/graphene/mutations.py:58 msgid "request a CORSed URL" msgstr "" -#: core/docs/drf/views.py:85 +#: engine/core/docs/drf/views.py:85 msgid "global search endpoint to query across project's tables" msgstr "" -#: core/docs/drf/views.py:91 +#: engine/core/docs/drf/views.py:91 msgid "purchase an order as a business" msgstr "" -#: core/docs/drf/views.py:98 +#: engine/core/docs/drf/views.py:98 msgid "" "purchase an order as a business, using the provided `products` with " "`product_uuid` and `attributes`." msgstr "" -#: core/docs/drf/viewsets.py:58 +#: engine/core/docs/drf/viewsets.py:58 msgid "list all attribute groups (simple view)" msgstr "" -#: core/docs/drf/viewsets.py:62 +#: engine/core/docs/drf/viewsets.py:62 msgid "retrieve a single attribute group (detailed view)" msgstr "" -#: core/docs/drf/viewsets.py:66 +#: engine/core/docs/drf/viewsets.py:66 msgid "create an attribute group" msgstr "" -#: core/docs/drf/viewsets.py:70 +#: engine/core/docs/drf/viewsets.py:70 msgid "delete an attribute group" msgstr "" -#: core/docs/drf/viewsets.py:74 +#: engine/core/docs/drf/viewsets.py:74 msgid "rewrite an existing attribute group saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:78 +#: engine/core/docs/drf/viewsets.py:78 msgid "rewrite some fields of an existing attribute group saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:85 +#: engine/core/docs/drf/viewsets.py:85 msgid "list all attributes (simple view)" msgstr "" -#: core/docs/drf/viewsets.py:89 +#: engine/core/docs/drf/viewsets.py:89 msgid "retrieve a single attribute (detailed view)" msgstr "" -#: core/docs/drf/viewsets.py:93 +#: engine/core/docs/drf/viewsets.py:93 msgid "create an attribute" msgstr "" -#: core/docs/drf/viewsets.py:97 +#: engine/core/docs/drf/viewsets.py:97 msgid "delete an attribute" msgstr "" -#: core/docs/drf/viewsets.py:101 +#: engine/core/docs/drf/viewsets.py:101 msgid "rewrite an existing attribute saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:105 +#: engine/core/docs/drf/viewsets.py:105 msgid "rewrite some fields of an existing attribute saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:112 +#: engine/core/docs/drf/viewsets.py:112 msgid "list all attribute values (simple view)" msgstr "" -#: core/docs/drf/viewsets.py:116 +#: engine/core/docs/drf/viewsets.py:116 msgid "retrieve a single attribute value (detailed view)" msgstr "" -#: core/docs/drf/viewsets.py:120 +#: engine/core/docs/drf/viewsets.py:120 msgid "create an attribute value" msgstr "" -#: core/docs/drf/viewsets.py:124 +#: engine/core/docs/drf/viewsets.py:124 msgid "delete an attribute value" msgstr "" -#: core/docs/drf/viewsets.py:128 +#: engine/core/docs/drf/viewsets.py:128 msgid "rewrite an existing attribute value saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:132 +#: engine/core/docs/drf/viewsets.py:132 msgid "rewrite some fields of an existing attribute value saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:139 core/docs/drf/viewsets.py:140 +#: engine/core/docs/drf/viewsets.py:139 engine/core/docs/drf/viewsets.py:140 msgid "list all categories (simple view)" msgstr "" -#: core/docs/drf/viewsets.py:144 core/docs/drf/viewsets.py:145 +#: engine/core/docs/drf/viewsets.py:144 engine/core/docs/drf/viewsets.py:145 msgid "retrieve a single category (detailed view)" msgstr "" -#: core/docs/drf/viewsets.py:149 core/docs/drf/viewsets.py:150 -msgid "create a category" -msgstr "" - -#: core/docs/drf/viewsets.py:154 core/docs/drf/viewsets.py:155 -msgid "delete a category" -msgstr "" - -#: core/docs/drf/viewsets.py:159 core/docs/drf/viewsets.py:160 -msgid "rewrite an existing category saving non-editables" -msgstr "" - -#: core/docs/drf/viewsets.py:164 core/docs/drf/viewsets.py:165 -msgid "rewrite some fields of an existing category saving non-editables" -msgstr "" - -#: core/docs/drf/viewsets.py:169 core/docs/drf/viewsets.py:501 -#: core/graphene/object_types.py:117 core/graphene/object_types.py:207 -#: core/graphene/object_types.py:482 -msgid "SEO Meta snapshot" -msgstr "" - -#: core/docs/drf/viewsets.py:170 -msgid "returns a snapshot of the category's SEO meta data" -msgstr "" - -#: core/docs/drf/viewsets.py:175 +#: engine/core/docs/drf/viewsets.py:150 engine/core/docs/drf/viewsets.py:183 msgid "Category UUID or slug" msgstr "" -#: core/docs/drf/viewsets.py:188 +#: engine/core/docs/drf/viewsets.py:157 engine/core/docs/drf/viewsets.py:158 +msgid "create a category" +msgstr "" + +#: engine/core/docs/drf/viewsets.py:162 engine/core/docs/drf/viewsets.py:163 +msgid "delete a category" +msgstr "" + +#: engine/core/docs/drf/viewsets.py:167 engine/core/docs/drf/viewsets.py:168 +msgid "rewrite an existing category saving non-editables" +msgstr "" + +#: engine/core/docs/drf/viewsets.py:172 engine/core/docs/drf/viewsets.py:173 +msgid "rewrite some fields of an existing category saving non-editables" +msgstr "" + +#: engine/core/docs/drf/viewsets.py:177 engine/core/docs/drf/viewsets.py:517 +#: engine/core/graphene/object_types.py:117 +#: engine/core/graphene/object_types.py:207 +#: engine/core/graphene/object_types.py:482 +msgid "SEO Meta snapshot" +msgstr "" + +#: engine/core/docs/drf/viewsets.py:178 +msgid "returns a snapshot of the category's SEO meta data" +msgstr "" + +#: engine/core/docs/drf/viewsets.py:196 msgid "list all orders (simple view)" msgstr "" -#: core/docs/drf/viewsets.py:189 +#: engine/core/docs/drf/viewsets.py:197 msgid "for non-staff users, only their own orders are returned." msgstr "" -#: core/docs/drf/viewsets.py:195 +#: engine/core/docs/drf/viewsets.py:203 msgid "" "Case-insensitive substring search across human_readable_id, order_products." "product.name, and order_products.product.partnumber" msgstr "" -#: core/docs/drf/viewsets.py:202 +#: engine/core/docs/drf/viewsets.py:210 msgid "Filter orders with buy_time >= this ISO 8601 datetime" msgstr "" -#: core/docs/drf/viewsets.py:207 +#: engine/core/docs/drf/viewsets.py:215 msgid "Filter orders with buy_time <= this ISO 8601 datetime" msgstr "" -#: core/docs/drf/viewsets.py:212 +#: engine/core/docs/drf/viewsets.py:220 msgid "Filter by exact order UUID" msgstr "" -#: core/docs/drf/viewsets.py:217 +#: engine/core/docs/drf/viewsets.py:225 msgid "Filter by exact human-readable order ID" msgstr "" -#: core/docs/drf/viewsets.py:222 +#: engine/core/docs/drf/viewsets.py:230 msgid "Filter by user's email (case-insensitive exact match)" msgstr "" -#: core/docs/drf/viewsets.py:227 +#: engine/core/docs/drf/viewsets.py:235 msgid "Filter by user's UUID" msgstr "" -#: core/docs/drf/viewsets.py:232 +#: engine/core/docs/drf/viewsets.py:240 msgid "Filter by order status (case-insensitive substring match)" msgstr "" -#: core/docs/drf/viewsets.py:238 +#: engine/core/docs/drf/viewsets.py:246 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')." msgstr "" -#: core/docs/drf/viewsets.py:247 +#: engine/core/docs/drf/viewsets.py:255 msgid "retrieve a single order (detailed view)" msgstr "" -#: core/docs/drf/viewsets.py:251 +#: engine/core/docs/drf/viewsets.py:260 +msgid "Order UUID or human-readable id" +msgstr "" + +#: engine/core/docs/drf/viewsets.py:267 msgid "create an order" msgstr "" -#: core/docs/drf/viewsets.py:252 +#: engine/core/docs/drf/viewsets.py:268 msgid "doesn't work for non-staff users." msgstr "" -#: core/docs/drf/viewsets.py:256 +#: engine/core/docs/drf/viewsets.py:272 msgid "delete an order" msgstr "" -#: core/docs/drf/viewsets.py:260 +#: engine/core/docs/drf/viewsets.py:276 msgid "rewrite an existing order saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:264 +#: engine/core/docs/drf/viewsets.py:280 msgid "rewrite some fields of an existing order saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:268 +#: engine/core/docs/drf/viewsets.py:284 msgid "purchase an order" msgstr "" -#: core/docs/drf/viewsets.py:270 +#: engine/core/docs/drf/viewsets.py:286 msgid "" "finalizes the order purchase. if `force_balance` is used, the purchase is " "completed using the user's balance; if `force_payment` is used, a " "transaction is initiated." msgstr "" -#: core/docs/drf/viewsets.py:282 core/graphene/mutations.py:335 +#: engine/core/docs/drf/viewsets.py:298 engine/core/graphene/mutations.py:335 msgid "purchase an order without account creation" msgstr "" -#: core/docs/drf/viewsets.py:283 +#: engine/core/docs/drf/viewsets.py:299 msgid "finalizes the order purchase for a non-registered user." msgstr "" -#: core/docs/drf/viewsets.py:291 +#: engine/core/docs/drf/viewsets.py:307 msgid "add product to order" msgstr "" -#: core/docs/drf/viewsets.py:292 +#: engine/core/docs/drf/viewsets.py:308 msgid "" "adds a product to an order using the provided `product_uuid` and " "`attributes`." msgstr "" -#: core/docs/drf/viewsets.py:297 +#: engine/core/docs/drf/viewsets.py:313 msgid "add a list of products to order, quantities will not count" msgstr "" -#: core/docs/drf/viewsets.py:298 +#: engine/core/docs/drf/viewsets.py:314 msgid "" "adds a list of products to an order using the provided `product_uuid` and " "`attributes`." msgstr "" -#: core/docs/drf/viewsets.py:303 +#: engine/core/docs/drf/viewsets.py:319 msgid "remove product from order" msgstr "" -#: core/docs/drf/viewsets.py:304 +#: engine/core/docs/drf/viewsets.py:320 msgid "" "removes a product from an order using the provided `product_uuid` and " "`attributes`." msgstr "" -#: core/docs/drf/viewsets.py:309 +#: engine/core/docs/drf/viewsets.py:325 msgid "remove product from order, quantities will not count" msgstr "" -#: core/docs/drf/viewsets.py:310 +#: engine/core/docs/drf/viewsets.py:326 msgid "" "removes a list of products from an order using the provided `product_uuid` " "and `attributes`" msgstr "" -#: core/docs/drf/viewsets.py:318 +#: engine/core/docs/drf/viewsets.py:334 msgid "list all wishlists (simple view)" msgstr "" -#: core/docs/drf/viewsets.py:319 +#: engine/core/docs/drf/viewsets.py:335 msgid "for non-staff users, only their own wishlists are returned." msgstr "" -#: core/docs/drf/viewsets.py:323 +#: engine/core/docs/drf/viewsets.py:339 msgid "retrieve a single wishlist (detailed view)" msgstr "" -#: core/docs/drf/viewsets.py:327 +#: engine/core/docs/drf/viewsets.py:343 msgid "create an wishlist" msgstr "" -#: core/docs/drf/viewsets.py:328 +#: engine/core/docs/drf/viewsets.py:344 msgid "Doesn't work for non-staff users." msgstr "" -#: core/docs/drf/viewsets.py:332 +#: engine/core/docs/drf/viewsets.py:348 msgid "delete an wishlist" msgstr "" -#: core/docs/drf/viewsets.py:336 +#: engine/core/docs/drf/viewsets.py:352 msgid "rewrite an existing wishlist saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:340 +#: engine/core/docs/drf/viewsets.py:356 msgid "rewrite some fields of an existing wishlist saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:344 +#: engine/core/docs/drf/viewsets.py:360 msgid "add product to wishlist" msgstr "" -#: core/docs/drf/viewsets.py:345 +#: engine/core/docs/drf/viewsets.py:361 msgid "adds a product to an wishlist using the provided `product_uuid`" msgstr "" -#: core/docs/drf/viewsets.py:350 +#: engine/core/docs/drf/viewsets.py:366 msgid "remove product from wishlist" msgstr "" -#: core/docs/drf/viewsets.py:351 +#: engine/core/docs/drf/viewsets.py:367 msgid "removes a product from an wishlist using the provided `product_uuid`" msgstr "" -#: core/docs/drf/viewsets.py:356 +#: engine/core/docs/drf/viewsets.py:372 msgid "add many products to wishlist" msgstr "" -#: core/docs/drf/viewsets.py:357 +#: engine/core/docs/drf/viewsets.py:373 msgid "adds many products to an wishlist using the provided `product_uuids`" msgstr "" -#: core/docs/drf/viewsets.py:362 +#: engine/core/docs/drf/viewsets.py:378 msgid "remove many products from wishlist" msgstr "" -#: core/docs/drf/viewsets.py:363 +#: engine/core/docs/drf/viewsets.py:379 msgid "" "removes many products from an wishlist using the provided `product_uuids`" msgstr "" -#: core/docs/drf/viewsets.py:370 +#: engine/core/docs/drf/viewsets.py:386 msgid "" "Filter by one or more attribute name/value pairs. \n" "• **Syntax**: `attr_name=method-value[;attr2=method2-value2]…` \n" @@ -544,871 +552,893 @@ msgid "" "`b64-description=icontains-aGVhdC1jb2xk`" msgstr "" -#: core/docs/drf/viewsets.py:386 core/docs/drf/viewsets.py:387 +#: engine/core/docs/drf/viewsets.py:402 engine/core/docs/drf/viewsets.py:403 msgid "list all products (simple view)" msgstr "" -#: core/docs/drf/viewsets.py:392 +#: engine/core/docs/drf/viewsets.py:408 msgid "(exact) Product UUID" msgstr "" -#: core/docs/drf/viewsets.py:399 +#: engine/core/docs/drf/viewsets.py:415 msgid "" "Comma-separated list of fields to sort by. Prefix with `-` for " "descending. \n" "**Allowed:** uuid, rating, name, slug, created, modified, price, random" msgstr "" -#: core/docs/drf/viewsets.py:413 core/docs/drf/viewsets.py:414 +#: engine/core/docs/drf/viewsets.py:429 engine/core/docs/drf/viewsets.py:430 msgid "retrieve a single product (detailed view)" msgstr "" -#: core/docs/drf/viewsets.py:419 core/docs/drf/viewsets.py:443 -#: core/docs/drf/viewsets.py:459 core/docs/drf/viewsets.py:475 -#: core/docs/drf/viewsets.py:491 core/docs/drf/viewsets.py:507 +#: engine/core/docs/drf/viewsets.py:435 engine/core/docs/drf/viewsets.py:459 +#: engine/core/docs/drf/viewsets.py:475 engine/core/docs/drf/viewsets.py:491 +#: engine/core/docs/drf/viewsets.py:507 engine/core/docs/drf/viewsets.py:523 msgid "Product UUID or slug" msgstr "" -#: core/docs/drf/viewsets.py:429 core/docs/drf/viewsets.py:430 +#: engine/core/docs/drf/viewsets.py:445 engine/core/docs/drf/viewsets.py:446 msgid "create a product" msgstr "" -#: core/docs/drf/viewsets.py:437 core/docs/drf/viewsets.py:438 +#: engine/core/docs/drf/viewsets.py:453 engine/core/docs/drf/viewsets.py:454 msgid "rewrite an existing product, preserving non-editable fields" msgstr "" -#: core/docs/drf/viewsets.py:453 core/docs/drf/viewsets.py:454 +#: engine/core/docs/drf/viewsets.py:469 engine/core/docs/drf/viewsets.py:470 msgid "" "update some fields of an existing product, preserving non-editable fields" msgstr "" -#: core/docs/drf/viewsets.py:469 core/docs/drf/viewsets.py:470 +#: engine/core/docs/drf/viewsets.py:485 engine/core/docs/drf/viewsets.py:486 msgid "delete a product" msgstr "" -#: core/docs/drf/viewsets.py:485 core/docs/drf/viewsets.py:486 +#: engine/core/docs/drf/viewsets.py:501 engine/core/docs/drf/viewsets.py:502 msgid "lists all permitted feedbacks for a product" msgstr "" -#: core/docs/drf/viewsets.py:502 +#: engine/core/docs/drf/viewsets.py:518 msgid "returns a snapshot of the product's SEO meta data" msgstr "" -#: core/docs/drf/viewsets.py:520 +#: engine/core/docs/drf/viewsets.py:536 msgid "list all addresses" msgstr "" -#: core/docs/drf/viewsets.py:527 +#: engine/core/docs/drf/viewsets.py:543 msgid "retrieve a single address" msgstr "" -#: core/docs/drf/viewsets.py:534 +#: engine/core/docs/drf/viewsets.py:550 msgid "create a new address" msgstr "" -#: core/docs/drf/viewsets.py:542 +#: engine/core/docs/drf/viewsets.py:558 msgid "delete an address" msgstr "" -#: core/docs/drf/viewsets.py:549 +#: engine/core/docs/drf/viewsets.py:565 msgid "update an entire address" msgstr "" -#: core/docs/drf/viewsets.py:557 +#: engine/core/docs/drf/viewsets.py:573 msgid "partially update an address" msgstr "" -#: core/docs/drf/viewsets.py:565 +#: engine/core/docs/drf/viewsets.py:581 msgid "autocomplete address suggestions" msgstr "" -#: core/docs/drf/viewsets.py:570 +#: engine/core/docs/drf/viewsets.py:586 msgid "raw data query string, please append with data from geo-IP endpoint" msgstr "" -#: core/docs/drf/viewsets.py:576 +#: engine/core/docs/drf/viewsets.py:592 msgid "limit the results amount, 1 < limit < 10, default: 5" msgstr "" -#: core/docs/drf/viewsets.py:589 +#: engine/core/docs/drf/viewsets.py:605 msgid "list all feedbacks (simple view)" msgstr "" -#: core/docs/drf/viewsets.py:593 +#: engine/core/docs/drf/viewsets.py:609 msgid "retrieve a single feedback (detailed view)" msgstr "" -#: core/docs/drf/viewsets.py:597 +#: engine/core/docs/drf/viewsets.py:613 msgid "create a feedback" msgstr "" -#: core/docs/drf/viewsets.py:601 +#: engine/core/docs/drf/viewsets.py:617 msgid "delete a feedback" msgstr "" -#: core/docs/drf/viewsets.py:605 +#: engine/core/docs/drf/viewsets.py:621 msgid "rewrite an existing feedback saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:609 +#: engine/core/docs/drf/viewsets.py:625 msgid "rewrite some fields of an existing feedback saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:616 +#: engine/core/docs/drf/viewsets.py:632 msgid "list all order–product relations (simple view)" msgstr "" -#: core/docs/drf/viewsets.py:623 +#: engine/core/docs/drf/viewsets.py:639 msgid "retrieve a single order–product relation (detailed view)" msgstr "" -#: core/docs/drf/viewsets.py:630 +#: engine/core/docs/drf/viewsets.py:646 msgid "create a new order–product relation" msgstr "" -#: core/docs/drf/viewsets.py:637 +#: engine/core/docs/drf/viewsets.py:653 msgid "replace an existing order–product relation" msgstr "" -#: core/docs/drf/viewsets.py:644 +#: engine/core/docs/drf/viewsets.py:660 msgid "partially update an existing order–product relation" msgstr "" -#: core/docs/drf/viewsets.py:651 +#: engine/core/docs/drf/viewsets.py:667 msgid "delete an order–product relation" msgstr "" -#: core/docs/drf/viewsets.py:658 +#: engine/core/docs/drf/viewsets.py:674 msgid "add or remove feedback on an order–product relation" msgstr "" -#: core/docs/drf/viewsets.py:672 +#: engine/core/docs/drf/viewsets.py:688 msgid "list all brands (simple view)" msgstr "" -#: core/docs/drf/viewsets.py:676 +#: engine/core/docs/drf/viewsets.py:692 msgid "retrieve a single brand (detailed view)" msgstr "" -#: core/docs/drf/viewsets.py:680 +#: engine/core/docs/drf/viewsets.py:697 engine/core/docs/drf/viewsets.py:725 +msgid "Brand UUID or slug" +msgstr "" + +#: engine/core/docs/drf/viewsets.py:704 msgid "create a brand" msgstr "" -#: core/docs/drf/viewsets.py:684 +#: engine/core/docs/drf/viewsets.py:708 msgid "delete a brand" msgstr "" -#: core/docs/drf/viewsets.py:688 +#: engine/core/docs/drf/viewsets.py:712 msgid "rewrite an existing brand saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:692 +#: engine/core/docs/drf/viewsets.py:716 msgid "rewrite some fields of an existing brand saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:696 +#: engine/core/docs/drf/viewsets.py:720 msgid "SEO Meta snapshot for brand" msgstr "" -#: core/docs/drf/viewsets.py:703 +#: engine/core/docs/drf/viewsets.py:735 msgid "list all vendors (simple view)" msgstr "" -#: core/docs/drf/viewsets.py:707 +#: engine/core/docs/drf/viewsets.py:739 msgid "retrieve a single vendor (detailed view)" msgstr "" -#: core/docs/drf/viewsets.py:711 +#: engine/core/docs/drf/viewsets.py:743 msgid "create a vendor" msgstr "" -#: core/docs/drf/viewsets.py:715 +#: engine/core/docs/drf/viewsets.py:747 msgid "delete a vendor" msgstr "" -#: core/docs/drf/viewsets.py:719 +#: engine/core/docs/drf/viewsets.py:751 msgid "rewrite an existing vendor saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:723 +#: engine/core/docs/drf/viewsets.py:755 msgid "rewrite some fields of an existing vendor saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:730 +#: engine/core/docs/drf/viewsets.py:762 msgid "list all product images (simple view)" msgstr "" -#: core/docs/drf/viewsets.py:734 +#: engine/core/docs/drf/viewsets.py:766 msgid "retrieve a single product image (detailed view)" msgstr "" -#: core/docs/drf/viewsets.py:738 +#: engine/core/docs/drf/viewsets.py:770 msgid "create a product image" msgstr "" -#: core/docs/drf/viewsets.py:742 +#: engine/core/docs/drf/viewsets.py:774 msgid "delete a product image" msgstr "" -#: core/docs/drf/viewsets.py:746 +#: engine/core/docs/drf/viewsets.py:778 msgid "rewrite an existing product image saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:750 +#: engine/core/docs/drf/viewsets.py:782 msgid "rewrite some fields of an existing product image saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:757 +#: engine/core/docs/drf/viewsets.py:789 msgid "list all promo codes (simple view)" msgstr "" -#: core/docs/drf/viewsets.py:761 +#: engine/core/docs/drf/viewsets.py:793 msgid "retrieve a single promo code (detailed view)" msgstr "" -#: core/docs/drf/viewsets.py:765 +#: engine/core/docs/drf/viewsets.py:797 msgid "create a promo code" msgstr "" -#: core/docs/drf/viewsets.py:769 +#: engine/core/docs/drf/viewsets.py:801 msgid "delete a promo code" msgstr "" -#: core/docs/drf/viewsets.py:773 +#: engine/core/docs/drf/viewsets.py:805 msgid "rewrite an existing promo code saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:777 +#: engine/core/docs/drf/viewsets.py:809 msgid "rewrite some fields of an existing promo code saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:784 +#: engine/core/docs/drf/viewsets.py:816 msgid "list all promotions (simple view)" msgstr "" -#: core/docs/drf/viewsets.py:788 +#: engine/core/docs/drf/viewsets.py:820 msgid "retrieve a single promotion (detailed view)" msgstr "" -#: core/docs/drf/viewsets.py:792 +#: engine/core/docs/drf/viewsets.py:824 msgid "create a promotion" msgstr "" -#: core/docs/drf/viewsets.py:796 +#: engine/core/docs/drf/viewsets.py:828 msgid "delete a promotion" msgstr "" -#: core/docs/drf/viewsets.py:800 +#: engine/core/docs/drf/viewsets.py:832 msgid "rewrite an existing promotion saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:804 +#: engine/core/docs/drf/viewsets.py:836 msgid "rewrite some fields of an existing promotion saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:811 +#: engine/core/docs/drf/viewsets.py:843 msgid "list all stocks (simple view)" msgstr "" -#: core/docs/drf/viewsets.py:815 +#: engine/core/docs/drf/viewsets.py:847 msgid "retrieve a single stock (detailed view)" msgstr "" -#: core/docs/drf/viewsets.py:819 +#: engine/core/docs/drf/viewsets.py:851 msgid "create a stock record" msgstr "" -#: core/docs/drf/viewsets.py:823 +#: engine/core/docs/drf/viewsets.py:855 msgid "delete a stock record" msgstr "" -#: core/docs/drf/viewsets.py:827 +#: engine/core/docs/drf/viewsets.py:859 msgid "rewrite an existing stock record saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:831 +#: engine/core/docs/drf/viewsets.py:863 msgid "rewrite some fields of an existing stock record saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:838 +#: engine/core/docs/drf/viewsets.py:870 msgid "list all product tags (simple view)" msgstr "" -#: core/docs/drf/viewsets.py:842 +#: engine/core/docs/drf/viewsets.py:874 msgid "retrieve a single product tag (detailed view)" msgstr "" -#: core/docs/drf/viewsets.py:846 +#: engine/core/docs/drf/viewsets.py:878 msgid "create a product tag" msgstr "" -#: core/docs/drf/viewsets.py:850 +#: engine/core/docs/drf/viewsets.py:882 msgid "delete a product tag" msgstr "" -#: core/docs/drf/viewsets.py:854 +#: engine/core/docs/drf/viewsets.py:886 msgid "rewrite an existing product tag saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:858 +#: engine/core/docs/drf/viewsets.py:890 msgid "rewrite some fields of an existing product tag saving non-editables" msgstr "" -#: core/elasticsearch/__init__.py:118 core/elasticsearch/__init__.py:550 +#: engine/core/elasticsearch/__init__.py:122 +#: engine/core/elasticsearch/__init__.py:570 msgid "no search term provided." msgstr "" -#: core/filters.py:69 core/filters.py:412 core/filters.py:539 +#: engine/core/filters.py:69 engine/core/filters.py:426 +#: engine/core/filters.py:553 msgid "Search" msgstr "" -#: core/filters.py:70 core/filters.py:569 core/filters.py:598 +#: engine/core/filters.py:70 engine/core/filters.py:583 +#: engine/core/filters.py:612 msgid "UUID" msgstr "" -#: core/filters.py:71 core/filters.py:414 core/filters.py:541 +#: engine/core/filters.py:71 engine/core/filters.py:428 +#: engine/core/filters.py:555 msgid "Name" msgstr "" -#: core/filters.py:72 core/filters.py:543 +#: engine/core/filters.py:72 engine/core/filters.py:557 msgid "Categories" msgstr "" -#: core/filters.py:74 +#: engine/core/filters.py:74 msgid "Categories Slugs" msgstr "" -#: core/filters.py:75 core/filters.py:422 +#: engine/core/filters.py:75 engine/core/filters.py:436 msgid "Tags" msgstr "" -#: core/filters.py:76 +#: engine/core/filters.py:76 msgid "Min Price" msgstr "" -#: core/filters.py:77 +#: engine/core/filters.py:77 msgid "Max Price" msgstr "" -#: core/filters.py:78 +#: engine/core/filters.py:78 msgid "Is Active" msgstr "" -#: core/filters.py:79 +#: engine/core/filters.py:79 msgid "Brand" msgstr "" -#: core/filters.py:80 +#: engine/core/filters.py:80 msgid "Attributes" msgstr "" -#: core/filters.py:81 +#: engine/core/filters.py:81 msgid "Quantity" msgstr "" -#: core/filters.py:82 core/filters.py:416 core/filters.py:542 -#: core/models.py:322 core/models.py:483 core/models.py:637 +#: engine/core/filters.py:82 engine/core/filters.py:430 +#: engine/core/filters.py:556 engine/core/models.py:321 +#: engine/core/models.py:482 engine/core/models.py:637 msgid "Slug" msgstr "" -#: core/filters.py:83 +#: engine/core/filters.py:83 msgid "Is Digital" msgstr "" -#: core/filters.py:84 +#: engine/core/filters.py:84 msgid "Include sub-categories" msgstr "" -#: core/filters.py:87 +#: engine/core/filters.py:87 msgid "Include personal ordered" msgstr "" -#: core/filters.py:89 core/models.py:641 +#: engine/core/filters.py:89 engine/core/models.py:641 msgid "SKU" msgstr "" -#: core/filters.py:173 +#: engine/core/filters.py:184 msgid "there must be a category_uuid to use include_subcategories flag" msgstr "" -#: core/filters.py:339 +#: engine/core/filters.py:353 msgid "Search (ID, product name or part number)" msgstr "" -#: core/filters.py:342 +#: engine/core/filters.py:356 msgid "Bought after (inclusive)" msgstr "" -#: core/filters.py:343 +#: engine/core/filters.py:357 msgid "Bought before (inclusive)" msgstr "" -#: core/filters.py:346 core/filters.py:393 core/filters.py:600 +#: engine/core/filters.py:360 engine/core/filters.py:407 +#: engine/core/filters.py:614 msgid "User email" msgstr "" -#: core/filters.py:347 core/filters.py:394 core/filters.py:578 -#: core/filters.py:599 +#: engine/core/filters.py:361 engine/core/filters.py:408 +#: engine/core/filters.py:592 engine/core/filters.py:613 msgid "User UUID" msgstr "" -#: core/filters.py:348 +#: engine/core/filters.py:362 msgid "Status" msgstr "" -#: core/filters.py:352 +#: engine/core/filters.py:366 msgid "Human Readable ID" msgstr "" -#: core/filters.py:415 +#: engine/core/filters.py:429 msgid "Parent" msgstr "" -#: core/filters.py:419 +#: engine/core/filters.py:433 msgid "Whole category(has at least 1 product or not)" msgstr "" -#: core/filters.py:423 +#: engine/core/filters.py:437 msgid "Level" msgstr "" -#: core/filters.py:573 +#: engine/core/filters.py:587 msgid "Product UUID" msgstr "" -#: core/graphene/mutations.py:41 +#: engine/core/graphene/mutations.py:41 msgid "key to look for in or set into the cache" msgstr "" -#: core/graphene/mutations.py:42 +#: engine/core/graphene/mutations.py:42 msgid "data to store in cache" msgstr "" -#: core/graphene/mutations.py:45 +#: engine/core/graphene/mutations.py:45 msgid "timeout in seconds to set the data for into the cache" msgstr "" -#: core/graphene/mutations.py:48 +#: engine/core/graphene/mutations.py:48 msgid "cached data" msgstr "" -#: core/graphene/mutations.py:63 +#: engine/core/graphene/mutations.py:63 msgid "camelized JSON data from the requested URL" msgstr "" -#: core/graphene/mutations.py:68 core/views.py:232 +#: engine/core/graphene/mutations.py:68 engine/core/views.py:231 msgid "only URLs starting with http(s):// are allowed" msgstr "" -#: core/graphene/mutations.py:84 +#: engine/core/graphene/mutations.py:84 msgid "add a product to the order" msgstr "" -#: core/graphene/mutations.py:105 core/graphene/mutations.py:132 -#: core/graphene/mutations.py:240 core/graphene/mutations.py:288 +#: engine/core/graphene/mutations.py:105 engine/core/graphene/mutations.py:132 +#: engine/core/graphene/mutations.py:240 engine/core/graphene/mutations.py:288 #, python-brace-format msgid "order {order_uuid} not found" msgstr "" -#: core/graphene/mutations.py:111 core/graphene/mutations.py:160 +#: engine/core/graphene/mutations.py:111 engine/core/graphene/mutations.py:160 msgid "remove a product from the order" msgstr "" -#: core/graphene/mutations.py:138 +#: engine/core/graphene/mutations.py:138 msgid "remove all products from the order" msgstr "" -#: core/graphene/mutations.py:183 +#: engine/core/graphene/mutations.py:183 msgid "buy an order" msgstr "" -#: core/graphene/mutations.py:212 core/graphene/mutations.py:266 +#: engine/core/graphene/mutations.py:212 engine/core/graphene/mutations.py:266 msgid "please provide either order_uuid or order_hr_id - mutually exclusive" msgstr "" -#: core/graphene/mutations.py:237 core/graphene/mutations.py:502 -#: core/graphene/mutations.py:544 core/viewsets.py:704 +#: engine/core/graphene/mutations.py:237 engine/core/graphene/mutations.py:502 +#: engine/core/graphene/mutations.py:544 engine/core/viewsets.py:704 msgid "wrong type came from order.buy() method: {type(instance)!s}" msgstr "" -#: core/graphene/mutations.py:246 +#: engine/core/graphene/mutations.py:246 msgid "perform an action on a list of products in the order" msgstr "" -#: core/graphene/mutations.py:251 +#: engine/core/graphene/mutations.py:251 msgid "remove/add" msgstr "" -#: core/graphene/mutations.py:283 core/graphene/mutations.py:324 +#: engine/core/graphene/mutations.py:283 engine/core/graphene/mutations.py:324 msgid "action must be either add or remove" msgstr "" -#: core/graphene/mutations.py:294 +#: engine/core/graphene/mutations.py:294 msgid "perform an action on a list of products in the wishlist" msgstr "" -#: core/graphene/mutations.py:312 +#: engine/core/graphene/mutations.py:312 msgid "please provide wishlist_uuid value" msgstr "" -#: core/graphene/mutations.py:329 core/graphene/mutations.py:405 -#: core/graphene/mutations.py:433 core/graphene/mutations.py:461 -#: core/graphene/mutations.py:505 +#: engine/core/graphene/mutations.py:329 engine/core/graphene/mutations.py:405 +#: engine/core/graphene/mutations.py:433 engine/core/graphene/mutations.py:461 +#: engine/core/graphene/mutations.py:505 #, python-brace-format msgid "wishlist {wishlist_uuid} not found" msgstr "" -#: core/graphene/mutations.py:383 +#: engine/core/graphene/mutations.py:383 msgid "add a product to the wishlist" msgstr "" -#: core/graphene/mutations.py:411 +#: engine/core/graphene/mutations.py:411 msgid "remove a product from the wishlist" msgstr "" -#: core/graphene/mutations.py:439 +#: engine/core/graphene/mutations.py:439 msgid "remove all products from the wishlist" msgstr "" -#: core/graphene/mutations.py:467 +#: engine/core/graphene/mutations.py:467 msgid "buy all products from the wishlist" msgstr "" -#: core/graphene/mutations.py:511 +#: engine/core/graphene/mutations.py:511 msgid "buy a product" msgstr "" -#: core/graphene/mutations.py:517 +#: engine/core/graphene/mutations.py:517 msgid "" "please send the attributes as the string formatted like attr1=value1," "attr2=value2" msgstr "" -#: core/graphene/mutations.py:550 +#: engine/core/graphene/mutations.py:550 msgid "add or delete a feedback for orderproduct" msgstr "" -#: core/graphene/mutations.py:574 +#: engine/core/graphene/mutations.py:574 msgid "action must be either `add` or `remove`" msgstr "" -#: core/graphene/mutations.py:577 +#: engine/core/graphene/mutations.py:577 #, python-brace-format msgid "order product {order_product_uuid} not found" msgstr "" -#: core/graphene/mutations.py:644 +#: engine/core/graphene/mutations.py:644 msgid "original address string provided by the user" msgstr "" -#: core/graphene/mutations.py:680 core/models.py:930 core/models.py:943 -#: core/models.py:1358 core/models.py:1387 core/models.py:1412 -#: core/viewsets.py:707 +#: engine/core/graphene/mutations.py:680 engine/core/models.py:941 +#: engine/core/models.py:954 engine/core/models.py:1369 +#: engine/core/models.py:1398 engine/core/models.py:1423 +#: engine/core/viewsets.py:707 #, python-brace-format msgid "{name} does not exist: {uuid}" msgstr "" -#: core/graphene/mutations.py:694 +#: engine/core/graphene/mutations.py:694 msgid "limit must be between 1 and 10" msgstr "" -#: core/graphene/mutations.py:743 +#: engine/core/graphene/mutations.py:743 msgid "elasticsearch - works like a charm" msgstr "" -#: core/graphene/object_types.py:82 core/graphene/object_types.py:370 -#: core/graphene/object_types.py:417 core/models.py:754 core/models.py:1225 -#: core/models.py:1823 +#: engine/core/graphene/object_types.py:82 +#: engine/core/graphene/object_types.py:370 +#: engine/core/graphene/object_types.py:417 engine/core/models.py:765 +#: engine/core/models.py:1236 engine/core/models.py:1883 msgid "attributes" msgstr "" -#: core/graphene/object_types.py:95 +#: engine/core/graphene/object_types.py:95 msgid "grouped attributes" msgstr "" -#: core/graphene/object_types.py:102 +#: engine/core/graphene/object_types.py:102 msgid "groups of attributes" msgstr "" -#: core/graphene/object_types.py:116 core/graphene/object_types.py:193 -#: core/graphene/object_types.py:223 core/models.py:426 +#: engine/core/graphene/object_types.py:116 +#: engine/core/graphene/object_types.py:193 +#: engine/core/graphene/object_types.py:223 engine/core/models.py:425 msgid "categories" msgstr "" -#: core/graphene/object_types.py:124 core/models.py:497 +#: engine/core/graphene/object_types.py:124 engine/core/models.py:496 msgid "brands" msgstr "" -#: core/graphene/object_types.py:195 +#: engine/core/graphene/object_types.py:195 msgid "category image url" msgstr "" -#: core/graphene/object_types.py:196 core/graphene/object_types.py:317 -#: core/models.py:284 +#: engine/core/graphene/object_types.py:196 +#: engine/core/graphene/object_types.py:317 engine/core/models.py:283 msgid "markup percentage" msgstr "" -#: core/graphene/object_types.py:199 +#: engine/core/graphene/object_types.py:199 msgid "which attributes and values can be used for filtering this category." msgstr "" -#: core/graphene/object_types.py:203 +#: engine/core/graphene/object_types.py:203 msgid "minimum and maximum prices for products in this category, if available." msgstr "" -#: core/graphene/object_types.py:205 +#: engine/core/graphene/object_types.py:205 msgid "tags for this category" msgstr "" -#: core/graphene/object_types.py:206 +#: engine/core/graphene/object_types.py:206 msgid "products in this category" msgstr "" -#: core/graphene/object_types.py:324 core/models.py:189 +#: engine/core/graphene/object_types.py:324 engine/core/models.py:188 msgid "vendors" msgstr "" -#: core/graphene/object_types.py:328 +#: engine/core/graphene/object_types.py:328 msgid "Latitude (Y coordinate)" msgstr "" -#: core/graphene/object_types.py:329 +#: engine/core/graphene/object_types.py:329 msgid "Longitude (X coordinate)" msgstr "" -#: core/graphene/object_types.py:358 +#: engine/core/graphene/object_types.py:358 msgid "comment" msgstr "" -#: core/graphene/object_types.py:359 core/graphene/object_types.py:483 +#: engine/core/graphene/object_types.py:359 +#: engine/core/graphene/object_types.py:483 msgid "rating value from 1 to 10, inclusive, or 0 if not set." msgstr "" -#: core/graphene/object_types.py:366 +#: engine/core/graphene/object_types.py:366 msgid "represents feedback from a user." msgstr "" -#: core/graphene/object_types.py:371 core/graphene/object_types.py:418 -#: core/models.py:1219 +#: engine/core/graphene/object_types.py:371 +#: engine/core/graphene/object_types.py:418 engine/core/models.py:1230 msgid "notifications" msgstr "" -#: core/graphene/object_types.py:372 +#: engine/core/graphene/object_types.py:372 msgid "download url for this order product if applicable" msgstr "" -#: core/graphene/object_types.py:373 core/models.py:1939 +#: engine/core/graphene/object_types.py:373 engine/core/models.py:1722 msgid "feedback" msgstr "" -#: core/graphene/object_types.py:407 +#: engine/core/graphene/object_types.py:407 msgid "a list of order products in this order" msgstr "" -#: core/graphene/object_types.py:409 core/models.py:1189 +#: engine/core/graphene/object_types.py:409 engine/core/models.py:1200 msgid "billing address" msgstr "" -#: core/graphene/object_types.py:412 +#: engine/core/graphene/object_types.py:412 msgid "" "shipping address for this order, leave blank if same as billing address or " "if not applicable" msgstr "" -#: core/graphene/object_types.py:414 +#: engine/core/graphene/object_types.py:414 msgid "total price of this order" msgstr "" -#: core/graphene/object_types.py:415 +#: engine/core/graphene/object_types.py:415 msgid "total quantity of products in order" msgstr "" -#: core/graphene/object_types.py:416 +#: engine/core/graphene/object_types.py:416 msgid "are all products in the order digital" msgstr "" -#: core/graphene/object_types.py:419 +#: engine/core/graphene/object_types.py:419 msgid "transactions for this order" msgstr "" -#: core/graphene/object_types.py:438 core/models.py:1253 +#: engine/core/graphene/object_types.py:438 engine/core/models.py:1264 msgid "orders" msgstr "" -#: core/graphene/object_types.py:459 +#: engine/core/graphene/object_types.py:459 msgid "image url" msgstr "" -#: core/graphene/object_types.py:466 +#: engine/core/graphene/object_types.py:466 msgid "product's images" msgstr "" -#: core/graphene/object_types.py:473 core/models.py:425 core/models.py:579 +#: engine/core/graphene/object_types.py:473 engine/core/models.py:424 +#: engine/core/models.py:579 msgid "category" msgstr "" -#: core/graphene/object_types.py:475 core/models.py:1940 +#: engine/core/graphene/object_types.py:475 engine/core/models.py:1723 msgid "feedbacks" msgstr "" -#: core/graphene/object_types.py:476 core/models.py:496 core/models.py:588 +#: engine/core/graphene/object_types.py:476 engine/core/models.py:495 +#: engine/core/models.py:588 msgid "brand" msgstr "" -#: core/graphene/object_types.py:477 core/models.py:107 +#: engine/core/graphene/object_types.py:477 engine/core/models.py:106 msgid "attribute groups" msgstr "" -#: core/graphene/object_types.py:478 -#: core/templates/digital_order_created_email.html:111 -#: core/templates/digital_order_delivered_email.html:109 -#: core/templates/shipped_order_created_email.html:109 -#: core/templates/shipped_order_delivered_email.html:109 +#: engine/core/graphene/object_types.py:478 +#: engine/core/templates/digital_order_created_email.html:111 +#: engine/core/templates/digital_order_delivered_email.html:109 +#: engine/core/templates/shipped_order_created_email.html:109 +#: engine/core/templates/shipped_order_delivered_email.html:109 msgid "price" msgstr "" -#: core/graphene/object_types.py:479 -#: core/templates/digital_order_created_email.html:110 -#: core/templates/digital_order_delivered_email.html:108 -#: core/templates/shipped_order_created_email.html:108 -#: core/templates/shipped_order_delivered_email.html:108 +#: engine/core/graphene/object_types.py:479 +#: engine/core/templates/digital_order_created_email.html:110 +#: engine/core/templates/digital_order_delivered_email.html:108 +#: engine/core/templates/shipped_order_created_email.html:108 +#: engine/core/templates/shipped_order_delivered_email.html:108 msgid "quantity" msgstr "" -#: core/graphene/object_types.py:480 +#: engine/core/graphene/object_types.py:480 msgid "number of feedbacks" msgstr "" -#: core/graphene/object_types.py:481 +#: engine/core/graphene/object_types.py:481 msgid "only available for personal orders" msgstr "" -#: core/graphene/object_types.py:507 core/models.py:651 +#: engine/core/graphene/object_types.py:484 +msgid "discount price" +msgstr "" + +#: engine/core/graphene/object_types.py:508 engine/core/models.py:651 msgid "products" msgstr "" -#: core/graphene/object_types.py:607 +#: engine/core/graphene/object_types.py:611 msgid "promocodes" msgstr "" -#: core/graphene/object_types.py:617 +#: engine/core/graphene/object_types.py:621 msgid "products on sale" msgstr "" -#: core/graphene/object_types.py:624 core/models.py:879 +#: engine/core/graphene/object_types.py:628 engine/core/models.py:890 msgid "promotions" msgstr "" -#: core/graphene/object_types.py:628 core/models.py:188 +#: engine/core/graphene/object_types.py:632 engine/core/models.py:187 msgid "vendor" msgstr "" -#: core/graphene/object_types.py:629 core/models.py:650 -#: core/templates/digital_order_created_email.html:109 -#: core/templates/digital_order_delivered_email.html:107 -#: core/templates/shipped_order_created_email.html:107 -#: core/templates/shipped_order_delivered_email.html:107 +#: engine/core/graphene/object_types.py:633 engine/core/models.py:650 +#: 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 +#: engine/core/templates/shipped_order_delivered_email.html:107 msgid "product" msgstr "" -#: core/graphene/object_types.py:640 core/models.py:902 +#: engine/core/graphene/object_types.py:644 engine/core/models.py:913 msgid "wishlisted products" msgstr "" -#: core/graphene/object_types.py:646 core/models.py:919 +#: engine/core/graphene/object_types.py:650 engine/core/models.py:930 msgid "wishlists" msgstr "" -#: core/graphene/object_types.py:650 +#: engine/core/graphene/object_types.py:654 msgid "tagged products" msgstr "" -#: core/graphene/object_types.py:657 core/models.py:225 core/models.py:594 +#: engine/core/graphene/object_types.py:661 engine/core/models.py:224 +#: engine/core/models.py:594 msgid "product tags" msgstr "" -#: core/graphene/object_types.py:661 +#: engine/core/graphene/object_types.py:665 msgid "tagged categories" msgstr "" -#: core/graphene/object_types.py:668 +#: engine/core/graphene/object_types.py:672 msgid "categories tags" msgstr "" -#: core/graphene/object_types.py:672 +#: engine/core/graphene/object_types.py:676 msgid "project name" msgstr "" -#: core/graphene/object_types.py:673 +#: engine/core/graphene/object_types.py:677 msgid "company email" msgstr "" -#: core/graphene/object_types.py:674 +#: engine/core/graphene/object_types.py:678 msgid "company name" msgstr "" -#: core/graphene/object_types.py:675 +#: engine/core/graphene/object_types.py:679 msgid "company address" msgstr "" -#: core/graphene/object_types.py:676 +#: engine/core/graphene/object_types.py:680 msgid "company phone number" msgstr "" -#: core/graphene/object_types.py:677 +#: engine/core/graphene/object_types.py:681 msgid "email from, sometimes it must be used instead of host user value" msgstr "" -#: core/graphene/object_types.py:678 +#: engine/core/graphene/object_types.py:682 msgid "email host user" msgstr "" -#: core/graphene/object_types.py:679 +#: engine/core/graphene/object_types.py:683 msgid "maximum amount for payment" msgstr "" -#: core/graphene/object_types.py:680 +#: engine/core/graphene/object_types.py:684 msgid "minimum amount for payment" msgstr "" -#: core/graphene/object_types.py:681 +#: engine/core/graphene/object_types.py:685 msgid "analytics data" msgstr "" -#: core/graphene/object_types.py:682 +#: engine/core/graphene/object_types.py:686 msgid "advertisement data" msgstr "" -#: core/graphene/object_types.py:685 +#: engine/core/graphene/object_types.py:689 msgid "company configuration" msgstr "" -#: core/graphene/object_types.py:689 +#: engine/core/graphene/object_types.py:693 msgid "language code" msgstr "" -#: core/graphene/object_types.py:690 +#: engine/core/graphene/object_types.py:694 msgid "language name" msgstr "" -#: core/graphene/object_types.py:691 +#: engine/core/graphene/object_types.py:695 msgid "language flag, if exists :)" msgstr "" -#: core/graphene/object_types.py:694 +#: engine/core/graphene/object_types.py:698 msgid "supported languages" msgstr "" -#: core/graphene/object_types.py:725 core/graphene/object_types.py:726 -#: core/graphene/object_types.py:727 +#: engine/core/graphene/object_types.py:729 +#: engine/core/graphene/object_types.py:730 +#: engine/core/graphene/object_types.py:731 msgid "products search results" msgstr "" -#: core/graphene/object_types.py:728 +#: engine/core/graphene/object_types.py:732 msgid "posts search results" msgstr "" -#: core/models.py:76 +#: engine/core/models.py:75 msgid "" "Represents a group of attributes, which can be hierarchical. This class is " "used to manage and organize attribute groups. An attribute group can have a " @@ -1416,23 +1446,23 @@ msgid "" "categorizing and managing attributes more effectively in acomplex system." msgstr "" -#: core/models.py:92 +#: engine/core/models.py:91 msgid "parent of this group" msgstr "" -#: core/models.py:93 +#: engine/core/models.py:92 msgid "parent attribute group" msgstr "" -#: core/models.py:97 core/models.py:98 +#: engine/core/models.py:96 engine/core/models.py:97 msgid "attribute group's name" msgstr "" -#: core/models.py:106 core/models.py:716 +#: engine/core/models.py:105 engine/core/models.py:727 msgid "attribute group" msgstr "" -#: core/models.py:112 +#: engine/core/models.py:111 msgid "" "Represents a vendor entity capable of storing information about external " "vendors and their interaction requirements. The Vendor class is used to " @@ -1443,47 +1473,47 @@ msgid "" "use in systems that interact with third-party vendors." msgstr "" -#: core/models.py:125 +#: engine/core/models.py:124 msgid "stores credentials and endpoints required for vendor communication" msgstr "" -#: core/models.py:126 +#: engine/core/models.py:125 msgid "authentication info" msgstr "" -#: core/models.py:131 +#: engine/core/models.py:130 msgid "define the markup for products retrieved from this vendor" msgstr "" -#: core/models.py:132 +#: engine/core/models.py:131 msgid "vendor markup percentage" msgstr "" -#: core/models.py:136 +#: engine/core/models.py:135 msgid "name of this vendor" msgstr "" -#: core/models.py:137 +#: engine/core/models.py:136 msgid "vendor name" msgstr "" -#: core/models.py:148 +#: engine/core/models.py:147 msgid "response file" msgstr "" -#: core/models.py:149 +#: engine/core/models.py:148 msgid "vendor's last processing response" msgstr "" -#: core/models.py:155 +#: engine/core/models.py:154 msgid "vendor's integration file path" msgstr "" -#: core/models.py:156 +#: engine/core/models.py:155 msgid "integration path" msgstr "" -#: core/models.py:198 +#: engine/core/models.py:197 msgid "" "Represents a product tag used for classifying or identifying products. The " "ProductTag class is designed to uniquely identify and classify products " @@ -1492,42 +1522,42 @@ msgid "" "metadata customization for administrative purposes." msgstr "" -#: core/models.py:210 core/models.py:241 +#: engine/core/models.py:209 engine/core/models.py:240 msgid "internal tag identifier for the product tag" msgstr "" -#: core/models.py:211 core/models.py:242 +#: engine/core/models.py:210 engine/core/models.py:241 msgid "tag name" msgstr "" -#: core/models.py:215 core/models.py:246 +#: engine/core/models.py:214 engine/core/models.py:245 msgid "user-friendly name for the product tag" msgstr "" -#: core/models.py:216 core/models.py:247 +#: engine/core/models.py:215 engine/core/models.py:246 msgid "tag display name" msgstr "" -#: core/models.py:224 +#: engine/core/models.py:223 msgid "product tag" msgstr "" -#: core/models.py:230 +#: engine/core/models.py:229 msgid "" "Represents a category tag used for products. This class models a category " "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 "" -#: core/models.py:255 +#: engine/core/models.py:254 msgid "category tag" msgstr "" -#: core/models.py:256 core/models.py:328 +#: engine/core/models.py:255 engine/core/models.py:327 msgid "category tags" msgstr "" -#: core/models.py:261 +#: engine/core/models.py:260 msgid "" "Represents a category entity to organize and group related items in a " "hierarchical structure. Categories may have hierarchical relationships with " @@ -1540,51 +1570,51 @@ msgid "" "priority." msgstr "" -#: core/models.py:275 +#: engine/core/models.py:274 msgid "upload an image representing this category" msgstr "" -#: core/models.py:278 +#: engine/core/models.py:277 msgid "category image" msgstr "" -#: core/models.py:283 +#: engine/core/models.py:282 msgid "define a markup percentage for products in this category" msgstr "" -#: core/models.py:292 +#: engine/core/models.py:291 msgid "parent of this category to form a hierarchical structure" msgstr "" -#: core/models.py:293 +#: engine/core/models.py:292 msgid "parent category" msgstr "" -#: core/models.py:298 +#: engine/core/models.py:297 msgid "category name" msgstr "" -#: core/models.py:299 +#: engine/core/models.py:298 msgid "provide a name for this category" msgstr "" -#: core/models.py:306 +#: engine/core/models.py:305 msgid "add a detailed description for this category" msgstr "" -#: core/models.py:307 +#: engine/core/models.py:306 msgid "category description" msgstr "" -#: core/models.py:327 +#: engine/core/models.py:326 msgid "tags that help describe or group this category" msgstr "" -#: core/models.py:334 core/models.py:489 +#: engine/core/models.py:333 engine/core/models.py:488 msgid "priority" msgstr "" -#: core/models.py:432 +#: engine/core/models.py:431 msgid "" "Represents a Brand object in the system. This class handles information and " "attributes related to a brand, including its name, logos, description, " @@ -1592,47 +1622,47 @@ msgid "" "organization and representation of brand-related data within the application." msgstr "" -#: core/models.py:442 +#: engine/core/models.py:441 msgid "name of this brand" msgstr "" -#: core/models.py:443 +#: engine/core/models.py:442 msgid "brand name" msgstr "" -#: core/models.py:450 +#: engine/core/models.py:449 msgid "upload a logo representing this brand" msgstr "" -#: core/models.py:452 +#: engine/core/models.py:451 msgid "brand small image" msgstr "" -#: core/models.py:458 +#: engine/core/models.py:457 msgid "upload a big logo representing this brand" msgstr "" -#: core/models.py:460 +#: engine/core/models.py:459 msgid "brand big image" msgstr "" -#: core/models.py:465 +#: engine/core/models.py:464 msgid "add a detailed description of the brand" msgstr "" -#: core/models.py:466 +#: engine/core/models.py:465 msgid "brand description" msgstr "" -#: core/models.py:471 +#: engine/core/models.py:470 msgid "optional categories that this brand is associated with" msgstr "" -#: core/models.py:472 +#: engine/core/models.py:471 msgid "associated categories" msgstr "" -#: core/models.py:502 +#: engine/core/models.py:501 msgid "" "Represents the stock of a product managed in the system. This class provides " "details about the relationship between vendors, products, and their stock " @@ -1642,67 +1672,72 @@ msgid "" "from various vendors." msgstr "" -#: core/models.py:514 +#: engine/core/models.py:513 msgid "the vendor supplying this product stock" msgstr "" -#: core/models.py:515 +#: engine/core/models.py:514 msgid "associated vendor" msgstr "" -#: core/models.py:519 +#: engine/core/models.py:518 msgid "final price to the customer after markups" msgstr "" -#: core/models.py:520 +#: engine/core/models.py:519 msgid "selling price" msgstr "" -#: core/models.py:525 +#: engine/core/models.py:524 msgid "the product associated with this stock entry" msgstr "" -#: core/models.py:526 core/models.py:779 core/models.py:825 core/models.py:1718 +#: engine/core/models.py:525 engine/core/models.py:790 +#: engine/core/models.py:836 engine/core/models.py:1778 msgid "associated product" msgstr "" -#: core/models.py:533 +#: engine/core/models.py:532 msgid "the price paid to the vendor for this product" msgstr "" -#: core/models.py:534 +#: engine/core/models.py:533 msgid "vendor purchase price" msgstr "" -#: core/models.py:538 +#: engine/core/models.py:537 msgid "available quantity of the product in stock" msgstr "" -#: core/models.py:539 +#: engine/core/models.py:538 msgid "quantity in stock" msgstr "" -#: core/models.py:543 +#: engine/core/models.py:542 msgid "vendor-assigned SKU for identifying the product" msgstr "" -#: core/models.py:544 +#: engine/core/models.py:543 msgid "vendor sku" msgstr "" -#: core/models.py:550 +#: engine/core/models.py:549 msgid "digital file associated with this stock if applicable" msgstr "" -#: core/models.py:551 +#: engine/core/models.py:550 msgid "digital file" msgstr "" -#: core/models.py:560 +#: engine/core/models.py:553 +msgid "system attributes" +msgstr "" + +#: engine/core/models.py:560 msgid "stock entries" msgstr "" -#: core/models.py:565 +#: engine/core/models.py:565 msgid "" "Represents a product with attributes such as category, brand, tags, digital " "status, name, description, part number, and slug. Provides related utility " @@ -1714,55 +1749,55 @@ msgid "" "product data and its associated information within an application." msgstr "" -#: core/models.py:578 +#: engine/core/models.py:578 msgid "category this product belongs to" msgstr "" -#: core/models.py:587 +#: engine/core/models.py:587 msgid "optionally associate this product with a brand" msgstr "" -#: core/models.py:593 +#: engine/core/models.py:593 msgid "tags that help describe or group this product" msgstr "" -#: core/models.py:598 +#: engine/core/models.py:598 msgid "indicates whether this product is digitally delivered" msgstr "" -#: core/models.py:599 +#: engine/core/models.py:599 msgid "is product digital" msgstr "" -#: core/models.py:605 +#: engine/core/models.py:605 msgid "provide a clear identifying name for the product" msgstr "" -#: core/models.py:606 +#: engine/core/models.py:606 msgid "product name" msgstr "" -#: core/models.py:612 core/models.py:867 +#: engine/core/models.py:612 engine/core/models.py:878 msgid "add a detailed description of the product" msgstr "" -#: core/models.py:613 +#: engine/core/models.py:613 msgid "product description" msgstr "" -#: core/models.py:620 +#: engine/core/models.py:620 msgid "part number for this product" msgstr "" -#: core/models.py:621 +#: engine/core/models.py:621 msgid "part number" msgstr "" -#: core/models.py:640 +#: engine/core/models.py:640 msgid "stock keeping unit for this product" msgstr "" -#: core/models.py:702 +#: engine/core/models.py:713 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 " @@ -1772,83 +1807,83 @@ msgid "" "for dynamic and flexible data structuring." msgstr "" -#: core/models.py:715 +#: engine/core/models.py:726 msgid "group of this attribute" msgstr "" -#: core/models.py:721 +#: engine/core/models.py:732 msgid "string" msgstr "" -#: core/models.py:722 +#: engine/core/models.py:733 msgid "integer" msgstr "" -#: core/models.py:723 +#: engine/core/models.py:734 msgid "float" msgstr "" -#: core/models.py:724 +#: engine/core/models.py:735 msgid "boolean" msgstr "" -#: core/models.py:725 +#: engine/core/models.py:736 msgid "array" msgstr "" -#: core/models.py:726 +#: engine/core/models.py:737 msgid "object" msgstr "" -#: core/models.py:728 +#: engine/core/models.py:739 msgid "type of the attribute's value" msgstr "" -#: core/models.py:729 +#: engine/core/models.py:740 msgid "value type" msgstr "" -#: core/models.py:734 +#: engine/core/models.py:745 msgid "name of this attribute" msgstr "" -#: core/models.py:735 +#: engine/core/models.py:746 msgid "attribute's name" msgstr "" -#: core/models.py:740 +#: engine/core/models.py:751 msgid "is filterable" msgstr "" -#: core/models.py:741 +#: engine/core/models.py:752 msgid "designates whether this attribute can be used for filtering or not" msgstr "" -#: core/models.py:753 core/models.py:771 -#: core/templates/digital_order_delivered_email.html:134 +#: engine/core/models.py:764 engine/core/models.py:782 +#: engine/core/templates/digital_order_delivered_email.html:134 msgid "attribute" msgstr "" -#: core/models.py:759 +#: engine/core/models.py:770 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 "" -#: core/models.py:770 +#: engine/core/models.py:781 msgid "attribute of this value" msgstr "" -#: core/models.py:778 +#: engine/core/models.py:789 msgid "the specific product associated with this attribute's value" msgstr "" -#: core/models.py:784 +#: engine/core/models.py:795 msgid "the specific value for this attribute" msgstr "" -#: core/models.py:797 +#: engine/core/models.py:808 msgid "" "Represents a product image associated with a product in the system. This " "class is designed to manage images for products, including functionality for " @@ -1857,39 +1892,39 @@ msgid "" "with alternative text for the images." msgstr "" -#: core/models.py:808 +#: engine/core/models.py:819 msgid "provide alternative text for the image for accessibility" msgstr "" -#: core/models.py:809 +#: engine/core/models.py:820 msgid "image alt text" msgstr "" -#: core/models.py:812 +#: engine/core/models.py:823 msgid "upload the image file for this product" msgstr "" -#: core/models.py:813 core/models.py:837 +#: engine/core/models.py:824 engine/core/models.py:848 msgid "product image" msgstr "" -#: core/models.py:818 +#: engine/core/models.py:829 msgid "determines the order in which images are displayed" msgstr "" -#: core/models.py:819 +#: engine/core/models.py:830 msgid "display priority" msgstr "" -#: core/models.py:824 +#: engine/core/models.py:835 msgid "the product that this image represents" msgstr "" -#: core/models.py:838 +#: engine/core/models.py:849 msgid "product images" msgstr "" -#: core/models.py:843 +#: engine/core/models.py:854 msgid "" "Represents a promotional campaign for products with a discount. This class " "is used to define and manage promotional campaigns that offer a percentage-" @@ -1899,39 +1934,39 @@ msgid "" "affected items in the campaign." msgstr "" -#: core/models.py:855 +#: engine/core/models.py:866 msgid "percentage discount for the selected products" msgstr "" -#: core/models.py:856 +#: engine/core/models.py:867 msgid "discount percentage" msgstr "" -#: core/models.py:861 +#: engine/core/models.py:872 msgid "provide a unique name for this promotion" msgstr "" -#: core/models.py:862 +#: engine/core/models.py:873 msgid "promotion name" msgstr "" -#: core/models.py:868 +#: engine/core/models.py:879 msgid "promotion description" msgstr "" -#: core/models.py:873 +#: engine/core/models.py:884 msgid "select which products are included in this promotion" msgstr "" -#: core/models.py:874 +#: engine/core/models.py:885 msgid "included products" msgstr "" -#: core/models.py:878 +#: engine/core/models.py:889 msgid "promotion" msgstr "" -#: core/models.py:889 +#: engine/core/models.py:900 msgid "" "Represents a user's wishlist for storing and managing desired products. The " "class provides functionality to manage a collection of products, supporting " @@ -1939,23 +1974,23 @@ msgid "" "operations for adding and removing multiple products at once." msgstr "" -#: core/models.py:901 +#: engine/core/models.py:912 msgid "products that the user has marked as wanted" msgstr "" -#: core/models.py:909 +#: engine/core/models.py:920 msgid "user who owns this wishlist" msgstr "" -#: core/models.py:910 +#: engine/core/models.py:921 msgid "wishlist owner" msgstr "" -#: core/models.py:918 +#: engine/core/models.py:929 msgid "wishlist" msgstr "" -#: core/models.py:960 +#: engine/core/models.py:971 msgid "" "Represents a documentary record tied to a product. This class is used to " "store information about documentaries related to specific products, " @@ -1965,19 +2000,19 @@ msgid "" "custom features." msgstr "" -#: core/models.py:973 +#: engine/core/models.py:984 msgid "documentary" msgstr "" -#: core/models.py:974 +#: engine/core/models.py:985 msgid "documentaries" msgstr "" -#: core/models.py:984 +#: engine/core/models.py:995 msgid "unresolved" msgstr "" -#: core/models.py:989 +#: engine/core/models.py:1000 msgid "" "Represents an address entity that includes location details and associations " "with a user. Provides functionality for geographic and address data storage, " @@ -1989,59 +2024,59 @@ msgid "" "address with a user, facilitating personalized data handling." msgstr "" -#: core/models.py:1004 +#: engine/core/models.py:1015 msgid "address line for the customer" msgstr "" -#: core/models.py:1005 +#: engine/core/models.py:1016 msgid "address line" msgstr "" -#: core/models.py:1007 +#: engine/core/models.py:1018 msgid "street" msgstr "" -#: core/models.py:1008 +#: engine/core/models.py:1019 msgid "district" msgstr "" -#: core/models.py:1009 +#: engine/core/models.py:1020 msgid "city" msgstr "" -#: core/models.py:1010 +#: engine/core/models.py:1021 msgid "region" msgstr "" -#: core/models.py:1011 +#: engine/core/models.py:1022 msgid "postal code" msgstr "" -#: core/models.py:1012 +#: engine/core/models.py:1023 msgid "country" msgstr "" -#: core/models.py:1019 +#: engine/core/models.py:1030 msgid "geolocation point: (longitude, latitude)" msgstr "" -#: core/models.py:1022 +#: engine/core/models.py:1033 msgid "full JSON response from geocoder for this address" msgstr "" -#: core/models.py:1027 +#: engine/core/models.py:1038 msgid "stored JSON response from the geocoding service" msgstr "" -#: core/models.py:1035 +#: engine/core/models.py:1046 msgid "address" msgstr "" -#: core/models.py:1036 +#: engine/core/models.py:1047 msgid "addresses" msgstr "" -#: core/models.py:1048 +#: engine/core/models.py:1059 msgid "" "Represents a promotional code that can be used for discounts, managing its " "validity, type of discount, and application. The PromoCode class stores " @@ -2051,86 +2086,86 @@ msgid "" "apply the promo code to an order while ensuring constraints are met." msgstr "" -#: core/models.py:1062 +#: engine/core/models.py:1073 msgid "unique code used by a user to redeem a discount" msgstr "" -#: core/models.py:1063 +#: engine/core/models.py:1074 msgid "promo code identifier" msgstr "" -#: core/models.py:1070 +#: engine/core/models.py:1081 msgid "fixed discount amount applied if percent is not used" msgstr "" -#: core/models.py:1071 +#: engine/core/models.py:1082 msgid "fixed discount amount" msgstr "" -#: core/models.py:1077 +#: engine/core/models.py:1088 msgid "percentage discount applied if fixed amount is not used" msgstr "" -#: core/models.py:1078 +#: engine/core/models.py:1089 msgid "percentage discount" msgstr "" -#: core/models.py:1083 +#: engine/core/models.py:1094 msgid "timestamp when the promocode expires" msgstr "" -#: core/models.py:1084 +#: engine/core/models.py:1095 msgid "end validity time" msgstr "" -#: core/models.py:1089 +#: engine/core/models.py:1100 msgid "timestamp from which this promocode is valid" msgstr "" -#: core/models.py:1090 +#: engine/core/models.py:1101 msgid "start validity time" msgstr "" -#: core/models.py:1095 +#: engine/core/models.py:1106 msgid "timestamp when the promocode was used, blank if not used yet" msgstr "" -#: core/models.py:1096 +#: engine/core/models.py:1107 msgid "usage timestamp" msgstr "" -#: core/models.py:1101 +#: engine/core/models.py:1112 msgid "user assigned to this promocode if applicable" msgstr "" -#: core/models.py:1102 +#: engine/core/models.py:1113 msgid "assigned user" msgstr "" -#: core/models.py:1109 +#: engine/core/models.py:1120 msgid "promo code" msgstr "" -#: core/models.py:1110 +#: engine/core/models.py:1121 msgid "promo codes" msgstr "" -#: core/models.py:1125 +#: engine/core/models.py:1136 msgid "" "only one type of discount should be defined (amount or percent), but not " "both or neither." msgstr "" -#: core/models.py:1146 +#: engine/core/models.py:1157 msgid "promocode already used" msgstr "" -#: core/models.py:1162 +#: engine/core/models.py:1173 #, python-brace-format msgid "invalid discount type for promocode {self.uuid}" msgstr "" -#: core/models.py:1171 +#: engine/core/models.py:1182 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 " @@ -2140,144 +2175,178 @@ msgid "" "supports managing the products in the order lifecycle." msgstr "" -#: core/models.py:1188 +#: engine/core/models.py:1199 msgid "the billing address used for this order" msgstr "" -#: core/models.py:1196 +#: engine/core/models.py:1207 msgid "optional promo code applied to this order" msgstr "" -#: core/models.py:1197 +#: engine/core/models.py:1208 msgid "applied promo code" msgstr "" -#: core/models.py:1205 +#: engine/core/models.py:1216 msgid "the shipping address used for this order" msgstr "" -#: core/models.py:1206 +#: engine/core/models.py:1217 msgid "shipping address" msgstr "" -#: core/models.py:1212 +#: engine/core/models.py:1223 msgid "current status of the order in its lifecycle" msgstr "" -#: core/models.py:1213 +#: engine/core/models.py:1224 msgid "order status" msgstr "" -#: core/models.py:1218 core/models.py:1695 +#: engine/core/models.py:1229 engine/core/models.py:1755 msgid "json structure of notifications to display to users" msgstr "" -#: core/models.py:1224 +#: engine/core/models.py:1235 msgid "json representation of order attributes for this order" msgstr "" -#: core/models.py:1230 +#: engine/core/models.py:1241 msgid "the user who placed the order" msgstr "" -#: core/models.py:1231 +#: engine/core/models.py:1242 msgid "user" msgstr "" -#: core/models.py:1237 +#: engine/core/models.py:1248 msgid "the timestamp when the order was finalized" msgstr "" -#: core/models.py:1238 +#: engine/core/models.py:1249 msgid "buy time" msgstr "" -#: core/models.py:1245 +#: engine/core/models.py:1256 msgid "a human-readable identifier for the order" msgstr "" -#: core/models.py:1246 +#: engine/core/models.py:1257 msgid "human readable id" msgstr "" -#: core/models.py:1252 +#: engine/core/models.py:1263 msgid "order" msgstr "" -#: core/models.py:1294 +#: engine/core/models.py:1305 msgid "a user must have only one pending order at a time" msgstr "" -#: core/models.py:1326 +#: engine/core/models.py:1337 msgid "you cannot add products to an order that is not a pending one" msgstr "" -#: core/models.py:1331 +#: engine/core/models.py:1342 msgid "you cannot add inactive products to order" msgstr "" -#: core/models.py:1348 +#: engine/core/models.py:1359 msgid "you cannot add more products than available in stock" msgstr "" -#: core/models.py:1370 core/models.py:1395 core/models.py:1403 +#: engine/core/models.py:1381 engine/core/models.py:1406 +#: engine/core/models.py:1414 msgid "you cannot remove products from an order that is not a pending one" msgstr "" -#: core/models.py:1391 +#: engine/core/models.py:1402 #, python-brace-format msgid "{name} does not exist with query <{query}>" msgstr "" -#: core/models.py:1423 +#: engine/core/models.py:1434 msgid "promocode does not exist" msgstr "" -#: core/models.py:1429 +#: engine/core/models.py:1440 msgid "you can only buy physical products with shipping address specified" msgstr "" -#: core/models.py:1448 +#: engine/core/models.py:1459 msgid "address does not exist" msgstr "" -#: core/models.py:1469 core/models.py:1538 +#: engine/core/models.py:1480 engine/core/models.py:1549 msgid "you can not buy at this moment, please try again in a few minutes" msgstr "" -#: core/models.py:1472 core/models.py:1534 +#: engine/core/models.py:1483 engine/core/models.py:1545 msgid "invalid force value" msgstr "" -#: core/models.py:1478 core/models.py:1541 +#: engine/core/models.py:1489 engine/core/models.py:1552 msgid "you cannot purchase an empty order!" msgstr "" -#: core/models.py:1497 +#: engine/core/models.py:1508 msgid "you cannot buy an order without a user" msgstr "" -#: core/models.py:1511 +#: engine/core/models.py:1522 msgid "a user without a balance cannot buy with balance" msgstr "" -#: core/models.py:1516 +#: engine/core/models.py:1527 msgid "insufficient funds to complete the order" msgstr "" -#: core/models.py:1550 +#: engine/core/models.py:1561 msgid "" "you cannot buy without registration, please provide the following " "information: customer name, customer email, customer phone number" msgstr "" -#: core/models.py:1559 +#: engine/core/models.py:1570 #, python-brace-format msgid "" "invalid payment method: {payment_method} from {available_payment_methods}" msgstr "" -#: core/models.py:1668 +#: engine/core/models.py:1685 +msgid "" +"Manages user feedback for products. This class is designed to capture and " +"store user feedback for specific products that they have purchased. It " +"contains attributes to store user comments, a reference to the related " +"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:1697 +msgid "user-provided comments about their experience with the product" +msgstr "" + +#: engine/core/models.py:1698 +msgid "feedback comments" +msgstr "" + +#: engine/core/models.py:1705 +msgid "references the specific product in an order that this feedback is about" +msgstr "" + +#: engine/core/models.py:1706 +msgid "related order product" +msgstr "" + +#: engine/core/models.py:1711 +msgid "user-assigned rating for the product" +msgstr "" + +#: engine/core/models.py:1712 +msgid "product rating" +msgstr "" + +#: engine/core/models.py:1728 msgid "" "Represents products associated with orders and their attributes. The " "OrderProduct model maintains information about a product that is part of an " @@ -2290,108 +2359,108 @@ msgid "" "Product models and stores a reference to them." msgstr "" -#: core/models.py:1683 +#: engine/core/models.py:1743 msgid "the price paid by the customer for this product at purchase time" msgstr "" -#: core/models.py:1684 +#: engine/core/models.py:1744 msgid "purchase price at order time" msgstr "" -#: core/models.py:1689 +#: engine/core/models.py:1749 msgid "internal comments for admins about this ordered product" msgstr "" -#: core/models.py:1690 +#: engine/core/models.py:1750 msgid "internal comments" msgstr "" -#: core/models.py:1696 +#: engine/core/models.py:1756 msgid "user notifications" msgstr "" -#: core/models.py:1701 +#: engine/core/models.py:1761 msgid "json representation of this item's attributes" msgstr "" -#: core/models.py:1702 +#: engine/core/models.py:1762 msgid "ordered product attributes" msgstr "" -#: core/models.py:1707 +#: engine/core/models.py:1767 msgid "reference to the parent order that contains this product" msgstr "" -#: core/models.py:1708 +#: engine/core/models.py:1768 msgid "parent order" msgstr "" -#: core/models.py:1717 +#: engine/core/models.py:1777 msgid "the specific product associated with this order line" msgstr "" -#: core/models.py:1724 +#: engine/core/models.py:1784 msgid "quantity of this specific product in the order" msgstr "" -#: core/models.py:1725 +#: engine/core/models.py:1785 msgid "product quantity" msgstr "" -#: core/models.py:1732 +#: engine/core/models.py:1792 msgid "current status of this product in the order" msgstr "" -#: core/models.py:1733 +#: engine/core/models.py:1793 msgid "product line status" msgstr "" -#: core/models.py:1798 +#: engine/core/models.py:1858 msgid "order product must have an order" msgstr "" -#: core/models.py:1800 +#: engine/core/models.py:1860 #, python-brace-format msgid "wrong action specified for feedback: {action}" msgstr "" -#: core/models.py:1814 +#: engine/core/models.py:1874 msgid "you cannot feedback an order which is not received" msgstr "" -#: core/models.py:1820 +#: engine/core/models.py:1880 msgid "name" msgstr "" -#: core/models.py:1821 +#: engine/core/models.py:1881 msgid "URL of the integration" msgstr "" -#: core/models.py:1822 +#: engine/core/models.py:1882 msgid "authentication credentials" msgstr "" -#: core/models.py:1844 +#: engine/core/models.py:1904 msgid "you can only have one default CRM provider" msgstr "" -#: core/models.py:1854 +#: engine/core/models.py:1914 msgid "CRM" msgstr "" -#: core/models.py:1855 +#: engine/core/models.py:1915 msgid "CRMs" msgstr "" -#: core/models.py:1867 +#: engine/core/models.py:1927 msgid "order CRM link" msgstr "" -#: core/models.py:1868 +#: engine/core/models.py:1928 msgid "orders CRM links" msgstr "" -#: core/models.py:1873 +#: engine/core/models.py:1933 msgid "" "Represents the downloading functionality for digital assets associated with " "orders. The DigitalAssetDownload class provides the ability to manage and " @@ -2401,94 +2470,57 @@ msgid "" "the asset when the associated order is in a completed status." msgstr "" -#: core/models.py:1887 +#: engine/core/models.py:1947 msgid "download" msgstr "" -#: core/models.py:1888 +#: engine/core/models.py:1948 msgid "downloads" msgstr "" -#: core/models.py:1902 -msgid "" -"Manages user feedback for products. This class is designed to capture and " -"store user feedback for specific products that they have purchased. It " -"contains attributes to store user comments, a reference to the related " -"product in the order, and a user-assigned rating. The class uses database " -"fields to effectively model and manage feedback data." -msgstr "" - -#: core/models.py:1914 -msgid "user-provided comments about their experience with the product" -msgstr "" - -#: core/models.py:1915 -msgid "feedback comments" -msgstr "" - -#: core/models.py:1922 -msgid "references the specific product in an order that this feedback is about" -msgstr "" - -#: core/models.py:1923 -msgid "related order product" -msgstr "" - -#: core/models.py:1928 -msgid "user-assigned rating for the product" -msgstr "" - -#: core/models.py:1929 -msgid "product rating" -msgstr "" - -#: core/serializers/utility.py:89 +#: engine/core/serializers/utility.py:89 msgid "" "you must provide a comment, rating, and order product uuid to add feedback." msgstr "" -#: core/signals.py:73 -msgid "error during promocode creation: {e!s}" -msgstr "" - -#: core/sitemaps.py:25 +#: engine/core/sitemaps.py:25 msgid "Home" msgstr "" -#: core/sitemaps.py:30 +#: engine/core/sitemaps.py:30 msgid "Contact Us" msgstr "" -#: core/sitemaps.py:35 +#: engine/core/sitemaps.py:35 msgid "About Us" msgstr "" -#: core/templates/digital_order_created_email.html:7 -#: core/templates/digital_order_created_email.html:100 -#: core/templates/digital_order_delivered_email.html:6 -#: core/templates/shipped_order_created_email.html:7 -#: core/templates/shipped_order_created_email.html:99 -#: core/templates/shipped_order_delivered_email.html:7 -#: core/templates/shipped_order_delivered_email.html:99 +#: engine/core/templates/digital_order_created_email.html:7 +#: engine/core/templates/digital_order_created_email.html:100 +#: engine/core/templates/digital_order_delivered_email.html:6 +#: engine/core/templates/shipped_order_created_email.html:7 +#: engine/core/templates/shipped_order_created_email.html:99 +#: engine/core/templates/shipped_order_delivered_email.html:7 +#: engine/core/templates/shipped_order_delivered_email.html:99 msgid "order confirmation" msgstr "" -#: core/templates/digital_order_created_email.html:95 -#: core/templates/digital_order_delivered_email.html:94 -#: core/templates/promocode_granted_email.html:94 -#: core/templates/shipped_order_created_email.html:94 -#: core/templates/shipped_order_delivered_email.html:94 +#: engine/core/templates/digital_order_created_email.html:95 +#: engine/core/templates/digital_order_delivered_email.html:94 +#: engine/core/templates/promocode_granted_email.html:94 +#: engine/core/templates/shipped_order_created_email.html:94 +#: engine/core/templates/shipped_order_delivered_email.html:94 msgid "logo" msgstr "" -#: core/templates/digital_order_created_email.html:101 -#: core/templates/shipped_order_created_email.html:100 -#: core/templates/shipped_order_delivered_email.html:100 +#: engine/core/templates/digital_order_created_email.html:101 +#: engine/core/templates/shipped_order_created_email.html:100 +#: engine/core/templates/shipped_order_delivered_email.html:100 #, python-format msgid "hello %(order.user.first_name)s," msgstr "" -#: core/templates/digital_order_created_email.html:102 +#: engine/core/templates/digital_order_created_email.html:102 #, python-format msgid "" "thank you for your order #%(order.pk)s! we are pleased to inform you that\n" @@ -2497,220 +2529,220 @@ msgid "" " order:" msgstr "" -#: core/templates/digital_order_created_email.html:112 -#: core/templates/digital_order_delivered_email.html:110 -#: core/templates/shipped_order_created_email.html:110 -#: core/templates/shipped_order_delivered_email.html:110 +#: engine/core/templates/digital_order_created_email.html:112 +#: engine/core/templates/digital_order_delivered_email.html:110 +#: engine/core/templates/shipped_order_created_email.html:110 +#: engine/core/templates/shipped_order_delivered_email.html:110 msgid "total" msgstr "" -#: core/templates/digital_order_created_email.html:125 -#: core/templates/digital_order_delivered_email.html:157 -#: core/templates/shipped_order_created_email.html:127 -#: core/templates/shipped_order_delivered_email.html:127 +#: engine/core/templates/digital_order_created_email.html:125 +#: engine/core/templates/digital_order_delivered_email.html:157 +#: engine/core/templates/shipped_order_created_email.html:127 +#: engine/core/templates/shipped_order_delivered_email.html:127 msgid "total price" msgstr "" -#: core/templates/digital_order_created_email.html:131 -#: core/templates/shipped_order_created_email.html:140 -#: core/templates/shipped_order_delivered_email.html:140 +#: engine/core/templates/digital_order_created_email.html:131 +#: engine/core/templates/shipped_order_created_email.html:140 +#: engine/core/templates/shipped_order_delivered_email.html:140 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" " %(config.EMAIL_HOST_USER)s." msgstr "" -#: core/templates/digital_order_created_email.html:133 +#: engine/core/templates/digital_order_created_email.html:133 #, python-format msgid "best regards,
the %(config.PROJECT_NAME)s team" msgstr "" -#: core/templates/digital_order_created_email.html:139 -#: core/templates/digital_order_delivered_email.html:171 -#: core/templates/promocode_granted_email.html:114 +#: engine/core/templates/digital_order_created_email.html:139 +#: engine/core/templates/digital_order_delivered_email.html:171 +#: engine/core/templates/promocode_granted_email.html:114 msgid "all rights reserved" msgstr "" -#: core/templates/digital_order_delivered_email.html:99 +#: engine/core/templates/digital_order_delivered_email.html:99 msgid "order delivered" msgstr "" -#: core/templates/digital_order_delivered_email.html:100 -#: core/templates/promocode_granted_email.html:100 +#: engine/core/templates/digital_order_delivered_email.html:100 +#: engine/core/templates/promocode_granted_email.html:100 #, python-format msgid "hello %(user_first_name)s," msgstr "" -#: core/templates/digital_order_delivered_email.html:101 +#: engine/core/templates/digital_order_delivered_email.html:101 #, python-format msgid "" "we have successfully processed your order №%(order_uuid)s! below are the\n" " details of your order:" msgstr "" -#: core/templates/digital_order_delivered_email.html:128 +#: engine/core/templates/digital_order_delivered_email.html:128 msgid "" "additional\n" " information" msgstr "" -#: core/templates/digital_order_delivered_email.html:137 -#: core/templates/json_table_widget.html:6 +#: engine/core/templates/digital_order_delivered_email.html:137 +#: engine/core/templates/json_table_widget.html:6 msgid "value" msgstr "" -#: core/templates/digital_order_delivered_email.html:163 -#: core/templates/promocode_granted_email.html:106 +#: engine/core/templates/digital_order_delivered_email.html:163 +#: engine/core/templates/promocode_granted_email.html:106 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" " %(contact_email)s." msgstr "" -#: core/templates/digital_order_delivered_email.html:165 -#: core/templates/promocode_granted_email.html:108 +#: engine/core/templates/digital_order_delivered_email.html:165 +#: engine/core/templates/promocode_granted_email.html:108 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "" -#: core/templates/json_table_widget.html:5 +#: engine/core/templates/json_table_widget.html:5 msgid "key" msgstr "" -#: core/templates/json_table_widget.html:40 +#: engine/core/templates/json_table_widget.html:40 msgid "Add Row" msgstr "" -#: core/templates/promocode_granted_email.html:6 -#: core/templates/promocode_granted_email.html:99 +#: engine/core/templates/promocode_granted_email.html:6 +#: engine/core/templates/promocode_granted_email.html:99 msgid "promocode granted" msgstr "" -#: core/templates/promocode_granted_email.html:101 +#: engine/core/templates/promocode_granted_email.html:101 msgid "" "Thank you for staying with us! We have granted you with a promocode\n" " for " msgstr "" -#: core/templates/shipped_order_created_email.html:101 -#: core/templates/shipped_order_delivered_email.html:101 +#: 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" " the details of your order:" msgstr "" -#: core/templates/shipped_order_created_email.html:123 -#: core/templates/shipped_order_delivered_email.html:123 +#: engine/core/templates/shipped_order_created_email.html:123 +#: engine/core/templates/shipped_order_delivered_email.html:123 msgid "shipping price" msgstr "" -#: core/templates/shipped_order_created_email.html:133 -#: core/templates/shipped_order_delivered_email.html:133 +#: engine/core/templates/shipped_order_created_email.html:133 +#: engine/core/templates/shipped_order_delivered_email.html:133 msgid "your order will be delivered to the following address:" msgstr "" -#: core/templates/shipped_order_created_email.html:142 -#: core/templates/shipped_order_delivered_email.html:142 +#: engine/core/templates/shipped_order_created_email.html:142 +#: engine/core/templates/shipped_order_delivered_email.html:142 #, python-format msgid "best regards,
The %(config.PROJECT_NAME)s team" msgstr "" -#: core/templates/shipped_order_created_email.html:147 -#: core/templates/shipped_order_delivered_email.html:147 +#: engine/core/templates/shipped_order_created_email.html:147 +#: engine/core/templates/shipped_order_delivered_email.html:147 msgid "" "all rights\n" " reserved" msgstr "" -#: core/utils/caching.py:44 +#: engine/core/utils/caching.py:44 msgid "both data and timeout are required" msgstr "" -#: core/utils/caching.py:46 +#: engine/core/utils/caching.py:46 msgid "invalid timeout value, it must be between 0 and 216000 seconds" msgstr "" -#: core/utils/emailing.py:27 +#: engine/core/utils/emailing.py:27 #, python-brace-format msgid "{config.PROJECT_NAME} | contact us initiated" msgstr "" -#: core/utils/emailing.py:73 +#: engine/core/utils/emailing.py:73 #, python-brace-format msgid "{config.PROJECT_NAME} | order confirmation" msgstr "" -#: core/utils/emailing.py:105 +#: engine/core/utils/emailing.py:105 #, python-brace-format msgid "{config.PROJECT_NAME} | order delivered" msgstr "" -#: core/utils/emailing.py:188 +#: engine/core/utils/emailing.py:188 #, python-brace-format msgid "{config.PROJECT_NAME} | promocode granted" msgstr "" -#: core/utils/messages.py:3 +#: engine/core/utils/messages.py:3 msgid "you do not have permission to perform this action." msgstr "" -#: core/utils/nominatim.py:8 +#: engine/core/utils/nominatim.py:8 msgid "NOMINATIM_URL must be configured." msgstr "" -#: core/validators.py:16 +#: engine/core/validators.py:16 #, python-brace-format msgid "image dimensions should not exceed w{max_width} x h{max_height} pixels" msgstr "" -#: core/views.py:72 +#: engine/core/views.py:71 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 "" -#: core/views.py:87 +#: engine/core/views.py:86 msgid "" "Handles the detailed view response for a sitemap. This function processes " "the request, fetches the appropriate sitemap detail response, and sets the " "Content-Type header for XML." msgstr "" -#: core/views.py:116 +#: engine/core/views.py:115 msgid "" "Returns a list of supported languages and their corresponding information." msgstr "" -#: core/views.py:148 +#: engine/core/views.py:147 msgid "Returns the parameters of the website as a JSON object." msgstr "" -#: core/views.py:167 +#: engine/core/views.py:166 msgid "" "Handles cache operations such as reading and setting cache data with a " "specified key and timeout." msgstr "" -#: core/views.py:194 +#: engine/core/views.py:193 msgid "Handles `contact us` form submissions." msgstr "" -#: core/views.py:215 +#: engine/core/views.py:214 msgid "" "Handles requests for processing and validating URLs from incoming POST " "requests." msgstr "" -#: core/views.py:255 +#: engine/core/views.py:254 msgid "Handles global search queries." msgstr "" -#: core/views.py:270 +#: engine/core/views.py:269 msgid "Handles the logic of buying as a business without registration." msgstr "" -#: core/views.py:306 +#: engine/core/views.py:305 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 " @@ -2718,27 +2750,27 @@ msgid "" "error is raised to indicate the resource is unavailable." msgstr "" -#: core/views.py:316 +#: engine/core/views.py:315 msgid "order_product_uuid is required" msgstr "" -#: core/views.py:322 +#: engine/core/views.py:321 msgid "you can only download the digital asset once" msgstr "" -#: core/views.py:325 +#: engine/core/views.py:324 msgid "the order must be paid before downloading the digital asset" msgstr "" -#: core/views.py:331 +#: engine/core/views.py:330 msgid "the order product does not have a product" msgstr "" -#: core/views.py:369 +#: engine/core/views.py:368 msgid "favicon not found" msgstr "" -#: core/views.py:374 +#: engine/core/views.py:373 msgid "" "Handles requests for the favicon of a website.\n" "This function attempts to serve the favicon file located in the static " @@ -2746,18 +2778,18 @@ msgid "" "error is raised to indicate the resource is unavailable." msgstr "" -#: core/views.py:386 +#: engine/core/views.py:385 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. " "It uses Django's `redirect` function for handling the HTTP redirection." msgstr "" -#: core/views.py:399 +#: engine/core/views.py:398 msgid "Returns current version of the eVibes. " msgstr "" -#: core/viewsets.py:137 +#: engine/core/viewsets.py:137 msgid "" "Defines a viewset for managing Evibes-related operations. The EvibesViewSet " "class inherits from ModelViewSet and provides functionality for handling " @@ -2766,7 +2798,7 @@ msgid "" "and rendering formats." msgstr "" -#: core/viewsets.py:157 +#: engine/core/viewsets.py:157 msgid "" "Represents a viewset for managing AttributeGroup objects. Handles operations " "related to AttributeGroup, including filtering, serialization, and retrieval " @@ -2774,7 +2806,7 @@ msgid "" "standardized way to process requests and responses for AttributeGroup data." msgstr "" -#: core/viewsets.py:176 +#: engine/core/viewsets.py:176 msgid "" "Handles operations related to Attribute objects within the application. " "Provides a set of API endpoints to interact with Attribute data. This class " @@ -2784,7 +2816,7 @@ msgid "" "depending on the request." msgstr "" -#: core/viewsets.py:195 +#: engine/core/viewsets.py:195 msgid "" "A viewset for managing AttributeValue objects. This viewset provides " "functionality for listing, retrieving, creating, updating, and deleting " @@ -2793,7 +2825,7 @@ msgid "" "capabilities are provided through the DjangoFilterBackend." msgstr "" -#: core/viewsets.py:214 +#: engine/core/viewsets.py:214 msgid "" "Manages views for Category-related operations. The CategoryViewSet class is " "responsible for handling operations related to the Category model in the " @@ -2802,7 +2834,7 @@ msgid "" "can access specific data." msgstr "" -#: core/viewsets.py:326 +#: engine/core/viewsets.py:326 msgid "" "Represents a viewset for managing Brand instances. This class provides " "functionality for querying, filtering, and serializing Brand objects. It " @@ -2810,7 +2842,7 @@ msgid "" "endpoints for Brand objects." msgstr "" -#: core/viewsets.py:438 +#: engine/core/viewsets.py:438 msgid "" "Manages operations related to the `Product` model in the system. This class " "provides a viewset for managing products, including their filtering, " @@ -2821,7 +2853,7 @@ msgid "" "product." msgstr "" -#: core/viewsets.py:568 +#: engine/core/viewsets.py:568 msgid "" "Represents a viewset for managing Vendor objects. This viewset allows " "fetching, filtering, and serializing Vendor data. It defines the queryset, " @@ -2830,7 +2862,7 @@ msgid "" "Vendor-related resources through the Django REST framework." msgstr "" -#: core/viewsets.py:588 +#: engine/core/viewsets.py:588 msgid "" "Representation of a view set handling Feedback objects. This class manages " "operations related to Feedback objects, including listing, filtering, and " @@ -2840,7 +2872,7 @@ msgid "" "use of Django's filtering system for querying data." msgstr "" -#: core/viewsets.py:615 +#: engine/core/viewsets.py:615 msgid "" "ViewSet for managing orders and related operations. This class provides " "functionality to retrieve, modify, and manage order objects. It includes " @@ -2851,7 +2883,7 @@ msgid "" "enforces permissions accordingly while interacting with order data." msgstr "" -#: core/viewsets.py:813 +#: engine/core/viewsets.py:813 msgid "" "Provides a viewset for managing OrderProduct entities. This viewset enables " "CRUD operations and custom actions specific to the OrderProduct model. It " @@ -2860,25 +2892,25 @@ msgid "" "feedback on OrderProduct instances" msgstr "" -#: core/viewsets.py:867 +#: engine/core/viewsets.py:867 msgid "Manages operations related to Product images in the application. " msgstr "" -#: core/viewsets.py:880 +#: engine/core/viewsets.py:880 msgid "" "Manages the retrieval and handling of PromoCode instances through various " "API actions." msgstr "" -#: core/viewsets.py:902 +#: engine/core/viewsets.py:902 msgid "Represents a view set for managing promotions. " msgstr "" -#: core/viewsets.py:915 +#: engine/core/viewsets.py:915 msgid "Handles operations related to Stock data in the system." msgstr "" -#: core/viewsets.py:929 +#: engine/core/viewsets.py:929 msgid "" "ViewSet for managing Wishlist operations. The WishlistViewSet provides " "endpoints for interacting with a user's wish list, allowing for the " @@ -2889,7 +2921,7 @@ msgid "" "are granted." msgstr "" -#: core/viewsets.py:1044 +#: engine/core/viewsets.py:1044 msgid "" "This class provides viewset functionality for managing `Address` objects. " "The AddressViewSet class enables CRUD operations, filtering, and custom " @@ -2898,12 +2930,12 @@ msgid "" "on the request context." msgstr "" -#: core/viewsets.py:1111 +#: engine/core/viewsets.py:1111 #, python-brace-format msgid "Geocoding error: {e}" msgstr "" -#: core/viewsets.py:1119 +#: engine/core/viewsets.py:1119 msgid "" "Handles operations related to Product Tags within the application. This " "class provides functionality for retrieving, filtering, and serializing " diff --git a/core/locale/hr_HR/LC_MESSAGES/django.mo b/engine/core/locale/hr_HR/LC_MESSAGES/django.mo similarity index 100% rename from core/locale/hr_HR/LC_MESSAGES/django.mo rename to engine/core/locale/hr_HR/LC_MESSAGES/django.mo diff --git a/core/locale/fa_IR/LC_MESSAGES/django.po b/engine/core/locale/hr_HR/LC_MESSAGES/django.po similarity index 62% rename from core/locale/fa_IR/LC_MESSAGES/django.po rename to engine/core/locale/hr_HR/LC_MESSAGES/django.po index 7b5c45d6..6fc2de05 100644 --- a/core/locale/fa_IR/LC_MESSAGES/django.po +++ b/engine/core/locale/hr_HR/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,518 +16,526 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: core/abstract.py:12 +#: engine/core/abstract.py:12 msgid "unique id" msgstr "" -#: core/abstract.py:13 +#: engine/core/abstract.py:13 msgid "unique id is used to surely identify any database object" msgstr "" -#: core/abstract.py:20 +#: engine/core/abstract.py:20 msgid "is active" msgstr "" -#: core/abstract.py:21 +#: engine/core/abstract.py:21 msgid "" "if set to false, this object can't be seen by users without needed permission" msgstr "" -#: core/abstract.py:23 core/choices.py:18 +#: engine/core/abstract.py:23 engine/core/choices.py:18 msgid "created" msgstr "" -#: core/abstract.py:23 +#: engine/core/abstract.py:23 msgid "when the object first appeared on the database" msgstr "" -#: core/abstract.py:24 +#: engine/core/abstract.py:24 msgid "modified" msgstr "" -#: core/abstract.py:24 +#: engine/core/abstract.py:24 msgid "when the object was last modified" msgstr "" -#: core/admin.py:68 +#: engine/core/admin.py:68 msgid "translations" msgstr "" -#: core/admin.py:72 +#: engine/core/admin.py:72 msgid "general" msgstr "" -#: core/admin.py:74 +#: engine/core/admin.py:74 msgid "relations" msgstr "" -#: core/admin.py:76 +#: engine/core/admin.py:76 msgid "additional info" msgstr "" -#: core/admin.py:94 +#: engine/core/admin.py:94 msgid "metadata" msgstr "" -#: core/admin.py:101 +#: engine/core/admin.py:101 msgid "timestamps" msgstr "" -#: core/admin.py:116 +#: engine/core/admin.py:116 #, python-format msgid "activate selected %(verbose_name_plural)s" msgstr "" -#: core/admin.py:121 +#: engine/core/admin.py:121 msgid "selected items have been activated." msgstr "" -#: core/admin.py:127 +#: engine/core/admin.py:127 #, python-format msgid "deactivate selected %(verbose_name_plural)s" msgstr "" -#: core/admin.py:132 +#: engine/core/admin.py:132 msgid "selected items have been deactivated." msgstr "" -#: core/admin.py:144 core/graphene/object_types.py:582 -#: core/graphene/object_types.py:589 core/models.py:783 core/models.py:791 +#: engine/core/admin.py:144 engine/core/graphene/object_types.py:586 +#: engine/core/graphene/object_types.py:593 engine/core/models.py:794 +#: engine/core/models.py:802 msgid "attribute value" msgstr "" -#: core/admin.py:145 core/graphene/object_types.py:75 core/models.py:792 +#: engine/core/admin.py:145 engine/core/graphene/object_types.py:75 +#: engine/core/models.py:803 msgid "attribute values" msgstr "" -#: core/admin.py:156 +#: engine/core/admin.py:156 msgid "image" msgstr "" -#: core/admin.py:157 core/graphene/object_types.py:474 +#: engine/core/admin.py:157 engine/core/graphene/object_types.py:474 msgid "images" msgstr "" -#: core/admin.py:168 core/models.py:559 +#: engine/core/admin.py:169 engine/core/models.py:559 msgid "stock" msgstr "" -#: core/admin.py:169 core/graphene/object_types.py:636 +#: engine/core/admin.py:170 engine/core/graphene/object_types.py:640 msgid "stocks" msgstr "" -#: core/admin.py:182 core/models.py:1744 +#: engine/core/admin.py:183 engine/core/models.py:1804 msgid "order product" msgstr "" -#: core/admin.py:183 core/graphene/object_types.py:389 core/models.py:1745 +#: engine/core/admin.py:184 engine/core/graphene/object_types.py:389 +#: engine/core/models.py:1805 msgid "order products" msgstr "" -#: core/admin.py:196 core/admin.py:197 +#: engine/core/admin.py:197 engine/core/admin.py:198 msgid "children" msgstr "" -#: core/admin.py:965 +#: engine/core/admin.py:969 msgid "Config" msgstr "" -#: core/apps.py:8 +#: engine/core/apps.py:8 msgid "core" msgstr "" -#: core/choices.py:4 core/choices.py:20 +#: engine/core/choices.py:4 engine/core/choices.py:20 msgid "finished" msgstr "" -#: core/choices.py:5 core/choices.py:19 +#: engine/core/choices.py:5 engine/core/choices.py:19 msgid "delivering" msgstr "" -#: core/choices.py:6 +#: engine/core/choices.py:6 msgid "delivered" msgstr "" -#: core/choices.py:7 +#: engine/core/choices.py:7 msgid "canceled" msgstr "" -#: core/choices.py:8 core/choices.py:16 core/choices.py:24 +#: engine/core/choices.py:8 engine/core/choices.py:16 engine/core/choices.py:24 msgid "failed" msgstr "" -#: core/choices.py:9 core/choices.py:15 +#: engine/core/choices.py:9 engine/core/choices.py:15 msgid "pending" msgstr "" -#: core/choices.py:10 +#: engine/core/choices.py:10 msgid "accepted" msgstr "" -#: core/choices.py:11 +#: engine/core/choices.py:11 msgid "money returned" msgstr "" -#: core/choices.py:17 +#: engine/core/choices.py:17 msgid "payment" msgstr "" -#: core/choices.py:21 +#: engine/core/choices.py:21 msgid "momental" msgstr "" -#: core/choices.py:24 +#: engine/core/choices.py:24 msgid "successful" msgstr "" -#: core/docs/drf/views.py:17 core/graphene/mutations.py:38 +#: engine/core/docs/drf/views.py:17 engine/core/graphene/mutations.py:38 msgid "cache I/O" msgstr "" -#: core/docs/drf/views.py:19 +#: engine/core/docs/drf/views.py:19 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 "" -#: core/docs/drf/views.py:32 +#: engine/core/docs/drf/views.py:32 msgid "get a list of supported languages" msgstr "" -#: core/docs/drf/views.py:41 +#: engine/core/docs/drf/views.py:41 msgid "get application's exposable parameters" msgstr "" -#: core/docs/drf/views.py:48 +#: engine/core/docs/drf/views.py:48 msgid "send a message to the support team" msgstr "" -#: core/docs/drf/views.py:59 core/graphene/mutations.py:58 +#: engine/core/docs/drf/views.py:59 engine/core/graphene/mutations.py:58 msgid "request a CORSed URL" msgstr "" -#: core/docs/drf/views.py:85 +#: engine/core/docs/drf/views.py:85 msgid "global search endpoint to query across project's tables" msgstr "" -#: core/docs/drf/views.py:91 +#: engine/core/docs/drf/views.py:91 msgid "purchase an order as a business" msgstr "" -#: core/docs/drf/views.py:98 +#: engine/core/docs/drf/views.py:98 msgid "" "purchase an order as a business, using the provided `products` with " "`product_uuid` and `attributes`." msgstr "" -#: core/docs/drf/viewsets.py:58 +#: engine/core/docs/drf/viewsets.py:58 msgid "list all attribute groups (simple view)" msgstr "" -#: core/docs/drf/viewsets.py:62 +#: engine/core/docs/drf/viewsets.py:62 msgid "retrieve a single attribute group (detailed view)" msgstr "" -#: core/docs/drf/viewsets.py:66 +#: engine/core/docs/drf/viewsets.py:66 msgid "create an attribute group" msgstr "" -#: core/docs/drf/viewsets.py:70 +#: engine/core/docs/drf/viewsets.py:70 msgid "delete an attribute group" msgstr "" -#: core/docs/drf/viewsets.py:74 +#: engine/core/docs/drf/viewsets.py:74 msgid "rewrite an existing attribute group saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:78 +#: engine/core/docs/drf/viewsets.py:78 msgid "rewrite some fields of an existing attribute group saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:85 +#: engine/core/docs/drf/viewsets.py:85 msgid "list all attributes (simple view)" msgstr "" -#: core/docs/drf/viewsets.py:89 +#: engine/core/docs/drf/viewsets.py:89 msgid "retrieve a single attribute (detailed view)" msgstr "" -#: core/docs/drf/viewsets.py:93 +#: engine/core/docs/drf/viewsets.py:93 msgid "create an attribute" msgstr "" -#: core/docs/drf/viewsets.py:97 +#: engine/core/docs/drf/viewsets.py:97 msgid "delete an attribute" msgstr "" -#: core/docs/drf/viewsets.py:101 +#: engine/core/docs/drf/viewsets.py:101 msgid "rewrite an existing attribute saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:105 +#: engine/core/docs/drf/viewsets.py:105 msgid "rewrite some fields of an existing attribute saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:112 +#: engine/core/docs/drf/viewsets.py:112 msgid "list all attribute values (simple view)" msgstr "" -#: core/docs/drf/viewsets.py:116 +#: engine/core/docs/drf/viewsets.py:116 msgid "retrieve a single attribute value (detailed view)" msgstr "" -#: core/docs/drf/viewsets.py:120 +#: engine/core/docs/drf/viewsets.py:120 msgid "create an attribute value" msgstr "" -#: core/docs/drf/viewsets.py:124 +#: engine/core/docs/drf/viewsets.py:124 msgid "delete an attribute value" msgstr "" -#: core/docs/drf/viewsets.py:128 +#: engine/core/docs/drf/viewsets.py:128 msgid "rewrite an existing attribute value saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:132 +#: engine/core/docs/drf/viewsets.py:132 msgid "rewrite some fields of an existing attribute value saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:139 core/docs/drf/viewsets.py:140 +#: engine/core/docs/drf/viewsets.py:139 engine/core/docs/drf/viewsets.py:140 msgid "list all categories (simple view)" msgstr "" -#: core/docs/drf/viewsets.py:144 core/docs/drf/viewsets.py:145 +#: engine/core/docs/drf/viewsets.py:144 engine/core/docs/drf/viewsets.py:145 msgid "retrieve a single category (detailed view)" msgstr "" -#: core/docs/drf/viewsets.py:149 core/docs/drf/viewsets.py:150 -msgid "create a category" -msgstr "" - -#: core/docs/drf/viewsets.py:154 core/docs/drf/viewsets.py:155 -msgid "delete a category" -msgstr "" - -#: core/docs/drf/viewsets.py:159 core/docs/drf/viewsets.py:160 -msgid "rewrite an existing category saving non-editables" -msgstr "" - -#: core/docs/drf/viewsets.py:164 core/docs/drf/viewsets.py:165 -msgid "rewrite some fields of an existing category saving non-editables" -msgstr "" - -#: core/docs/drf/viewsets.py:169 core/docs/drf/viewsets.py:501 -#: core/graphene/object_types.py:117 core/graphene/object_types.py:207 -#: core/graphene/object_types.py:482 -msgid "SEO Meta snapshot" -msgstr "" - -#: core/docs/drf/viewsets.py:170 -msgid "returns a snapshot of the category's SEO meta data" -msgstr "" - -#: core/docs/drf/viewsets.py:175 +#: engine/core/docs/drf/viewsets.py:150 engine/core/docs/drf/viewsets.py:183 msgid "Category UUID or slug" msgstr "" -#: core/docs/drf/viewsets.py:188 +#: engine/core/docs/drf/viewsets.py:157 engine/core/docs/drf/viewsets.py:158 +msgid "create a category" +msgstr "" + +#: engine/core/docs/drf/viewsets.py:162 engine/core/docs/drf/viewsets.py:163 +msgid "delete a category" +msgstr "" + +#: engine/core/docs/drf/viewsets.py:167 engine/core/docs/drf/viewsets.py:168 +msgid "rewrite an existing category saving non-editables" +msgstr "" + +#: engine/core/docs/drf/viewsets.py:172 engine/core/docs/drf/viewsets.py:173 +msgid "rewrite some fields of an existing category saving non-editables" +msgstr "" + +#: engine/core/docs/drf/viewsets.py:177 engine/core/docs/drf/viewsets.py:517 +#: engine/core/graphene/object_types.py:117 +#: engine/core/graphene/object_types.py:207 +#: engine/core/graphene/object_types.py:482 +msgid "SEO Meta snapshot" +msgstr "" + +#: engine/core/docs/drf/viewsets.py:178 +msgid "returns a snapshot of the category's SEO meta data" +msgstr "" + +#: engine/core/docs/drf/viewsets.py:196 msgid "list all orders (simple view)" msgstr "" -#: core/docs/drf/viewsets.py:189 +#: engine/core/docs/drf/viewsets.py:197 msgid "for non-staff users, only their own orders are returned." msgstr "" -#: core/docs/drf/viewsets.py:195 +#: engine/core/docs/drf/viewsets.py:203 msgid "" "Case-insensitive substring search across human_readable_id, order_products." "product.name, and order_products.product.partnumber" msgstr "" -#: core/docs/drf/viewsets.py:202 +#: engine/core/docs/drf/viewsets.py:210 msgid "Filter orders with buy_time >= this ISO 8601 datetime" msgstr "" -#: core/docs/drf/viewsets.py:207 +#: engine/core/docs/drf/viewsets.py:215 msgid "Filter orders with buy_time <= this ISO 8601 datetime" msgstr "" -#: core/docs/drf/viewsets.py:212 +#: engine/core/docs/drf/viewsets.py:220 msgid "Filter by exact order UUID" msgstr "" -#: core/docs/drf/viewsets.py:217 +#: engine/core/docs/drf/viewsets.py:225 msgid "Filter by exact human-readable order ID" msgstr "" -#: core/docs/drf/viewsets.py:222 +#: engine/core/docs/drf/viewsets.py:230 msgid "Filter by user's email (case-insensitive exact match)" msgstr "" -#: core/docs/drf/viewsets.py:227 +#: engine/core/docs/drf/viewsets.py:235 msgid "Filter by user's UUID" msgstr "" -#: core/docs/drf/viewsets.py:232 +#: engine/core/docs/drf/viewsets.py:240 msgid "Filter by order status (case-insensitive substring match)" msgstr "" -#: core/docs/drf/viewsets.py:238 +#: engine/core/docs/drf/viewsets.py:246 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')." msgstr "" -#: core/docs/drf/viewsets.py:247 +#: engine/core/docs/drf/viewsets.py:255 msgid "retrieve a single order (detailed view)" msgstr "" -#: core/docs/drf/viewsets.py:251 +#: engine/core/docs/drf/viewsets.py:260 +msgid "Order UUID or human-readable id" +msgstr "" + +#: engine/core/docs/drf/viewsets.py:267 msgid "create an order" msgstr "" -#: core/docs/drf/viewsets.py:252 +#: engine/core/docs/drf/viewsets.py:268 msgid "doesn't work for non-staff users." msgstr "" -#: core/docs/drf/viewsets.py:256 +#: engine/core/docs/drf/viewsets.py:272 msgid "delete an order" msgstr "" -#: core/docs/drf/viewsets.py:260 +#: engine/core/docs/drf/viewsets.py:276 msgid "rewrite an existing order saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:264 +#: engine/core/docs/drf/viewsets.py:280 msgid "rewrite some fields of an existing order saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:268 +#: engine/core/docs/drf/viewsets.py:284 msgid "purchase an order" msgstr "" -#: core/docs/drf/viewsets.py:270 +#: engine/core/docs/drf/viewsets.py:286 msgid "" "finalizes the order purchase. if `force_balance` is used, the purchase is " "completed using the user's balance; if `force_payment` is used, a " "transaction is initiated." msgstr "" -#: core/docs/drf/viewsets.py:282 core/graphene/mutations.py:335 +#: engine/core/docs/drf/viewsets.py:298 engine/core/graphene/mutations.py:335 msgid "purchase an order without account creation" msgstr "" -#: core/docs/drf/viewsets.py:283 +#: engine/core/docs/drf/viewsets.py:299 msgid "finalizes the order purchase for a non-registered user." msgstr "" -#: core/docs/drf/viewsets.py:291 +#: engine/core/docs/drf/viewsets.py:307 msgid "add product to order" msgstr "" -#: core/docs/drf/viewsets.py:292 +#: engine/core/docs/drf/viewsets.py:308 msgid "" "adds a product to an order using the provided `product_uuid` and " "`attributes`." msgstr "" -#: core/docs/drf/viewsets.py:297 +#: engine/core/docs/drf/viewsets.py:313 msgid "add a list of products to order, quantities will not count" msgstr "" -#: core/docs/drf/viewsets.py:298 +#: engine/core/docs/drf/viewsets.py:314 msgid "" "adds a list of products to an order using the provided `product_uuid` and " "`attributes`." msgstr "" -#: core/docs/drf/viewsets.py:303 +#: engine/core/docs/drf/viewsets.py:319 msgid "remove product from order" msgstr "" -#: core/docs/drf/viewsets.py:304 +#: engine/core/docs/drf/viewsets.py:320 msgid "" "removes a product from an order using the provided `product_uuid` and " "`attributes`." msgstr "" -#: core/docs/drf/viewsets.py:309 +#: engine/core/docs/drf/viewsets.py:325 msgid "remove product from order, quantities will not count" msgstr "" -#: core/docs/drf/viewsets.py:310 +#: engine/core/docs/drf/viewsets.py:326 msgid "" "removes a list of products from an order using the provided `product_uuid` " "and `attributes`" msgstr "" -#: core/docs/drf/viewsets.py:318 +#: engine/core/docs/drf/viewsets.py:334 msgid "list all wishlists (simple view)" msgstr "" -#: core/docs/drf/viewsets.py:319 +#: engine/core/docs/drf/viewsets.py:335 msgid "for non-staff users, only their own wishlists are returned." msgstr "" -#: core/docs/drf/viewsets.py:323 +#: engine/core/docs/drf/viewsets.py:339 msgid "retrieve a single wishlist (detailed view)" msgstr "" -#: core/docs/drf/viewsets.py:327 +#: engine/core/docs/drf/viewsets.py:343 msgid "create an wishlist" msgstr "" -#: core/docs/drf/viewsets.py:328 +#: engine/core/docs/drf/viewsets.py:344 msgid "Doesn't work for non-staff users." msgstr "" -#: core/docs/drf/viewsets.py:332 +#: engine/core/docs/drf/viewsets.py:348 msgid "delete an wishlist" msgstr "" -#: core/docs/drf/viewsets.py:336 +#: engine/core/docs/drf/viewsets.py:352 msgid "rewrite an existing wishlist saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:340 +#: engine/core/docs/drf/viewsets.py:356 msgid "rewrite some fields of an existing wishlist saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:344 +#: engine/core/docs/drf/viewsets.py:360 msgid "add product to wishlist" msgstr "" -#: core/docs/drf/viewsets.py:345 +#: engine/core/docs/drf/viewsets.py:361 msgid "adds a product to an wishlist using the provided `product_uuid`" msgstr "" -#: core/docs/drf/viewsets.py:350 +#: engine/core/docs/drf/viewsets.py:366 msgid "remove product from wishlist" msgstr "" -#: core/docs/drf/viewsets.py:351 +#: engine/core/docs/drf/viewsets.py:367 msgid "removes a product from an wishlist using the provided `product_uuid`" msgstr "" -#: core/docs/drf/viewsets.py:356 +#: engine/core/docs/drf/viewsets.py:372 msgid "add many products to wishlist" msgstr "" -#: core/docs/drf/viewsets.py:357 +#: engine/core/docs/drf/viewsets.py:373 msgid "adds many products to an wishlist using the provided `product_uuids`" msgstr "" -#: core/docs/drf/viewsets.py:362 +#: engine/core/docs/drf/viewsets.py:378 msgid "remove many products from wishlist" msgstr "" -#: core/docs/drf/viewsets.py:363 +#: engine/core/docs/drf/viewsets.py:379 msgid "" "removes many products from an wishlist using the provided `product_uuids`" msgstr "" -#: core/docs/drf/viewsets.py:370 +#: engine/core/docs/drf/viewsets.py:386 msgid "" "Filter by one or more attribute name/value pairs. \n" "• **Syntax**: `attr_name=method-value[;attr2=method2-value2]…` \n" @@ -544,871 +552,893 @@ msgid "" "`b64-description=icontains-aGVhdC1jb2xk`" msgstr "" -#: core/docs/drf/viewsets.py:386 core/docs/drf/viewsets.py:387 +#: engine/core/docs/drf/viewsets.py:402 engine/core/docs/drf/viewsets.py:403 msgid "list all products (simple view)" msgstr "" -#: core/docs/drf/viewsets.py:392 +#: engine/core/docs/drf/viewsets.py:408 msgid "(exact) Product UUID" msgstr "" -#: core/docs/drf/viewsets.py:399 +#: engine/core/docs/drf/viewsets.py:415 msgid "" "Comma-separated list of fields to sort by. Prefix with `-` for " "descending. \n" "**Allowed:** uuid, rating, name, slug, created, modified, price, random" msgstr "" -#: core/docs/drf/viewsets.py:413 core/docs/drf/viewsets.py:414 +#: engine/core/docs/drf/viewsets.py:429 engine/core/docs/drf/viewsets.py:430 msgid "retrieve a single product (detailed view)" msgstr "" -#: core/docs/drf/viewsets.py:419 core/docs/drf/viewsets.py:443 -#: core/docs/drf/viewsets.py:459 core/docs/drf/viewsets.py:475 -#: core/docs/drf/viewsets.py:491 core/docs/drf/viewsets.py:507 +#: engine/core/docs/drf/viewsets.py:435 engine/core/docs/drf/viewsets.py:459 +#: engine/core/docs/drf/viewsets.py:475 engine/core/docs/drf/viewsets.py:491 +#: engine/core/docs/drf/viewsets.py:507 engine/core/docs/drf/viewsets.py:523 msgid "Product UUID or slug" msgstr "" -#: core/docs/drf/viewsets.py:429 core/docs/drf/viewsets.py:430 +#: engine/core/docs/drf/viewsets.py:445 engine/core/docs/drf/viewsets.py:446 msgid "create a product" msgstr "" -#: core/docs/drf/viewsets.py:437 core/docs/drf/viewsets.py:438 +#: engine/core/docs/drf/viewsets.py:453 engine/core/docs/drf/viewsets.py:454 msgid "rewrite an existing product, preserving non-editable fields" msgstr "" -#: core/docs/drf/viewsets.py:453 core/docs/drf/viewsets.py:454 +#: engine/core/docs/drf/viewsets.py:469 engine/core/docs/drf/viewsets.py:470 msgid "" "update some fields of an existing product, preserving non-editable fields" msgstr "" -#: core/docs/drf/viewsets.py:469 core/docs/drf/viewsets.py:470 +#: engine/core/docs/drf/viewsets.py:485 engine/core/docs/drf/viewsets.py:486 msgid "delete a product" msgstr "" -#: core/docs/drf/viewsets.py:485 core/docs/drf/viewsets.py:486 +#: engine/core/docs/drf/viewsets.py:501 engine/core/docs/drf/viewsets.py:502 msgid "lists all permitted feedbacks for a product" msgstr "" -#: core/docs/drf/viewsets.py:502 +#: engine/core/docs/drf/viewsets.py:518 msgid "returns a snapshot of the product's SEO meta data" msgstr "" -#: core/docs/drf/viewsets.py:520 +#: engine/core/docs/drf/viewsets.py:536 msgid "list all addresses" msgstr "" -#: core/docs/drf/viewsets.py:527 +#: engine/core/docs/drf/viewsets.py:543 msgid "retrieve a single address" msgstr "" -#: core/docs/drf/viewsets.py:534 +#: engine/core/docs/drf/viewsets.py:550 msgid "create a new address" msgstr "" -#: core/docs/drf/viewsets.py:542 +#: engine/core/docs/drf/viewsets.py:558 msgid "delete an address" msgstr "" -#: core/docs/drf/viewsets.py:549 +#: engine/core/docs/drf/viewsets.py:565 msgid "update an entire address" msgstr "" -#: core/docs/drf/viewsets.py:557 +#: engine/core/docs/drf/viewsets.py:573 msgid "partially update an address" msgstr "" -#: core/docs/drf/viewsets.py:565 +#: engine/core/docs/drf/viewsets.py:581 msgid "autocomplete address suggestions" msgstr "" -#: core/docs/drf/viewsets.py:570 +#: engine/core/docs/drf/viewsets.py:586 msgid "raw data query string, please append with data from geo-IP endpoint" msgstr "" -#: core/docs/drf/viewsets.py:576 +#: engine/core/docs/drf/viewsets.py:592 msgid "limit the results amount, 1 < limit < 10, default: 5" msgstr "" -#: core/docs/drf/viewsets.py:589 +#: engine/core/docs/drf/viewsets.py:605 msgid "list all feedbacks (simple view)" msgstr "" -#: core/docs/drf/viewsets.py:593 +#: engine/core/docs/drf/viewsets.py:609 msgid "retrieve a single feedback (detailed view)" msgstr "" -#: core/docs/drf/viewsets.py:597 +#: engine/core/docs/drf/viewsets.py:613 msgid "create a feedback" msgstr "" -#: core/docs/drf/viewsets.py:601 +#: engine/core/docs/drf/viewsets.py:617 msgid "delete a feedback" msgstr "" -#: core/docs/drf/viewsets.py:605 +#: engine/core/docs/drf/viewsets.py:621 msgid "rewrite an existing feedback saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:609 +#: engine/core/docs/drf/viewsets.py:625 msgid "rewrite some fields of an existing feedback saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:616 +#: engine/core/docs/drf/viewsets.py:632 msgid "list all order–product relations (simple view)" msgstr "" -#: core/docs/drf/viewsets.py:623 +#: engine/core/docs/drf/viewsets.py:639 msgid "retrieve a single order–product relation (detailed view)" msgstr "" -#: core/docs/drf/viewsets.py:630 +#: engine/core/docs/drf/viewsets.py:646 msgid "create a new order–product relation" msgstr "" -#: core/docs/drf/viewsets.py:637 +#: engine/core/docs/drf/viewsets.py:653 msgid "replace an existing order–product relation" msgstr "" -#: core/docs/drf/viewsets.py:644 +#: engine/core/docs/drf/viewsets.py:660 msgid "partially update an existing order–product relation" msgstr "" -#: core/docs/drf/viewsets.py:651 +#: engine/core/docs/drf/viewsets.py:667 msgid "delete an order–product relation" msgstr "" -#: core/docs/drf/viewsets.py:658 +#: engine/core/docs/drf/viewsets.py:674 msgid "add or remove feedback on an order–product relation" msgstr "" -#: core/docs/drf/viewsets.py:672 +#: engine/core/docs/drf/viewsets.py:688 msgid "list all brands (simple view)" msgstr "" -#: core/docs/drf/viewsets.py:676 +#: engine/core/docs/drf/viewsets.py:692 msgid "retrieve a single brand (detailed view)" msgstr "" -#: core/docs/drf/viewsets.py:680 +#: engine/core/docs/drf/viewsets.py:697 engine/core/docs/drf/viewsets.py:725 +msgid "Brand UUID or slug" +msgstr "" + +#: engine/core/docs/drf/viewsets.py:704 msgid "create a brand" msgstr "" -#: core/docs/drf/viewsets.py:684 +#: engine/core/docs/drf/viewsets.py:708 msgid "delete a brand" msgstr "" -#: core/docs/drf/viewsets.py:688 +#: engine/core/docs/drf/viewsets.py:712 msgid "rewrite an existing brand saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:692 +#: engine/core/docs/drf/viewsets.py:716 msgid "rewrite some fields of an existing brand saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:696 +#: engine/core/docs/drf/viewsets.py:720 msgid "SEO Meta snapshot for brand" msgstr "" -#: core/docs/drf/viewsets.py:703 +#: engine/core/docs/drf/viewsets.py:735 msgid "list all vendors (simple view)" msgstr "" -#: core/docs/drf/viewsets.py:707 +#: engine/core/docs/drf/viewsets.py:739 msgid "retrieve a single vendor (detailed view)" msgstr "" -#: core/docs/drf/viewsets.py:711 +#: engine/core/docs/drf/viewsets.py:743 msgid "create a vendor" msgstr "" -#: core/docs/drf/viewsets.py:715 +#: engine/core/docs/drf/viewsets.py:747 msgid "delete a vendor" msgstr "" -#: core/docs/drf/viewsets.py:719 +#: engine/core/docs/drf/viewsets.py:751 msgid "rewrite an existing vendor saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:723 +#: engine/core/docs/drf/viewsets.py:755 msgid "rewrite some fields of an existing vendor saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:730 +#: engine/core/docs/drf/viewsets.py:762 msgid "list all product images (simple view)" msgstr "" -#: core/docs/drf/viewsets.py:734 +#: engine/core/docs/drf/viewsets.py:766 msgid "retrieve a single product image (detailed view)" msgstr "" -#: core/docs/drf/viewsets.py:738 +#: engine/core/docs/drf/viewsets.py:770 msgid "create a product image" msgstr "" -#: core/docs/drf/viewsets.py:742 +#: engine/core/docs/drf/viewsets.py:774 msgid "delete a product image" msgstr "" -#: core/docs/drf/viewsets.py:746 +#: engine/core/docs/drf/viewsets.py:778 msgid "rewrite an existing product image saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:750 +#: engine/core/docs/drf/viewsets.py:782 msgid "rewrite some fields of an existing product image saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:757 +#: engine/core/docs/drf/viewsets.py:789 msgid "list all promo codes (simple view)" msgstr "" -#: core/docs/drf/viewsets.py:761 +#: engine/core/docs/drf/viewsets.py:793 msgid "retrieve a single promo code (detailed view)" msgstr "" -#: core/docs/drf/viewsets.py:765 +#: engine/core/docs/drf/viewsets.py:797 msgid "create a promo code" msgstr "" -#: core/docs/drf/viewsets.py:769 +#: engine/core/docs/drf/viewsets.py:801 msgid "delete a promo code" msgstr "" -#: core/docs/drf/viewsets.py:773 +#: engine/core/docs/drf/viewsets.py:805 msgid "rewrite an existing promo code saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:777 +#: engine/core/docs/drf/viewsets.py:809 msgid "rewrite some fields of an existing promo code saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:784 +#: engine/core/docs/drf/viewsets.py:816 msgid "list all promotions (simple view)" msgstr "" -#: core/docs/drf/viewsets.py:788 +#: engine/core/docs/drf/viewsets.py:820 msgid "retrieve a single promotion (detailed view)" msgstr "" -#: core/docs/drf/viewsets.py:792 +#: engine/core/docs/drf/viewsets.py:824 msgid "create a promotion" msgstr "" -#: core/docs/drf/viewsets.py:796 +#: engine/core/docs/drf/viewsets.py:828 msgid "delete a promotion" msgstr "" -#: core/docs/drf/viewsets.py:800 +#: engine/core/docs/drf/viewsets.py:832 msgid "rewrite an existing promotion saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:804 +#: engine/core/docs/drf/viewsets.py:836 msgid "rewrite some fields of an existing promotion saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:811 +#: engine/core/docs/drf/viewsets.py:843 msgid "list all stocks (simple view)" msgstr "" -#: core/docs/drf/viewsets.py:815 +#: engine/core/docs/drf/viewsets.py:847 msgid "retrieve a single stock (detailed view)" msgstr "" -#: core/docs/drf/viewsets.py:819 +#: engine/core/docs/drf/viewsets.py:851 msgid "create a stock record" msgstr "" -#: core/docs/drf/viewsets.py:823 +#: engine/core/docs/drf/viewsets.py:855 msgid "delete a stock record" msgstr "" -#: core/docs/drf/viewsets.py:827 +#: engine/core/docs/drf/viewsets.py:859 msgid "rewrite an existing stock record saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:831 +#: engine/core/docs/drf/viewsets.py:863 msgid "rewrite some fields of an existing stock record saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:838 +#: engine/core/docs/drf/viewsets.py:870 msgid "list all product tags (simple view)" msgstr "" -#: core/docs/drf/viewsets.py:842 +#: engine/core/docs/drf/viewsets.py:874 msgid "retrieve a single product tag (detailed view)" msgstr "" -#: core/docs/drf/viewsets.py:846 +#: engine/core/docs/drf/viewsets.py:878 msgid "create a product tag" msgstr "" -#: core/docs/drf/viewsets.py:850 +#: engine/core/docs/drf/viewsets.py:882 msgid "delete a product tag" msgstr "" -#: core/docs/drf/viewsets.py:854 +#: engine/core/docs/drf/viewsets.py:886 msgid "rewrite an existing product tag saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:858 +#: engine/core/docs/drf/viewsets.py:890 msgid "rewrite some fields of an existing product tag saving non-editables" msgstr "" -#: core/elasticsearch/__init__.py:118 core/elasticsearch/__init__.py:550 +#: engine/core/elasticsearch/__init__.py:122 +#: engine/core/elasticsearch/__init__.py:570 msgid "no search term provided." msgstr "" -#: core/filters.py:69 core/filters.py:412 core/filters.py:539 +#: engine/core/filters.py:69 engine/core/filters.py:426 +#: engine/core/filters.py:553 msgid "Search" msgstr "" -#: core/filters.py:70 core/filters.py:569 core/filters.py:598 +#: engine/core/filters.py:70 engine/core/filters.py:583 +#: engine/core/filters.py:612 msgid "UUID" msgstr "" -#: core/filters.py:71 core/filters.py:414 core/filters.py:541 +#: engine/core/filters.py:71 engine/core/filters.py:428 +#: engine/core/filters.py:555 msgid "Name" msgstr "" -#: core/filters.py:72 core/filters.py:543 +#: engine/core/filters.py:72 engine/core/filters.py:557 msgid "Categories" msgstr "" -#: core/filters.py:74 +#: engine/core/filters.py:74 msgid "Categories Slugs" msgstr "" -#: core/filters.py:75 core/filters.py:422 +#: engine/core/filters.py:75 engine/core/filters.py:436 msgid "Tags" msgstr "" -#: core/filters.py:76 +#: engine/core/filters.py:76 msgid "Min Price" msgstr "" -#: core/filters.py:77 +#: engine/core/filters.py:77 msgid "Max Price" msgstr "" -#: core/filters.py:78 +#: engine/core/filters.py:78 msgid "Is Active" msgstr "" -#: core/filters.py:79 +#: engine/core/filters.py:79 msgid "Brand" msgstr "" -#: core/filters.py:80 +#: engine/core/filters.py:80 msgid "Attributes" msgstr "" -#: core/filters.py:81 +#: engine/core/filters.py:81 msgid "Quantity" msgstr "" -#: core/filters.py:82 core/filters.py:416 core/filters.py:542 -#: core/models.py:322 core/models.py:483 core/models.py:637 +#: engine/core/filters.py:82 engine/core/filters.py:430 +#: engine/core/filters.py:556 engine/core/models.py:321 +#: engine/core/models.py:482 engine/core/models.py:637 msgid "Slug" msgstr "" -#: core/filters.py:83 +#: engine/core/filters.py:83 msgid "Is Digital" msgstr "" -#: core/filters.py:84 +#: engine/core/filters.py:84 msgid "Include sub-categories" msgstr "" -#: core/filters.py:87 +#: engine/core/filters.py:87 msgid "Include personal ordered" msgstr "" -#: core/filters.py:89 core/models.py:641 +#: engine/core/filters.py:89 engine/core/models.py:641 msgid "SKU" msgstr "" -#: core/filters.py:173 +#: engine/core/filters.py:184 msgid "there must be a category_uuid to use include_subcategories flag" msgstr "" -#: core/filters.py:339 +#: engine/core/filters.py:353 msgid "Search (ID, product name or part number)" msgstr "" -#: core/filters.py:342 +#: engine/core/filters.py:356 msgid "Bought after (inclusive)" msgstr "" -#: core/filters.py:343 +#: engine/core/filters.py:357 msgid "Bought before (inclusive)" msgstr "" -#: core/filters.py:346 core/filters.py:393 core/filters.py:600 +#: engine/core/filters.py:360 engine/core/filters.py:407 +#: engine/core/filters.py:614 msgid "User email" msgstr "" -#: core/filters.py:347 core/filters.py:394 core/filters.py:578 -#: core/filters.py:599 +#: engine/core/filters.py:361 engine/core/filters.py:408 +#: engine/core/filters.py:592 engine/core/filters.py:613 msgid "User UUID" msgstr "" -#: core/filters.py:348 +#: engine/core/filters.py:362 msgid "Status" msgstr "" -#: core/filters.py:352 +#: engine/core/filters.py:366 msgid "Human Readable ID" msgstr "" -#: core/filters.py:415 +#: engine/core/filters.py:429 msgid "Parent" msgstr "" -#: core/filters.py:419 +#: engine/core/filters.py:433 msgid "Whole category(has at least 1 product or not)" msgstr "" -#: core/filters.py:423 +#: engine/core/filters.py:437 msgid "Level" msgstr "" -#: core/filters.py:573 +#: engine/core/filters.py:587 msgid "Product UUID" msgstr "" -#: core/graphene/mutations.py:41 +#: engine/core/graphene/mutations.py:41 msgid "key to look for in or set into the cache" msgstr "" -#: core/graphene/mutations.py:42 +#: engine/core/graphene/mutations.py:42 msgid "data to store in cache" msgstr "" -#: core/graphene/mutations.py:45 +#: engine/core/graphene/mutations.py:45 msgid "timeout in seconds to set the data for into the cache" msgstr "" -#: core/graphene/mutations.py:48 +#: engine/core/graphene/mutations.py:48 msgid "cached data" msgstr "" -#: core/graphene/mutations.py:63 +#: engine/core/graphene/mutations.py:63 msgid "camelized JSON data from the requested URL" msgstr "" -#: core/graphene/mutations.py:68 core/views.py:232 +#: engine/core/graphene/mutations.py:68 engine/core/views.py:231 msgid "only URLs starting with http(s):// are allowed" msgstr "" -#: core/graphene/mutations.py:84 +#: engine/core/graphene/mutations.py:84 msgid "add a product to the order" msgstr "" -#: core/graphene/mutations.py:105 core/graphene/mutations.py:132 -#: core/graphene/mutations.py:240 core/graphene/mutations.py:288 +#: engine/core/graphene/mutations.py:105 engine/core/graphene/mutations.py:132 +#: engine/core/graphene/mutations.py:240 engine/core/graphene/mutations.py:288 #, python-brace-format msgid "order {order_uuid} not found" msgstr "" -#: core/graphene/mutations.py:111 core/graphene/mutations.py:160 +#: engine/core/graphene/mutations.py:111 engine/core/graphene/mutations.py:160 msgid "remove a product from the order" msgstr "" -#: core/graphene/mutations.py:138 +#: engine/core/graphene/mutations.py:138 msgid "remove all products from the order" msgstr "" -#: core/graphene/mutations.py:183 +#: engine/core/graphene/mutations.py:183 msgid "buy an order" msgstr "" -#: core/graphene/mutations.py:212 core/graphene/mutations.py:266 +#: engine/core/graphene/mutations.py:212 engine/core/graphene/mutations.py:266 msgid "please provide either order_uuid or order_hr_id - mutually exclusive" msgstr "" -#: core/graphene/mutations.py:237 core/graphene/mutations.py:502 -#: core/graphene/mutations.py:544 core/viewsets.py:704 +#: engine/core/graphene/mutations.py:237 engine/core/graphene/mutations.py:502 +#: engine/core/graphene/mutations.py:544 engine/core/viewsets.py:704 msgid "wrong type came from order.buy() method: {type(instance)!s}" msgstr "" -#: core/graphene/mutations.py:246 +#: engine/core/graphene/mutations.py:246 msgid "perform an action on a list of products in the order" msgstr "" -#: core/graphene/mutations.py:251 +#: engine/core/graphene/mutations.py:251 msgid "remove/add" msgstr "" -#: core/graphene/mutations.py:283 core/graphene/mutations.py:324 +#: engine/core/graphene/mutations.py:283 engine/core/graphene/mutations.py:324 msgid "action must be either add or remove" msgstr "" -#: core/graphene/mutations.py:294 +#: engine/core/graphene/mutations.py:294 msgid "perform an action on a list of products in the wishlist" msgstr "" -#: core/graphene/mutations.py:312 +#: engine/core/graphene/mutations.py:312 msgid "please provide wishlist_uuid value" msgstr "" -#: core/graphene/mutations.py:329 core/graphene/mutations.py:405 -#: core/graphene/mutations.py:433 core/graphene/mutations.py:461 -#: core/graphene/mutations.py:505 +#: engine/core/graphene/mutations.py:329 engine/core/graphene/mutations.py:405 +#: engine/core/graphene/mutations.py:433 engine/core/graphene/mutations.py:461 +#: engine/core/graphene/mutations.py:505 #, python-brace-format msgid "wishlist {wishlist_uuid} not found" msgstr "" -#: core/graphene/mutations.py:383 +#: engine/core/graphene/mutations.py:383 msgid "add a product to the wishlist" msgstr "" -#: core/graphene/mutations.py:411 +#: engine/core/graphene/mutations.py:411 msgid "remove a product from the wishlist" msgstr "" -#: core/graphene/mutations.py:439 +#: engine/core/graphene/mutations.py:439 msgid "remove all products from the wishlist" msgstr "" -#: core/graphene/mutations.py:467 +#: engine/core/graphene/mutations.py:467 msgid "buy all products from the wishlist" msgstr "" -#: core/graphene/mutations.py:511 +#: engine/core/graphene/mutations.py:511 msgid "buy a product" msgstr "" -#: core/graphene/mutations.py:517 +#: engine/core/graphene/mutations.py:517 msgid "" "please send the attributes as the string formatted like attr1=value1," "attr2=value2" msgstr "" -#: core/graphene/mutations.py:550 +#: engine/core/graphene/mutations.py:550 msgid "add or delete a feedback for orderproduct" msgstr "" -#: core/graphene/mutations.py:574 +#: engine/core/graphene/mutations.py:574 msgid "action must be either `add` or `remove`" msgstr "" -#: core/graphene/mutations.py:577 +#: engine/core/graphene/mutations.py:577 #, python-brace-format msgid "order product {order_product_uuid} not found" msgstr "" -#: core/graphene/mutations.py:644 +#: engine/core/graphene/mutations.py:644 msgid "original address string provided by the user" msgstr "" -#: core/graphene/mutations.py:680 core/models.py:930 core/models.py:943 -#: core/models.py:1358 core/models.py:1387 core/models.py:1412 -#: core/viewsets.py:707 +#: engine/core/graphene/mutations.py:680 engine/core/models.py:941 +#: engine/core/models.py:954 engine/core/models.py:1369 +#: engine/core/models.py:1398 engine/core/models.py:1423 +#: engine/core/viewsets.py:707 #, python-brace-format msgid "{name} does not exist: {uuid}" msgstr "" -#: core/graphene/mutations.py:694 +#: engine/core/graphene/mutations.py:694 msgid "limit must be between 1 and 10" msgstr "" -#: core/graphene/mutations.py:743 +#: engine/core/graphene/mutations.py:743 msgid "elasticsearch - works like a charm" msgstr "" -#: core/graphene/object_types.py:82 core/graphene/object_types.py:370 -#: core/graphene/object_types.py:417 core/models.py:754 core/models.py:1225 -#: core/models.py:1823 +#: engine/core/graphene/object_types.py:82 +#: engine/core/graphene/object_types.py:370 +#: engine/core/graphene/object_types.py:417 engine/core/models.py:765 +#: engine/core/models.py:1236 engine/core/models.py:1883 msgid "attributes" msgstr "" -#: core/graphene/object_types.py:95 +#: engine/core/graphene/object_types.py:95 msgid "grouped attributes" msgstr "" -#: core/graphene/object_types.py:102 +#: engine/core/graphene/object_types.py:102 msgid "groups of attributes" msgstr "" -#: core/graphene/object_types.py:116 core/graphene/object_types.py:193 -#: core/graphene/object_types.py:223 core/models.py:426 +#: engine/core/graphene/object_types.py:116 +#: engine/core/graphene/object_types.py:193 +#: engine/core/graphene/object_types.py:223 engine/core/models.py:425 msgid "categories" msgstr "" -#: core/graphene/object_types.py:124 core/models.py:497 +#: engine/core/graphene/object_types.py:124 engine/core/models.py:496 msgid "brands" msgstr "" -#: core/graphene/object_types.py:195 +#: engine/core/graphene/object_types.py:195 msgid "category image url" msgstr "" -#: core/graphene/object_types.py:196 core/graphene/object_types.py:317 -#: core/models.py:284 +#: engine/core/graphene/object_types.py:196 +#: engine/core/graphene/object_types.py:317 engine/core/models.py:283 msgid "markup percentage" msgstr "" -#: core/graphene/object_types.py:199 +#: engine/core/graphene/object_types.py:199 msgid "which attributes and values can be used for filtering this category." msgstr "" -#: core/graphene/object_types.py:203 +#: engine/core/graphene/object_types.py:203 msgid "minimum and maximum prices for products in this category, if available." msgstr "" -#: core/graphene/object_types.py:205 +#: engine/core/graphene/object_types.py:205 msgid "tags for this category" msgstr "" -#: core/graphene/object_types.py:206 +#: engine/core/graphene/object_types.py:206 msgid "products in this category" msgstr "" -#: core/graphene/object_types.py:324 core/models.py:189 +#: engine/core/graphene/object_types.py:324 engine/core/models.py:188 msgid "vendors" msgstr "" -#: core/graphene/object_types.py:328 +#: engine/core/graphene/object_types.py:328 msgid "Latitude (Y coordinate)" msgstr "" -#: core/graphene/object_types.py:329 +#: engine/core/graphene/object_types.py:329 msgid "Longitude (X coordinate)" msgstr "" -#: core/graphene/object_types.py:358 +#: engine/core/graphene/object_types.py:358 msgid "comment" msgstr "" -#: core/graphene/object_types.py:359 core/graphene/object_types.py:483 +#: engine/core/graphene/object_types.py:359 +#: engine/core/graphene/object_types.py:483 msgid "rating value from 1 to 10, inclusive, or 0 if not set." msgstr "" -#: core/graphene/object_types.py:366 +#: engine/core/graphene/object_types.py:366 msgid "represents feedback from a user." msgstr "" -#: core/graphene/object_types.py:371 core/graphene/object_types.py:418 -#: core/models.py:1219 +#: engine/core/graphene/object_types.py:371 +#: engine/core/graphene/object_types.py:418 engine/core/models.py:1230 msgid "notifications" msgstr "" -#: core/graphene/object_types.py:372 +#: engine/core/graphene/object_types.py:372 msgid "download url for this order product if applicable" msgstr "" -#: core/graphene/object_types.py:373 core/models.py:1939 +#: engine/core/graphene/object_types.py:373 engine/core/models.py:1722 msgid "feedback" msgstr "" -#: core/graphene/object_types.py:407 +#: engine/core/graphene/object_types.py:407 msgid "a list of order products in this order" msgstr "" -#: core/graphene/object_types.py:409 core/models.py:1189 +#: engine/core/graphene/object_types.py:409 engine/core/models.py:1200 msgid "billing address" msgstr "" -#: core/graphene/object_types.py:412 +#: engine/core/graphene/object_types.py:412 msgid "" "shipping address for this order, leave blank if same as billing address or " "if not applicable" msgstr "" -#: core/graphene/object_types.py:414 +#: engine/core/graphene/object_types.py:414 msgid "total price of this order" msgstr "" -#: core/graphene/object_types.py:415 +#: engine/core/graphene/object_types.py:415 msgid "total quantity of products in order" msgstr "" -#: core/graphene/object_types.py:416 +#: engine/core/graphene/object_types.py:416 msgid "are all products in the order digital" msgstr "" -#: core/graphene/object_types.py:419 +#: engine/core/graphene/object_types.py:419 msgid "transactions for this order" msgstr "" -#: core/graphene/object_types.py:438 core/models.py:1253 +#: engine/core/graphene/object_types.py:438 engine/core/models.py:1264 msgid "orders" msgstr "" -#: core/graphene/object_types.py:459 +#: engine/core/graphene/object_types.py:459 msgid "image url" msgstr "" -#: core/graphene/object_types.py:466 +#: engine/core/graphene/object_types.py:466 msgid "product's images" msgstr "" -#: core/graphene/object_types.py:473 core/models.py:425 core/models.py:579 +#: engine/core/graphene/object_types.py:473 engine/core/models.py:424 +#: engine/core/models.py:579 msgid "category" msgstr "" -#: core/graphene/object_types.py:475 core/models.py:1940 +#: engine/core/graphene/object_types.py:475 engine/core/models.py:1723 msgid "feedbacks" msgstr "" -#: core/graphene/object_types.py:476 core/models.py:496 core/models.py:588 +#: engine/core/graphene/object_types.py:476 engine/core/models.py:495 +#: engine/core/models.py:588 msgid "brand" msgstr "" -#: core/graphene/object_types.py:477 core/models.py:107 +#: engine/core/graphene/object_types.py:477 engine/core/models.py:106 msgid "attribute groups" msgstr "" -#: core/graphene/object_types.py:478 -#: core/templates/digital_order_created_email.html:111 -#: core/templates/digital_order_delivered_email.html:109 -#: core/templates/shipped_order_created_email.html:109 -#: core/templates/shipped_order_delivered_email.html:109 +#: engine/core/graphene/object_types.py:478 +#: engine/core/templates/digital_order_created_email.html:111 +#: engine/core/templates/digital_order_delivered_email.html:109 +#: engine/core/templates/shipped_order_created_email.html:109 +#: engine/core/templates/shipped_order_delivered_email.html:109 msgid "price" msgstr "" -#: core/graphene/object_types.py:479 -#: core/templates/digital_order_created_email.html:110 -#: core/templates/digital_order_delivered_email.html:108 -#: core/templates/shipped_order_created_email.html:108 -#: core/templates/shipped_order_delivered_email.html:108 +#: engine/core/graphene/object_types.py:479 +#: engine/core/templates/digital_order_created_email.html:110 +#: engine/core/templates/digital_order_delivered_email.html:108 +#: engine/core/templates/shipped_order_created_email.html:108 +#: engine/core/templates/shipped_order_delivered_email.html:108 msgid "quantity" msgstr "" -#: core/graphene/object_types.py:480 +#: engine/core/graphene/object_types.py:480 msgid "number of feedbacks" msgstr "" -#: core/graphene/object_types.py:481 +#: engine/core/graphene/object_types.py:481 msgid "only available for personal orders" msgstr "" -#: core/graphene/object_types.py:507 core/models.py:651 +#: engine/core/graphene/object_types.py:484 +msgid "discount price" +msgstr "" + +#: engine/core/graphene/object_types.py:508 engine/core/models.py:651 msgid "products" msgstr "" -#: core/graphene/object_types.py:607 +#: engine/core/graphene/object_types.py:611 msgid "promocodes" msgstr "" -#: core/graphene/object_types.py:617 +#: engine/core/graphene/object_types.py:621 msgid "products on sale" msgstr "" -#: core/graphene/object_types.py:624 core/models.py:879 +#: engine/core/graphene/object_types.py:628 engine/core/models.py:890 msgid "promotions" msgstr "" -#: core/graphene/object_types.py:628 core/models.py:188 +#: engine/core/graphene/object_types.py:632 engine/core/models.py:187 msgid "vendor" msgstr "" -#: core/graphene/object_types.py:629 core/models.py:650 -#: core/templates/digital_order_created_email.html:109 -#: core/templates/digital_order_delivered_email.html:107 -#: core/templates/shipped_order_created_email.html:107 -#: core/templates/shipped_order_delivered_email.html:107 +#: engine/core/graphene/object_types.py:633 engine/core/models.py:650 +#: 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 +#: engine/core/templates/shipped_order_delivered_email.html:107 msgid "product" msgstr "" -#: core/graphene/object_types.py:640 core/models.py:902 +#: engine/core/graphene/object_types.py:644 engine/core/models.py:913 msgid "wishlisted products" msgstr "" -#: core/graphene/object_types.py:646 core/models.py:919 +#: engine/core/graphene/object_types.py:650 engine/core/models.py:930 msgid "wishlists" msgstr "" -#: core/graphene/object_types.py:650 +#: engine/core/graphene/object_types.py:654 msgid "tagged products" msgstr "" -#: core/graphene/object_types.py:657 core/models.py:225 core/models.py:594 +#: engine/core/graphene/object_types.py:661 engine/core/models.py:224 +#: engine/core/models.py:594 msgid "product tags" msgstr "" -#: core/graphene/object_types.py:661 +#: engine/core/graphene/object_types.py:665 msgid "tagged categories" msgstr "" -#: core/graphene/object_types.py:668 +#: engine/core/graphene/object_types.py:672 msgid "categories tags" msgstr "" -#: core/graphene/object_types.py:672 +#: engine/core/graphene/object_types.py:676 msgid "project name" msgstr "" -#: core/graphene/object_types.py:673 +#: engine/core/graphene/object_types.py:677 msgid "company email" msgstr "" -#: core/graphene/object_types.py:674 +#: engine/core/graphene/object_types.py:678 msgid "company name" msgstr "" -#: core/graphene/object_types.py:675 +#: engine/core/graphene/object_types.py:679 msgid "company address" msgstr "" -#: core/graphene/object_types.py:676 +#: engine/core/graphene/object_types.py:680 msgid "company phone number" msgstr "" -#: core/graphene/object_types.py:677 +#: engine/core/graphene/object_types.py:681 msgid "email from, sometimes it must be used instead of host user value" msgstr "" -#: core/graphene/object_types.py:678 +#: engine/core/graphene/object_types.py:682 msgid "email host user" msgstr "" -#: core/graphene/object_types.py:679 +#: engine/core/graphene/object_types.py:683 msgid "maximum amount for payment" msgstr "" -#: core/graphene/object_types.py:680 +#: engine/core/graphene/object_types.py:684 msgid "minimum amount for payment" msgstr "" -#: core/graphene/object_types.py:681 +#: engine/core/graphene/object_types.py:685 msgid "analytics data" msgstr "" -#: core/graphene/object_types.py:682 +#: engine/core/graphene/object_types.py:686 msgid "advertisement data" msgstr "" -#: core/graphene/object_types.py:685 +#: engine/core/graphene/object_types.py:689 msgid "company configuration" msgstr "" -#: core/graphene/object_types.py:689 +#: engine/core/graphene/object_types.py:693 msgid "language code" msgstr "" -#: core/graphene/object_types.py:690 +#: engine/core/graphene/object_types.py:694 msgid "language name" msgstr "" -#: core/graphene/object_types.py:691 +#: engine/core/graphene/object_types.py:695 msgid "language flag, if exists :)" msgstr "" -#: core/graphene/object_types.py:694 +#: engine/core/graphene/object_types.py:698 msgid "supported languages" msgstr "" -#: core/graphene/object_types.py:725 core/graphene/object_types.py:726 -#: core/graphene/object_types.py:727 +#: engine/core/graphene/object_types.py:729 +#: engine/core/graphene/object_types.py:730 +#: engine/core/graphene/object_types.py:731 msgid "products search results" msgstr "" -#: core/graphene/object_types.py:728 +#: engine/core/graphene/object_types.py:732 msgid "posts search results" msgstr "" -#: core/models.py:76 +#: engine/core/models.py:75 msgid "" "Represents a group of attributes, which can be hierarchical. This class is " "used to manage and organize attribute groups. An attribute group can have a " @@ -1416,23 +1446,23 @@ msgid "" "categorizing and managing attributes more effectively in acomplex system." msgstr "" -#: core/models.py:92 +#: engine/core/models.py:91 msgid "parent of this group" msgstr "" -#: core/models.py:93 +#: engine/core/models.py:92 msgid "parent attribute group" msgstr "" -#: core/models.py:97 core/models.py:98 +#: engine/core/models.py:96 engine/core/models.py:97 msgid "attribute group's name" msgstr "" -#: core/models.py:106 core/models.py:716 +#: engine/core/models.py:105 engine/core/models.py:727 msgid "attribute group" msgstr "" -#: core/models.py:112 +#: engine/core/models.py:111 msgid "" "Represents a vendor entity capable of storing information about external " "vendors and their interaction requirements. The Vendor class is used to " @@ -1443,47 +1473,47 @@ msgid "" "use in systems that interact with third-party vendors." msgstr "" -#: core/models.py:125 +#: engine/core/models.py:124 msgid "stores credentials and endpoints required for vendor communication" msgstr "" -#: core/models.py:126 +#: engine/core/models.py:125 msgid "authentication info" msgstr "" -#: core/models.py:131 +#: engine/core/models.py:130 msgid "define the markup for products retrieved from this vendor" msgstr "" -#: core/models.py:132 +#: engine/core/models.py:131 msgid "vendor markup percentage" msgstr "" -#: core/models.py:136 +#: engine/core/models.py:135 msgid "name of this vendor" msgstr "" -#: core/models.py:137 +#: engine/core/models.py:136 msgid "vendor name" msgstr "" -#: core/models.py:148 +#: engine/core/models.py:147 msgid "response file" msgstr "" -#: core/models.py:149 +#: engine/core/models.py:148 msgid "vendor's last processing response" msgstr "" -#: core/models.py:155 +#: engine/core/models.py:154 msgid "vendor's integration file path" msgstr "" -#: core/models.py:156 +#: engine/core/models.py:155 msgid "integration path" msgstr "" -#: core/models.py:198 +#: engine/core/models.py:197 msgid "" "Represents a product tag used for classifying or identifying products. The " "ProductTag class is designed to uniquely identify and classify products " @@ -1492,42 +1522,42 @@ msgid "" "metadata customization for administrative purposes." msgstr "" -#: core/models.py:210 core/models.py:241 +#: engine/core/models.py:209 engine/core/models.py:240 msgid "internal tag identifier for the product tag" msgstr "" -#: core/models.py:211 core/models.py:242 +#: engine/core/models.py:210 engine/core/models.py:241 msgid "tag name" msgstr "" -#: core/models.py:215 core/models.py:246 +#: engine/core/models.py:214 engine/core/models.py:245 msgid "user-friendly name for the product tag" msgstr "" -#: core/models.py:216 core/models.py:247 +#: engine/core/models.py:215 engine/core/models.py:246 msgid "tag display name" msgstr "" -#: core/models.py:224 +#: engine/core/models.py:223 msgid "product tag" msgstr "" -#: core/models.py:230 +#: engine/core/models.py:229 msgid "" "Represents a category tag used for products. This class models a category " "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 "" -#: core/models.py:255 +#: engine/core/models.py:254 msgid "category tag" msgstr "" -#: core/models.py:256 core/models.py:328 +#: engine/core/models.py:255 engine/core/models.py:327 msgid "category tags" msgstr "" -#: core/models.py:261 +#: engine/core/models.py:260 msgid "" "Represents a category entity to organize and group related items in a " "hierarchical structure. Categories may have hierarchical relationships with " @@ -1540,51 +1570,51 @@ msgid "" "priority." msgstr "" -#: core/models.py:275 +#: engine/core/models.py:274 msgid "upload an image representing this category" msgstr "" -#: core/models.py:278 +#: engine/core/models.py:277 msgid "category image" msgstr "" -#: core/models.py:283 +#: engine/core/models.py:282 msgid "define a markup percentage for products in this category" msgstr "" -#: core/models.py:292 +#: engine/core/models.py:291 msgid "parent of this category to form a hierarchical structure" msgstr "" -#: core/models.py:293 +#: engine/core/models.py:292 msgid "parent category" msgstr "" -#: core/models.py:298 +#: engine/core/models.py:297 msgid "category name" msgstr "" -#: core/models.py:299 +#: engine/core/models.py:298 msgid "provide a name for this category" msgstr "" -#: core/models.py:306 +#: engine/core/models.py:305 msgid "add a detailed description for this category" msgstr "" -#: core/models.py:307 +#: engine/core/models.py:306 msgid "category description" msgstr "" -#: core/models.py:327 +#: engine/core/models.py:326 msgid "tags that help describe or group this category" msgstr "" -#: core/models.py:334 core/models.py:489 +#: engine/core/models.py:333 engine/core/models.py:488 msgid "priority" msgstr "" -#: core/models.py:432 +#: engine/core/models.py:431 msgid "" "Represents a Brand object in the system. This class handles information and " "attributes related to a brand, including its name, logos, description, " @@ -1592,47 +1622,47 @@ msgid "" "organization and representation of brand-related data within the application." msgstr "" -#: core/models.py:442 +#: engine/core/models.py:441 msgid "name of this brand" msgstr "" -#: core/models.py:443 +#: engine/core/models.py:442 msgid "brand name" msgstr "" -#: core/models.py:450 +#: engine/core/models.py:449 msgid "upload a logo representing this brand" msgstr "" -#: core/models.py:452 +#: engine/core/models.py:451 msgid "brand small image" msgstr "" -#: core/models.py:458 +#: engine/core/models.py:457 msgid "upload a big logo representing this brand" msgstr "" -#: core/models.py:460 +#: engine/core/models.py:459 msgid "brand big image" msgstr "" -#: core/models.py:465 +#: engine/core/models.py:464 msgid "add a detailed description of the brand" msgstr "" -#: core/models.py:466 +#: engine/core/models.py:465 msgid "brand description" msgstr "" -#: core/models.py:471 +#: engine/core/models.py:470 msgid "optional categories that this brand is associated with" msgstr "" -#: core/models.py:472 +#: engine/core/models.py:471 msgid "associated categories" msgstr "" -#: core/models.py:502 +#: engine/core/models.py:501 msgid "" "Represents the stock of a product managed in the system. This class provides " "details about the relationship between vendors, products, and their stock " @@ -1642,67 +1672,72 @@ msgid "" "from various vendors." msgstr "" -#: core/models.py:514 +#: engine/core/models.py:513 msgid "the vendor supplying this product stock" msgstr "" -#: core/models.py:515 +#: engine/core/models.py:514 msgid "associated vendor" msgstr "" -#: core/models.py:519 +#: engine/core/models.py:518 msgid "final price to the customer after markups" msgstr "" -#: core/models.py:520 +#: engine/core/models.py:519 msgid "selling price" msgstr "" -#: core/models.py:525 +#: engine/core/models.py:524 msgid "the product associated with this stock entry" msgstr "" -#: core/models.py:526 core/models.py:779 core/models.py:825 core/models.py:1718 +#: engine/core/models.py:525 engine/core/models.py:790 +#: engine/core/models.py:836 engine/core/models.py:1778 msgid "associated product" msgstr "" -#: core/models.py:533 +#: engine/core/models.py:532 msgid "the price paid to the vendor for this product" msgstr "" -#: core/models.py:534 +#: engine/core/models.py:533 msgid "vendor purchase price" msgstr "" -#: core/models.py:538 +#: engine/core/models.py:537 msgid "available quantity of the product in stock" msgstr "" -#: core/models.py:539 +#: engine/core/models.py:538 msgid "quantity in stock" msgstr "" -#: core/models.py:543 +#: engine/core/models.py:542 msgid "vendor-assigned SKU for identifying the product" msgstr "" -#: core/models.py:544 +#: engine/core/models.py:543 msgid "vendor sku" msgstr "" -#: core/models.py:550 +#: engine/core/models.py:549 msgid "digital file associated with this stock if applicable" msgstr "" -#: core/models.py:551 +#: engine/core/models.py:550 msgid "digital file" msgstr "" -#: core/models.py:560 +#: engine/core/models.py:553 +msgid "system attributes" +msgstr "" + +#: engine/core/models.py:560 msgid "stock entries" msgstr "" -#: core/models.py:565 +#: engine/core/models.py:565 msgid "" "Represents a product with attributes such as category, brand, tags, digital " "status, name, description, part number, and slug. Provides related utility " @@ -1714,55 +1749,55 @@ msgid "" "product data and its associated information within an application." msgstr "" -#: core/models.py:578 +#: engine/core/models.py:578 msgid "category this product belongs to" msgstr "" -#: core/models.py:587 +#: engine/core/models.py:587 msgid "optionally associate this product with a brand" msgstr "" -#: core/models.py:593 +#: engine/core/models.py:593 msgid "tags that help describe or group this product" msgstr "" -#: core/models.py:598 +#: engine/core/models.py:598 msgid "indicates whether this product is digitally delivered" msgstr "" -#: core/models.py:599 +#: engine/core/models.py:599 msgid "is product digital" msgstr "" -#: core/models.py:605 +#: engine/core/models.py:605 msgid "provide a clear identifying name for the product" msgstr "" -#: core/models.py:606 +#: engine/core/models.py:606 msgid "product name" msgstr "" -#: core/models.py:612 core/models.py:867 +#: engine/core/models.py:612 engine/core/models.py:878 msgid "add a detailed description of the product" msgstr "" -#: core/models.py:613 +#: engine/core/models.py:613 msgid "product description" msgstr "" -#: core/models.py:620 +#: engine/core/models.py:620 msgid "part number for this product" msgstr "" -#: core/models.py:621 +#: engine/core/models.py:621 msgid "part number" msgstr "" -#: core/models.py:640 +#: engine/core/models.py:640 msgid "stock keeping unit for this product" msgstr "" -#: core/models.py:702 +#: engine/core/models.py:713 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 " @@ -1772,83 +1807,83 @@ msgid "" "for dynamic and flexible data structuring." msgstr "" -#: core/models.py:715 +#: engine/core/models.py:726 msgid "group of this attribute" msgstr "" -#: core/models.py:721 +#: engine/core/models.py:732 msgid "string" msgstr "" -#: core/models.py:722 +#: engine/core/models.py:733 msgid "integer" msgstr "" -#: core/models.py:723 +#: engine/core/models.py:734 msgid "float" msgstr "" -#: core/models.py:724 +#: engine/core/models.py:735 msgid "boolean" msgstr "" -#: core/models.py:725 +#: engine/core/models.py:736 msgid "array" msgstr "" -#: core/models.py:726 +#: engine/core/models.py:737 msgid "object" msgstr "" -#: core/models.py:728 +#: engine/core/models.py:739 msgid "type of the attribute's value" msgstr "" -#: core/models.py:729 +#: engine/core/models.py:740 msgid "value type" msgstr "" -#: core/models.py:734 +#: engine/core/models.py:745 msgid "name of this attribute" msgstr "" -#: core/models.py:735 +#: engine/core/models.py:746 msgid "attribute's name" msgstr "" -#: core/models.py:740 +#: engine/core/models.py:751 msgid "is filterable" msgstr "" -#: core/models.py:741 +#: engine/core/models.py:752 msgid "designates whether this attribute can be used for filtering or not" msgstr "" -#: core/models.py:753 core/models.py:771 -#: core/templates/digital_order_delivered_email.html:134 +#: engine/core/models.py:764 engine/core/models.py:782 +#: engine/core/templates/digital_order_delivered_email.html:134 msgid "attribute" msgstr "" -#: core/models.py:759 +#: engine/core/models.py:770 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 "" -#: core/models.py:770 +#: engine/core/models.py:781 msgid "attribute of this value" msgstr "" -#: core/models.py:778 +#: engine/core/models.py:789 msgid "the specific product associated with this attribute's value" msgstr "" -#: core/models.py:784 +#: engine/core/models.py:795 msgid "the specific value for this attribute" msgstr "" -#: core/models.py:797 +#: engine/core/models.py:808 msgid "" "Represents a product image associated with a product in the system. This " "class is designed to manage images for products, including functionality for " @@ -1857,39 +1892,39 @@ msgid "" "with alternative text for the images." msgstr "" -#: core/models.py:808 +#: engine/core/models.py:819 msgid "provide alternative text for the image for accessibility" msgstr "" -#: core/models.py:809 +#: engine/core/models.py:820 msgid "image alt text" msgstr "" -#: core/models.py:812 +#: engine/core/models.py:823 msgid "upload the image file for this product" msgstr "" -#: core/models.py:813 core/models.py:837 +#: engine/core/models.py:824 engine/core/models.py:848 msgid "product image" msgstr "" -#: core/models.py:818 +#: engine/core/models.py:829 msgid "determines the order in which images are displayed" msgstr "" -#: core/models.py:819 +#: engine/core/models.py:830 msgid "display priority" msgstr "" -#: core/models.py:824 +#: engine/core/models.py:835 msgid "the product that this image represents" msgstr "" -#: core/models.py:838 +#: engine/core/models.py:849 msgid "product images" msgstr "" -#: core/models.py:843 +#: engine/core/models.py:854 msgid "" "Represents a promotional campaign for products with a discount. This class " "is used to define and manage promotional campaigns that offer a percentage-" @@ -1899,39 +1934,39 @@ msgid "" "affected items in the campaign." msgstr "" -#: core/models.py:855 +#: engine/core/models.py:866 msgid "percentage discount for the selected products" msgstr "" -#: core/models.py:856 +#: engine/core/models.py:867 msgid "discount percentage" msgstr "" -#: core/models.py:861 +#: engine/core/models.py:872 msgid "provide a unique name for this promotion" msgstr "" -#: core/models.py:862 +#: engine/core/models.py:873 msgid "promotion name" msgstr "" -#: core/models.py:868 +#: engine/core/models.py:879 msgid "promotion description" msgstr "" -#: core/models.py:873 +#: engine/core/models.py:884 msgid "select which products are included in this promotion" msgstr "" -#: core/models.py:874 +#: engine/core/models.py:885 msgid "included products" msgstr "" -#: core/models.py:878 +#: engine/core/models.py:889 msgid "promotion" msgstr "" -#: core/models.py:889 +#: engine/core/models.py:900 msgid "" "Represents a user's wishlist for storing and managing desired products. The " "class provides functionality to manage a collection of products, supporting " @@ -1939,23 +1974,23 @@ msgid "" "operations for adding and removing multiple products at once." msgstr "" -#: core/models.py:901 +#: engine/core/models.py:912 msgid "products that the user has marked as wanted" msgstr "" -#: core/models.py:909 +#: engine/core/models.py:920 msgid "user who owns this wishlist" msgstr "" -#: core/models.py:910 +#: engine/core/models.py:921 msgid "wishlist owner" msgstr "" -#: core/models.py:918 +#: engine/core/models.py:929 msgid "wishlist" msgstr "" -#: core/models.py:960 +#: engine/core/models.py:971 msgid "" "Represents a documentary record tied to a product. This class is used to " "store information about documentaries related to specific products, " @@ -1965,19 +2000,19 @@ msgid "" "custom features." msgstr "" -#: core/models.py:973 +#: engine/core/models.py:984 msgid "documentary" msgstr "" -#: core/models.py:974 +#: engine/core/models.py:985 msgid "documentaries" msgstr "" -#: core/models.py:984 +#: engine/core/models.py:995 msgid "unresolved" msgstr "" -#: core/models.py:989 +#: engine/core/models.py:1000 msgid "" "Represents an address entity that includes location details and associations " "with a user. Provides functionality for geographic and address data storage, " @@ -1989,59 +2024,59 @@ msgid "" "address with a user, facilitating personalized data handling." msgstr "" -#: core/models.py:1004 +#: engine/core/models.py:1015 msgid "address line for the customer" msgstr "" -#: core/models.py:1005 +#: engine/core/models.py:1016 msgid "address line" msgstr "" -#: core/models.py:1007 +#: engine/core/models.py:1018 msgid "street" msgstr "" -#: core/models.py:1008 +#: engine/core/models.py:1019 msgid "district" msgstr "" -#: core/models.py:1009 +#: engine/core/models.py:1020 msgid "city" msgstr "" -#: core/models.py:1010 +#: engine/core/models.py:1021 msgid "region" msgstr "" -#: core/models.py:1011 +#: engine/core/models.py:1022 msgid "postal code" msgstr "" -#: core/models.py:1012 +#: engine/core/models.py:1023 msgid "country" msgstr "" -#: core/models.py:1019 +#: engine/core/models.py:1030 msgid "geolocation point: (longitude, latitude)" msgstr "" -#: core/models.py:1022 +#: engine/core/models.py:1033 msgid "full JSON response from geocoder for this address" msgstr "" -#: core/models.py:1027 +#: engine/core/models.py:1038 msgid "stored JSON response from the geocoding service" msgstr "" -#: core/models.py:1035 +#: engine/core/models.py:1046 msgid "address" msgstr "" -#: core/models.py:1036 +#: engine/core/models.py:1047 msgid "addresses" msgstr "" -#: core/models.py:1048 +#: engine/core/models.py:1059 msgid "" "Represents a promotional code that can be used for discounts, managing its " "validity, type of discount, and application. The PromoCode class stores " @@ -2051,86 +2086,86 @@ msgid "" "apply the promo code to an order while ensuring constraints are met." msgstr "" -#: core/models.py:1062 +#: engine/core/models.py:1073 msgid "unique code used by a user to redeem a discount" msgstr "" -#: core/models.py:1063 +#: engine/core/models.py:1074 msgid "promo code identifier" msgstr "" -#: core/models.py:1070 +#: engine/core/models.py:1081 msgid "fixed discount amount applied if percent is not used" msgstr "" -#: core/models.py:1071 +#: engine/core/models.py:1082 msgid "fixed discount amount" msgstr "" -#: core/models.py:1077 +#: engine/core/models.py:1088 msgid "percentage discount applied if fixed amount is not used" msgstr "" -#: core/models.py:1078 +#: engine/core/models.py:1089 msgid "percentage discount" msgstr "" -#: core/models.py:1083 +#: engine/core/models.py:1094 msgid "timestamp when the promocode expires" msgstr "" -#: core/models.py:1084 +#: engine/core/models.py:1095 msgid "end validity time" msgstr "" -#: core/models.py:1089 +#: engine/core/models.py:1100 msgid "timestamp from which this promocode is valid" msgstr "" -#: core/models.py:1090 +#: engine/core/models.py:1101 msgid "start validity time" msgstr "" -#: core/models.py:1095 +#: engine/core/models.py:1106 msgid "timestamp when the promocode was used, blank if not used yet" msgstr "" -#: core/models.py:1096 +#: engine/core/models.py:1107 msgid "usage timestamp" msgstr "" -#: core/models.py:1101 +#: engine/core/models.py:1112 msgid "user assigned to this promocode if applicable" msgstr "" -#: core/models.py:1102 +#: engine/core/models.py:1113 msgid "assigned user" msgstr "" -#: core/models.py:1109 +#: engine/core/models.py:1120 msgid "promo code" msgstr "" -#: core/models.py:1110 +#: engine/core/models.py:1121 msgid "promo codes" msgstr "" -#: core/models.py:1125 +#: engine/core/models.py:1136 msgid "" "only one type of discount should be defined (amount or percent), but not " "both or neither." msgstr "" -#: core/models.py:1146 +#: engine/core/models.py:1157 msgid "promocode already used" msgstr "" -#: core/models.py:1162 +#: engine/core/models.py:1173 #, python-brace-format msgid "invalid discount type for promocode {self.uuid}" msgstr "" -#: core/models.py:1171 +#: engine/core/models.py:1182 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 " @@ -2140,144 +2175,178 @@ msgid "" "supports managing the products in the order lifecycle." msgstr "" -#: core/models.py:1188 +#: engine/core/models.py:1199 msgid "the billing address used for this order" msgstr "" -#: core/models.py:1196 +#: engine/core/models.py:1207 msgid "optional promo code applied to this order" msgstr "" -#: core/models.py:1197 +#: engine/core/models.py:1208 msgid "applied promo code" msgstr "" -#: core/models.py:1205 +#: engine/core/models.py:1216 msgid "the shipping address used for this order" msgstr "" -#: core/models.py:1206 +#: engine/core/models.py:1217 msgid "shipping address" msgstr "" -#: core/models.py:1212 +#: engine/core/models.py:1223 msgid "current status of the order in its lifecycle" msgstr "" -#: core/models.py:1213 +#: engine/core/models.py:1224 msgid "order status" msgstr "" -#: core/models.py:1218 core/models.py:1695 +#: engine/core/models.py:1229 engine/core/models.py:1755 msgid "json structure of notifications to display to users" msgstr "" -#: core/models.py:1224 +#: engine/core/models.py:1235 msgid "json representation of order attributes for this order" msgstr "" -#: core/models.py:1230 +#: engine/core/models.py:1241 msgid "the user who placed the order" msgstr "" -#: core/models.py:1231 +#: engine/core/models.py:1242 msgid "user" msgstr "" -#: core/models.py:1237 +#: engine/core/models.py:1248 msgid "the timestamp when the order was finalized" msgstr "" -#: core/models.py:1238 +#: engine/core/models.py:1249 msgid "buy time" msgstr "" -#: core/models.py:1245 +#: engine/core/models.py:1256 msgid "a human-readable identifier for the order" msgstr "" -#: core/models.py:1246 +#: engine/core/models.py:1257 msgid "human readable id" msgstr "" -#: core/models.py:1252 +#: engine/core/models.py:1263 msgid "order" msgstr "" -#: core/models.py:1294 +#: engine/core/models.py:1305 msgid "a user must have only one pending order at a time" msgstr "" -#: core/models.py:1326 +#: engine/core/models.py:1337 msgid "you cannot add products to an order that is not a pending one" msgstr "" -#: core/models.py:1331 +#: engine/core/models.py:1342 msgid "you cannot add inactive products to order" msgstr "" -#: core/models.py:1348 +#: engine/core/models.py:1359 msgid "you cannot add more products than available in stock" msgstr "" -#: core/models.py:1370 core/models.py:1395 core/models.py:1403 +#: engine/core/models.py:1381 engine/core/models.py:1406 +#: engine/core/models.py:1414 msgid "you cannot remove products from an order that is not a pending one" msgstr "" -#: core/models.py:1391 +#: engine/core/models.py:1402 #, python-brace-format msgid "{name} does not exist with query <{query}>" msgstr "" -#: core/models.py:1423 +#: engine/core/models.py:1434 msgid "promocode does not exist" msgstr "" -#: core/models.py:1429 +#: engine/core/models.py:1440 msgid "you can only buy physical products with shipping address specified" msgstr "" -#: core/models.py:1448 +#: engine/core/models.py:1459 msgid "address does not exist" msgstr "" -#: core/models.py:1469 core/models.py:1538 +#: engine/core/models.py:1480 engine/core/models.py:1549 msgid "you can not buy at this moment, please try again in a few minutes" msgstr "" -#: core/models.py:1472 core/models.py:1534 +#: engine/core/models.py:1483 engine/core/models.py:1545 msgid "invalid force value" msgstr "" -#: core/models.py:1478 core/models.py:1541 +#: engine/core/models.py:1489 engine/core/models.py:1552 msgid "you cannot purchase an empty order!" msgstr "" -#: core/models.py:1497 +#: engine/core/models.py:1508 msgid "you cannot buy an order without a user" msgstr "" -#: core/models.py:1511 +#: engine/core/models.py:1522 msgid "a user without a balance cannot buy with balance" msgstr "" -#: core/models.py:1516 +#: engine/core/models.py:1527 msgid "insufficient funds to complete the order" msgstr "" -#: core/models.py:1550 +#: engine/core/models.py:1561 msgid "" "you cannot buy without registration, please provide the following " "information: customer name, customer email, customer phone number" msgstr "" -#: core/models.py:1559 +#: engine/core/models.py:1570 #, python-brace-format msgid "" "invalid payment method: {payment_method} from {available_payment_methods}" msgstr "" -#: core/models.py:1668 +#: engine/core/models.py:1685 +msgid "" +"Manages user feedback for products. This class is designed to capture and " +"store user feedback for specific products that they have purchased. It " +"contains attributes to store user comments, a reference to the related " +"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:1697 +msgid "user-provided comments about their experience with the product" +msgstr "" + +#: engine/core/models.py:1698 +msgid "feedback comments" +msgstr "" + +#: engine/core/models.py:1705 +msgid "references the specific product in an order that this feedback is about" +msgstr "" + +#: engine/core/models.py:1706 +msgid "related order product" +msgstr "" + +#: engine/core/models.py:1711 +msgid "user-assigned rating for the product" +msgstr "" + +#: engine/core/models.py:1712 +msgid "product rating" +msgstr "" + +#: engine/core/models.py:1728 msgid "" "Represents products associated with orders and their attributes. The " "OrderProduct model maintains information about a product that is part of an " @@ -2290,108 +2359,108 @@ msgid "" "Product models and stores a reference to them." msgstr "" -#: core/models.py:1683 +#: engine/core/models.py:1743 msgid "the price paid by the customer for this product at purchase time" msgstr "" -#: core/models.py:1684 +#: engine/core/models.py:1744 msgid "purchase price at order time" msgstr "" -#: core/models.py:1689 +#: engine/core/models.py:1749 msgid "internal comments for admins about this ordered product" msgstr "" -#: core/models.py:1690 +#: engine/core/models.py:1750 msgid "internal comments" msgstr "" -#: core/models.py:1696 +#: engine/core/models.py:1756 msgid "user notifications" msgstr "" -#: core/models.py:1701 +#: engine/core/models.py:1761 msgid "json representation of this item's attributes" msgstr "" -#: core/models.py:1702 +#: engine/core/models.py:1762 msgid "ordered product attributes" msgstr "" -#: core/models.py:1707 +#: engine/core/models.py:1767 msgid "reference to the parent order that contains this product" msgstr "" -#: core/models.py:1708 +#: engine/core/models.py:1768 msgid "parent order" msgstr "" -#: core/models.py:1717 +#: engine/core/models.py:1777 msgid "the specific product associated with this order line" msgstr "" -#: core/models.py:1724 +#: engine/core/models.py:1784 msgid "quantity of this specific product in the order" msgstr "" -#: core/models.py:1725 +#: engine/core/models.py:1785 msgid "product quantity" msgstr "" -#: core/models.py:1732 +#: engine/core/models.py:1792 msgid "current status of this product in the order" msgstr "" -#: core/models.py:1733 +#: engine/core/models.py:1793 msgid "product line status" msgstr "" -#: core/models.py:1798 +#: engine/core/models.py:1858 msgid "order product must have an order" msgstr "" -#: core/models.py:1800 +#: engine/core/models.py:1860 #, python-brace-format msgid "wrong action specified for feedback: {action}" msgstr "" -#: core/models.py:1814 +#: engine/core/models.py:1874 msgid "you cannot feedback an order which is not received" msgstr "" -#: core/models.py:1820 +#: engine/core/models.py:1880 msgid "name" msgstr "" -#: core/models.py:1821 +#: engine/core/models.py:1881 msgid "URL of the integration" msgstr "" -#: core/models.py:1822 +#: engine/core/models.py:1882 msgid "authentication credentials" msgstr "" -#: core/models.py:1844 +#: engine/core/models.py:1904 msgid "you can only have one default CRM provider" msgstr "" -#: core/models.py:1854 +#: engine/core/models.py:1914 msgid "CRM" msgstr "" -#: core/models.py:1855 +#: engine/core/models.py:1915 msgid "CRMs" msgstr "" -#: core/models.py:1867 +#: engine/core/models.py:1927 msgid "order CRM link" msgstr "" -#: core/models.py:1868 +#: engine/core/models.py:1928 msgid "orders CRM links" msgstr "" -#: core/models.py:1873 +#: engine/core/models.py:1933 msgid "" "Represents the downloading functionality for digital assets associated with " "orders. The DigitalAssetDownload class provides the ability to manage and " @@ -2401,94 +2470,57 @@ msgid "" "the asset when the associated order is in a completed status." msgstr "" -#: core/models.py:1887 +#: engine/core/models.py:1947 msgid "download" msgstr "" -#: core/models.py:1888 +#: engine/core/models.py:1948 msgid "downloads" msgstr "" -#: core/models.py:1902 -msgid "" -"Manages user feedback for products. This class is designed to capture and " -"store user feedback for specific products that they have purchased. It " -"contains attributes to store user comments, a reference to the related " -"product in the order, and a user-assigned rating. The class uses database " -"fields to effectively model and manage feedback data." -msgstr "" - -#: core/models.py:1914 -msgid "user-provided comments about their experience with the product" -msgstr "" - -#: core/models.py:1915 -msgid "feedback comments" -msgstr "" - -#: core/models.py:1922 -msgid "references the specific product in an order that this feedback is about" -msgstr "" - -#: core/models.py:1923 -msgid "related order product" -msgstr "" - -#: core/models.py:1928 -msgid "user-assigned rating for the product" -msgstr "" - -#: core/models.py:1929 -msgid "product rating" -msgstr "" - -#: core/serializers/utility.py:89 +#: engine/core/serializers/utility.py:89 msgid "" "you must provide a comment, rating, and order product uuid to add feedback." msgstr "" -#: core/signals.py:73 -msgid "error during promocode creation: {e!s}" -msgstr "" - -#: core/sitemaps.py:25 +#: engine/core/sitemaps.py:25 msgid "Home" msgstr "" -#: core/sitemaps.py:30 +#: engine/core/sitemaps.py:30 msgid "Contact Us" msgstr "" -#: core/sitemaps.py:35 +#: engine/core/sitemaps.py:35 msgid "About Us" msgstr "" -#: core/templates/digital_order_created_email.html:7 -#: core/templates/digital_order_created_email.html:100 -#: core/templates/digital_order_delivered_email.html:6 -#: core/templates/shipped_order_created_email.html:7 -#: core/templates/shipped_order_created_email.html:99 -#: core/templates/shipped_order_delivered_email.html:7 -#: core/templates/shipped_order_delivered_email.html:99 +#: engine/core/templates/digital_order_created_email.html:7 +#: engine/core/templates/digital_order_created_email.html:100 +#: engine/core/templates/digital_order_delivered_email.html:6 +#: engine/core/templates/shipped_order_created_email.html:7 +#: engine/core/templates/shipped_order_created_email.html:99 +#: engine/core/templates/shipped_order_delivered_email.html:7 +#: engine/core/templates/shipped_order_delivered_email.html:99 msgid "order confirmation" msgstr "" -#: core/templates/digital_order_created_email.html:95 -#: core/templates/digital_order_delivered_email.html:94 -#: core/templates/promocode_granted_email.html:94 -#: core/templates/shipped_order_created_email.html:94 -#: core/templates/shipped_order_delivered_email.html:94 +#: engine/core/templates/digital_order_created_email.html:95 +#: engine/core/templates/digital_order_delivered_email.html:94 +#: engine/core/templates/promocode_granted_email.html:94 +#: engine/core/templates/shipped_order_created_email.html:94 +#: engine/core/templates/shipped_order_delivered_email.html:94 msgid "logo" msgstr "" -#: core/templates/digital_order_created_email.html:101 -#: core/templates/shipped_order_created_email.html:100 -#: core/templates/shipped_order_delivered_email.html:100 +#: engine/core/templates/digital_order_created_email.html:101 +#: engine/core/templates/shipped_order_created_email.html:100 +#: engine/core/templates/shipped_order_delivered_email.html:100 #, python-format msgid "hello %(order.user.first_name)s," msgstr "" -#: core/templates/digital_order_created_email.html:102 +#: engine/core/templates/digital_order_created_email.html:102 #, python-format msgid "" "thank you for your order #%(order.pk)s! we are pleased to inform you that\n" @@ -2497,220 +2529,220 @@ msgid "" " order:" msgstr "" -#: core/templates/digital_order_created_email.html:112 -#: core/templates/digital_order_delivered_email.html:110 -#: core/templates/shipped_order_created_email.html:110 -#: core/templates/shipped_order_delivered_email.html:110 +#: engine/core/templates/digital_order_created_email.html:112 +#: engine/core/templates/digital_order_delivered_email.html:110 +#: engine/core/templates/shipped_order_created_email.html:110 +#: engine/core/templates/shipped_order_delivered_email.html:110 msgid "total" msgstr "" -#: core/templates/digital_order_created_email.html:125 -#: core/templates/digital_order_delivered_email.html:157 -#: core/templates/shipped_order_created_email.html:127 -#: core/templates/shipped_order_delivered_email.html:127 +#: engine/core/templates/digital_order_created_email.html:125 +#: engine/core/templates/digital_order_delivered_email.html:157 +#: engine/core/templates/shipped_order_created_email.html:127 +#: engine/core/templates/shipped_order_delivered_email.html:127 msgid "total price" msgstr "" -#: core/templates/digital_order_created_email.html:131 -#: core/templates/shipped_order_created_email.html:140 -#: core/templates/shipped_order_delivered_email.html:140 +#: engine/core/templates/digital_order_created_email.html:131 +#: engine/core/templates/shipped_order_created_email.html:140 +#: engine/core/templates/shipped_order_delivered_email.html:140 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" " %(config.EMAIL_HOST_USER)s." msgstr "" -#: core/templates/digital_order_created_email.html:133 +#: engine/core/templates/digital_order_created_email.html:133 #, python-format msgid "best regards,
the %(config.PROJECT_NAME)s team" msgstr "" -#: core/templates/digital_order_created_email.html:139 -#: core/templates/digital_order_delivered_email.html:171 -#: core/templates/promocode_granted_email.html:114 +#: engine/core/templates/digital_order_created_email.html:139 +#: engine/core/templates/digital_order_delivered_email.html:171 +#: engine/core/templates/promocode_granted_email.html:114 msgid "all rights reserved" msgstr "" -#: core/templates/digital_order_delivered_email.html:99 +#: engine/core/templates/digital_order_delivered_email.html:99 msgid "order delivered" msgstr "" -#: core/templates/digital_order_delivered_email.html:100 -#: core/templates/promocode_granted_email.html:100 +#: engine/core/templates/digital_order_delivered_email.html:100 +#: engine/core/templates/promocode_granted_email.html:100 #, python-format msgid "hello %(user_first_name)s," msgstr "" -#: core/templates/digital_order_delivered_email.html:101 +#: engine/core/templates/digital_order_delivered_email.html:101 #, python-format msgid "" "we have successfully processed your order №%(order_uuid)s! below are the\n" " details of your order:" msgstr "" -#: core/templates/digital_order_delivered_email.html:128 +#: engine/core/templates/digital_order_delivered_email.html:128 msgid "" "additional\n" " information" msgstr "" -#: core/templates/digital_order_delivered_email.html:137 -#: core/templates/json_table_widget.html:6 +#: engine/core/templates/digital_order_delivered_email.html:137 +#: engine/core/templates/json_table_widget.html:6 msgid "value" msgstr "" -#: core/templates/digital_order_delivered_email.html:163 -#: core/templates/promocode_granted_email.html:106 +#: engine/core/templates/digital_order_delivered_email.html:163 +#: engine/core/templates/promocode_granted_email.html:106 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" " %(contact_email)s." msgstr "" -#: core/templates/digital_order_delivered_email.html:165 -#: core/templates/promocode_granted_email.html:108 +#: engine/core/templates/digital_order_delivered_email.html:165 +#: engine/core/templates/promocode_granted_email.html:108 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "" -#: core/templates/json_table_widget.html:5 +#: engine/core/templates/json_table_widget.html:5 msgid "key" msgstr "" -#: core/templates/json_table_widget.html:40 +#: engine/core/templates/json_table_widget.html:40 msgid "Add Row" msgstr "" -#: core/templates/promocode_granted_email.html:6 -#: core/templates/promocode_granted_email.html:99 +#: engine/core/templates/promocode_granted_email.html:6 +#: engine/core/templates/promocode_granted_email.html:99 msgid "promocode granted" msgstr "" -#: core/templates/promocode_granted_email.html:101 +#: engine/core/templates/promocode_granted_email.html:101 msgid "" "Thank you for staying with us! We have granted you with a promocode\n" " for " msgstr "" -#: core/templates/shipped_order_created_email.html:101 -#: core/templates/shipped_order_delivered_email.html:101 +#: 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" " the details of your order:" msgstr "" -#: core/templates/shipped_order_created_email.html:123 -#: core/templates/shipped_order_delivered_email.html:123 +#: engine/core/templates/shipped_order_created_email.html:123 +#: engine/core/templates/shipped_order_delivered_email.html:123 msgid "shipping price" msgstr "" -#: core/templates/shipped_order_created_email.html:133 -#: core/templates/shipped_order_delivered_email.html:133 +#: engine/core/templates/shipped_order_created_email.html:133 +#: engine/core/templates/shipped_order_delivered_email.html:133 msgid "your order will be delivered to the following address:" msgstr "" -#: core/templates/shipped_order_created_email.html:142 -#: core/templates/shipped_order_delivered_email.html:142 +#: engine/core/templates/shipped_order_created_email.html:142 +#: engine/core/templates/shipped_order_delivered_email.html:142 #, python-format msgid "best regards,
The %(config.PROJECT_NAME)s team" msgstr "" -#: core/templates/shipped_order_created_email.html:147 -#: core/templates/shipped_order_delivered_email.html:147 +#: engine/core/templates/shipped_order_created_email.html:147 +#: engine/core/templates/shipped_order_delivered_email.html:147 msgid "" "all rights\n" " reserved" msgstr "" -#: core/utils/caching.py:44 +#: engine/core/utils/caching.py:44 msgid "both data and timeout are required" msgstr "" -#: core/utils/caching.py:46 +#: engine/core/utils/caching.py:46 msgid "invalid timeout value, it must be between 0 and 216000 seconds" msgstr "" -#: core/utils/emailing.py:27 +#: engine/core/utils/emailing.py:27 #, python-brace-format msgid "{config.PROJECT_NAME} | contact us initiated" msgstr "" -#: core/utils/emailing.py:73 +#: engine/core/utils/emailing.py:73 #, python-brace-format msgid "{config.PROJECT_NAME} | order confirmation" msgstr "" -#: core/utils/emailing.py:105 +#: engine/core/utils/emailing.py:105 #, python-brace-format msgid "{config.PROJECT_NAME} | order delivered" msgstr "" -#: core/utils/emailing.py:188 +#: engine/core/utils/emailing.py:188 #, python-brace-format msgid "{config.PROJECT_NAME} | promocode granted" msgstr "" -#: core/utils/messages.py:3 +#: engine/core/utils/messages.py:3 msgid "you do not have permission to perform this action." msgstr "" -#: core/utils/nominatim.py:8 +#: engine/core/utils/nominatim.py:8 msgid "NOMINATIM_URL must be configured." msgstr "" -#: core/validators.py:16 +#: engine/core/validators.py:16 #, python-brace-format msgid "image dimensions should not exceed w{max_width} x h{max_height} pixels" msgstr "" -#: core/views.py:72 +#: engine/core/views.py:71 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 "" -#: core/views.py:87 +#: engine/core/views.py:86 msgid "" "Handles the detailed view response for a sitemap. This function processes " "the request, fetches the appropriate sitemap detail response, and sets the " "Content-Type header for XML." msgstr "" -#: core/views.py:116 +#: engine/core/views.py:115 msgid "" "Returns a list of supported languages and their corresponding information." msgstr "" -#: core/views.py:148 +#: engine/core/views.py:147 msgid "Returns the parameters of the website as a JSON object." msgstr "" -#: core/views.py:167 +#: engine/core/views.py:166 msgid "" "Handles cache operations such as reading and setting cache data with a " "specified key and timeout." msgstr "" -#: core/views.py:194 +#: engine/core/views.py:193 msgid "Handles `contact us` form submissions." msgstr "" -#: core/views.py:215 +#: engine/core/views.py:214 msgid "" "Handles requests for processing and validating URLs from incoming POST " "requests." msgstr "" -#: core/views.py:255 +#: engine/core/views.py:254 msgid "Handles global search queries." msgstr "" -#: core/views.py:270 +#: engine/core/views.py:269 msgid "Handles the logic of buying as a business without registration." msgstr "" -#: core/views.py:306 +#: engine/core/views.py:305 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 " @@ -2718,27 +2750,27 @@ msgid "" "error is raised to indicate the resource is unavailable." msgstr "" -#: core/views.py:316 +#: engine/core/views.py:315 msgid "order_product_uuid is required" msgstr "" -#: core/views.py:322 +#: engine/core/views.py:321 msgid "you can only download the digital asset once" msgstr "" -#: core/views.py:325 +#: engine/core/views.py:324 msgid "the order must be paid before downloading the digital asset" msgstr "" -#: core/views.py:331 +#: engine/core/views.py:330 msgid "the order product does not have a product" msgstr "" -#: core/views.py:369 +#: engine/core/views.py:368 msgid "favicon not found" msgstr "" -#: core/views.py:374 +#: engine/core/views.py:373 msgid "" "Handles requests for the favicon of a website.\n" "This function attempts to serve the favicon file located in the static " @@ -2746,18 +2778,18 @@ msgid "" "error is raised to indicate the resource is unavailable." msgstr "" -#: core/views.py:386 +#: engine/core/views.py:385 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. " "It uses Django's `redirect` function for handling the HTTP redirection." msgstr "" -#: core/views.py:399 +#: engine/core/views.py:398 msgid "Returns current version of the eVibes. " msgstr "" -#: core/viewsets.py:137 +#: engine/core/viewsets.py:137 msgid "" "Defines a viewset for managing Evibes-related operations. The EvibesViewSet " "class inherits from ModelViewSet and provides functionality for handling " @@ -2766,7 +2798,7 @@ msgid "" "and rendering formats." msgstr "" -#: core/viewsets.py:157 +#: engine/core/viewsets.py:157 msgid "" "Represents a viewset for managing AttributeGroup objects. Handles operations " "related to AttributeGroup, including filtering, serialization, and retrieval " @@ -2774,7 +2806,7 @@ msgid "" "standardized way to process requests and responses for AttributeGroup data." msgstr "" -#: core/viewsets.py:176 +#: engine/core/viewsets.py:176 msgid "" "Handles operations related to Attribute objects within the application. " "Provides a set of API endpoints to interact with Attribute data. This class " @@ -2784,7 +2816,7 @@ msgid "" "depending on the request." msgstr "" -#: core/viewsets.py:195 +#: engine/core/viewsets.py:195 msgid "" "A viewset for managing AttributeValue objects. This viewset provides " "functionality for listing, retrieving, creating, updating, and deleting " @@ -2793,7 +2825,7 @@ msgid "" "capabilities are provided through the DjangoFilterBackend." msgstr "" -#: core/viewsets.py:214 +#: engine/core/viewsets.py:214 msgid "" "Manages views for Category-related operations. The CategoryViewSet class is " "responsible for handling operations related to the Category model in the " @@ -2802,7 +2834,7 @@ msgid "" "can access specific data." msgstr "" -#: core/viewsets.py:326 +#: engine/core/viewsets.py:326 msgid "" "Represents a viewset for managing Brand instances. This class provides " "functionality for querying, filtering, and serializing Brand objects. It " @@ -2810,7 +2842,7 @@ msgid "" "endpoints for Brand objects." msgstr "" -#: core/viewsets.py:438 +#: engine/core/viewsets.py:438 msgid "" "Manages operations related to the `Product` model in the system. This class " "provides a viewset for managing products, including their filtering, " @@ -2821,7 +2853,7 @@ msgid "" "product." msgstr "" -#: core/viewsets.py:568 +#: engine/core/viewsets.py:568 msgid "" "Represents a viewset for managing Vendor objects. This viewset allows " "fetching, filtering, and serializing Vendor data. It defines the queryset, " @@ -2830,7 +2862,7 @@ msgid "" "Vendor-related resources through the Django REST framework." msgstr "" -#: core/viewsets.py:588 +#: engine/core/viewsets.py:588 msgid "" "Representation of a view set handling Feedback objects. This class manages " "operations related to Feedback objects, including listing, filtering, and " @@ -2840,7 +2872,7 @@ msgid "" "use of Django's filtering system for querying data." msgstr "" -#: core/viewsets.py:615 +#: engine/core/viewsets.py:615 msgid "" "ViewSet for managing orders and related operations. This class provides " "functionality to retrieve, modify, and manage order objects. It includes " @@ -2851,7 +2883,7 @@ msgid "" "enforces permissions accordingly while interacting with order data." msgstr "" -#: core/viewsets.py:813 +#: engine/core/viewsets.py:813 msgid "" "Provides a viewset for managing OrderProduct entities. This viewset enables " "CRUD operations and custom actions specific to the OrderProduct model. It " @@ -2860,25 +2892,25 @@ msgid "" "feedback on OrderProduct instances" msgstr "" -#: core/viewsets.py:867 +#: engine/core/viewsets.py:867 msgid "Manages operations related to Product images in the application. " msgstr "" -#: core/viewsets.py:880 +#: engine/core/viewsets.py:880 msgid "" "Manages the retrieval and handling of PromoCode instances through various " "API actions." msgstr "" -#: core/viewsets.py:902 +#: engine/core/viewsets.py:902 msgid "Represents a view set for managing promotions. " msgstr "" -#: core/viewsets.py:915 +#: engine/core/viewsets.py:915 msgid "Handles operations related to Stock data in the system." msgstr "" -#: core/viewsets.py:929 +#: engine/core/viewsets.py:929 msgid "" "ViewSet for managing Wishlist operations. The WishlistViewSet provides " "endpoints for interacting with a user's wish list, allowing for the " @@ -2889,7 +2921,7 @@ msgid "" "are granted." msgstr "" -#: core/viewsets.py:1044 +#: engine/core/viewsets.py:1044 msgid "" "This class provides viewset functionality for managing `Address` objects. " "The AddressViewSet class enables CRUD operations, filtering, and custom " @@ -2898,12 +2930,12 @@ msgid "" "on the request context." msgstr "" -#: core/viewsets.py:1111 +#: engine/core/viewsets.py:1111 #, python-brace-format msgid "Geocoding error: {e}" msgstr "" -#: core/viewsets.py:1119 +#: engine/core/viewsets.py:1119 msgid "" "Handles operations related to Product Tags within the application. This " "class provides functionality for retrieving, filtering, and serializing " diff --git a/engine/core/locale/id_ID/LC_MESSAGES/django.mo b/engine/core/locale/id_ID/LC_MESSAGES/django.mo new file mode 100644 index 00000000..e1923760 Binary files /dev/null and b/engine/core/locale/id_ID/LC_MESSAGES/django.mo differ diff --git a/core/locale/id_ID/LC_MESSAGES/django.po b/engine/core/locale/id_ID/LC_MESSAGES/django.po similarity index 68% rename from core/locale/id_ID/LC_MESSAGES/django.po rename to engine/core/locale/id_ID/LC_MESSAGES/django.po index e3218fc7..c9f25c07 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,212 +13,214 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: core/abstract.py:12 +#: engine/core/abstract.py:12 msgid "unique id" msgstr "ID unik" -#: core/abstract.py:13 +#: 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" -#: core/abstract.py:20 +#: engine/core/abstract.py:20 msgid "is active" msgstr "Aktif" -#: core/abstract.py:21 +#: engine/core/abstract.py:21 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" -#: core/abstract.py:23 core/choices.py:18 +#: engine/core/abstract.py:23 engine/core/choices.py:18 msgid "created" msgstr "Dibuat" -#: core/abstract.py:23 +#: engine/core/abstract.py:23 msgid "when the object first appeared on the database" msgstr "Saat objek pertama kali muncul di database" -#: core/abstract.py:24 +#: engine/core/abstract.py:24 msgid "modified" msgstr "Dimodifikasi" -#: core/abstract.py:24 +#: engine/core/abstract.py:24 msgid "when the object was last modified" msgstr "Kapan objek terakhir kali diedit" -#: core/admin.py:68 +#: engine/core/admin.py:68 msgid "translations" msgstr "Terjemahan" -#: core/admin.py:72 +#: engine/core/admin.py:72 msgid "general" msgstr "Umum" -#: core/admin.py:74 +#: engine/core/admin.py:74 msgid "relations" msgstr "Hubungan" -#: core/admin.py:76 +#: engine/core/admin.py:76 msgid "additional info" msgstr "info tambahan" -#: core/admin.py:94 +#: engine/core/admin.py:94 msgid "metadata" msgstr "Metadata" -#: core/admin.py:101 +#: engine/core/admin.py:101 msgid "timestamps" msgstr "Stempel waktu" -#: core/admin.py:116 +#: engine/core/admin.py:116 #, python-format msgid "activate selected %(verbose_name_plural)s" msgstr "Aktifkan %(verbose_name_plural)s yang dipilih" -#: core/admin.py:121 +#: engine/core/admin.py:121 msgid "selected items have been activated." msgstr "Item yang dipilih telah diaktifkan!" -#: core/admin.py:127 +#: engine/core/admin.py:127 #, python-format msgid "deactivate selected %(verbose_name_plural)s" msgstr "Menonaktifkan %(verbose_name_plural)s yang dipilih" -#: core/admin.py:132 +#: engine/core/admin.py:132 msgid "selected items have been deactivated." msgstr "Item yang dipilih telah dinonaktifkan!" -#: core/admin.py:144 core/graphene/object_types.py:582 -#: core/graphene/object_types.py:589 core/models.py:783 core/models.py:791 +#: engine/core/admin.py:144 engine/core/graphene/object_types.py:586 +#: engine/core/graphene/object_types.py:593 engine/core/models.py:794 +#: engine/core/models.py:802 msgid "attribute value" msgstr "Nilai Atribut" -#: core/admin.py:145 core/graphene/object_types.py:75 core/models.py:792 +#: engine/core/admin.py:145 engine/core/graphene/object_types.py:75 +#: engine/core/models.py:803 msgid "attribute values" msgstr "Nilai Atribut" -#: core/admin.py:156 +#: engine/core/admin.py:156 msgid "image" msgstr "Gambar" -#: core/admin.py:157 core/graphene/object_types.py:474 +#: engine/core/admin.py:157 engine/core/graphene/object_types.py:474 msgid "images" msgstr "Gambar" -#: core/admin.py:168 core/models.py:559 +#: engine/core/admin.py:169 engine/core/models.py:559 msgid "stock" msgstr "Stok" -#: core/admin.py:169 core/graphene/object_types.py:636 +#: engine/core/admin.py:170 engine/core/graphene/object_types.py:640 msgid "stocks" msgstr "Saham" -#: core/admin.py:182 core/models.py:1744 +#: engine/core/admin.py:183 engine/core/models.py:1804 msgid "order product" msgstr "Pesan Produk" -#: core/admin.py:183 core/graphene/object_types.py:389 core/models.py:1745 +#: engine/core/admin.py:184 engine/core/graphene/object_types.py:389 +#: engine/core/models.py:1805 msgid "order products" msgstr "Pesan Produk" -#: core/admin.py:196 core/admin.py:197 +#: engine/core/admin.py:197 engine/core/admin.py:198 msgid "children" msgstr "Anak-anak" -#: core/admin.py:965 +#: engine/core/admin.py:969 msgid "Config" msgstr "Konfigurasi" -#: core/apps.py:8 +#: engine/core/apps.py:8 msgid "core" msgstr "Inti" -#: core/choices.py:4 core/choices.py:20 +#: engine/core/choices.py:4 engine/core/choices.py:20 msgid "finished" msgstr "Selesai." -#: core/choices.py:5 core/choices.py:19 +#: engine/core/choices.py:5 engine/core/choices.py:19 msgid "delivering" msgstr "Menyampaikan" -#: core/choices.py:6 +#: engine/core/choices.py:6 msgid "delivered" msgstr "Disampaikan." -#: core/choices.py:7 +#: engine/core/choices.py:7 msgid "canceled" msgstr "Dibatalkan" -#: core/choices.py:8 core/choices.py:16 core/choices.py:24 +#: engine/core/choices.py:8 engine/core/choices.py:16 engine/core/choices.py:24 msgid "failed" msgstr "Gagal" -#: core/choices.py:9 core/choices.py:15 +#: engine/core/choices.py:9 engine/core/choices.py:15 msgid "pending" msgstr "Pending" -#: core/choices.py:10 +#: engine/core/choices.py:10 msgid "accepted" msgstr "Diterima" -#: core/choices.py:11 +#: engine/core/choices.py:11 msgid "money returned" msgstr "Uang Dikembalikan" -#: core/choices.py:17 +#: engine/core/choices.py:17 msgid "payment" msgstr "Pembayaran" -#: core/choices.py:21 +#: engine/core/choices.py:21 msgid "momental" msgstr "Momental" -#: core/choices.py:24 +#: engine/core/choices.py:24 msgid "successful" msgstr "Berhasil" -#: core/docs/drf/views.py:17 core/graphene/mutations.py:38 +#: engine/core/docs/drf/views.py:17 engine/core/graphene/mutations.py:38 msgid "cache I/O" msgstr "I/O Cache" -#: core/docs/drf/views.py:19 +#: engine/core/docs/drf/views.py:19 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 "" "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." -#: core/docs/drf/views.py:32 +#: engine/core/docs/drf/views.py:32 msgid "get a list of supported languages" msgstr "Dapatkan daftar bahasa yang didukung" -#: core/docs/drf/views.py:41 +#: engine/core/docs/drf/views.py:41 msgid "get application's exposable parameters" msgstr "Dapatkan parameter aplikasi yang dapat diekspos" -#: core/docs/drf/views.py:48 +#: engine/core/docs/drf/views.py:48 msgid "send a message to the support team" msgstr "Kirim pesan ke tim dukungan" -#: core/docs/drf/views.py:59 core/graphene/mutations.py:58 +#: engine/core/docs/drf/views.py:59 engine/core/graphene/mutations.py:58 msgid "request a CORSed URL" msgstr "Meminta URL CORSed. Hanya https yang diizinkan." -#: core/docs/drf/views.py:85 +#: engine/core/docs/drf/views.py:85 msgid "global search endpoint to query across project's tables" msgstr "" "Titik akhir pencarian global untuk melakukan kueri di seluruh tabel proyek" -#: core/docs/drf/views.py:91 +#: engine/core/docs/drf/views.py:91 msgid "purchase an order as a business" msgstr "Beli pesanan sebagai Bisnis" -#: core/docs/drf/views.py:98 +#: engine/core/docs/drf/views.py:98 msgid "" "purchase an order as a business, using the provided `products` with " "`product_uuid` and `attributes`." @@ -226,226 +228,228 @@ msgstr "" "Beli pesanan sebagai bisnis, menggunakan `produk` yang disediakan dengan " "`product_uuid` dan `atribut`." -#: core/docs/drf/viewsets.py:58 +#: engine/core/docs/drf/viewsets.py:58 msgid "list all attribute groups (simple view)" msgstr "Buat daftar semua grup atribut (tampilan sederhana)" -#: core/docs/drf/viewsets.py:62 +#: engine/core/docs/drf/viewsets.py:62 msgid "retrieve a single attribute group (detailed view)" msgstr "Mengambil grup atribut tunggal (tampilan detail)" -#: core/docs/drf/viewsets.py:66 +#: engine/core/docs/drf/viewsets.py:66 msgid "create an attribute group" msgstr "Membuat grup atribut" -#: core/docs/drf/viewsets.py:70 +#: engine/core/docs/drf/viewsets.py:70 msgid "delete an attribute group" msgstr "Menghapus grup atribut" -#: core/docs/drf/viewsets.py:74 +#: engine/core/docs/drf/viewsets.py:74 msgid "rewrite an existing attribute group saving non-editables" msgstr "" "Menulis ulang grup atribut yang sudah ada dan menyimpan grup yang tidak " "dapat diedit" -#: core/docs/drf/viewsets.py:78 -msgid "" -"rewrite some fields of an existing attribute group saving non-editables" +#: engine/core/docs/drf/viewsets.py:78 +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" -#: core/docs/drf/viewsets.py:85 +#: engine/core/docs/drf/viewsets.py:85 msgid "list all attributes (simple view)" msgstr "Daftar semua atribut (tampilan sederhana)" -#: core/docs/drf/viewsets.py:89 +#: engine/core/docs/drf/viewsets.py:89 msgid "retrieve a single attribute (detailed view)" msgstr "Mengambil atribut tunggal (tampilan detail)" -#: core/docs/drf/viewsets.py:93 +#: engine/core/docs/drf/viewsets.py:93 msgid "create an attribute" msgstr "Membuat atribut" -#: core/docs/drf/viewsets.py:97 +#: engine/core/docs/drf/viewsets.py:97 msgid "delete an attribute" msgstr "Menghapus atribut" -#: core/docs/drf/viewsets.py:101 +#: engine/core/docs/drf/viewsets.py:101 msgid "rewrite an existing attribute saving non-editables" msgstr "" "Menulis ulang atribut yang sudah ada dengan menyimpan atribut yang tidak " "dapat diedit" -#: core/docs/drf/viewsets.py:105 +#: engine/core/docs/drf/viewsets.py:105 msgid "rewrite some fields of an existing attribute saving non-editables" msgstr "" "Menulis ulang beberapa bidang dari atribut yang sudah ada sehingga tidak " "dapat diedit" -#: core/docs/drf/viewsets.py:112 +#: engine/core/docs/drf/viewsets.py:112 msgid "list all attribute values (simple view)" msgstr "Daftar semua nilai atribut (tampilan sederhana)" -#: core/docs/drf/viewsets.py:116 +#: engine/core/docs/drf/viewsets.py:116 msgid "retrieve a single attribute value (detailed view)" msgstr "Mengambil nilai atribut tunggal (tampilan detail)" -#: core/docs/drf/viewsets.py:120 +#: engine/core/docs/drf/viewsets.py:120 msgid "create an attribute value" msgstr "Membuat nilai atribut" -#: core/docs/drf/viewsets.py:124 +#: engine/core/docs/drf/viewsets.py:124 msgid "delete an attribute value" msgstr "Menghapus nilai atribut" -#: core/docs/drf/viewsets.py:128 +#: engine/core/docs/drf/viewsets.py:128 msgid "rewrite an existing attribute value saving non-editables" msgstr "" "Menulis ulang nilai atribut yang sudah ada dan menyimpan nilai yang tidak " "dapat diedit" -#: core/docs/drf/viewsets.py:132 -msgid "" -"rewrite some fields of an existing attribute value saving non-editables" +#: engine/core/docs/drf/viewsets.py:132 +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" -#: core/docs/drf/viewsets.py:139 core/docs/drf/viewsets.py:140 +#: engine/core/docs/drf/viewsets.py:139 engine/core/docs/drf/viewsets.py:140 msgid "list all categories (simple view)" msgstr "Daftar semua kategori (tampilan sederhana)" -#: core/docs/drf/viewsets.py:144 core/docs/drf/viewsets.py:145 +#: engine/core/docs/drf/viewsets.py:144 engine/core/docs/drf/viewsets.py:145 msgid "retrieve a single category (detailed view)" msgstr "Mengambil satu kategori (tampilan detail)" -#: core/docs/drf/viewsets.py:149 core/docs/drf/viewsets.py:150 +#: engine/core/docs/drf/viewsets.py:150 engine/core/docs/drf/viewsets.py:183 +msgid "Category UUID or slug" +msgstr "Kategori UUID atau siput" + +#: engine/core/docs/drf/viewsets.py:157 engine/core/docs/drf/viewsets.py:158 msgid "create a category" msgstr "Membuat kategori" -#: core/docs/drf/viewsets.py:154 core/docs/drf/viewsets.py:155 +#: engine/core/docs/drf/viewsets.py:162 engine/core/docs/drf/viewsets.py:163 msgid "delete a category" msgstr "Menghapus kategori" -#: core/docs/drf/viewsets.py:159 core/docs/drf/viewsets.py:160 +#: engine/core/docs/drf/viewsets.py:167 engine/core/docs/drf/viewsets.py:168 msgid "rewrite an existing category saving non-editables" msgstr "" "Menulis ulang kategori yang sudah ada dan menyimpan kategori yang tidak " "dapat diedit" -#: core/docs/drf/viewsets.py:164 core/docs/drf/viewsets.py:165 +#: engine/core/docs/drf/viewsets.py:172 engine/core/docs/drf/viewsets.py:173 msgid "rewrite some fields of an existing category saving non-editables" msgstr "" "Menulis ulang beberapa bidang dari kategori yang sudah ada sehingga tidak " "dapat diedit" -#: core/docs/drf/viewsets.py:169 core/docs/drf/viewsets.py:501 -#: core/graphene/object_types.py:117 core/graphene/object_types.py:207 -#: core/graphene/object_types.py:482 +#: engine/core/docs/drf/viewsets.py:177 engine/core/docs/drf/viewsets.py:517 +#: engine/core/graphene/object_types.py:117 +#: engine/core/graphene/object_types.py:207 +#: engine/core/graphene/object_types.py:482 msgid "SEO Meta snapshot" msgstr "Cuplikan Meta SEO" -#: core/docs/drf/viewsets.py:170 +#: engine/core/docs/drf/viewsets.py:178 msgid "returns a snapshot of the category's SEO meta data" msgstr "Mengembalikan cuplikan data meta SEO kategori" -#: core/docs/drf/viewsets.py:175 -msgid "Category UUID or slug" -msgstr "Kategori UUID atau siput" - -#: core/docs/drf/viewsets.py:188 +#: engine/core/docs/drf/viewsets.py:196 msgid "list all orders (simple view)" msgstr "Daftar semua kategori (tampilan sederhana)" -#: core/docs/drf/viewsets.py:189 +#: engine/core/docs/drf/viewsets.py:197 msgid "for non-staff users, only their own orders are returned." msgstr "" "Untuk pengguna non-staf, hanya pesanan mereka sendiri yang dikembalikan." -#: core/docs/drf/viewsets.py:195 +#: engine/core/docs/drf/viewsets.py:203 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" -#: core/docs/drf/viewsets.py:202 +#: engine/core/docs/drf/viewsets.py:210 msgid "Filter orders with buy_time >= this ISO 8601 datetime" msgstr "Filter pesanan dengan waktu_beli >= waktu_data ISO 8601 ini" -#: core/docs/drf/viewsets.py:207 +#: engine/core/docs/drf/viewsets.py:215 msgid "Filter orders with buy_time <= this ISO 8601 datetime" msgstr "Filter pesanan dengan waktu_beli <= waktu_data ISO 8601 ini" -#: core/docs/drf/viewsets.py:212 +#: engine/core/docs/drf/viewsets.py:220 msgid "Filter by exact order UUID" msgstr "Filter berdasarkan urutan yang tepat UUID" -#: core/docs/drf/viewsets.py:217 +#: engine/core/docs/drf/viewsets.py:225 msgid "Filter by exact human-readable order ID" msgstr "Filter berdasarkan ID pesanan yang dapat dibaca manusia" -#: core/docs/drf/viewsets.py:222 +#: engine/core/docs/drf/viewsets.py:230 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)" -#: core/docs/drf/viewsets.py:227 +#: engine/core/docs/drf/viewsets.py:235 msgid "Filter by user's UUID" msgstr "Memfilter berdasarkan UUID pengguna" -#: core/docs/drf/viewsets.py:232 +#: engine/core/docs/drf/viewsets.py:240 msgid "Filter by order status (case-insensitive substring match)" msgstr "" "Filter berdasarkan status pesanan (pencocokan substring yang tidak peka " "huruf besar-kecil)" -#: core/docs/drf/viewsets.py:238 +#: engine/core/docs/drf/viewsets.py:246 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 " "menurun (contoh: '-buy_time')." -#: core/docs/drf/viewsets.py:247 +#: engine/core/docs/drf/viewsets.py:255 msgid "retrieve a single order (detailed view)" msgstr "Mengambil satu kategori (tampilan detail)" -#: core/docs/drf/viewsets.py:251 +#: engine/core/docs/drf/viewsets.py:260 +msgid "Order UUID or human-readable id" +msgstr "Pesan UUID atau id yang dapat dibaca manusia" + +#: engine/core/docs/drf/viewsets.py:267 msgid "create an order" msgstr "Membuat atribut" -#: core/docs/drf/viewsets.py:252 +#: engine/core/docs/drf/viewsets.py:268 msgid "doesn't work for non-staff users." msgstr "Tidak dapat digunakan oleh pengguna non-staf." -#: core/docs/drf/viewsets.py:256 +#: engine/core/docs/drf/viewsets.py:272 msgid "delete an order" msgstr "Menghapus atribut" -#: core/docs/drf/viewsets.py:260 +#: engine/core/docs/drf/viewsets.py:276 msgid "rewrite an existing order saving non-editables" msgstr "" "Menulis ulang kategori yang sudah ada dan menyimpan kategori yang tidak " "dapat diedit" -#: core/docs/drf/viewsets.py:264 +#: engine/core/docs/drf/viewsets.py:280 msgid "rewrite some fields of an existing order saving non-editables" msgstr "" "Menulis ulang beberapa bidang dari kategori yang sudah ada sehingga tidak " "dapat diedit" -#: core/docs/drf/viewsets.py:268 +#: engine/core/docs/drf/viewsets.py:284 msgid "purchase an order" msgstr "Harga pembelian pada saat pemesanan" -#: core/docs/drf/viewsets.py:270 +#: engine/core/docs/drf/viewsets.py:286 msgid "" "finalizes the order purchase. if `force_balance` is used, the purchase is " "completed using the user's balance; if `force_payment` is used, a " @@ -455,19 +459,19 @@ msgstr "" "diselesaikan menggunakan saldo pengguna; Jika `force_payment` digunakan, " "transaksi dimulai." -#: core/docs/drf/viewsets.py:282 core/graphene/mutations.py:335 +#: engine/core/docs/drf/viewsets.py:298 engine/core/graphene/mutations.py:335 msgid "purchase an order without account creation" msgstr "membeli pesanan tanpa pembuatan akun" -#: core/docs/drf/viewsets.py:283 +#: engine/core/docs/drf/viewsets.py:299 msgid "finalizes the order purchase for a non-registered user." msgstr "menyelesaikan pembelian pesanan untuk pengguna yang tidak terdaftar." -#: core/docs/drf/viewsets.py:291 +#: engine/core/docs/drf/viewsets.py:307 msgid "add product to order" msgstr "Menambahkan produk ke pesanan" -#: core/docs/drf/viewsets.py:292 +#: engine/core/docs/drf/viewsets.py:308 msgid "" "adds a product to an order using the provided `product_uuid` and " "`attributes`." @@ -475,11 +479,11 @@ msgstr "" "Menambahkan produk ke pesanan menggunakan `product_uuid` dan `atribut` yang " "disediakan." -#: core/docs/drf/viewsets.py:297 +#: engine/core/docs/drf/viewsets.py:313 msgid "add a list of products to order, quantities will not count" msgstr "Tambahkan daftar produk yang akan dipesan, jumlah tidak akan dihitung" -#: core/docs/drf/viewsets.py:298 +#: engine/core/docs/drf/viewsets.py:314 msgid "" "adds a list of products to an order using the provided `product_uuid` and " "`attributes`." @@ -487,11 +491,11 @@ msgstr "" "Menambahkan daftar produk ke pesanan menggunakan `product_uuid` dan " "`atribut` yang disediakan." -#: core/docs/drf/viewsets.py:303 +#: engine/core/docs/drf/viewsets.py:319 msgid "remove product from order" msgstr "Menghapus produk dari pesanan" -#: core/docs/drf/viewsets.py:304 +#: engine/core/docs/drf/viewsets.py:320 msgid "" "removes a product from an order using the provided `product_uuid` and " "`attributes`." @@ -499,11 +503,11 @@ msgstr "" "Menghapus produk dari pesanan menggunakan `product_uuid` dan `atribut` yang " "disediakan." -#: core/docs/drf/viewsets.py:309 +#: engine/core/docs/drf/viewsets.py:325 msgid "remove product from order, quantities will not count" msgstr "Menghapus produk dari pesanan, jumlah tidak akan dihitung" -#: core/docs/drf/viewsets.py:310 +#: engine/core/docs/drf/viewsets.py:326 msgid "" "removes a list of products from an order using the provided `product_uuid` " "and `attributes`" @@ -511,814 +515,840 @@ msgstr "" "Menghapus daftar produk dari pesanan menggunakan `product_uuid` dan " "`atribut` yang disediakan." -#: core/docs/drf/viewsets.py:318 +#: engine/core/docs/drf/viewsets.py:334 msgid "list all wishlists (simple view)" msgstr "Daftar semua atribut (tampilan sederhana)" -#: core/docs/drf/viewsets.py:319 +#: engine/core/docs/drf/viewsets.py:335 msgid "for non-staff users, only their own wishlists are returned." msgstr "" "Untuk pengguna non-staf, hanya daftar keinginan mereka sendiri yang " "dikembalikan." -#: core/docs/drf/viewsets.py:323 +#: engine/core/docs/drf/viewsets.py:339 msgid "retrieve a single wishlist (detailed view)" msgstr "Mengambil atribut tunggal (tampilan detail)" -#: core/docs/drf/viewsets.py:327 +#: engine/core/docs/drf/viewsets.py:343 msgid "create an wishlist" msgstr "Membuat atribut" -#: core/docs/drf/viewsets.py:328 +#: engine/core/docs/drf/viewsets.py:344 msgid "Doesn't work for non-staff users." msgstr "Tidak dapat digunakan oleh pengguna non-staf." -#: core/docs/drf/viewsets.py:332 +#: engine/core/docs/drf/viewsets.py:348 msgid "delete an wishlist" msgstr "Menghapus atribut" -#: core/docs/drf/viewsets.py:336 +#: engine/core/docs/drf/viewsets.py:352 msgid "rewrite an existing wishlist saving non-editables" msgstr "" "Menulis ulang atribut yang sudah ada dengan menyimpan atribut yang tidak " "dapat diedit" -#: core/docs/drf/viewsets.py:340 +#: engine/core/docs/drf/viewsets.py:356 msgid "rewrite some fields of an existing wishlist saving non-editables" msgstr "" "Menulis ulang beberapa bidang dari atribut yang sudah ada sehingga tidak " "dapat diedit" -#: core/docs/drf/viewsets.py:344 +#: engine/core/docs/drf/viewsets.py:360 msgid "add product to wishlist" msgstr "Menambahkan produk ke pesanan" -#: core/docs/drf/viewsets.py:345 +#: engine/core/docs/drf/viewsets.py:361 msgid "adds a product to an wishlist using the provided `product_uuid`" msgstr "" "Menambahkan produk ke daftar keinginan menggunakan `product_uuid` yang " "disediakan" -#: core/docs/drf/viewsets.py:350 +#: engine/core/docs/drf/viewsets.py:366 msgid "remove product from wishlist" msgstr "Menghapus produk dari daftar keinginan" -#: core/docs/drf/viewsets.py:351 +#: engine/core/docs/drf/viewsets.py:367 msgid "removes a product from an wishlist using the provided `product_uuid`" msgstr "" "Menghapus produk dari daftar keinginan menggunakan `product_uuid` yang " "disediakan" -#: core/docs/drf/viewsets.py:356 +#: engine/core/docs/drf/viewsets.py:372 msgid "add many products to wishlist" msgstr "Tambahkan banyak produk ke daftar keinginan" -#: core/docs/drf/viewsets.py:357 +#: engine/core/docs/drf/viewsets.py:373 msgid "adds many products to an wishlist using the provided `product_uuids`" msgstr "" "Menambahkan banyak produk ke daftar keinginan menggunakan `product_uuids` " "yang disediakan" -#: core/docs/drf/viewsets.py:362 +#: engine/core/docs/drf/viewsets.py:378 msgid "remove many products from wishlist" msgstr "Menghapus produk dari pesanan" -#: core/docs/drf/viewsets.py:363 +#: engine/core/docs/drf/viewsets.py:379 msgid "" "removes many products from an wishlist using the provided `product_uuids`" msgstr "" "Menghapus banyak produk dari daftar keinginan menggunakan `product_uuids` " "yang disediakan" -#: core/docs/drf/viewsets.py:370 +#: engine/core/docs/drf/viewsets.py:386 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`" -#: core/docs/drf/viewsets.py:386 core/docs/drf/viewsets.py:387 +#: engine/core/docs/drf/viewsets.py:402 engine/core/docs/drf/viewsets.py:403 msgid "list all products (simple view)" msgstr "Daftar semua produk (tampilan sederhana)" -#: core/docs/drf/viewsets.py:392 +#: engine/core/docs/drf/viewsets.py:408 msgid "(exact) Product UUID" msgstr "UUID Produk (persis)" -#: core/docs/drf/viewsets.py:399 +#: engine/core/docs/drf/viewsets.py:415 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" -#: core/docs/drf/viewsets.py:413 core/docs/drf/viewsets.py:414 +#: engine/core/docs/drf/viewsets.py:429 engine/core/docs/drf/viewsets.py:430 msgid "retrieve a single product (detailed view)" msgstr "Mengambil satu produk (tampilan detail)" -#: core/docs/drf/viewsets.py:419 core/docs/drf/viewsets.py:443 -#: core/docs/drf/viewsets.py:459 core/docs/drf/viewsets.py:475 -#: core/docs/drf/viewsets.py:491 core/docs/drf/viewsets.py:507 +#: engine/core/docs/drf/viewsets.py:435 engine/core/docs/drf/viewsets.py:459 +#: engine/core/docs/drf/viewsets.py:475 engine/core/docs/drf/viewsets.py:491 +#: engine/core/docs/drf/viewsets.py:507 engine/core/docs/drf/viewsets.py:523 msgid "Product UUID or slug" msgstr "UUID Produk atau Siput" -#: core/docs/drf/viewsets.py:429 core/docs/drf/viewsets.py:430 +#: engine/core/docs/drf/viewsets.py:445 engine/core/docs/drf/viewsets.py:446 msgid "create a product" msgstr "Membuat produk" -#: core/docs/drf/viewsets.py:437 core/docs/drf/viewsets.py:438 +#: engine/core/docs/drf/viewsets.py:453 engine/core/docs/drf/viewsets.py:454 msgid "rewrite an existing product, preserving non-editable fields" msgstr "" "Menulis ulang produk yang sudah ada, mempertahankan bidang yang tidak dapat " "diedit" -#: core/docs/drf/viewsets.py:453 core/docs/drf/viewsets.py:454 +#: engine/core/docs/drf/viewsets.py:469 engine/core/docs/drf/viewsets.py:470 msgid "" "update some fields of an existing product, preserving non-editable fields" msgstr "" "Memperbarui beberapa bidang dari produk yang sudah ada, mempertahankan " "bidang yang tidak dapat diedit" -#: core/docs/drf/viewsets.py:469 core/docs/drf/viewsets.py:470 +#: engine/core/docs/drf/viewsets.py:485 engine/core/docs/drf/viewsets.py:486 msgid "delete a product" msgstr "Menghapus produk" -#: core/docs/drf/viewsets.py:485 core/docs/drf/viewsets.py:486 +#: engine/core/docs/drf/viewsets.py:501 engine/core/docs/drf/viewsets.py:502 msgid "lists all permitted feedbacks for a product" msgstr "mencantumkan semua umpan balik yang diizinkan untuk suatu produk" -#: core/docs/drf/viewsets.py:502 +#: engine/core/docs/drf/viewsets.py:518 msgid "returns a snapshot of the product's SEO meta data" msgstr "Mengembalikan cuplikan data meta SEO produk" -#: core/docs/drf/viewsets.py:520 +#: engine/core/docs/drf/viewsets.py:536 msgid "list all addresses" msgstr "Daftar semua alamat" -#: core/docs/drf/viewsets.py:527 +#: engine/core/docs/drf/viewsets.py:543 msgid "retrieve a single address" msgstr "Mengambil satu alamat" -#: core/docs/drf/viewsets.py:534 +#: engine/core/docs/drf/viewsets.py:550 msgid "create a new address" msgstr "Membuat alamat baru" -#: core/docs/drf/viewsets.py:542 +#: engine/core/docs/drf/viewsets.py:558 msgid "delete an address" msgstr "Menghapus alamat" -#: core/docs/drf/viewsets.py:549 +#: engine/core/docs/drf/viewsets.py:565 msgid "update an entire address" msgstr "Memperbarui seluruh alamat" -#: core/docs/drf/viewsets.py:557 +#: engine/core/docs/drf/viewsets.py:573 msgid "partially update an address" msgstr "Memperbarui sebagian alamat" -#: core/docs/drf/viewsets.py:565 +#: engine/core/docs/drf/viewsets.py:581 msgid "autocomplete address suggestions" msgstr "Masukan alamat pelengkapan otomatis" -#: core/docs/drf/viewsets.py:570 +#: engine/core/docs/drf/viewsets.py:586 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" -#: core/docs/drf/viewsets.py:576 +#: engine/core/docs/drf/viewsets.py:592 msgid "limit the results amount, 1 < limit < 10, default: 5" msgstr "membatasi jumlah hasil, 1 " msgstr "{name} tidak ada dengan kueri <{query}>!" -#: core/models.py:1423 +#: engine/core/models.py:1434 msgid "promocode does not exist" msgstr "Kode promosi tidak ada" -#: core/models.py:1429 +#: engine/core/models.py:1440 msgid "you can only buy physical products with shipping address specified" msgstr "" "Anda hanya dapat membeli produk fisik dengan alamat pengiriman yang " "ditentukan!" -#: core/models.py:1448 +#: engine/core/models.py:1459 msgid "address does not exist" msgstr "Alamat tidak ada" -#: core/models.py:1469 core/models.py:1538 +#: engine/core/models.py:1480 engine/core/models.py:1549 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." -#: core/models.py:1472 core/models.py:1534 +#: engine/core/models.py:1483 engine/core/models.py:1545 msgid "invalid force value" msgstr "Nilai gaya tidak valid" -#: core/models.py:1478 core/models.py:1541 +#: engine/core/models.py:1489 engine/core/models.py:1552 msgid "you cannot purchase an empty order!" msgstr "Anda tidak dapat membeli pesanan kosong!" -#: core/models.py:1497 +#: engine/core/models.py:1508 msgid "you cannot buy an order without a user" msgstr "Anda tidak dapat membeli pesanan tanpa pengguna!" -#: core/models.py:1511 +#: engine/core/models.py:1522 msgid "a user without a balance cannot buy with balance" msgstr "Pengguna tanpa saldo tidak dapat membeli dengan saldo!" -#: core/models.py:1516 +#: engine/core/models.py:1527 msgid "insufficient funds to complete the order" msgstr "Dana tidak mencukupi untuk menyelesaikan pesanan" -#: core/models.py:1550 +#: engine/core/models.py:1561 msgid "" "you cannot buy without registration, please provide the following " "information: customer name, customer email, customer phone number" @@ -2510,7 +2551,7 @@ msgstr "" "Anda tidak dapat membeli tanpa registrasi, berikan informasi berikut: nama " "pelanggan, email pelanggan, nomor telepon pelanggan" -#: core/models.py:1559 +#: engine/core/models.py:1570 #, python-brace-format msgid "" "invalid payment method: {payment_method} from {available_payment_methods}" @@ -2518,7 +2559,47 @@ msgstr "" "Metode pembayaran tidak valid: {payment_method} dari " "{available_payment_methods}!" -#: core/models.py:1668 +#: engine/core/models.py:1685 +msgid "" +"Manages user feedback for products. This class is designed to capture and " +"store user feedback for specific products that they have purchased. It " +"contains attributes to store user comments, a reference to the related " +"product in the order, and a user-assigned rating. The class uses database " +"fields to effectively model and manage feedback data." +msgstr "" +"Mengelola umpan balik pengguna untuk produk. Kelas ini dirancang untuk " +"menangkap dan menyimpan umpan balik pengguna untuk produk tertentu yang " +"telah mereka beli. Kelas ini berisi atribut untuk menyimpan komentar " +"pengguna, referensi ke produk terkait dalam pesanan, dan peringkat yang " +"ditetapkan pengguna. Kelas ini menggunakan bidang basis data untuk " +"memodelkan dan mengelola data umpan balik secara efektif." + +#: engine/core/models.py:1697 +msgid "user-provided comments about their experience with the product" +msgstr "" +"Komentar yang diberikan pengguna tentang pengalaman mereka dengan produk" + +#: engine/core/models.py:1698 +msgid "feedback comments" +msgstr "Komentar umpan balik" + +#: engine/core/models.py:1705 +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:1706 +msgid "related order product" +msgstr "Produk pesanan terkait" + +#: engine/core/models.py:1711 +msgid "user-assigned rating for the product" +msgstr "Peringkat yang ditetapkan pengguna untuk produk" + +#: engine/core/models.py:1712 +msgid "product rating" +msgstr "Peringkat produk" + +#: engine/core/models.py:1728 msgid "" "Represents products associated with orders and their attributes. The " "OrderProduct model maintains information about a product that is part of an " @@ -2535,122 +2616,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." -#: core/models.py:1683 +#: engine/core/models.py:1743 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" -#: core/models.py:1684 +#: engine/core/models.py:1744 msgid "purchase price at order time" msgstr "Harga pembelian pada saat pemesanan" -#: core/models.py:1689 +#: engine/core/models.py:1749 msgid "internal comments for admins about this ordered product" msgstr "Komentar internal untuk admin tentang produk yang dipesan ini" -#: core/models.py:1690 +#: engine/core/models.py:1750 msgid "internal comments" msgstr "Komentar internal" -#: core/models.py:1696 +#: engine/core/models.py:1756 msgid "user notifications" msgstr "Pemberitahuan pengguna" -#: core/models.py:1701 +#: engine/core/models.py:1761 msgid "json representation of this item's attributes" msgstr "Representasi JSON dari atribut item ini" -#: core/models.py:1702 +#: engine/core/models.py:1762 msgid "ordered product attributes" msgstr "Atribut produk yang dipesan" -#: core/models.py:1707 +#: engine/core/models.py:1767 msgid "reference to the parent order that contains this product" msgstr "Referensi ke pesanan induk yang berisi produk ini" -#: core/models.py:1708 +#: engine/core/models.py:1768 msgid "parent order" msgstr "Urutan induk" -#: core/models.py:1717 +#: engine/core/models.py:1777 msgid "the specific product associated with this order line" msgstr "Produk spesifik yang terkait dengan baris pesanan ini" -#: core/models.py:1724 +#: engine/core/models.py:1784 msgid "quantity of this specific product in the order" msgstr "Jumlah produk spesifik ini dalam pesanan" -#: core/models.py:1725 +#: engine/core/models.py:1785 msgid "product quantity" msgstr "Kuantitas produk" -#: core/models.py:1732 +#: engine/core/models.py:1792 msgid "current status of this product in the order" msgstr "Status saat ini dari produk ini dalam pesanan" -#: core/models.py:1733 +#: engine/core/models.py:1793 msgid "product line status" msgstr "Status lini produk" -#: core/models.py:1798 +#: engine/core/models.py:1858 msgid "order product must have an order" msgstr "Pesananproduk harus memiliki pesanan terkait!" -#: core/models.py:1800 +#: engine/core/models.py:1860 #, python-brace-format msgid "wrong action specified for feedback: {action}" msgstr "Tindakan yang salah ditentukan untuk umpan balik: {action}!" -#: core/models.py:1814 +#: engine/core/models.py:1874 msgid "you cannot feedback an order which is not received" msgstr "" "Anda tidak dapat memberikan umpan balik atas pesanan yang tidak diterima" -#: core/models.py:1820 +#: engine/core/models.py:1880 msgid "name" msgstr "Nama" -#: core/models.py:1821 +#: engine/core/models.py:1881 msgid "URL of the integration" msgstr "URL integrasi" -#: core/models.py:1822 +#: engine/core/models.py:1882 msgid "authentication credentials" msgstr "Kredensial otentikasi" -#: core/models.py:1844 +#: engine/core/models.py:1904 msgid "you can only have one default CRM provider" msgstr "Anda hanya dapat memiliki satu penyedia CRM default" -#: core/models.py:1854 +#: engine/core/models.py:1914 msgid "CRM" msgstr "CRM" -#: core/models.py:1855 +#: engine/core/models.py:1915 msgid "CRMs" msgstr "CRM" -#: core/models.py:1867 +#: engine/core/models.py:1927 msgid "order CRM link" msgstr "Tautan CRM pesanan" -#: core/models.py:1868 +#: engine/core/models.py:1928 msgid "orders CRM links" msgstr "Tautan CRM Pesanan" -#: core/models.py:1873 +#: engine/core/models.py:1933 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 " @@ -2660,131 +2741,87 @@ msgstr "" "untuk menghasilkan URL untuk mengunduh aset ketika pesanan terkait dalam " "status selesai." -#: core/models.py:1887 +#: engine/core/models.py:1947 msgid "download" msgstr "Unduh" -#: core/models.py:1888 +#: engine/core/models.py:1948 msgid "downloads" msgstr "Unduhan" -#: core/models.py:1902 -msgid "" -"Manages user feedback for products. This class is designed to capture and " -"store user feedback for specific products that they have purchased. It " -"contains attributes to store user comments, a reference to the related " -"product in the order, and a user-assigned rating. The class uses database " -"fields to effectively model and manage feedback data." -msgstr "" -"Mengelola umpan balik pengguna untuk produk. Kelas ini dirancang untuk " -"menangkap dan menyimpan umpan balik pengguna untuk produk tertentu yang " -"telah mereka beli. Kelas ini berisi atribut untuk menyimpan komentar " -"pengguna, referensi ke produk terkait dalam pesanan, dan peringkat yang " -"ditetapkan pengguna. Kelas ini menggunakan bidang basis data untuk " -"memodelkan dan mengelola data umpan balik secara efektif." - -#: core/models.py:1914 -msgid "user-provided comments about their experience with the product" -msgstr "" -"Komentar yang diberikan pengguna tentang pengalaman mereka dengan produk" - -#: core/models.py:1915 -msgid "feedback comments" -msgstr "Komentar umpan balik" - -#: core/models.py:1922 -msgid "" -"references the specific product in an order that this feedback is about" -msgstr "Merujuk ke produk tertentu sesuai dengan urutan umpan balik ini" - -#: core/models.py:1923 -msgid "related order product" -msgstr "Produk pesanan terkait" - -#: core/models.py:1928 -msgid "user-assigned rating for the product" -msgstr "Peringkat yang ditetapkan pengguna untuk produk" - -#: core/models.py:1929 -msgid "product rating" -msgstr "Peringkat produk" - -#: core/serializers/utility.py:89 +#: engine/core/serializers/utility.py:89 msgid "" "you must provide a comment, rating, and order product uuid to add feedback." msgstr "" "Anda harus memberikan komentar, penilaian, dan memesan produk uuid untuk " "menambahkan umpan balik." -#: core/signals.py:73 -msgid "error during promocode creation: {e!s}" -msgstr "Kesalahan selama pembuatan promocode: {e!s}" - -#: core/sitemaps.py:25 +#: engine/core/sitemaps.py:25 msgid "Home" msgstr "Beranda" -#: core/sitemaps.py:30 +#: engine/core/sitemaps.py:30 msgid "Contact Us" msgstr "Hubungi Kami" -#: core/sitemaps.py:35 +#: engine/core/sitemaps.py:35 msgid "About Us" msgstr "Tentang Kami" -#: core/templates/digital_order_created_email.html:7 -#: core/templates/digital_order_created_email.html:100 -#: core/templates/digital_order_delivered_email.html:6 -#: core/templates/shipped_order_created_email.html:7 -#: core/templates/shipped_order_created_email.html:99 -#: core/templates/shipped_order_delivered_email.html:7 -#: core/templates/shipped_order_delivered_email.html:99 +#: engine/core/templates/digital_order_created_email.html:7 +#: engine/core/templates/digital_order_created_email.html:100 +#: engine/core/templates/digital_order_delivered_email.html:6 +#: engine/core/templates/shipped_order_created_email.html:7 +#: engine/core/templates/shipped_order_created_email.html:99 +#: engine/core/templates/shipped_order_delivered_email.html:7 +#: engine/core/templates/shipped_order_delivered_email.html:99 msgid "order confirmation" msgstr "Konfirmasi Pesanan" -#: core/templates/digital_order_created_email.html:95 -#: core/templates/digital_order_delivered_email.html:94 -#: core/templates/promocode_granted_email.html:94 -#: core/templates/shipped_order_created_email.html:94 -#: core/templates/shipped_order_delivered_email.html:94 +#: engine/core/templates/digital_order_created_email.html:95 +#: engine/core/templates/digital_order_delivered_email.html:94 +#: engine/core/templates/promocode_granted_email.html:94 +#: engine/core/templates/shipped_order_created_email.html:94 +#: engine/core/templates/shipped_order_delivered_email.html:94 msgid "logo" msgstr "Logo" -#: core/templates/digital_order_created_email.html:101 -#: core/templates/shipped_order_created_email.html:100 -#: core/templates/shipped_order_delivered_email.html:100 +#: engine/core/templates/digital_order_created_email.html:101 +#: engine/core/templates/shipped_order_created_email.html:100 +#: engine/core/templates/shipped_order_delivered_email.html:100 #, python-format msgid "hello %(order.user.first_name)s," msgstr "Halo %(order.user.first_name)s," -#: core/templates/digital_order_created_email.html:102 +#: engine/core/templates/digital_order_created_email.html:102 #, 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 " "informasikan bahwa kami telah mengerjakan pesanan Anda. Di bawah ini adalah " "rincian pesanan Anda:" -#: core/templates/digital_order_created_email.html:112 -#: core/templates/digital_order_delivered_email.html:110 -#: core/templates/shipped_order_created_email.html:110 -#: core/templates/shipped_order_delivered_email.html:110 +#: engine/core/templates/digital_order_created_email.html:112 +#: engine/core/templates/digital_order_delivered_email.html:110 +#: engine/core/templates/shipped_order_created_email.html:110 +#: engine/core/templates/shipped_order_delivered_email.html:110 msgid "total" msgstr "Total" -#: core/templates/digital_order_created_email.html:125 -#: core/templates/digital_order_delivered_email.html:157 -#: core/templates/shipped_order_created_email.html:127 -#: core/templates/shipped_order_delivered_email.html:127 +#: engine/core/templates/digital_order_created_email.html:125 +#: engine/core/templates/digital_order_delivered_email.html:157 +#: engine/core/templates/shipped_order_created_email.html:127 +#: engine/core/templates/shipped_order_delivered_email.html:127 msgid "total price" msgstr "Total Harga" -#: core/templates/digital_order_created_email.html:131 -#: core/templates/shipped_order_created_email.html:140 -#: core/templates/shipped_order_delivered_email.html:140 +#: engine/core/templates/digital_order_created_email.html:131 +#: engine/core/templates/shipped_order_created_email.html:140 +#: engine/core/templates/shipped_order_delivered_email.html:140 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" @@ -2793,28 +2830,28 @@ msgstr "" "Jika Anda memiliki pertanyaan, jangan ragu untuk menghubungi dukungan kami " "di %(config.EMAIL_HOST_USER)s." -#: core/templates/digital_order_created_email.html:133 +#: engine/core/templates/digital_order_created_email.html:133 #, python-format msgid "best regards,
the %(config.PROJECT_NAME)s team" msgstr "Salam hormat, tim %(config.PROJECT_NAME)s" -#: core/templates/digital_order_created_email.html:139 -#: core/templates/digital_order_delivered_email.html:171 -#: core/templates/promocode_granted_email.html:114 +#: engine/core/templates/digital_order_created_email.html:139 +#: engine/core/templates/digital_order_delivered_email.html:171 +#: engine/core/templates/promocode_granted_email.html:114 msgid "all rights reserved" msgstr "Semua hak cipta dilindungi undang-undang" -#: core/templates/digital_order_delivered_email.html:99 +#: engine/core/templates/digital_order_delivered_email.html:99 msgid "order delivered" msgstr "Pesanan Dikirim" -#: core/templates/digital_order_delivered_email.html:100 -#: core/templates/promocode_granted_email.html:100 +#: engine/core/templates/digital_order_delivered_email.html:100 +#: engine/core/templates/promocode_granted_email.html:100 #, python-format msgid "hello %(user_first_name)s," msgstr "Halo %(user_first_name)s," -#: core/templates/digital_order_delivered_email.html:101 +#: engine/core/templates/digital_order_delivered_email.html:101 #, python-format msgid "" "we have successfully processed your order №%(order_uuid)s! below are the\n" @@ -2823,7 +2860,7 @@ msgstr "" "Kami telah berhasil memproses pesanan Anda №%(order_uuid)s! Di bawah ini " "adalah rincian pesanan Anda:" -#: core/templates/digital_order_delivered_email.html:128 +#: engine/core/templates/digital_order_delivered_email.html:128 msgid "" "additional\n" " information" @@ -2831,13 +2868,13 @@ msgstr "" "tambahan\n" " informasi" -#: core/templates/digital_order_delivered_email.html:137 -#: core/templates/json_table_widget.html:6 +#: engine/core/templates/digital_order_delivered_email.html:137 +#: engine/core/templates/json_table_widget.html:6 msgid "value" msgstr "Nilai" -#: core/templates/digital_order_delivered_email.html:163 -#: core/templates/promocode_granted_email.html:106 +#: engine/core/templates/digital_order_delivered_email.html:163 +#: engine/core/templates/promocode_granted_email.html:106 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" @@ -2846,60 +2883,62 @@ msgstr "" "Jika Anda memiliki pertanyaan, jangan ragu untuk menghubungi dukungan kami " "di %(contact_email)s." -#: core/templates/digital_order_delivered_email.html:165 -#: core/templates/promocode_granted_email.html:108 +#: engine/core/templates/digital_order_delivered_email.html:165 +#: engine/core/templates/promocode_granted_email.html:108 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "Salam hormat, tim %(project_name)s" -#: core/templates/json_table_widget.html:5 +#: engine/core/templates/json_table_widget.html:5 msgid "key" msgstr "Kunci" -#: core/templates/json_table_widget.html:40 +#: engine/core/templates/json_table_widget.html:40 msgid "Add Row" msgstr "Tambahkan Baris" -#: core/templates/promocode_granted_email.html:6 -#: core/templates/promocode_granted_email.html:99 +#: engine/core/templates/promocode_granted_email.html:6 +#: engine/core/templates/promocode_granted_email.html:99 msgid "promocode granted" msgstr "Kode promosi diberikan" -#: core/templates/promocode_granted_email.html:101 +#: engine/core/templates/promocode_granted_email.html:101 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" -#: core/templates/shipped_order_created_email.html:101 -#: core/templates/shipped_order_delivered_email.html:101 +#: 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 " "pembelian Anda. Di bawah ini adalah rincian pesanan Anda:" -#: core/templates/shipped_order_created_email.html:123 -#: core/templates/shipped_order_delivered_email.html:123 +#: engine/core/templates/shipped_order_created_email.html:123 +#: engine/core/templates/shipped_order_delivered_email.html:123 msgid "shipping price" msgstr "Harga pengiriman" -#: core/templates/shipped_order_created_email.html:133 -#: core/templates/shipped_order_delivered_email.html:133 +#: engine/core/templates/shipped_order_created_email.html:133 +#: engine/core/templates/shipped_order_delivered_email.html:133 msgid "your order will be delivered to the following address:" msgstr "Pesanan Anda akan dikirimkan ke alamat berikut:" -#: core/templates/shipped_order_created_email.html:142 -#: core/templates/shipped_order_delivered_email.html:142 +#: engine/core/templates/shipped_order_created_email.html:142 +#: engine/core/templates/shipped_order_delivered_email.html:142 #, python-format msgid "best regards,
The %(config.PROJECT_NAME)s team" msgstr "Salam hormat, Tim %(config.PROJECT_NAME)s" -#: core/templates/shipped_order_created_email.html:147 -#: core/templates/shipped_order_delivered_email.html:147 +#: engine/core/templates/shipped_order_created_email.html:147 +#: engine/core/templates/shipped_order_delivered_email.html:147 msgid "" "all rights\n" " reserved" @@ -2907,49 +2946,49 @@ msgstr "" "Semua hak cipta\n" " dilindungi undang-undang" -#: core/utils/caching.py:44 +#: engine/core/utils/caching.py:44 msgid "both data and timeout are required" msgstr "Data dan batas waktu diperlukan" -#: core/utils/caching.py:46 +#: engine/core/utils/caching.py:46 msgid "invalid timeout value, it must be between 0 and 216000 seconds" msgstr "Nilai batas waktu tidak valid, harus antara 0 dan 216000 detik" -#: core/utils/emailing.py:27 +#: engine/core/utils/emailing.py:27 #, python-brace-format msgid "{config.PROJECT_NAME} | contact us initiated" msgstr "{config.PROJECT_NAME} | hubungi kami dimulai" -#: core/utils/emailing.py:73 +#: engine/core/utils/emailing.py:73 #, python-brace-format msgid "{config.PROJECT_NAME} | order confirmation" msgstr "{config.PROJECT_NAME} | Konfirmasi Pesanan" -#: core/utils/emailing.py:105 +#: engine/core/utils/emailing.py:105 #, python-brace-format msgid "{config.PROJECT_NAME} | order delivered" msgstr "{config.PROJECT_NAME} | Pesanan Dikirim" -#: core/utils/emailing.py:188 +#: engine/core/utils/emailing.py:188 #, python-brace-format msgid "{config.PROJECT_NAME} | promocode granted" msgstr "{config.PROJECT_NAME} | kode promo diberikan" -#: core/utils/messages.py:3 +#: engine/core/utils/messages.py:3 msgid "you do not have permission to perform this action." msgstr "Anda tidak memiliki izin untuk melakukan tindakan ini." -#: core/utils/nominatim.py:8 +#: engine/core/utils/nominatim.py:8 msgid "NOMINATIM_URL must be configured." msgstr "Parameter NOMINATIM_URL harus dikonfigurasi!" -#: core/validators.py:16 +#: engine/core/validators.py:16 #, python-brace-format msgid "image dimensions should not exceed w{max_width} x h{max_height} pixels" msgstr "" "Dimensi gambar tidak boleh melebihi w{max_width} x h{max_height} piksel!" -#: core/views.py:72 +#: engine/core/views.py:71 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." @@ -2957,7 +2996,7 @@ msgstr "" "Menangani permintaan indeks peta situs dan mengembalikan respons XML. " "Memastikan respons menyertakan header jenis konten yang sesuai untuk XML." -#: core/views.py:87 +#: engine/core/views.py:86 msgid "" "Handles the detailed view response for a sitemap. This function processes " "the request, fetches the appropriate sitemap detail response, and sets the " @@ -2967,28 +3006,28 @@ msgstr "" "permintaan, mengambil respons detail peta situs yang sesuai, dan menetapkan " "header Jenis Konten untuk XML." -#: core/views.py:116 +#: engine/core/views.py:115 msgid "" "Returns a list of supported languages and their corresponding information." msgstr "Mengembalikan daftar bahasa yang didukung dan informasi terkait." -#: core/views.py:148 +#: engine/core/views.py:147 msgid "Returns the parameters of the website as a JSON object." msgstr "Mengembalikan parameter situs web sebagai objek JSON." -#: core/views.py:167 +#: engine/core/views.py:166 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." -#: core/views.py:194 +#: engine/core/views.py:193 msgid "Handles `contact us` form submissions." msgstr "Menangani pengiriman formulir `hubungi kami`." -#: core/views.py:215 +#: engine/core/views.py:214 msgid "" "Handles requests for processing and validating URLs from incoming POST " "requests." @@ -2996,54 +3035,62 @@ msgstr "" "Menangani permintaan untuk memproses dan memvalidasi URL dari permintaan " "POST yang masuk." -#: core/views.py:255 +#: engine/core/views.py:254 msgid "Handles global search queries." msgstr "Menangani kueri penelusuran global." -#: core/views.py:270 +#: engine/core/views.py:269 msgid "Handles the logic of buying as a business without registration." msgstr "Menangani logika pembelian sebagai bisnis tanpa registrasi." -#: core/views.py:306 +#: engine/core/views.py:305 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." -#: core/views.py:316 +#: engine/core/views.py:315 msgid "order_product_uuid is required" msgstr "order_product_uuid diperlukan" -#: core/views.py:322 +#: engine/core/views.py:321 msgid "you can only download the digital asset once" msgstr "Anda hanya dapat mengunduh aset digital sekali saja" -#: core/views.py:325 +#: engine/core/views.py:324 msgid "the order must be paid before downloading the digital asset" msgstr "pesanan harus dibayar sebelum mengunduh aset digital" -#: core/views.py:331 +#: engine/core/views.py:330 msgid "the order product does not have a product" msgstr "Produk pesanan tidak memiliki produk" -#: core/views.py:369 +#: engine/core/views.py:368 msgid "favicon not found" msgstr "favicon tidak ditemukan" -#: core/views.py:374 +#: engine/core/views.py:373 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." -#: core/views.py:386 +#: engine/core/views.py:385 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 " @@ -3051,11 +3098,11 @@ msgstr "" "admin Django. Fungsi ini menggunakan fungsi `redirect` Django untuk " "menangani pengalihan HTTP." -#: core/views.py:399 +#: engine/core/views.py:398 msgid "Returns current version of the eVibes. " msgstr "Mengembalikan versi eVibes saat ini." -#: core/viewsets.py:137 +#: engine/core/viewsets.py:137 msgid "" "Defines a viewset for managing Evibes-related operations. The EvibesViewSet " "class inherits from ModelViewSet and provides functionality for handling " @@ -3069,13 +3116,12 @@ msgstr "" "dukungan untuk kelas serializer dinamis berdasarkan tindakan saat ini, izin " "yang dapat disesuaikan, dan format rendering." -#: core/viewsets.py:157 +#: engine/core/viewsets.py:157 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, " @@ -3083,7 +3129,7 @@ msgstr "" "API aplikasi dan menyediakan cara standar untuk memproses permintaan dan " "respons untuk data AttributeGroup." -#: core/viewsets.py:176 +#: engine/core/viewsets.py:176 msgid "" "Handles operations related to Attribute objects within the application. " "Provides a set of API endpoints to interact with Attribute data. This class " @@ -3099,21 +3145,21 @@ msgstr "" "seperti pemfilteran berdasarkan bidang tertentu atau mengambil informasi " "yang terperinci versus yang disederhanakan tergantung pada permintaan." -#: core/viewsets.py:195 +#: engine/core/viewsets.py:195 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." -#: core/viewsets.py:214 +#: engine/core/viewsets.py:214 msgid "" "Manages views for Category-related operations. The CategoryViewSet class is " "responsible for handling operations related to the Category model in the " @@ -3122,12 +3168,12 @@ 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." -#: core/viewsets.py:326 +#: engine/core/viewsets.py:326 msgid "" "Represents a viewset for managing Brand instances. This class provides " "functionality for querying, filtering, and serializing Brand objects. It " @@ -3136,10 +3182,10 @@ 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." -#: core/viewsets.py:438 +#: engine/core/viewsets.py:438 msgid "" "Manages operations related to the `Product` model in the system. This class " "provides a viewset for managing products, including their filtering, " @@ -3150,14 +3196,14 @@ msgid "" "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 " +"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 " +"dengan kerangka kerja Django REST untuk operasi RESTful API. Termasuk metode " +"untuk mengambil detail produk, menerapkan izin, dan mengakses umpan balik " "terkait produk." -#: core/viewsets.py:568 +#: engine/core/viewsets.py:568 msgid "" "Represents a viewset for managing Vendor objects. This viewset allows " "fetching, filtering, and serializing Vendor data. It defines the queryset, " @@ -3172,31 +3218,31 @@ msgstr "" "adalah untuk menyediakan akses yang efisien ke sumber daya yang berhubungan " "dengan Vendor melalui kerangka kerja Django REST." -#: core/viewsets.py:588 +#: engine/core/viewsets.py:588 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 `EvibesViewSet` 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 " +"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 " "menggunakan sistem penyaringan Django untuk meminta data." -#: core/viewsets.py:615 +#: engine/core/viewsets.py:615 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 " @@ -3208,12 +3254,12 @@ msgstr "" "beberapa serializer berdasarkan tindakan spesifik yang dilakukan dan " "memberlakukan izin yang sesuai saat berinteraksi dengan data pesanan." -#: core/viewsets.py:813 +#: engine/core/viewsets.py:813 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 " @@ -3222,11 +3268,11 @@ msgstr "" "serializer berdasarkan tindakan yang diminta. Selain itu, ini menyediakan " "tindakan terperinci untuk menangani umpan balik pada instance OrderProduct" -#: core/viewsets.py:867 +#: engine/core/viewsets.py:867 msgid "Manages operations related to Product images in the application. " msgstr "Mengelola operasi yang terkait dengan gambar Produk dalam aplikasi." -#: core/viewsets.py:880 +#: engine/core/viewsets.py:880 msgid "" "Manages the retrieval and handling of PromoCode instances through various " "API actions." @@ -3234,33 +3280,33 @@ msgstr "" "Mengelola pengambilan dan penanganan contoh PromoCode melalui berbagai " "tindakan API." -#: core/viewsets.py:902 +#: engine/core/viewsets.py:902 msgid "Represents a view set for managing promotions. " msgstr "Merupakan set tampilan untuk mengelola promosi." -#: core/viewsets.py:915 +#: engine/core/viewsets.py:915 msgid "Handles operations related to Stock data in the system." msgstr "Menangani operasi yang terkait dengan data Stok di dalam sistem." -#: core/viewsets.py:929 +#: engine/core/viewsets.py:929 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." -#: core/viewsets.py:1044 +#: engine/core/viewsets.py:1044 msgid "" "This class provides viewset functionality for managing `Address` objects. " "The AddressViewSet class enables CRUD operations, filtering, and custom " @@ -3268,18 +3314,18 @@ 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." -#: core/viewsets.py:1111 +#: engine/core/viewsets.py:1111 #, python-brace-format msgid "Geocoding error: {e}" msgstr "Kesalahan pengodean geografis: {e}" -#: core/viewsets.py:1119 +#: engine/core/viewsets.py:1119 msgid "" "Handles operations related to Product Tags within the application. This " "class provides functionality for retrieving, filtering, and serializing " diff --git a/engine/core/locale/it_IT/LC_MESSAGES/django.mo b/engine/core/locale/it_IT/LC_MESSAGES/django.mo new file mode 100644 index 00000000..6ebebf8b Binary files /dev/null and b/engine/core/locale/it_IT/LC_MESSAGES/django.mo differ diff --git a/core/locale/it_IT/LC_MESSAGES/django.po b/engine/core/locale/it_IT/LC_MESSAGES/django.po similarity index 68% rename from core/locale/it_IT/LC_MESSAGES/django.po rename to engine/core/locale/it_IT/LC_MESSAGES/django.po index dfa3c17f..3681b6da 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,213 +13,216 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: core/abstract.py:12 +#: engine/core/abstract.py:12 msgid "unique id" msgstr "ID univoco" -#: core/abstract.py:13 +#: engine/core/abstract.py:13 msgid "unique id is used to surely identify any database object" msgstr "" "L'ID univoco viene utilizzato per identificare con certezza qualsiasi " "oggetto del database." -#: core/abstract.py:20 +#: engine/core/abstract.py:20 msgid "is active" msgstr "È attivo" -#: core/abstract.py:21 +#: engine/core/abstract.py:21 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." -#: core/abstract.py:23 core/choices.py:18 +#: engine/core/abstract.py:23 engine/core/choices.py:18 msgid "created" msgstr "Creato" -#: core/abstract.py:23 +#: engine/core/abstract.py:23 msgid "when the object first appeared on the database" msgstr "Quando l'oggetto è apparso per la prima volta nel database" -#: core/abstract.py:24 +#: engine/core/abstract.py:24 msgid "modified" msgstr "Modificato" -#: core/abstract.py:24 +#: engine/core/abstract.py:24 msgid "when the object was last modified" msgstr "Quando l'oggetto è stato modificato per l'ultima volta" -#: core/admin.py:68 +#: engine/core/admin.py:68 msgid "translations" msgstr "Traduzioni" -#: core/admin.py:72 +#: engine/core/admin.py:72 msgid "general" msgstr "Generale" -#: core/admin.py:74 +#: engine/core/admin.py:74 msgid "relations" msgstr "Relazioni" -#: core/admin.py:76 +#: engine/core/admin.py:76 msgid "additional info" msgstr "informazioni aggiuntive" -#: core/admin.py:94 +#: engine/core/admin.py:94 msgid "metadata" msgstr "Metadati" -#: core/admin.py:101 +#: engine/core/admin.py:101 msgid "timestamps" msgstr "Timestamp" -#: core/admin.py:116 +#: engine/core/admin.py:116 #, python-format msgid "activate selected %(verbose_name_plural)s" msgstr "Attivare il %(verbose_name_plural)s selezionato" -#: core/admin.py:121 +#: engine/core/admin.py:121 msgid "selected items have been activated." msgstr "Gli articoli selezionati sono stati attivati!" -#: core/admin.py:127 +#: engine/core/admin.py:127 #, python-format msgid "deactivate selected %(verbose_name_plural)s" msgstr "Disattivare il %(verbose_name_plural)s selezionato" -#: core/admin.py:132 +#: engine/core/admin.py:132 msgid "selected items have been deactivated." msgstr "Gli articoli selezionati sono stati disattivati!" -#: core/admin.py:144 core/graphene/object_types.py:582 -#: core/graphene/object_types.py:589 core/models.py:783 core/models.py:791 +#: engine/core/admin.py:144 engine/core/graphene/object_types.py:586 +#: engine/core/graphene/object_types.py:593 engine/core/models.py:794 +#: engine/core/models.py:802 msgid "attribute value" msgstr "Valore dell'attributo" -#: core/admin.py:145 core/graphene/object_types.py:75 core/models.py:792 +#: engine/core/admin.py:145 engine/core/graphene/object_types.py:75 +#: engine/core/models.py:803 msgid "attribute values" msgstr "Valori degli attributi" -#: core/admin.py:156 +#: engine/core/admin.py:156 msgid "image" msgstr "Immagine" -#: core/admin.py:157 core/graphene/object_types.py:474 +#: engine/core/admin.py:157 engine/core/graphene/object_types.py:474 msgid "images" msgstr "Immagini" -#: core/admin.py:168 core/models.py:559 +#: engine/core/admin.py:169 engine/core/models.py:559 msgid "stock" msgstr "Stock" -#: core/admin.py:169 core/graphene/object_types.py:636 +#: engine/core/admin.py:170 engine/core/graphene/object_types.py:640 msgid "stocks" msgstr "Le scorte" -#: core/admin.py:182 core/models.py:1744 +#: engine/core/admin.py:183 engine/core/models.py:1804 msgid "order product" msgstr "Ordina il prodotto" -#: core/admin.py:183 core/graphene/object_types.py:389 core/models.py:1745 +#: engine/core/admin.py:184 engine/core/graphene/object_types.py:389 +#: engine/core/models.py:1805 msgid "order products" msgstr "Ordinare i prodotti" -#: core/admin.py:196 core/admin.py:197 +#: engine/core/admin.py:197 engine/core/admin.py:198 msgid "children" msgstr "I bambini" -#: core/admin.py:965 +#: engine/core/admin.py:969 msgid "Config" msgstr "Configurazione" -#: core/apps.py:8 +#: engine/core/apps.py:8 msgid "core" msgstr "Nucleo" -#: core/choices.py:4 core/choices.py:20 +#: engine/core/choices.py:4 engine/core/choices.py:20 msgid "finished" msgstr "Finito" -#: core/choices.py:5 core/choices.py:19 +#: engine/core/choices.py:5 engine/core/choices.py:19 msgid "delivering" msgstr "Consegnare" -#: core/choices.py:6 +#: engine/core/choices.py:6 msgid "delivered" msgstr "Consegnato" -#: core/choices.py:7 +#: engine/core/choices.py:7 msgid "canceled" msgstr "Annullato" -#: core/choices.py:8 core/choices.py:16 core/choices.py:24 +#: engine/core/choices.py:8 engine/core/choices.py:16 engine/core/choices.py:24 msgid "failed" msgstr "Fallito" -#: core/choices.py:9 core/choices.py:15 +#: engine/core/choices.py:9 engine/core/choices.py:15 msgid "pending" msgstr "In attesa" -#: core/choices.py:10 +#: engine/core/choices.py:10 msgid "accepted" msgstr "Accettato" -#: core/choices.py:11 +#: engine/core/choices.py:11 msgid "money returned" msgstr "Denaro restituito" -#: core/choices.py:17 +#: engine/core/choices.py:17 msgid "payment" msgstr "Pagamento" -#: core/choices.py:21 +#: engine/core/choices.py:21 msgid "momental" msgstr "Momentale" -#: core/choices.py:24 +#: engine/core/choices.py:24 msgid "successful" msgstr "Successo" -#: core/docs/drf/views.py:17 core/graphene/mutations.py:38 +#: engine/core/docs/drf/views.py:17 engine/core/graphene/mutations.py:38 msgid "cache I/O" msgstr "I/O della cache" -#: core/docs/drf/views.py:19 +#: engine/core/docs/drf/views.py:19 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 "" "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." -#: core/docs/drf/views.py:32 +#: engine/core/docs/drf/views.py:32 msgid "get a list of supported languages" msgstr "Ottenere un elenco delle lingue supportate" -#: core/docs/drf/views.py:41 +#: engine/core/docs/drf/views.py:41 msgid "get application's exposable parameters" msgstr "Ottenere i parametri esponibili dell'applicazione" -#: core/docs/drf/views.py:48 +#: engine/core/docs/drf/views.py:48 msgid "send a message to the support team" msgstr "Inviate un messaggio al team di assistenza" -#: core/docs/drf/views.py:59 core/graphene/mutations.py:58 +#: engine/core/docs/drf/views.py:59 engine/core/graphene/mutations.py:58 msgid "request a CORSed URL" msgstr "Richiedere un URL CORSed. È consentito solo https." -#: core/docs/drf/views.py:85 +#: engine/core/docs/drf/views.py:85 msgid "global search endpoint to query across project's tables" msgstr "" "Endpoint di ricerca globale per interrogare tutte le tabelle del progetto" -#: core/docs/drf/views.py:91 +#: engine/core/docs/drf/views.py:91 msgid "purchase an order as a business" msgstr "Acquistare un ordine come azienda" -#: core/docs/drf/views.py:98 +#: engine/core/docs/drf/views.py:98 msgid "" "purchase an order as a business, using the provided `products` with " "`product_uuid` and `attributes`." @@ -227,246 +230,249 @@ msgstr "" "Acquistare un ordine come azienda, utilizzando i `prodotti` forniti con " "`product_uuid` e `attributi`." -#: core/docs/drf/viewsets.py:58 +#: engine/core/docs/drf/viewsets.py:58 msgid "list all attribute groups (simple view)" msgstr "Elenco di tutti i gruppi di attributi (vista semplice)" -#: core/docs/drf/viewsets.py:62 +#: engine/core/docs/drf/viewsets.py:62 msgid "retrieve a single attribute group (detailed view)" msgstr "Recuperare un singolo gruppo di attributi (vista dettagliata)" -#: core/docs/drf/viewsets.py:66 +#: engine/core/docs/drf/viewsets.py:66 msgid "create an attribute group" msgstr "Creare un gruppo di attributi" -#: core/docs/drf/viewsets.py:70 +#: engine/core/docs/drf/viewsets.py:70 msgid "delete an attribute group" msgstr "Cancellare un gruppo di attributi" -#: core/docs/drf/viewsets.py:74 +#: engine/core/docs/drf/viewsets.py:74 msgid "rewrite an existing attribute group saving non-editables" msgstr "" "Riscrivere un gruppo di attributi esistente salvando i non modificabili" -#: core/docs/drf/viewsets.py:78 -msgid "" -"rewrite some fields of an existing attribute group saving non-editables" +#: engine/core/docs/drf/viewsets.py:78 +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" -#: core/docs/drf/viewsets.py:85 +#: engine/core/docs/drf/viewsets.py:85 msgid "list all attributes (simple view)" msgstr "Elenco di tutti gli attributi (vista semplice)" -#: core/docs/drf/viewsets.py:89 +#: engine/core/docs/drf/viewsets.py:89 msgid "retrieve a single attribute (detailed view)" msgstr "Recuperare un singolo attributo (vista dettagliata)" -#: core/docs/drf/viewsets.py:93 +#: engine/core/docs/drf/viewsets.py:93 msgid "create an attribute" msgstr "Creare un attributo" -#: core/docs/drf/viewsets.py:97 +#: engine/core/docs/drf/viewsets.py:97 msgid "delete an attribute" msgstr "Cancellare un attributo" -#: core/docs/drf/viewsets.py:101 +#: engine/core/docs/drf/viewsets.py:101 msgid "rewrite an existing attribute saving non-editables" msgstr "" "Riscrivere un attributo esistente salvando gli elementi non modificabili" -#: core/docs/drf/viewsets.py:105 +#: engine/core/docs/drf/viewsets.py:105 msgid "rewrite some fields of an existing attribute saving non-editables" msgstr "" "Riscrivere alcuni campi di un attributo esistente salvando i campi non " "modificabili" -#: core/docs/drf/viewsets.py:112 +#: engine/core/docs/drf/viewsets.py:112 msgid "list all attribute values (simple view)" msgstr "Elenco di tutti i valori degli attributi (vista semplice)" -#: core/docs/drf/viewsets.py:116 +#: engine/core/docs/drf/viewsets.py:116 msgid "retrieve a single attribute value (detailed view)" msgstr "Recuperare il valore di un singolo attributo (vista dettagliata)" -#: core/docs/drf/viewsets.py:120 +#: engine/core/docs/drf/viewsets.py:120 msgid "create an attribute value" msgstr "Creare un valore di attributo" -#: core/docs/drf/viewsets.py:124 +#: engine/core/docs/drf/viewsets.py:124 msgid "delete an attribute value" msgstr "Cancellare il valore di un attributo" -#: core/docs/drf/viewsets.py:128 +#: engine/core/docs/drf/viewsets.py:128 msgid "rewrite an existing attribute value saving non-editables" msgstr "" "Riscrivere il valore di un attributo esistente salvando gli elementi non " "modificabili" -#: core/docs/drf/viewsets.py:132 -msgid "" -"rewrite some fields of an existing attribute value saving non-editables" +#: engine/core/docs/drf/viewsets.py:132 +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" -#: core/docs/drf/viewsets.py:139 core/docs/drf/viewsets.py:140 +#: engine/core/docs/drf/viewsets.py:139 engine/core/docs/drf/viewsets.py:140 msgid "list all categories (simple view)" msgstr "Elenco di tutte le categorie (visualizzazione semplice)" -#: core/docs/drf/viewsets.py:144 core/docs/drf/viewsets.py:145 +#: engine/core/docs/drf/viewsets.py:144 engine/core/docs/drf/viewsets.py:145 msgid "retrieve a single category (detailed view)" msgstr "Recuperare una singola categoria (vista dettagliata)" -#: core/docs/drf/viewsets.py:149 core/docs/drf/viewsets.py:150 +#: engine/core/docs/drf/viewsets.py:150 engine/core/docs/drf/viewsets.py:183 +msgid "Category UUID or slug" +msgstr "UUID o slug della categoria" + +#: engine/core/docs/drf/viewsets.py:157 engine/core/docs/drf/viewsets.py:158 msgid "create a category" msgstr "Creare una categoria" -#: core/docs/drf/viewsets.py:154 core/docs/drf/viewsets.py:155 +#: engine/core/docs/drf/viewsets.py:162 engine/core/docs/drf/viewsets.py:163 msgid "delete a category" msgstr "Eliminare una categoria" -#: core/docs/drf/viewsets.py:159 core/docs/drf/viewsets.py:160 +#: engine/core/docs/drf/viewsets.py:167 engine/core/docs/drf/viewsets.py:168 msgid "rewrite an existing category saving non-editables" msgstr "" "Riscrivere una categoria esistente salvando gli elementi non modificabili" -#: core/docs/drf/viewsets.py:164 core/docs/drf/viewsets.py:165 +#: engine/core/docs/drf/viewsets.py:172 engine/core/docs/drf/viewsets.py:173 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" -#: core/docs/drf/viewsets.py:169 core/docs/drf/viewsets.py:501 -#: core/graphene/object_types.py:117 core/graphene/object_types.py:207 -#: core/graphene/object_types.py:482 +#: engine/core/docs/drf/viewsets.py:177 engine/core/docs/drf/viewsets.py:517 +#: engine/core/graphene/object_types.py:117 +#: engine/core/graphene/object_types.py:207 +#: engine/core/graphene/object_types.py:482 msgid "SEO Meta snapshot" msgstr "Meta-immagine SEO" -#: core/docs/drf/viewsets.py:170 +#: engine/core/docs/drf/viewsets.py:178 msgid "returns a snapshot of the category's SEO meta data" msgstr "Restituisce un'istantanea dei meta-dati SEO della categoria." -#: core/docs/drf/viewsets.py:175 -msgid "Category UUID or slug" -msgstr "UUID o slug della categoria" - -#: core/docs/drf/viewsets.py:188 +#: engine/core/docs/drf/viewsets.py:196 msgid "list all orders (simple view)" msgstr "Elenco di tutte le categorie (visualizzazione semplice)" -#: core/docs/drf/viewsets.py:189 +#: engine/core/docs/drf/viewsets.py:197 msgid "for non-staff users, only their own orders are returned." msgstr "" "Per gli utenti che non fanno parte del personale, vengono restituiti solo i " "loro ordini." -#: core/docs/drf/viewsets.py:195 +#: engine/core/docs/drf/viewsets.py:203 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" -#: core/docs/drf/viewsets.py:202 +#: engine/core/docs/drf/viewsets.py:210 msgid "Filter orders with buy_time >= this ISO 8601 datetime" msgstr "Filtra gli ordini con buy_time >= questa data ISO 8601" -#: core/docs/drf/viewsets.py:207 +#: engine/core/docs/drf/viewsets.py:215 msgid "Filter orders with buy_time <= this ISO 8601 datetime" msgstr "Filtra gli ordini con buy_time <= questa data ISO 8601" -#: core/docs/drf/viewsets.py:212 +#: engine/core/docs/drf/viewsets.py:220 msgid "Filter by exact order UUID" msgstr "Filtrare per UUID dell'ordine esatto" -#: core/docs/drf/viewsets.py:217 +#: engine/core/docs/drf/viewsets.py:225 msgid "Filter by exact human-readable order ID" msgstr "Filtrare in base all'ID esatto dell'ordine leggibile dall'uomo" -#: core/docs/drf/viewsets.py:222 +#: engine/core/docs/drf/viewsets.py:230 msgid "Filter by user's email (case-insensitive exact match)" msgstr "" "Filtro per e-mail dell'utente (corrispondenza esatta senza distinzione tra " "maiuscole e minuscole)" -#: core/docs/drf/viewsets.py:227 +#: engine/core/docs/drf/viewsets.py:235 msgid "Filter by user's UUID" msgstr "Filtrare per UUID dell'utente" -#: core/docs/drf/viewsets.py:232 +#: engine/core/docs/drf/viewsets.py:240 msgid "Filter by order status (case-insensitive substring match)" msgstr "" "Filtrare per stato dell'ordine (corrispondenza di sottostringhe senza " "distinzione tra maiuscole e minuscole)" -#: core/docs/drf/viewsets.py:238 +#: engine/core/docs/drf/viewsets.py:246 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 " "decrescita (ad esempio, '-buy_time')." -#: core/docs/drf/viewsets.py:247 +#: engine/core/docs/drf/viewsets.py:255 msgid "retrieve a single order (detailed view)" msgstr "Recuperare una singola categoria (vista dettagliata)" -#: core/docs/drf/viewsets.py:251 +#: engine/core/docs/drf/viewsets.py:260 +msgid "Order UUID or human-readable id" +msgstr "UUID dell'ordine o id leggibile dall'uomo" + +#: engine/core/docs/drf/viewsets.py:267 msgid "create an order" msgstr "Creare un attributo" -#: core/docs/drf/viewsets.py:252 +#: engine/core/docs/drf/viewsets.py:268 msgid "doesn't work for non-staff users." msgstr "Non funziona per gli utenti che non fanno parte del personale." -#: core/docs/drf/viewsets.py:256 +#: engine/core/docs/drf/viewsets.py:272 msgid "delete an order" msgstr "Cancellare un attributo" -#: core/docs/drf/viewsets.py:260 +#: engine/core/docs/drf/viewsets.py:276 msgid "rewrite an existing order saving non-editables" msgstr "" "Riscrivere una categoria esistente salvando gli elementi non modificabili" -#: core/docs/drf/viewsets.py:264 +#: engine/core/docs/drf/viewsets.py:280 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" -#: core/docs/drf/viewsets.py:268 +#: engine/core/docs/drf/viewsets.py:284 msgid "purchase an order" msgstr "Prezzo di acquisto al momento dell'ordine" -#: core/docs/drf/viewsets.py:270 +#: engine/core/docs/drf/viewsets.py:286 msgid "" "finalizes the order purchase. if `force_balance` is used, the purchase is " "completed using the user's balance; if `force_payment` is used, a " "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." -#: core/docs/drf/viewsets.py:282 core/graphene/mutations.py:335 +#: engine/core/docs/drf/viewsets.py:298 engine/core/graphene/mutations.py:335 msgid "purchase an order without account creation" msgstr "acquistare un ordine senza creare un account" -#: core/docs/drf/viewsets.py:283 +#: engine/core/docs/drf/viewsets.py:299 msgid "finalizes the order purchase for a non-registered user." msgstr "finalizza l'acquisto dell'ordine per un utente non registrato." -#: core/docs/drf/viewsets.py:291 +#: engine/core/docs/drf/viewsets.py:307 msgid "add product to order" msgstr "Aggiungere un prodotto all'ordine" -#: core/docs/drf/viewsets.py:292 +#: engine/core/docs/drf/viewsets.py:308 msgid "" "adds a product to an order using the provided `product_uuid` and " "`attributes`." @@ -474,13 +480,13 @@ msgstr "" "Aggiunge un prodotto a un ordine utilizzando il `product_uuid` e gli " "`attributi` forniti." -#: core/docs/drf/viewsets.py:297 +#: engine/core/docs/drf/viewsets.py:313 msgid "add a list of products to order, quantities will not count" msgstr "" "Aggiungete un elenco di prodotti da ordinare, le quantità non vengono " "conteggiate" -#: core/docs/drf/viewsets.py:298 +#: engine/core/docs/drf/viewsets.py:314 msgid "" "adds a list of products to an order using the provided `product_uuid` and " "`attributes`." @@ -488,11 +494,11 @@ msgstr "" "Aggiunge un elenco di prodotti a un ordine, utilizzando il `product_uuid` e " "gli `attributi` forniti." -#: core/docs/drf/viewsets.py:303 +#: engine/core/docs/drf/viewsets.py:319 msgid "remove product from order" msgstr "Rimuovere un prodotto dall'ordine" -#: core/docs/drf/viewsets.py:304 +#: engine/core/docs/drf/viewsets.py:320 msgid "" "removes a product from an order using the provided `product_uuid` and " "`attributes`." @@ -500,12 +506,12 @@ msgstr "" "Rimuove un prodotto da un ordine utilizzando il `product_uuid` e gli " "`attributi` forniti." -#: core/docs/drf/viewsets.py:309 +#: engine/core/docs/drf/viewsets.py:325 msgid "remove product from order, quantities will not count" msgstr "" "Rimuovete un prodotto dall'ordine, le quantità non verranno conteggiate" -#: core/docs/drf/viewsets.py:310 +#: engine/core/docs/drf/viewsets.py:326 msgid "" "removes a list of products from an order using the provided `product_uuid` " "and `attributes`" @@ -513,807 +519,830 @@ msgstr "" "Rimuove un elenco di prodotti da un ordine utilizzando il `product_uuid` e " "gli `attributi` forniti." -#: core/docs/drf/viewsets.py:318 +#: engine/core/docs/drf/viewsets.py:334 msgid "list all wishlists (simple view)" msgstr "Elenco di tutti gli attributi (vista semplice)" -#: core/docs/drf/viewsets.py:319 +#: engine/core/docs/drf/viewsets.py:335 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." -#: core/docs/drf/viewsets.py:323 +#: engine/core/docs/drf/viewsets.py:339 msgid "retrieve a single wishlist (detailed view)" msgstr "Recuperare un singolo attributo (vista dettagliata)" -#: core/docs/drf/viewsets.py:327 +#: engine/core/docs/drf/viewsets.py:343 msgid "create an wishlist" msgstr "Creare un attributo" -#: core/docs/drf/viewsets.py:328 +#: engine/core/docs/drf/viewsets.py:344 msgid "Doesn't work for non-staff users." msgstr "Non funziona per gli utenti che non fanno parte del personale." -#: core/docs/drf/viewsets.py:332 +#: engine/core/docs/drf/viewsets.py:348 msgid "delete an wishlist" msgstr "Cancellare un attributo" -#: core/docs/drf/viewsets.py:336 +#: engine/core/docs/drf/viewsets.py:352 msgid "rewrite an existing wishlist saving non-editables" msgstr "" "Riscrivere un attributo esistente salvando gli elementi non modificabili" -#: core/docs/drf/viewsets.py:340 +#: engine/core/docs/drf/viewsets.py:356 msgid "rewrite some fields of an existing wishlist saving non-editables" msgstr "" "Riscrivere alcuni campi di un attributo esistente salvando i campi non " "modificabili" -#: core/docs/drf/viewsets.py:344 +#: engine/core/docs/drf/viewsets.py:360 msgid "add product to wishlist" msgstr "Aggiungere un prodotto all'ordine" -#: core/docs/drf/viewsets.py:345 +#: engine/core/docs/drf/viewsets.py:361 msgid "adds a product to an wishlist using the provided `product_uuid`" msgstr "" "Aggiunge un prodotto a una lista dei desideri utilizzando il `product_uuid` " "fornito." -#: core/docs/drf/viewsets.py:350 +#: engine/core/docs/drf/viewsets.py:366 msgid "remove product from wishlist" msgstr "Rimuovere un prodotto dalla lista dei desideri" -#: core/docs/drf/viewsets.py:351 +#: engine/core/docs/drf/viewsets.py:367 msgid "removes a product from an wishlist using the provided `product_uuid`" msgstr "" "Rimuove un prodotto da una wishlist utilizzando il `product_uuid` fornito." -#: core/docs/drf/viewsets.py:356 +#: engine/core/docs/drf/viewsets.py:372 msgid "add many products to wishlist" msgstr "Aggiungere molti prodotti alla lista dei desideri" -#: core/docs/drf/viewsets.py:357 +#: engine/core/docs/drf/viewsets.py:373 msgid "adds many products to an wishlist using the provided `product_uuids`" msgstr "" "Aggiunge molti prodotti a una lista dei desideri utilizzando i " "`product_uuids` forniti." -#: core/docs/drf/viewsets.py:362 +#: engine/core/docs/drf/viewsets.py:378 msgid "remove many products from wishlist" msgstr "Rimuovere un prodotto dall'ordine" -#: core/docs/drf/viewsets.py:363 +#: engine/core/docs/drf/viewsets.py:379 msgid "" "removes many products from an wishlist using the provided `product_uuids`" msgstr "" "Rimuove molti prodotti da una lista di desideri utilizzando i " "`product_uuids` forniti." -#: core/docs/drf/viewsets.py:370 +#: engine/core/docs/drf/viewsets.py:386 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`" -#: core/docs/drf/viewsets.py:386 core/docs/drf/viewsets.py:387 +#: engine/core/docs/drf/viewsets.py:402 engine/core/docs/drf/viewsets.py:403 msgid "list all products (simple view)" msgstr "Elenco di tutti i prodotti (visualizzazione semplice)" -#: core/docs/drf/viewsets.py:392 +#: engine/core/docs/drf/viewsets.py:408 msgid "(exact) Product UUID" msgstr "(esatto) UUID del prodotto" -#: core/docs/drf/viewsets.py:399 +#: engine/core/docs/drf/viewsets.py:415 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" -#: core/docs/drf/viewsets.py:413 core/docs/drf/viewsets.py:414 +#: engine/core/docs/drf/viewsets.py:429 engine/core/docs/drf/viewsets.py:430 msgid "retrieve a single product (detailed view)" msgstr "Recuperare un singolo prodotto (vista dettagliata)" -#: core/docs/drf/viewsets.py:419 core/docs/drf/viewsets.py:443 -#: core/docs/drf/viewsets.py:459 core/docs/drf/viewsets.py:475 -#: core/docs/drf/viewsets.py:491 core/docs/drf/viewsets.py:507 +#: engine/core/docs/drf/viewsets.py:435 engine/core/docs/drf/viewsets.py:459 +#: engine/core/docs/drf/viewsets.py:475 engine/core/docs/drf/viewsets.py:491 +#: engine/core/docs/drf/viewsets.py:507 engine/core/docs/drf/viewsets.py:523 msgid "Product UUID or slug" msgstr "UUID o Slug del prodotto" -#: core/docs/drf/viewsets.py:429 core/docs/drf/viewsets.py:430 +#: engine/core/docs/drf/viewsets.py:445 engine/core/docs/drf/viewsets.py:446 msgid "create a product" msgstr "Creare un prodotto" -#: core/docs/drf/viewsets.py:437 core/docs/drf/viewsets.py:438 +#: engine/core/docs/drf/viewsets.py:453 engine/core/docs/drf/viewsets.py:454 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" -#: core/docs/drf/viewsets.py:453 core/docs/drf/viewsets.py:454 +#: engine/core/docs/drf/viewsets.py:469 engine/core/docs/drf/viewsets.py:470 msgid "" "update some fields of an existing product, preserving non-editable fields" msgstr "" "Aggiornare alcuni campi di un prodotto esistente, preservando i campi non " "modificabili" -#: core/docs/drf/viewsets.py:469 core/docs/drf/viewsets.py:470 +#: engine/core/docs/drf/viewsets.py:485 engine/core/docs/drf/viewsets.py:486 msgid "delete a product" msgstr "Eliminare un prodotto" -#: core/docs/drf/viewsets.py:485 core/docs/drf/viewsets.py:486 +#: engine/core/docs/drf/viewsets.py:501 engine/core/docs/drf/viewsets.py:502 msgid "lists all permitted feedbacks for a product" msgstr "elenca tutti i feedback consentiti per un prodotto" -#: core/docs/drf/viewsets.py:502 +#: engine/core/docs/drf/viewsets.py:518 msgid "returns a snapshot of the product's SEO meta data" msgstr "Restituisce un'istantanea dei meta-dati SEO del prodotto." -#: core/docs/drf/viewsets.py:520 +#: engine/core/docs/drf/viewsets.py:536 msgid "list all addresses" msgstr "Elenco di tutti gli indirizzi" -#: core/docs/drf/viewsets.py:527 +#: engine/core/docs/drf/viewsets.py:543 msgid "retrieve a single address" msgstr "Recuperare un singolo indirizzo" -#: core/docs/drf/viewsets.py:534 +#: engine/core/docs/drf/viewsets.py:550 msgid "create a new address" msgstr "Creare un nuovo indirizzo" -#: core/docs/drf/viewsets.py:542 +#: engine/core/docs/drf/viewsets.py:558 msgid "delete an address" msgstr "Cancellare un indirizzo" -#: core/docs/drf/viewsets.py:549 +#: engine/core/docs/drf/viewsets.py:565 msgid "update an entire address" msgstr "Aggiornare un intero indirizzo" -#: core/docs/drf/viewsets.py:557 +#: engine/core/docs/drf/viewsets.py:573 msgid "partially update an address" msgstr "Aggiornare parzialmente un indirizzo" -#: core/docs/drf/viewsets.py:565 +#: engine/core/docs/drf/viewsets.py:581 msgid "autocomplete address suggestions" msgstr "Inserimento automatico dell'indirizzo" -#: core/docs/drf/viewsets.py:570 +#: engine/core/docs/drf/viewsets.py:586 msgid "raw data query string, please append with data from geo-IP endpoint" msgstr "" "Stringa di query dei dati grezzi, da aggiungere ai dati dell'endpoint geo-IP" -#: core/docs/drf/viewsets.py:576 +#: engine/core/docs/drf/viewsets.py:592 msgid "limit the results amount, 1 < limit < 10, default: 5" msgstr "limita la quantità di risultati, 1 < limite < 10, default: 5" -#: core/docs/drf/viewsets.py:589 +#: engine/core/docs/drf/viewsets.py:605 msgid "list all feedbacks (simple view)" msgstr "elencare tutti i feedback (vista semplice)" -#: core/docs/drf/viewsets.py:593 +#: engine/core/docs/drf/viewsets.py:609 msgid "retrieve a single feedback (detailed view)" msgstr "recuperare un singolo feedback (vista dettagliata)" -#: core/docs/drf/viewsets.py:597 +#: engine/core/docs/drf/viewsets.py:613 msgid "create a feedback" msgstr "creare un feedback" -#: core/docs/drf/viewsets.py:601 +#: engine/core/docs/drf/viewsets.py:617 msgid "delete a feedback" msgstr "eliminare un feedback" -#: core/docs/drf/viewsets.py:605 +#: engine/core/docs/drf/viewsets.py:621 msgid "rewrite an existing feedback saving non-editables" msgstr "" "Riscrivere una categoria esistente salvando gli elementi non modificabili" -#: core/docs/drf/viewsets.py:609 +#: engine/core/docs/drf/viewsets.py:625 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" -#: core/docs/drf/viewsets.py:616 +#: engine/core/docs/drf/viewsets.py:632 msgid "list all order–product relations (simple view)" msgstr "elencare tutte le relazioni ordine-prodotto (vista semplice)" -#: core/docs/drf/viewsets.py:623 +#: engine/core/docs/drf/viewsets.py:639 msgid "retrieve a single order–product relation (detailed view)" msgstr "recuperare una singola relazione ordine-prodotto (vista dettagliata)" -#: core/docs/drf/viewsets.py:630 +#: engine/core/docs/drf/viewsets.py:646 msgid "create a new order–product relation" msgstr "creare una nuova relazione ordine-prodotto" -#: core/docs/drf/viewsets.py:637 +#: engine/core/docs/drf/viewsets.py:653 msgid "replace an existing order–product relation" msgstr "sostituire una relazione ordine-prodotto esistente" -#: core/docs/drf/viewsets.py:644 +#: engine/core/docs/drf/viewsets.py:660 msgid "partially update an existing order–product relation" msgstr "aggiornare parzialmente una relazione ordine-prodotto esistente" -#: core/docs/drf/viewsets.py:651 +#: engine/core/docs/drf/viewsets.py:667 msgid "delete an order–product relation" msgstr "eliminare una relazione ordine-prodotto" -#: core/docs/drf/viewsets.py:658 +#: engine/core/docs/drf/viewsets.py:674 msgid "add or remove feedback on an order–product relation" msgstr "aggiungere o rimuovere un feedback su una relazione ordine-prodotto" -#: core/docs/drf/viewsets.py:672 +#: engine/core/docs/drf/viewsets.py:688 msgid "list all brands (simple view)" msgstr "Elenco di tutti i marchi (visualizzazione semplice)" -#: core/docs/drf/viewsets.py:676 +#: engine/core/docs/drf/viewsets.py:692 msgid "retrieve a single brand (detailed view)" msgstr "Recuperare un singolo marchio (vista dettagliata)" -#: core/docs/drf/viewsets.py:680 +#: engine/core/docs/drf/viewsets.py:697 engine/core/docs/drf/viewsets.py:725 +msgid "Brand UUID or slug" +msgstr "UUID o slug del marchio" + +#: engine/core/docs/drf/viewsets.py:704 msgid "create a brand" msgstr "Creare un marchio" -#: core/docs/drf/viewsets.py:684 +#: engine/core/docs/drf/viewsets.py:708 msgid "delete a brand" msgstr "Eliminare un marchio" -#: core/docs/drf/viewsets.py:688 +#: engine/core/docs/drf/viewsets.py:712 msgid "rewrite an existing brand saving non-editables" msgstr "" "Riscrivere una categoria esistente salvando gli elementi non modificabili" -#: core/docs/drf/viewsets.py:692 +#: engine/core/docs/drf/viewsets.py:716 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" -#: core/docs/drf/viewsets.py:696 +#: engine/core/docs/drf/viewsets.py:720 msgid "SEO Meta snapshot for brand" msgstr "Meta-immagine SEO per il marchio" -#: core/docs/drf/viewsets.py:703 +#: engine/core/docs/drf/viewsets.py:735 msgid "list all vendors (simple view)" msgstr "Elenco di tutti i fornitori (vista semplice)" -#: core/docs/drf/viewsets.py:707 +#: engine/core/docs/drf/viewsets.py:739 msgid "retrieve a single vendor (detailed view)" msgstr "Recuperare un singolo fornitore (vista dettagliata)" -#: core/docs/drf/viewsets.py:711 +#: engine/core/docs/drf/viewsets.py:743 msgid "create a vendor" msgstr "Create a vendor" -#: core/docs/drf/viewsets.py:715 +#: engine/core/docs/drf/viewsets.py:747 msgid "delete a vendor" msgstr "Eliminare un fornitore" -#: core/docs/drf/viewsets.py:719 +#: engine/core/docs/drf/viewsets.py:751 msgid "rewrite an existing vendor saving non-editables" msgstr "" "Riscrivere una categoria esistente salvando gli elementi non modificabili" -#: core/docs/drf/viewsets.py:723 +#: engine/core/docs/drf/viewsets.py:755 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" -#: core/docs/drf/viewsets.py:730 +#: engine/core/docs/drf/viewsets.py:762 msgid "list all product images (simple view)" msgstr "Elenco di tutte le immagini dei prodotti (visualizzazione semplice)" -#: core/docs/drf/viewsets.py:734 +#: engine/core/docs/drf/viewsets.py:766 msgid "retrieve a single product image (detailed view)" msgstr "Recuperare l'immagine di un singolo prodotto (vista dettagliata)" -#: core/docs/drf/viewsets.py:738 +#: engine/core/docs/drf/viewsets.py:770 msgid "create a product image" msgstr "Creare un'immagine del prodotto" -#: core/docs/drf/viewsets.py:742 +#: engine/core/docs/drf/viewsets.py:774 msgid "delete a product image" msgstr "Eliminare l'immagine di un prodotto" -#: core/docs/drf/viewsets.py:746 +#: engine/core/docs/drf/viewsets.py:778 msgid "rewrite an existing product image saving non-editables" msgstr "" "Riscrivere una categoria esistente salvando gli elementi non modificabili" -#: core/docs/drf/viewsets.py:750 +#: engine/core/docs/drf/viewsets.py:782 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" -#: core/docs/drf/viewsets.py:757 +#: engine/core/docs/drf/viewsets.py:789 msgid "list all promo codes (simple view)" msgstr "Elenco di tutti i codici promozionali (visualizzazione semplice)" -#: core/docs/drf/viewsets.py:761 +#: engine/core/docs/drf/viewsets.py:793 msgid "retrieve a single promo code (detailed view)" msgstr "Recuperare un singolo codice promozionale (vista dettagliata)" -#: core/docs/drf/viewsets.py:765 +#: engine/core/docs/drf/viewsets.py:797 msgid "create a promo code" msgstr "Create a promo code" -#: core/docs/drf/viewsets.py:769 +#: engine/core/docs/drf/viewsets.py:801 msgid "delete a promo code" msgstr "Cancellare un codice promozionale" -#: core/docs/drf/viewsets.py:773 +#: engine/core/docs/drf/viewsets.py:805 msgid "rewrite an existing promo code saving non-editables" msgstr "" "Riscrivere una categoria esistente salvando gli elementi non modificabili" -#: core/docs/drf/viewsets.py:777 +#: engine/core/docs/drf/viewsets.py:809 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" -#: core/docs/drf/viewsets.py:784 +#: engine/core/docs/drf/viewsets.py:816 msgid "list all promotions (simple view)" msgstr "Elenco di tutte le promozioni (visualizzazione semplice)" -#: core/docs/drf/viewsets.py:788 +#: engine/core/docs/drf/viewsets.py:820 msgid "retrieve a single promotion (detailed view)" msgstr "Recuperare una singola promozione (vista dettagliata)" -#: core/docs/drf/viewsets.py:792 +#: engine/core/docs/drf/viewsets.py:824 msgid "create a promotion" msgstr "Creare una promozione" -#: core/docs/drf/viewsets.py:796 +#: engine/core/docs/drf/viewsets.py:828 msgid "delete a promotion" msgstr "Eliminare una promozione" -#: core/docs/drf/viewsets.py:800 +#: engine/core/docs/drf/viewsets.py:832 msgid "rewrite an existing promotion saving non-editables" msgstr "" "Riscrivere una categoria esistente salvando gli elementi non modificabili" -#: core/docs/drf/viewsets.py:804 +#: engine/core/docs/drf/viewsets.py:836 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" -#: core/docs/drf/viewsets.py:811 +#: engine/core/docs/drf/viewsets.py:843 msgid "list all stocks (simple view)" msgstr "Elenco di tutti i titoli (vista semplice)" -#: core/docs/drf/viewsets.py:815 +#: engine/core/docs/drf/viewsets.py:847 msgid "retrieve a single stock (detailed view)" msgstr "Recuperare un singolo titolo (vista dettagliata)" -#: core/docs/drf/viewsets.py:819 +#: engine/core/docs/drf/viewsets.py:851 msgid "create a stock record" msgstr "Creare un record di magazzino" -#: core/docs/drf/viewsets.py:823 +#: engine/core/docs/drf/viewsets.py:855 msgid "delete a stock record" msgstr "Cancellare un record di magazzino" -#: core/docs/drf/viewsets.py:827 +#: engine/core/docs/drf/viewsets.py:859 msgid "rewrite an existing stock record saving non-editables" msgstr "" "Riscrivere una categoria esistente salvando gli elementi non modificabili" -#: core/docs/drf/viewsets.py:831 +#: engine/core/docs/drf/viewsets.py:863 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" -#: core/docs/drf/viewsets.py:838 +#: engine/core/docs/drf/viewsets.py:870 msgid "list all product tags (simple view)" msgstr "Elenco di tutti i tag dei prodotti (vista semplice)" -#: core/docs/drf/viewsets.py:842 +#: engine/core/docs/drf/viewsets.py:874 msgid "retrieve a single product tag (detailed view)" msgstr "Recuperare un singolo tag di prodotto (vista dettagliata)" -#: core/docs/drf/viewsets.py:846 +#: engine/core/docs/drf/viewsets.py:878 msgid "create a product tag" msgstr "Creare un'etichetta di prodotto" -#: core/docs/drf/viewsets.py:850 +#: engine/core/docs/drf/viewsets.py:882 msgid "delete a product tag" msgstr "Eliminare un tag di prodotto" -#: core/docs/drf/viewsets.py:854 +#: engine/core/docs/drf/viewsets.py:886 msgid "rewrite an existing product tag saving non-editables" msgstr "" "Riscrivere una categoria esistente salvando gli elementi non modificabili" -#: core/docs/drf/viewsets.py:858 +#: engine/core/docs/drf/viewsets.py:890 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" -#: core/elasticsearch/__init__.py:118 core/elasticsearch/__init__.py:550 +#: engine/core/elasticsearch/__init__.py:122 +#: engine/core/elasticsearch/__init__.py:570 msgid "no search term provided." msgstr "Non è stato fornito alcun termine di ricerca." -#: core/filters.py:69 core/filters.py:412 core/filters.py:539 +#: engine/core/filters.py:69 engine/core/filters.py:426 +#: engine/core/filters.py:553 msgid "Search" msgstr "Ricerca" -#: core/filters.py:70 core/filters.py:569 core/filters.py:598 +#: engine/core/filters.py:70 engine/core/filters.py:583 +#: engine/core/filters.py:612 msgid "UUID" msgstr "UUID" -#: core/filters.py:71 core/filters.py:414 core/filters.py:541 +#: engine/core/filters.py:71 engine/core/filters.py:428 +#: engine/core/filters.py:555 msgid "Name" msgstr "Nome" -#: core/filters.py:72 core/filters.py:543 +#: engine/core/filters.py:72 engine/core/filters.py:557 msgid "Categories" msgstr "Categorie" -#: core/filters.py:74 +#: engine/core/filters.py:74 msgid "Categories Slugs" msgstr "Categorie Lumache" -#: core/filters.py:75 core/filters.py:422 +#: engine/core/filters.py:75 engine/core/filters.py:436 msgid "Tags" msgstr "Tag" -#: core/filters.py:76 +#: engine/core/filters.py:76 msgid "Min Price" msgstr "Prezzo minimo" -#: core/filters.py:77 +#: engine/core/filters.py:77 msgid "Max Price" msgstr "Max Price" -#: core/filters.py:78 +#: engine/core/filters.py:78 msgid "Is Active" msgstr "È attivo" -#: core/filters.py:79 +#: engine/core/filters.py:79 msgid "Brand" msgstr "Marchio" -#: core/filters.py:80 +#: engine/core/filters.py:80 msgid "Attributes" msgstr "Attributi" -#: core/filters.py:81 +#: engine/core/filters.py:81 msgid "Quantity" msgstr "Quantità" -#: core/filters.py:82 core/filters.py:416 core/filters.py:542 -#: core/models.py:322 core/models.py:483 core/models.py:637 +#: engine/core/filters.py:82 engine/core/filters.py:430 +#: engine/core/filters.py:556 engine/core/models.py:321 +#: engine/core/models.py:482 engine/core/models.py:637 msgid "Slug" msgstr "Lumaca" -#: core/filters.py:83 +#: engine/core/filters.py:83 msgid "Is Digital" msgstr "È digitale" -#: core/filters.py:84 +#: engine/core/filters.py:84 msgid "Include sub-categories" msgstr "Includere le sottocategorie" -#: core/filters.py:87 +#: engine/core/filters.py:87 msgid "Include personal ordered" msgstr "Includere prodotti ordinati personalmente" -#: core/filters.py:89 core/models.py:641 +#: engine/core/filters.py:89 engine/core/models.py:641 msgid "SKU" msgstr "SKU" -#: core/filters.py:173 +#: engine/core/filters.py:184 msgid "there must be a category_uuid to use include_subcategories flag" msgstr "" "Deve esserci una categoria_uuid per utilizzare il flag include_subcategories" -#: core/filters.py:339 +#: engine/core/filters.py:353 msgid "Search (ID, product name or part number)" msgstr "Ricerca (ID, nome del prodotto o numero di parte)" -#: core/filters.py:342 +#: engine/core/filters.py:356 msgid "Bought after (inclusive)" msgstr "Acquistato dopo (incluso)" -#: core/filters.py:343 +#: engine/core/filters.py:357 msgid "Bought before (inclusive)" msgstr "Acquistato prima (compreso)" -#: core/filters.py:346 core/filters.py:393 core/filters.py:600 +#: engine/core/filters.py:360 engine/core/filters.py:407 +#: engine/core/filters.py:614 msgid "User email" msgstr "Email dell'utente" -#: core/filters.py:347 core/filters.py:394 core/filters.py:578 -#: core/filters.py:599 +#: engine/core/filters.py:361 engine/core/filters.py:408 +#: engine/core/filters.py:592 engine/core/filters.py:613 msgid "User UUID" msgstr "UUID utente" -#: core/filters.py:348 +#: engine/core/filters.py:362 msgid "Status" msgstr "Stato" -#: core/filters.py:352 +#: engine/core/filters.py:366 msgid "Human Readable ID" msgstr "ID leggibile dall'uomo" -#: core/filters.py:415 +#: engine/core/filters.py:429 msgid "Parent" msgstr "Genitore" -#: core/filters.py:419 +#: engine/core/filters.py:433 msgid "Whole category(has at least 1 product or not)" msgstr "Intera categoria (con o senza almeno 1 prodotto)" -#: core/filters.py:423 +#: engine/core/filters.py:437 msgid "Level" msgstr "Livello" -#: core/filters.py:573 +#: engine/core/filters.py:587 msgid "Product UUID" msgstr "UUID del prodotto" -#: core/graphene/mutations.py:41 +#: engine/core/graphene/mutations.py:41 msgid "key to look for in or set into the cache" msgstr "Chiave da cercare o da inserire nella cache" -#: core/graphene/mutations.py:42 +#: engine/core/graphene/mutations.py:42 msgid "data to store in cache" msgstr "Data to store in cache" -#: core/graphene/mutations.py:45 +#: engine/core/graphene/mutations.py:45 msgid "timeout in seconds to set the data for into the cache" msgstr "Timeout in secondi per l'inserimento dei dati nella cache" -#: core/graphene/mutations.py:48 +#: engine/core/graphene/mutations.py:48 msgid "cached data" msgstr "Dati in cache" -#: core/graphene/mutations.py:63 +#: engine/core/graphene/mutations.py:63 msgid "camelized JSON data from the requested URL" msgstr "Dati JSON camelizzati dall'URL richiesto" -#: core/graphene/mutations.py:68 core/views.py:232 +#: engine/core/graphene/mutations.py:68 engine/core/views.py:231 msgid "only URLs starting with http(s):// are allowed" msgstr "Sono consentiti solo gli URL che iniziano con http(s)://" -#: core/graphene/mutations.py:84 +#: engine/core/graphene/mutations.py:84 msgid "add a product to the order" msgstr "Aggiungere un prodotto all'ordine" -#: core/graphene/mutations.py:105 core/graphene/mutations.py:132 -#: core/graphene/mutations.py:240 core/graphene/mutations.py:288 +#: engine/core/graphene/mutations.py:105 engine/core/graphene/mutations.py:132 +#: engine/core/graphene/mutations.py:240 engine/core/graphene/mutations.py:288 #, python-brace-format msgid "order {order_uuid} not found" msgstr "Ordine {order_uuid} non trovato!" -#: core/graphene/mutations.py:111 core/graphene/mutations.py:160 +#: engine/core/graphene/mutations.py:111 engine/core/graphene/mutations.py:160 msgid "remove a product from the order" msgstr "Rimuovere un prodotto dall'ordine" -#: core/graphene/mutations.py:138 +#: engine/core/graphene/mutations.py:138 msgid "remove all products from the order" msgstr "Rimuovere tutti i prodotti dall'ordine" -#: core/graphene/mutations.py:183 +#: engine/core/graphene/mutations.py:183 msgid "buy an order" msgstr "Acquistare un ordine" -#: core/graphene/mutations.py:212 core/graphene/mutations.py:266 +#: engine/core/graphene/mutations.py:212 engine/core/graphene/mutations.py:266 msgid "please provide either order_uuid or order_hr_id - mutually exclusive" msgstr "" "Si prega di fornire order_uuid o order_hr_id, che si escludono a vicenda!" -#: core/graphene/mutations.py:237 core/graphene/mutations.py:502 -#: core/graphene/mutations.py:544 core/viewsets.py:704 +#: engine/core/graphene/mutations.py:237 engine/core/graphene/mutations.py:502 +#: engine/core/graphene/mutations.py:544 engine/core/viewsets.py:704 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}" -#: core/graphene/mutations.py:246 +#: engine/core/graphene/mutations.py:246 msgid "perform an action on a list of products in the order" msgstr "Eseguire un'azione su un elenco di prodotti nell'ordine" -#: core/graphene/mutations.py:251 +#: engine/core/graphene/mutations.py:251 msgid "remove/add" msgstr "Rimuovi/Aggiungi" -#: core/graphene/mutations.py:283 core/graphene/mutations.py:324 +#: engine/core/graphene/mutations.py:283 engine/core/graphene/mutations.py:324 msgid "action must be either add or remove" msgstr "L'azione deve essere \"aggiungere\" o \"rimuovere\"!" -#: core/graphene/mutations.py:294 +#: engine/core/graphene/mutations.py:294 msgid "perform an action on a list of products in the wishlist" msgstr "Eseguire un'azione su un elenco di prodotti nella wishlist" -#: core/graphene/mutations.py:312 +#: engine/core/graphene/mutations.py:312 msgid "please provide wishlist_uuid value" msgstr "Fornire il valore `wishlist_uuid`." -#: core/graphene/mutations.py:329 core/graphene/mutations.py:405 -#: core/graphene/mutations.py:433 core/graphene/mutations.py:461 -#: core/graphene/mutations.py:505 +#: engine/core/graphene/mutations.py:329 engine/core/graphene/mutations.py:405 +#: engine/core/graphene/mutations.py:433 engine/core/graphene/mutations.py:461 +#: engine/core/graphene/mutations.py:505 #, python-brace-format msgid "wishlist {wishlist_uuid} not found" msgstr "Lista dei desideri {wishlist_uuid} non trovata!" -#: core/graphene/mutations.py:383 +#: engine/core/graphene/mutations.py:383 msgid "add a product to the wishlist" msgstr "Aggiungere un prodotto all'ordine" -#: core/graphene/mutations.py:411 +#: engine/core/graphene/mutations.py:411 msgid "remove a product from the wishlist" msgstr "Rimuovere un prodotto dall'ordine" -#: core/graphene/mutations.py:439 +#: engine/core/graphene/mutations.py:439 msgid "remove all products from the wishlist" msgstr "Rimuovere un prodotto dall'ordine" -#: core/graphene/mutations.py:467 +#: engine/core/graphene/mutations.py:467 msgid "buy all products from the wishlist" msgstr "Rimuovere un prodotto dall'ordine" -#: core/graphene/mutations.py:511 +#: engine/core/graphene/mutations.py:511 msgid "buy a product" msgstr "Acquistare un ordine" -#: core/graphene/mutations.py:517 +#: engine/core/graphene/mutations.py:517 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" -#: core/graphene/mutations.py:550 +#: engine/core/graphene/mutations.py:550 msgid "add or delete a feedback for orderproduct" msgstr "Aggiungere o eliminare un feedback per l'ordine-prodotto" -#: core/graphene/mutations.py:574 +#: engine/core/graphene/mutations.py:574 msgid "action must be either `add` or `remove`" msgstr "L'azione deve essere `add` o `remove`!" -#: core/graphene/mutations.py:577 +#: engine/core/graphene/mutations.py:577 #, python-brace-format msgid "order product {order_product_uuid} not found" msgstr "Prodotto dell'ordine {order_product_uuid} non trovato!" -#: core/graphene/mutations.py:644 +#: engine/core/graphene/mutations.py:644 msgid "original address string provided by the user" msgstr "Stringa di indirizzo originale fornita dall'utente" -#: core/graphene/mutations.py:680 core/models.py:930 core/models.py:943 -#: core/models.py:1358 core/models.py:1387 core/models.py:1412 -#: core/viewsets.py:707 +#: engine/core/graphene/mutations.py:680 engine/core/models.py:941 +#: engine/core/models.py:954 engine/core/models.py:1369 +#: engine/core/models.py:1398 engine/core/models.py:1423 +#: engine/core/viewsets.py:707 #, python-brace-format msgid "{name} does not exist: {uuid}" msgstr "{name} non esiste: {uuid}!" -#: core/graphene/mutations.py:694 +#: engine/core/graphene/mutations.py:694 msgid "limit must be between 1 and 10" msgstr "Il limite deve essere compreso tra 1 e 10" -#: core/graphene/mutations.py:743 +#: engine/core/graphene/mutations.py:743 msgid "elasticsearch - works like a charm" msgstr "ElasticSearch: funziona a meraviglia" -#: core/graphene/object_types.py:82 core/graphene/object_types.py:370 -#: core/graphene/object_types.py:417 core/models.py:754 core/models.py:1225 -#: core/models.py:1823 +#: engine/core/graphene/object_types.py:82 +#: engine/core/graphene/object_types.py:370 +#: engine/core/graphene/object_types.py:417 engine/core/models.py:765 +#: engine/core/models.py:1236 engine/core/models.py:1883 msgid "attributes" msgstr "Attributi" -#: core/graphene/object_types.py:95 +#: engine/core/graphene/object_types.py:95 msgid "grouped attributes" msgstr "Attributi raggruppati" -#: core/graphene/object_types.py:102 +#: engine/core/graphene/object_types.py:102 msgid "groups of attributes" msgstr "Gruppi di attributi" -#: core/graphene/object_types.py:116 core/graphene/object_types.py:193 -#: core/graphene/object_types.py:223 core/models.py:426 +#: engine/core/graphene/object_types.py:116 +#: engine/core/graphene/object_types.py:193 +#: engine/core/graphene/object_types.py:223 engine/core/models.py:425 msgid "categories" msgstr "Categorie" -#: core/graphene/object_types.py:124 core/models.py:497 +#: engine/core/graphene/object_types.py:124 engine/core/models.py:496 msgid "brands" msgstr "Marche" -#: core/graphene/object_types.py:195 +#: engine/core/graphene/object_types.py:195 msgid "category image url" msgstr "Categorie" -#: core/graphene/object_types.py:196 core/graphene/object_types.py:317 -#: core/models.py:284 +#: engine/core/graphene/object_types.py:196 +#: engine/core/graphene/object_types.py:317 engine/core/models.py:283 msgid "markup percentage" msgstr "Percentuale di markup" -#: core/graphene/object_types.py:199 +#: engine/core/graphene/object_types.py:199 msgid "which attributes and values can be used for filtering this category." msgstr "" "Quali attributi e valori possono essere utilizzati per filtrare questa " "categoria." -#: core/graphene/object_types.py:203 -msgid "" -"minimum and maximum prices for products in this category, if available." +#: engine/core/graphene/object_types.py:203 +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." -#: core/graphene/object_types.py:205 +#: engine/core/graphene/object_types.py:205 msgid "tags for this category" msgstr "Tag per questa categoria" -#: core/graphene/object_types.py:206 +#: engine/core/graphene/object_types.py:206 msgid "products in this category" msgstr "Prodotti in questa categoria" -#: core/graphene/object_types.py:324 core/models.py:189 +#: engine/core/graphene/object_types.py:324 engine/core/models.py:188 msgid "vendors" msgstr "Venditori" -#: core/graphene/object_types.py:328 +#: engine/core/graphene/object_types.py:328 msgid "Latitude (Y coordinate)" msgstr "Latitudine (coordinata Y)" -#: core/graphene/object_types.py:329 +#: engine/core/graphene/object_types.py:329 msgid "Longitude (X coordinate)" msgstr "Longitudine (coordinata X)" -#: core/graphene/object_types.py:358 +#: engine/core/graphene/object_types.py:358 msgid "comment" msgstr "Come" -#: core/graphene/object_types.py:359 core/graphene/object_types.py:483 +#: engine/core/graphene/object_types.py:359 +#: engine/core/graphene/object_types.py:483 msgid "rating value from 1 to 10, inclusive, or 0 if not set." msgstr "Valore di valutazione da 1 a 10, incluso, o 0 se non impostato." -#: core/graphene/object_types.py:366 +#: engine/core/graphene/object_types.py:366 msgid "represents feedback from a user." msgstr "Rappresenta il feedback di un utente." -#: core/graphene/object_types.py:371 core/graphene/object_types.py:418 -#: core/models.py:1219 +#: engine/core/graphene/object_types.py:371 +#: engine/core/graphene/object_types.py:418 engine/core/models.py:1230 msgid "notifications" msgstr "Notifiche" -#: core/graphene/object_types.py:372 +#: engine/core/graphene/object_types.py:372 msgid "download url for this order product if applicable" msgstr "URL di download per il prodotto dell'ordine, se applicabile" -#: core/graphene/object_types.py:373 core/models.py:1939 +#: engine/core/graphene/object_types.py:373 engine/core/models.py:1722 msgid "feedback" msgstr "Feedback" -#: core/graphene/object_types.py:407 +#: engine/core/graphene/object_types.py:407 msgid "a list of order products in this order" msgstr "Un elenco di prodotti ordinati in questo ordine" -#: core/graphene/object_types.py:409 core/models.py:1189 +#: engine/core/graphene/object_types.py:409 engine/core/models.py:1200 msgid "billing address" msgstr "Indirizzo di fatturazione" -#: core/graphene/object_types.py:412 +#: engine/core/graphene/object_types.py:412 msgid "" "shipping address for this order, leave blank if same as billing address or " "if not applicable" @@ -1321,230 +1350,238 @@ msgstr "" "Indirizzo di spedizione per questo ordine, lasciare in bianco se è uguale " "all'indirizzo di fatturazione o se non è applicabile" -#: core/graphene/object_types.py:414 +#: engine/core/graphene/object_types.py:414 msgid "total price of this order" msgstr "Prezzo totale dell'ordine" -#: core/graphene/object_types.py:415 +#: engine/core/graphene/object_types.py:415 msgid "total quantity of products in order" msgstr "Quantità totale di prodotti in ordine" -#: core/graphene/object_types.py:416 +#: engine/core/graphene/object_types.py:416 msgid "are all products in the order digital" msgstr "Tutti i prodotti sono presenti nell'ordine digitale" -#: core/graphene/object_types.py:419 +#: engine/core/graphene/object_types.py:419 msgid "transactions for this order" msgstr "Transazioni per questo ordine" -#: core/graphene/object_types.py:438 core/models.py:1253 +#: engine/core/graphene/object_types.py:438 engine/core/models.py:1264 msgid "orders" msgstr "Ordini" -#: core/graphene/object_types.py:459 +#: engine/core/graphene/object_types.py:459 msgid "image url" msgstr "URL immagine" -#: core/graphene/object_types.py:466 +#: engine/core/graphene/object_types.py:466 msgid "product's images" msgstr "Immagini del prodotto" -#: core/graphene/object_types.py:473 core/models.py:425 core/models.py:579 +#: engine/core/graphene/object_types.py:473 engine/core/models.py:424 +#: engine/core/models.py:579 msgid "category" msgstr "Categoria" -#: core/graphene/object_types.py:475 core/models.py:1940 +#: engine/core/graphene/object_types.py:475 engine/core/models.py:1723 msgid "feedbacks" msgstr "Feedback" -#: core/graphene/object_types.py:476 core/models.py:496 core/models.py:588 +#: engine/core/graphene/object_types.py:476 engine/core/models.py:495 +#: engine/core/models.py:588 msgid "brand" msgstr "Marchio" -#: core/graphene/object_types.py:477 core/models.py:107 +#: engine/core/graphene/object_types.py:477 engine/core/models.py:106 msgid "attribute groups" msgstr "Gruppi di attributi" -#: core/graphene/object_types.py:478 -#: core/templates/digital_order_created_email.html:111 -#: core/templates/digital_order_delivered_email.html:109 -#: core/templates/shipped_order_created_email.html:109 -#: core/templates/shipped_order_delivered_email.html:109 +#: engine/core/graphene/object_types.py:478 +#: engine/core/templates/digital_order_created_email.html:111 +#: engine/core/templates/digital_order_delivered_email.html:109 +#: engine/core/templates/shipped_order_created_email.html:109 +#: engine/core/templates/shipped_order_delivered_email.html:109 msgid "price" msgstr "Prezzo" -#: core/graphene/object_types.py:479 -#: core/templates/digital_order_created_email.html:110 -#: core/templates/digital_order_delivered_email.html:108 -#: core/templates/shipped_order_created_email.html:108 -#: core/templates/shipped_order_delivered_email.html:108 +#: engine/core/graphene/object_types.py:479 +#: engine/core/templates/digital_order_created_email.html:110 +#: engine/core/templates/digital_order_delivered_email.html:108 +#: engine/core/templates/shipped_order_created_email.html:108 +#: engine/core/templates/shipped_order_delivered_email.html:108 msgid "quantity" msgstr "Quantità" -#: core/graphene/object_types.py:480 +#: engine/core/graphene/object_types.py:480 msgid "number of feedbacks" msgstr "Numero di feedback" -#: core/graphene/object_types.py:481 +#: engine/core/graphene/object_types.py:481 msgid "only available for personal orders" msgstr "Prodotti disponibili solo per ordini personali" -#: core/graphene/object_types.py:507 core/models.py:651 +#: engine/core/graphene/object_types.py:484 +msgid "discount price" +msgstr "Prezzo scontato" + +#: engine/core/graphene/object_types.py:508 engine/core/models.py:651 msgid "products" msgstr "Prodotti" -#: core/graphene/object_types.py:607 +#: engine/core/graphene/object_types.py:611 msgid "promocodes" msgstr "Codici promozionali" -#: core/graphene/object_types.py:617 +#: engine/core/graphene/object_types.py:621 msgid "products on sale" msgstr "Prodotti in vendita" -#: core/graphene/object_types.py:624 core/models.py:879 +#: engine/core/graphene/object_types.py:628 engine/core/models.py:890 msgid "promotions" msgstr "Promozioni" -#: core/graphene/object_types.py:628 core/models.py:188 +#: engine/core/graphene/object_types.py:632 engine/core/models.py:187 msgid "vendor" msgstr "Venditore" -#: core/graphene/object_types.py:629 core/models.py:650 -#: core/templates/digital_order_created_email.html:109 -#: core/templates/digital_order_delivered_email.html:107 -#: core/templates/shipped_order_created_email.html:107 -#: core/templates/shipped_order_delivered_email.html:107 +#: engine/core/graphene/object_types.py:633 engine/core/models.py:650 +#: 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 +#: engine/core/templates/shipped_order_delivered_email.html:107 msgid "product" msgstr "Prodotto" -#: core/graphene/object_types.py:640 core/models.py:902 +#: engine/core/graphene/object_types.py:644 engine/core/models.py:913 msgid "wishlisted products" msgstr "Prodotti desiderati" -#: core/graphene/object_types.py:646 core/models.py:919 +#: engine/core/graphene/object_types.py:650 engine/core/models.py:930 msgid "wishlists" msgstr "Liste dei desideri" -#: core/graphene/object_types.py:650 +#: engine/core/graphene/object_types.py:654 msgid "tagged products" msgstr "Prodotti contrassegnati" -#: core/graphene/object_types.py:657 core/models.py:225 core/models.py:594 +#: engine/core/graphene/object_types.py:661 engine/core/models.py:224 +#: engine/core/models.py:594 msgid "product tags" msgstr "Tag del prodotto" -#: core/graphene/object_types.py:661 +#: engine/core/graphene/object_types.py:665 msgid "tagged categories" msgstr "Contrassegnato dalle categorie" -#: core/graphene/object_types.py:668 +#: engine/core/graphene/object_types.py:672 msgid "categories tags" msgstr "Tag delle categorie" -#: core/graphene/object_types.py:672 +#: engine/core/graphene/object_types.py:676 msgid "project name" msgstr "Nome del progetto" -#: core/graphene/object_types.py:673 +#: engine/core/graphene/object_types.py:677 msgid "company email" msgstr "Email aziendale" -#: core/graphene/object_types.py:674 +#: engine/core/graphene/object_types.py:678 msgid "company name" msgstr "Nome della società" -#: core/graphene/object_types.py:675 +#: engine/core/graphene/object_types.py:679 msgid "company address" msgstr "Indirizzo dell'azienda" -#: core/graphene/object_types.py:676 +#: engine/core/graphene/object_types.py:680 msgid "company phone number" msgstr "Numero di telefono dell'azienda" -#: core/graphene/object_types.py:677 +#: engine/core/graphene/object_types.py:681 msgid "email from, sometimes it must be used instead of host user value" msgstr "" "'email from', a volte deve essere usato al posto del valore dell'utente host" -#: core/graphene/object_types.py:678 +#: engine/core/graphene/object_types.py:682 msgid "email host user" msgstr "Utente host dell'e-mail" -#: core/graphene/object_types.py:679 +#: engine/core/graphene/object_types.py:683 msgid "maximum amount for payment" msgstr "Importo massimo per il pagamento" -#: core/graphene/object_types.py:680 +#: engine/core/graphene/object_types.py:684 msgid "minimum amount for payment" msgstr "Importo minimo per il pagamento" -#: core/graphene/object_types.py:681 +#: engine/core/graphene/object_types.py:685 msgid "analytics data" msgstr "Dati analitici" -#: core/graphene/object_types.py:682 +#: engine/core/graphene/object_types.py:686 msgid "advertisement data" msgstr "Dati pubblicitari" -#: core/graphene/object_types.py:685 +#: engine/core/graphene/object_types.py:689 msgid "company configuration" msgstr "Configurazione" -#: core/graphene/object_types.py:689 +#: engine/core/graphene/object_types.py:693 msgid "language code" msgstr "Codice lingua" -#: core/graphene/object_types.py:690 +#: engine/core/graphene/object_types.py:694 msgid "language name" msgstr "Nome della lingua" -#: core/graphene/object_types.py:691 +#: engine/core/graphene/object_types.py:695 msgid "language flag, if exists :)" msgstr "Bandiera della lingua, se esiste :)" -#: core/graphene/object_types.py:694 +#: engine/core/graphene/object_types.py:698 msgid "supported languages" msgstr "Ottenere un elenco delle lingue supportate" -#: core/graphene/object_types.py:725 core/graphene/object_types.py:726 -#: core/graphene/object_types.py:727 +#: engine/core/graphene/object_types.py:729 +#: engine/core/graphene/object_types.py:730 +#: engine/core/graphene/object_types.py:731 msgid "products search results" msgstr "Risultati della ricerca dei prodotti" -#: core/graphene/object_types.py:728 +#: engine/core/graphene/object_types.py:732 msgid "posts search results" msgstr "Risultati della ricerca dei prodotti" -#: core/models.py:76 +#: engine/core/models.py:75 msgid "" "Represents a group of attributes, which can be hierarchical. This class is " "used to manage and organize attribute groups. An attribute group can have a " "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." -#: core/models.py:92 +#: engine/core/models.py:91 msgid "parent of this group" msgstr "Genitore di questo gruppo" -#: core/models.py:93 +#: engine/core/models.py:92 msgid "parent attribute group" msgstr "Gruppo di attributi padre" -#: core/models.py:97 core/models.py:98 +#: engine/core/models.py:96 engine/core/models.py:97 msgid "attribute group's name" msgstr "Nome del gruppo di attributi" -#: core/models.py:106 core/models.py:716 +#: engine/core/models.py:105 engine/core/models.py:727 msgid "attribute group" msgstr "Gruppo di attributi" -#: core/models.py:112 +#: engine/core/models.py:111 msgid "" "Represents a vendor entity capable of storing information about external " "vendors and their interaction requirements. The Vendor class is used to " @@ -1563,49 +1600,49 @@ msgstr "" "anche metadati e vincoli aggiuntivi, rendendolo adatto all'uso in sistemi " "che interagiscono con venditori terzi." -#: core/models.py:125 +#: engine/core/models.py:124 msgid "stores credentials and endpoints required for vendor communication" msgstr "" "Memorizza le credenziali e gli endpoint necessari per la comunicazione API " "del fornitore." -#: core/models.py:126 +#: engine/core/models.py:125 msgid "authentication info" msgstr "Informazioni sull'autenticazione" -#: core/models.py:131 +#: engine/core/models.py:130 msgid "define the markup for products retrieved from this vendor" msgstr "Definire il markup per i prodotti recuperati da questo fornitore" -#: core/models.py:132 +#: engine/core/models.py:131 msgid "vendor markup percentage" msgstr "Percentuale di ricarico del fornitore" -#: core/models.py:136 +#: engine/core/models.py:135 msgid "name of this vendor" msgstr "Nome del fornitore" -#: core/models.py:137 +#: engine/core/models.py:136 msgid "vendor name" msgstr "Nome del fornitore" -#: core/models.py:148 +#: engine/core/models.py:147 msgid "response file" msgstr "file di risposta" -#: core/models.py:149 +#: engine/core/models.py:148 msgid "vendor's last processing response" msgstr "risposta del venditore all'ultima elaborazione" -#: core/models.py:155 +#: engine/core/models.py:154 msgid "vendor's integration file path" msgstr "Percorso del file di integrazione del fornitore" -#: core/models.py:156 +#: engine/core/models.py:155 msgid "integration path" msgstr "Percorso di integrazione" -#: core/models.py:198 +#: engine/core/models.py:197 msgid "" "Represents a product tag used for classifying or identifying products. The " "ProductTag class is designed to uniquely identify and classify products " @@ -1620,27 +1657,27 @@ msgstr "" "operazioni esportate attraverso i mixin e fornisce la personalizzazione dei " "metadati per scopi amministrativi." -#: core/models.py:210 core/models.py:241 +#: engine/core/models.py:209 engine/core/models.py:240 msgid "internal tag identifier for the product tag" msgstr "Identificatore interno dell'etichetta del prodotto" -#: core/models.py:211 core/models.py:242 +#: engine/core/models.py:210 engine/core/models.py:241 msgid "tag name" msgstr "Nome del tag" -#: core/models.py:215 core/models.py:246 +#: engine/core/models.py:214 engine/core/models.py:245 msgid "user-friendly name for the product tag" msgstr "Nome intuitivo per l'etichetta del prodotto" -#: core/models.py:216 core/models.py:247 +#: engine/core/models.py:215 engine/core/models.py:246 msgid "tag display name" msgstr "Nome del tag" -#: core/models.py:224 +#: engine/core/models.py:223 msgid "product tag" msgstr "Etichetta del prodotto" -#: core/models.py:230 +#: engine/core/models.py:229 msgid "" "Represents a category tag used for products. This class models a category " "tag that can be used to associate and classify products. It includes " @@ -1648,18 +1685,18 @@ 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." -#: core/models.py:255 +#: engine/core/models.py:254 msgid "category tag" msgstr "tag categoria" -#: core/models.py:256 core/models.py:328 +#: engine/core/models.py:255 engine/core/models.py:327 msgid "category tags" msgstr "tag di categoria" -#: core/models.py:261 +#: engine/core/models.py:260 msgid "" "Represents a category entity to organize and group related items in a " "hierarchical structure. Categories may have hierarchical relationships with " @@ -1673,118 +1710,117 @@ 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à." -#: core/models.py:275 +#: engine/core/models.py:274 msgid "upload an image representing this category" msgstr "Caricare un'immagine che rappresenti questa categoria" -#: core/models.py:278 +#: engine/core/models.py:277 msgid "category image" msgstr "Categoria immagine" -#: core/models.py:283 +#: engine/core/models.py:282 msgid "define a markup percentage for products in this category" msgstr "" "Definire una percentuale di ricarico per i prodotti di questa categoria" -#: core/models.py:292 +#: engine/core/models.py:291 msgid "parent of this category to form a hierarchical structure" msgstr "Genitore di questa categoria per formare una struttura gerarchica" -#: core/models.py:293 +#: engine/core/models.py:292 msgid "parent category" msgstr "Categoria di genitori" -#: core/models.py:298 +#: engine/core/models.py:297 msgid "category name" msgstr "Nome della categoria" -#: core/models.py:299 +#: engine/core/models.py:298 msgid "provide a name for this category" msgstr "Indicare un nome per questa categoria" -#: core/models.py:306 +#: engine/core/models.py:305 msgid "add a detailed description for this category" msgstr "Aggiungere una descrizione dettagliata per questa categoria" -#: core/models.py:307 +#: engine/core/models.py:306 msgid "category description" msgstr "Descrizione della categoria" -#: core/models.py:327 +#: engine/core/models.py:326 msgid "tags that help describe or group this category" msgstr "tag che aiutano a descrivere o raggruppare questa categoria" -#: core/models.py:334 core/models.py:489 +#: engine/core/models.py:333 engine/core/models.py:488 msgid "priority" msgstr "Priorità" -#: core/models.py:432 +#: engine/core/models.py:431 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." -#: core/models.py:442 +#: engine/core/models.py:441 msgid "name of this brand" msgstr "Nome del marchio" -#: core/models.py:443 +#: engine/core/models.py:442 msgid "brand name" msgstr "Nome del marchio" -#: core/models.py:450 +#: engine/core/models.py:449 msgid "upload a logo representing this brand" msgstr "Caricare un logo che rappresenti questo marchio" -#: core/models.py:452 +#: engine/core/models.py:451 msgid "brand small image" msgstr "Immagine piccola del marchio" -#: core/models.py:458 +#: engine/core/models.py:457 msgid "upload a big logo representing this brand" msgstr "Caricare un grande logo che rappresenti questo marchio" -#: core/models.py:460 +#: engine/core/models.py:459 msgid "brand big image" msgstr "Grande immagine del marchio" -#: core/models.py:465 +#: engine/core/models.py:464 msgid "add a detailed description of the brand" msgstr "Aggiungere una descrizione dettagliata del marchio" -#: core/models.py:466 +#: engine/core/models.py:465 msgid "brand description" msgstr "Descrizione del marchio" -#: core/models.py:471 +#: engine/core/models.py:470 msgid "optional categories that this brand is associated with" msgstr "Categorie opzionali a cui questo marchio è associato" -#: core/models.py:472 +#: engine/core/models.py:471 msgid "associated categories" msgstr "Categorie" -#: core/models.py:502 +#: engine/core/models.py:501 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 " @@ -1792,73 +1828,77 @@ 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." -#: core/models.py:514 +#: engine/core/models.py:513 msgid "the vendor supplying this product stock" msgstr "Il venditore che fornisce questo stock di prodotti" -#: core/models.py:515 +#: engine/core/models.py:514 msgid "associated vendor" msgstr "Venditore associato" -#: core/models.py:519 +#: engine/core/models.py:518 msgid "final price to the customer after markups" msgstr "Prezzo finale al cliente dopo i ricarichi" -#: core/models.py:520 +#: engine/core/models.py:519 msgid "selling price" msgstr "Prezzo di vendita" -#: core/models.py:525 +#: engine/core/models.py:524 msgid "the product associated with this stock entry" msgstr "Il prodotto associato a questa voce di magazzino" -#: core/models.py:526 core/models.py:779 core/models.py:825 -#: core/models.py:1718 +#: engine/core/models.py:525 engine/core/models.py:790 +#: engine/core/models.py:836 engine/core/models.py:1778 msgid "associated product" msgstr "Prodotto associato" -#: core/models.py:533 +#: engine/core/models.py:532 msgid "the price paid to the vendor for this product" msgstr "Il prezzo pagato al venditore per questo prodotto" -#: core/models.py:534 +#: engine/core/models.py:533 msgid "vendor purchase price" msgstr "Prezzo di acquisto del fornitore" -#: core/models.py:538 +#: engine/core/models.py:537 msgid "available quantity of the product in stock" msgstr "Quantità disponibile del prodotto in magazzino" -#: core/models.py:539 +#: engine/core/models.py:538 msgid "quantity in stock" msgstr "Quantità in magazzino" -#: core/models.py:543 +#: engine/core/models.py:542 msgid "vendor-assigned SKU for identifying the product" msgstr "SKU assegnato dal fornitore per identificare il prodotto" -#: core/models.py:544 +#: engine/core/models.py:543 msgid "vendor sku" msgstr "SKU del venditore" -#: core/models.py:550 +#: engine/core/models.py:549 msgid "digital file associated with this stock if applicable" msgstr "File digitale associato a questo stock, se applicabile" -#: core/models.py:551 +#: engine/core/models.py:550 msgid "digital file" msgstr "File digitale" -#: core/models.py:560 +#: engine/core/models.py:553 +msgid "system attributes" +msgstr "Attributi del sistema" + +#: engine/core/models.py:560 msgid "stock entries" msgstr "Voci di magazzino" -#: core/models.py:565 +#: engine/core/models.py:565 msgid "" "Represents a product with attributes such as category, brand, tags, digital " "status, name, description, part number, and slug. Provides related utility " @@ -1876,252 +1916,252 @@ 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." -#: core/models.py:578 +#: engine/core/models.py:578 msgid "category this product belongs to" msgstr "Categoria a cui appartiene questo prodotto" -#: core/models.py:587 +#: engine/core/models.py:587 msgid "optionally associate this product with a brand" msgstr "Associare facoltativamente questo prodotto a un marchio" -#: core/models.py:593 +#: engine/core/models.py:593 msgid "tags that help describe or group this product" msgstr "Tag che aiutano a descrivere o raggruppare questo prodotto" -#: core/models.py:598 +#: engine/core/models.py:598 msgid "indicates whether this product is digitally delivered" msgstr "Indica se il prodotto è consegnato in formato digitale" -#: core/models.py:599 +#: engine/core/models.py:599 msgid "is product digital" msgstr "Il prodotto è digitale" -#: core/models.py:605 +#: engine/core/models.py:605 msgid "provide a clear identifying name for the product" msgstr "Fornire un nome identificativo chiaro per il prodotto" -#: core/models.py:606 +#: engine/core/models.py:606 msgid "product name" msgstr "Nome del prodotto" -#: core/models.py:612 core/models.py:867 +#: engine/core/models.py:612 engine/core/models.py:878 msgid "add a detailed description of the product" msgstr "Aggiungere una descrizione dettagliata del prodotto" -#: core/models.py:613 +#: engine/core/models.py:613 msgid "product description" msgstr "Descrizione del prodotto" -#: core/models.py:620 +#: engine/core/models.py:620 msgid "part number for this product" msgstr "Numero di parte per questo prodotto" -#: core/models.py:621 +#: engine/core/models.py:621 msgid "part number" msgstr "Numero di parte" -#: core/models.py:640 +#: engine/core/models.py:640 msgid "stock keeping unit for this product" msgstr "Unità di mantenimento delle scorte per questo prodotto" -#: core/models.py:702 +#: engine/core/models.py:713 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." -#: core/models.py:715 +#: engine/core/models.py:726 msgid "group of this attribute" msgstr "Gruppo di questo attributo" -#: core/models.py:721 +#: engine/core/models.py:732 msgid "string" msgstr "Stringa" -#: core/models.py:722 +#: engine/core/models.py:733 msgid "integer" msgstr "Intero" -#: core/models.py:723 +#: engine/core/models.py:734 msgid "float" msgstr "Galleggiante" -#: core/models.py:724 +#: engine/core/models.py:735 msgid "boolean" msgstr "Booleano" -#: core/models.py:725 +#: engine/core/models.py:736 msgid "array" msgstr "Array" -#: core/models.py:726 +#: engine/core/models.py:737 msgid "object" msgstr "Oggetto" -#: core/models.py:728 +#: engine/core/models.py:739 msgid "type of the attribute's value" msgstr "Tipo di valore dell'attributo" -#: core/models.py:729 +#: engine/core/models.py:740 msgid "value type" msgstr "Tipo di valore" -#: core/models.py:734 +#: engine/core/models.py:745 msgid "name of this attribute" msgstr "Nome dell'attributo" -#: core/models.py:735 +#: engine/core/models.py:746 msgid "attribute's name" msgstr "Nome dell'attributo" -#: core/models.py:740 +#: engine/core/models.py:751 msgid "is filterable" msgstr "è filtrabile" -#: core/models.py:741 +#: engine/core/models.py:752 msgid "designates whether this attribute can be used for filtering or not" msgstr "" "Quali attributi e valori possono essere utilizzati per filtrare questa " "categoria." -#: core/models.py:753 core/models.py:771 -#: core/templates/digital_order_delivered_email.html:134 +#: engine/core/models.py:764 engine/core/models.py:782 +#: engine/core/templates/digital_order_delivered_email.html:134 msgid "attribute" msgstr "Attributo" -#: core/models.py:759 +#: engine/core/models.py:770 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." -#: core/models.py:770 +#: engine/core/models.py:781 msgid "attribute of this value" msgstr "Attributo di questo valore" -#: core/models.py:778 +#: engine/core/models.py:789 msgid "the specific product associated with this attribute's value" msgstr "Il prodotto specifico associato al valore di questo attributo" -#: core/models.py:784 +#: engine/core/models.py:795 msgid "the specific value for this attribute" msgstr "Il valore specifico per questo attributo" -#: core/models.py:797 +#: engine/core/models.py:808 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." -#: core/models.py:808 +#: engine/core/models.py:819 msgid "provide alternative text for the image for accessibility" msgstr "" "Fornire un testo alternativo per l'immagine ai fini dell'accessibilità." -#: core/models.py:809 +#: engine/core/models.py:820 msgid "image alt text" msgstr "Testo alt dell'immagine" -#: core/models.py:812 +#: engine/core/models.py:823 msgid "upload the image file for this product" msgstr "Caricare il file immagine per questo prodotto" -#: core/models.py:813 core/models.py:837 +#: engine/core/models.py:824 engine/core/models.py:848 msgid "product image" msgstr "Immagine del prodotto" -#: core/models.py:818 +#: engine/core/models.py:829 msgid "determines the order in which images are displayed" msgstr "Determina l'ordine di visualizzazione delle immagini" -#: core/models.py:819 +#: engine/core/models.py:830 msgid "display priority" msgstr "Priorità del display" -#: core/models.py:824 +#: engine/core/models.py:835 msgid "the product that this image represents" msgstr "Il prodotto che questa immagine rappresenta" -#: core/models.py:838 +#: engine/core/models.py:849 msgid "product images" msgstr "Immagini del prodotto" -#: core/models.py:843 +#: engine/core/models.py:854 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." -#: core/models.py:855 +#: engine/core/models.py:866 msgid "percentage discount for the selected products" msgstr "Percentuale di sconto per i prodotti selezionati" -#: core/models.py:856 +#: engine/core/models.py:867 msgid "discount percentage" msgstr "Percentuale di sconto" -#: core/models.py:861 +#: engine/core/models.py:872 msgid "provide a unique name for this promotion" msgstr "Fornite un nome unico per questa promozione" -#: core/models.py:862 +#: engine/core/models.py:873 msgid "promotion name" msgstr "Nome della promozione" -#: core/models.py:868 +#: engine/core/models.py:879 msgid "promotion description" msgstr "Descrizione della promozione" -#: core/models.py:873 +#: engine/core/models.py:884 msgid "select which products are included in this promotion" msgstr "Selezionare i prodotti inclusi in questa promozione" -#: core/models.py:874 +#: engine/core/models.py:885 msgid "included products" msgstr "Prodotti inclusi" -#: core/models.py:878 +#: engine/core/models.py:889 msgid "promotion" msgstr "Promozione" -#: core/models.py:889 +#: engine/core/models.py:900 msgid "" "Represents a user's wishlist for storing and managing desired products. The " "class provides functionality to manage a collection of products, supporting " @@ -2134,60 +2174,60 @@ msgstr "" "rimozione di prodotti, nonché operazioni per l'aggiunta e la rimozione di " "più prodotti contemporaneamente." -#: core/models.py:901 +#: engine/core/models.py:912 msgid "products that the user has marked as wanted" msgstr "Prodotti che l'utente ha contrassegnato come desiderati" -#: core/models.py:909 +#: engine/core/models.py:920 msgid "user who owns this wishlist" msgstr "Utente che possiede questa wishlist" -#: core/models.py:910 +#: engine/core/models.py:921 msgid "wishlist owner" msgstr "Proprietario della lista dei desideri" -#: core/models.py:918 +#: engine/core/models.py:929 msgid "wishlist" msgstr "Lista dei desideri" -#: core/models.py:960 +#: engine/core/models.py:971 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." -#: core/models.py:973 +#: engine/core/models.py:984 msgid "documentary" msgstr "Documentario" -#: core/models.py:974 +#: engine/core/models.py:985 msgid "documentaries" msgstr "Documentari" -#: core/models.py:984 +#: engine/core/models.py:995 msgid "unresolved" msgstr "Non risolto" -#: core/models.py:989 +#: engine/core/models.py:1000 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 " @@ -2200,59 +2240,59 @@ msgstr "" "classe consente inoltre di associare un indirizzo a un utente, facilitando " "la gestione personalizzata dei dati." -#: core/models.py:1004 +#: engine/core/models.py:1015 msgid "address line for the customer" msgstr "Indirizzo del cliente" -#: core/models.py:1005 +#: engine/core/models.py:1016 msgid "address line" msgstr "Linea di indirizzo" -#: core/models.py:1007 +#: engine/core/models.py:1018 msgid "street" msgstr "Via" -#: core/models.py:1008 +#: engine/core/models.py:1019 msgid "district" msgstr "Distretto" -#: core/models.py:1009 +#: engine/core/models.py:1020 msgid "city" msgstr "Città" -#: core/models.py:1010 +#: engine/core/models.py:1021 msgid "region" msgstr "Regione" -#: core/models.py:1011 +#: engine/core/models.py:1022 msgid "postal code" msgstr "Codice postale" -#: core/models.py:1012 +#: engine/core/models.py:1023 msgid "country" msgstr "Paese" -#: core/models.py:1019 +#: engine/core/models.py:1030 msgid "geolocation point: (longitude, latitude)" msgstr "Punto di geolocalizzazione(Longitudine, Latitudine)" -#: core/models.py:1022 +#: engine/core/models.py:1033 msgid "full JSON response from geocoder for this address" msgstr "Risposta JSON completa di geocoder per questo indirizzo" -#: core/models.py:1027 +#: engine/core/models.py:1038 msgid "stored JSON response from the geocoding service" msgstr "Risposta JSON memorizzata dal servizio di geocodifica" -#: core/models.py:1035 +#: engine/core/models.py:1046 msgid "address" msgstr "Indirizzo" -#: core/models.py:1036 +#: engine/core/models.py:1047 msgid "addresses" msgstr "Indirizzi" -#: core/models.py:1048 +#: engine/core/models.py:1059 msgid "" "Represents a promotional code that can be used for discounts, managing its " "validity, type of discount, and application. The PromoCode class stores " @@ -2261,249 +2301,248 @@ 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." -#: core/models.py:1062 +#: engine/core/models.py:1073 msgid "unique code used by a user to redeem a discount" msgstr "Codice univoco utilizzato da un utente per riscattare uno sconto" -#: core/models.py:1063 +#: engine/core/models.py:1074 msgid "promo code identifier" msgstr "Identificatore del codice promozionale" -#: core/models.py:1070 +#: engine/core/models.py:1081 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" -#: core/models.py:1071 +#: engine/core/models.py:1082 msgid "fixed discount amount" msgstr "Importo fisso dello sconto" -#: core/models.py:1077 +#: engine/core/models.py:1088 msgid "percentage discount applied if fixed amount is not used" msgstr "Sconto percentuale applicato se l'importo fisso non viene utilizzato" -#: core/models.py:1078 +#: engine/core/models.py:1089 msgid "percentage discount" msgstr "Sconto percentuale" -#: core/models.py:1083 +#: engine/core/models.py:1094 msgid "timestamp when the promocode expires" msgstr "Data di scadenza del codice promozionale" -#: core/models.py:1084 +#: engine/core/models.py:1095 msgid "end validity time" msgstr "Tempo di validità finale" -#: core/models.py:1089 +#: engine/core/models.py:1100 msgid "timestamp from which this promocode is valid" msgstr "Data a partire dalla quale il codice promozionale è valido" -#: core/models.py:1090 +#: engine/core/models.py:1101 msgid "start validity time" msgstr "Ora di inizio validità" -#: core/models.py:1095 +#: engine/core/models.py:1106 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" -#: core/models.py:1096 +#: engine/core/models.py:1107 msgid "usage timestamp" msgstr "Timestamp d'uso" -#: core/models.py:1101 +#: engine/core/models.py:1112 msgid "user assigned to this promocode if applicable" msgstr "Utente assegnato a questo codice promozionale, se applicabile" -#: core/models.py:1102 +#: engine/core/models.py:1113 msgid "assigned user" msgstr "Utente assegnato" -#: core/models.py:1109 +#: engine/core/models.py:1120 msgid "promo code" msgstr "Codice promozionale" -#: core/models.py:1110 +#: engine/core/models.py:1121 msgid "promo codes" msgstr "Codici promozionali" -#: core/models.py:1125 +#: engine/core/models.py:1136 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." -#: core/models.py:1146 +#: engine/core/models.py:1157 msgid "promocode already used" msgstr "Il codice promozionale è già stato utilizzato" -#: core/models.py:1162 +#: engine/core/models.py:1173 #, python-brace-format msgid "invalid discount type for promocode {self.uuid}" msgstr "Tipo di sconto non valido per il codice promozionale {self.uuid}!" -#: core/models.py:1171 +#: engine/core/models.py:1182 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." -#: core/models.py:1188 +#: engine/core/models.py:1199 msgid "the billing address used for this order" msgstr "L'indirizzo di fatturazione utilizzato per questo ordine" -#: core/models.py:1196 +#: engine/core/models.py:1207 msgid "optional promo code applied to this order" msgstr "Codice promozionale opzionale applicato a questo ordine" -#: core/models.py:1197 +#: engine/core/models.py:1208 msgid "applied promo code" msgstr "Codice promozionale applicato" -#: core/models.py:1205 +#: engine/core/models.py:1216 msgid "the shipping address used for this order" msgstr "L'indirizzo di spedizione utilizzato per questo ordine" -#: core/models.py:1206 +#: engine/core/models.py:1217 msgid "shipping address" msgstr "Indirizzo di spedizione" -#: core/models.py:1212 +#: engine/core/models.py:1223 msgid "current status of the order in its lifecycle" msgstr "Stato attuale dell'ordine nel suo ciclo di vita" -#: core/models.py:1213 +#: engine/core/models.py:1224 msgid "order status" msgstr "Stato dell'ordine" -#: core/models.py:1218 core/models.py:1695 +#: engine/core/models.py:1229 engine/core/models.py:1755 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." -#: core/models.py:1224 +#: engine/core/models.py:1235 msgid "json representation of order attributes for this order" msgstr "Rappresentazione JSON degli attributi dell'ordine per questo ordine" -#: core/models.py:1230 +#: engine/core/models.py:1241 msgid "the user who placed the order" msgstr "L'utente che ha effettuato l'ordine" -#: core/models.py:1231 +#: engine/core/models.py:1242 msgid "user" msgstr "Utente" -#: core/models.py:1237 +#: engine/core/models.py:1248 msgid "the timestamp when the order was finalized" msgstr "Il timestamp del momento in cui l'ordine è stato finalizzato" -#: core/models.py:1238 +#: engine/core/models.py:1249 msgid "buy time" msgstr "Acquista tempo" -#: core/models.py:1245 +#: engine/core/models.py:1256 msgid "a human-readable identifier for the order" msgstr "Un identificatore leggibile dall'uomo per l'ordine" -#: core/models.py:1246 +#: engine/core/models.py:1257 msgid "human readable id" msgstr "ID leggibile dall'uomo" -#: core/models.py:1252 +#: engine/core/models.py:1263 msgid "order" msgstr "Ordine" -#: core/models.py:1294 +#: engine/core/models.py:1305 msgid "a user must have only one pending order at a time" msgstr "Un utente può avere un solo ordine pendente alla volta!" -#: core/models.py:1326 +#: engine/core/models.py:1337 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." -#: core/models.py:1331 +#: engine/core/models.py:1342 msgid "you cannot add inactive products to order" msgstr "Non è possibile aggiungere all'ordine prodotti inattivi" -#: core/models.py:1348 +#: engine/core/models.py:1359 msgid "you cannot add more products than available in stock" msgstr "" "Non è possibile aggiungere più prodotti di quelli disponibili in magazzino" -#: core/models.py:1370 core/models.py:1395 core/models.py:1403 +#: engine/core/models.py:1381 engine/core/models.py:1406 +#: engine/core/models.py:1414 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." -#: core/models.py:1391 +#: engine/core/models.py:1402 #, python-brace-format msgid "{name} does not exist with query <{query}>" msgstr "{name} non esiste con la query <{query}>!" -#: core/models.py:1423 +#: engine/core/models.py:1434 msgid "promocode does not exist" msgstr "Il codice promozionale non esiste" -#: core/models.py:1429 +#: engine/core/models.py:1440 msgid "you can only buy physical products with shipping address specified" msgstr "" "È possibile acquistare solo prodotti fisici con indirizzo di spedizione " "specificato!" -#: core/models.py:1448 +#: engine/core/models.py:1459 msgid "address does not exist" msgstr "L'indirizzo non esiste" -#: core/models.py:1469 core/models.py:1538 +#: engine/core/models.py:1480 engine/core/models.py:1549 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." -#: core/models.py:1472 core/models.py:1534 +#: engine/core/models.py:1483 engine/core/models.py:1545 msgid "invalid force value" msgstr "Valore di forza non valido" -#: core/models.py:1478 core/models.py:1541 +#: engine/core/models.py:1489 engine/core/models.py:1552 msgid "you cannot purchase an empty order!" msgstr "Non è possibile acquistare un ordine vuoto!" -#: core/models.py:1497 +#: engine/core/models.py:1508 msgid "you cannot buy an order without a user" msgstr "Non è possibile acquistare un ordine senza un utente!" -#: core/models.py:1511 +#: engine/core/models.py:1522 msgid "a user without a balance cannot buy with balance" msgstr "Un utente senza saldo non può acquistare con il saldo!" -#: core/models.py:1516 +#: engine/core/models.py:1527 msgid "insufficient funds to complete the order" msgstr "Fondi insufficienti per completare l'ordine" -#: core/models.py:1550 +#: engine/core/models.py:1561 msgid "" "you cannot buy without registration, please provide the following " "information: customer name, customer email, customer phone number" @@ -2512,7 +2551,7 @@ msgstr "" "seguenti informazioni: nome del cliente, e-mail del cliente, numero di " "telefono del cliente" -#: core/models.py:1559 +#: engine/core/models.py:1570 #, python-brace-format msgid "" "invalid payment method: {payment_method} from {available_payment_methods}" @@ -2520,7 +2559,47 @@ msgstr "" "Metodo di pagamento non valido: {payment_method} da " "{available_payment_methods}!" -#: core/models.py:1668 +#: engine/core/models.py:1685 +msgid "" +"Manages user feedback for products. This class is designed to capture and " +"store user feedback for specific products that they have purchased. It " +"contains attributes to store user comments, a reference to the related " +"product in the order, and a user-assigned rating. The class uses database " +"fields to effectively model and manage feedback data." +msgstr "" +"Gestisce i feedback degli utenti per i prodotti. Questa classe è progettata " +"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." + +#: engine/core/models.py:1697 +msgid "user-provided comments about their experience with the product" +msgstr "Commenti degli utenti sulla loro esperienza con il prodotto" + +#: engine/core/models.py:1698 +msgid "feedback comments" +msgstr "Commenti di feedback" + +#: engine/core/models.py:1705 +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:1706 +msgid "related order product" +msgstr "Prodotto correlato all'ordine" + +#: engine/core/models.py:1711 +msgid "user-assigned rating for the product" +msgstr "Valutazione del prodotto assegnata dall'utente" + +#: engine/core/models.py:1712 +msgid "product rating" +msgstr "Valutazione del prodotto" + +#: engine/core/models.py:1728 msgid "" "Represents products associated with orders and their attributes. The " "OrderProduct model maintains information about a product that is part of an " @@ -2543,116 +2622,116 @@ msgstr "" "modello si integra con i modelli Ordine e Prodotto e memorizza un " "riferimento ad essi." -#: core/models.py:1683 +#: engine/core/models.py:1743 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." -#: core/models.py:1684 +#: engine/core/models.py:1744 msgid "purchase price at order time" msgstr "Prezzo di acquisto al momento dell'ordine" -#: core/models.py:1689 +#: engine/core/models.py:1749 msgid "internal comments for admins about this ordered product" msgstr "Commenti interni per gli amministratori su questo prodotto ordinato" -#: core/models.py:1690 +#: engine/core/models.py:1750 msgid "internal comments" msgstr "Commenti interni" -#: core/models.py:1696 +#: engine/core/models.py:1756 msgid "user notifications" msgstr "Notifiche degli utenti" -#: core/models.py:1701 +#: engine/core/models.py:1761 msgid "json representation of this item's attributes" msgstr "Rappresentazione JSON degli attributi di questo elemento" -#: core/models.py:1702 +#: engine/core/models.py:1762 msgid "ordered product attributes" msgstr "Attributi del prodotto ordinati" -#: core/models.py:1707 +#: engine/core/models.py:1767 msgid "reference to the parent order that contains this product" msgstr "Riferimento all'ordine padre che contiene questo prodotto" -#: core/models.py:1708 +#: engine/core/models.py:1768 msgid "parent order" msgstr "Ordine dei genitori" -#: core/models.py:1717 +#: engine/core/models.py:1777 msgid "the specific product associated with this order line" msgstr "Il prodotto specifico associato a questa riga d'ordine" -#: core/models.py:1724 +#: engine/core/models.py:1784 msgid "quantity of this specific product in the order" msgstr "Quantità di questo prodotto specifico nell'ordine" -#: core/models.py:1725 +#: engine/core/models.py:1785 msgid "product quantity" msgstr "Quantità di prodotto" -#: core/models.py:1732 +#: engine/core/models.py:1792 msgid "current status of this product in the order" msgstr "Stato attuale di questo prodotto nell'ordine" -#: core/models.py:1733 +#: engine/core/models.py:1793 msgid "product line status" msgstr "Stato della linea di prodotti" -#: core/models.py:1798 +#: engine/core/models.py:1858 msgid "order product must have an order" msgstr "L'ordine-prodotto deve avere un ordine associato!" -#: core/models.py:1800 +#: engine/core/models.py:1860 #, python-brace-format msgid "wrong action specified for feedback: {action}" msgstr "Azione errata specificata per il feedback: {action}!" -#: core/models.py:1814 +#: engine/core/models.py:1874 msgid "you cannot feedback an order which is not received" msgstr "non è possibile dare un riscontro a un ordine non ricevuto" -#: core/models.py:1820 +#: engine/core/models.py:1880 msgid "name" msgstr "Nome" -#: core/models.py:1821 +#: engine/core/models.py:1881 msgid "URL of the integration" msgstr "URL dell'integrazione" -#: core/models.py:1822 +#: engine/core/models.py:1882 msgid "authentication credentials" msgstr "Credenziali di autenticazione" -#: core/models.py:1844 +#: engine/core/models.py:1904 msgid "you can only have one default CRM provider" msgstr "È possibile avere un solo provider CRM predefinito" -#: core/models.py:1854 +#: engine/core/models.py:1914 msgid "CRM" msgstr "CRM" -#: core/models.py:1855 +#: engine/core/models.py:1915 msgid "CRMs" msgstr "CRM" -#: core/models.py:1867 +#: engine/core/models.py:1927 msgid "order CRM link" msgstr "Link al CRM dell'ordine" -#: core/models.py:1868 +#: engine/core/models.py:1928 msgid "orders CRM links" msgstr "Link al CRM degli ordini" -#: core/models.py:1873 +#: engine/core/models.py:1933 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 " @@ -2662,161 +2741,117 @@ msgstr "" "il download della risorsa quando l'ordine associato è in uno stato " "completato." -#: core/models.py:1887 +#: engine/core/models.py:1947 msgid "download" msgstr "Scaricare" -#: core/models.py:1888 +#: engine/core/models.py:1948 msgid "downloads" msgstr "Scaricamento" -#: core/models.py:1902 -msgid "" -"Manages user feedback for products. This class is designed to capture and " -"store user feedback for specific products that they have purchased. It " -"contains attributes to store user comments, a reference to the related " -"product in the order, and a user-assigned rating. The class uses database " -"fields to effectively model and manage feedback data." -msgstr "" -"Gestisce i feedback degli utenti per i prodotti. Questa classe è progettata " -"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." - -#: core/models.py:1914 -msgid "user-provided comments about their experience with the product" -msgstr "Commenti degli utenti sulla loro esperienza con il prodotto" - -#: core/models.py:1915 -msgid "feedback comments" -msgstr "Commenti di feedback" - -#: core/models.py:1922 -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." - -#: core/models.py:1923 -msgid "related order product" -msgstr "Prodotto correlato all'ordine" - -#: core/models.py:1928 -msgid "user-assigned rating for the product" -msgstr "Valutazione del prodotto assegnata dall'utente" - -#: core/models.py:1929 -msgid "product rating" -msgstr "Valutazione del prodotto" - -#: core/serializers/utility.py:89 +#: engine/core/serializers/utility.py:89 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." -#: core/signals.py:73 -msgid "error during promocode creation: {e!s}" -msgstr "Errore durante la creazione del codice promozionale: {e!s}" - -#: core/sitemaps.py:25 +#: engine/core/sitemaps.py:25 msgid "Home" msgstr "Casa" -#: core/sitemaps.py:30 +#: engine/core/sitemaps.py:30 msgid "Contact Us" msgstr "Contatto" -#: core/sitemaps.py:35 +#: engine/core/sitemaps.py:35 msgid "About Us" msgstr "Chi siamo" -#: core/templates/digital_order_created_email.html:7 -#: core/templates/digital_order_created_email.html:100 -#: core/templates/digital_order_delivered_email.html:6 -#: core/templates/shipped_order_created_email.html:7 -#: core/templates/shipped_order_created_email.html:99 -#: core/templates/shipped_order_delivered_email.html:7 -#: core/templates/shipped_order_delivered_email.html:99 +#: engine/core/templates/digital_order_created_email.html:7 +#: engine/core/templates/digital_order_created_email.html:100 +#: engine/core/templates/digital_order_delivered_email.html:6 +#: engine/core/templates/shipped_order_created_email.html:7 +#: engine/core/templates/shipped_order_created_email.html:99 +#: engine/core/templates/shipped_order_delivered_email.html:7 +#: engine/core/templates/shipped_order_delivered_email.html:99 msgid "order confirmation" msgstr "Conferma dell'ordine" -#: core/templates/digital_order_created_email.html:95 -#: core/templates/digital_order_delivered_email.html:94 -#: core/templates/promocode_granted_email.html:94 -#: core/templates/shipped_order_created_email.html:94 -#: core/templates/shipped_order_delivered_email.html:94 +#: engine/core/templates/digital_order_created_email.html:95 +#: engine/core/templates/digital_order_delivered_email.html:94 +#: engine/core/templates/promocode_granted_email.html:94 +#: engine/core/templates/shipped_order_created_email.html:94 +#: engine/core/templates/shipped_order_delivered_email.html:94 msgid "logo" msgstr "Logo" -#: core/templates/digital_order_created_email.html:101 -#: core/templates/shipped_order_created_email.html:100 -#: core/templates/shipped_order_delivered_email.html:100 +#: engine/core/templates/digital_order_created_email.html:101 +#: engine/core/templates/shipped_order_created_email.html:100 +#: engine/core/templates/shipped_order_delivered_email.html:100 #, python-format msgid "hello %(order.user.first_name)s," msgstr "Hello %(order.user.first_name)s," -#: core/templates/digital_order_created_email.html:102 +#: engine/core/templates/digital_order_created_email.html:102 #, 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 " "abbiamo preso in carico il suo ordine. Di seguito sono riportati i dettagli " "del vostro ordine:" -#: core/templates/digital_order_created_email.html:112 -#: core/templates/digital_order_delivered_email.html:110 -#: core/templates/shipped_order_created_email.html:110 -#: core/templates/shipped_order_delivered_email.html:110 +#: engine/core/templates/digital_order_created_email.html:112 +#: engine/core/templates/digital_order_delivered_email.html:110 +#: engine/core/templates/shipped_order_created_email.html:110 +#: engine/core/templates/shipped_order_delivered_email.html:110 msgid "total" msgstr "Totale" -#: core/templates/digital_order_created_email.html:125 -#: core/templates/digital_order_delivered_email.html:157 -#: core/templates/shipped_order_created_email.html:127 -#: core/templates/shipped_order_delivered_email.html:127 +#: engine/core/templates/digital_order_created_email.html:125 +#: engine/core/templates/digital_order_delivered_email.html:157 +#: engine/core/templates/shipped_order_created_email.html:127 +#: engine/core/templates/shipped_order_delivered_email.html:127 msgid "total price" msgstr "Prezzo totale" -#: core/templates/digital_order_created_email.html:131 -#: core/templates/shipped_order_created_email.html:140 -#: core/templates/shipped_order_delivered_email.html:140 +#: engine/core/templates/digital_order_created_email.html:131 +#: engine/core/templates/shipped_order_created_email.html:140 +#: engine/core/templates/shipped_order_delivered_email.html:140 #, python-format 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." -#: core/templates/digital_order_created_email.html:133 +#: engine/core/templates/digital_order_created_email.html:133 #, python-format msgid "best regards,
the %(config.PROJECT_NAME)s team" msgstr "Cordiali saluti,
il team %(config.PROJECT_NAME)s" -#: core/templates/digital_order_created_email.html:139 -#: core/templates/digital_order_delivered_email.html:171 -#: core/templates/promocode_granted_email.html:114 +#: engine/core/templates/digital_order_created_email.html:139 +#: engine/core/templates/digital_order_delivered_email.html:171 +#: engine/core/templates/promocode_granted_email.html:114 msgid "all rights reserved" msgstr "Tutti i diritti riservati" -#: core/templates/digital_order_delivered_email.html:99 +#: engine/core/templates/digital_order_delivered_email.html:99 msgid "order delivered" msgstr "Ordine consegnato" -#: core/templates/digital_order_delivered_email.html:100 -#: core/templates/promocode_granted_email.html:100 +#: engine/core/templates/digital_order_delivered_email.html:100 +#: engine/core/templates/promocode_granted_email.html:100 #, python-format msgid "hello %(user_first_name)s," msgstr "Hello %(user_first_name)s," -#: core/templates/digital_order_delivered_email.html:101 +#: engine/core/templates/digital_order_delivered_email.html:101 #, python-format msgid "" "we have successfully processed your order №%(order_uuid)s! below are the\n" @@ -2825,7 +2860,7 @@ msgstr "" "Abbiamo elaborato con successo il suo ordine №%(order_uuid)s! Di seguito " "sono riportati i dettagli del suo ordine:" -#: core/templates/digital_order_delivered_email.html:128 +#: engine/core/templates/digital_order_delivered_email.html:128 msgid "" "additional\n" " information" @@ -2833,41 +2868,41 @@ msgstr "" "ulteriori\n" " informazioni" -#: core/templates/digital_order_delivered_email.html:137 -#: core/templates/json_table_widget.html:6 +#: engine/core/templates/digital_order_delivered_email.html:137 +#: engine/core/templates/json_table_widget.html:6 msgid "value" msgstr "Valore" -#: core/templates/digital_order_delivered_email.html:163 -#: core/templates/promocode_granted_email.html:106 +#: engine/core/templates/digital_order_delivered_email.html:163 +#: engine/core/templates/promocode_granted_email.html:106 #, python-format 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." -#: core/templates/digital_order_delivered_email.html:165 -#: core/templates/promocode_granted_email.html:108 +#: engine/core/templates/digital_order_delivered_email.html:165 +#: engine/core/templates/promocode_granted_email.html:108 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "Cordiali saluti,
il team %(project_name)s" -#: core/templates/json_table_widget.html:5 +#: engine/core/templates/json_table_widget.html:5 msgid "key" msgstr "Chiave" -#: core/templates/json_table_widget.html:40 +#: engine/core/templates/json_table_widget.html:40 msgid "Add Row" msgstr "Aggiungi riga" -#: core/templates/promocode_granted_email.html:6 -#: core/templates/promocode_granted_email.html:99 +#: engine/core/templates/promocode_granted_email.html:6 +#: engine/core/templates/promocode_granted_email.html:99 msgid "promocode granted" msgstr "Codice promozionale concesso" -#: core/templates/promocode_granted_email.html:101 +#: engine/core/templates/promocode_granted_email.html:101 msgid "" "Thank you for staying with us! We have granted you with a promocode\n" " for " @@ -2875,33 +2910,34 @@ msgstr "" "Grazie per essere stati con noi! Vi abbiamo concesso un codice promozionale\n" " per" -#: core/templates/shipped_order_created_email.html:101 -#: core/templates/shipped_order_delivered_email.html:101 +#: 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 " "seguito sono riportati i dettagli dell'ordine:" -#: core/templates/shipped_order_created_email.html:123 -#: core/templates/shipped_order_delivered_email.html:123 +#: engine/core/templates/shipped_order_created_email.html:123 +#: engine/core/templates/shipped_order_delivered_email.html:123 msgid "shipping price" msgstr "Prezzo di spedizione" -#: core/templates/shipped_order_created_email.html:133 -#: core/templates/shipped_order_delivered_email.html:133 +#: engine/core/templates/shipped_order_created_email.html:133 +#: engine/core/templates/shipped_order_delivered_email.html:133 msgid "your order will be delivered to the following address:" msgstr "Il vostro ordine sarà consegnato al seguente indirizzo:" -#: core/templates/shipped_order_created_email.html:142 -#: core/templates/shipped_order_delivered_email.html:142 +#: engine/core/templates/shipped_order_created_email.html:142 +#: engine/core/templates/shipped_order_delivered_email.html:142 #, python-format msgid "best regards,
The %(config.PROJECT_NAME)s team" msgstr "Cordiali saluti,
il team %(config.PROJECT_NAME)s" -#: core/templates/shipped_order_created_email.html:147 -#: core/templates/shipped_order_delivered_email.html:147 +#: engine/core/templates/shipped_order_created_email.html:147 +#: engine/core/templates/shipped_order_delivered_email.html:147 msgid "" "all rights\n" " reserved" @@ -2909,51 +2945,51 @@ msgstr "" "tutti i diritti\n" " riservato" -#: core/utils/caching.py:44 +#: engine/core/utils/caching.py:44 msgid "both data and timeout are required" msgstr "Sono richiesti sia i dati che il timeout" -#: core/utils/caching.py:46 +#: engine/core/utils/caching.py:46 msgid "invalid timeout value, it must be between 0 and 216000 seconds" msgstr "" "Valore di timeout non valido, deve essere compreso tra 0 e 216000 secondi." -#: core/utils/emailing.py:27 +#: engine/core/utils/emailing.py:27 #, python-brace-format msgid "{config.PROJECT_NAME} | contact us initiated" msgstr "{config.PROJECT_NAME} | contattaci iniziato" -#: core/utils/emailing.py:73 +#: engine/core/utils/emailing.py:73 #, python-brace-format msgid "{config.PROJECT_NAME} | order confirmation" msgstr "{config.PROJECT_NAME} | Conferma d'ordine" -#: core/utils/emailing.py:105 +#: engine/core/utils/emailing.py:105 #, python-brace-format msgid "{config.PROJECT_NAME} | order delivered" msgstr "{config.PROJECT_NAME} | Ordine consegnato" -#: core/utils/emailing.py:188 +#: engine/core/utils/emailing.py:188 #, python-brace-format msgid "{config.PROJECT_NAME} | promocode granted" msgstr "{config.PROJECT_NAME} | promocode granted" -#: core/utils/messages.py:3 +#: engine/core/utils/messages.py:3 msgid "you do not have permission to perform this action." msgstr "Non si ha il permesso di eseguire questa azione." -#: core/utils/nominatim.py:8 +#: engine/core/utils/nominatim.py:8 msgid "NOMINATIM_URL must be configured." msgstr "Il parametro NOMINATIM_URL deve essere configurato!" -#: core/validators.py:16 +#: engine/core/validators.py:16 #, 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" -#: core/views.py:72 +#: engine/core/views.py:71 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." @@ -2962,7 +2998,7 @@ msgstr "" "XML. Assicura che la risposta includa l'intestazione del tipo di contenuto " "appropriato per XML." -#: core/views.py:87 +#: engine/core/views.py:86 msgid "" "Handles the detailed view response for a sitemap. This function processes " "the request, fetches the appropriate sitemap detail response, and sets the " @@ -2972,17 +3008,17 @@ msgstr "" "funzione elabora la richiesta, recupera la risposta dettagliata della " "sitemap e imposta l'intestazione Content-Type per XML." -#: core/views.py:116 +#: engine/core/views.py:115 msgid "" "Returns a list of supported languages and their corresponding information." msgstr "" "Restituisce un elenco di lingue supportate e le informazioni corrispondenti." -#: core/views.py:148 +#: engine/core/views.py:147 msgid "Returns the parameters of the website as a JSON object." msgstr "Restituisce i parametri del sito web come oggetto JSON." -#: core/views.py:167 +#: engine/core/views.py:166 msgid "" "Handles cache operations such as reading and setting cache data with a " "specified key and timeout." @@ -2990,11 +3026,11 @@ msgstr "" "Gestisce le operazioni di cache, come la lettura e l'impostazione dei dati " "della cache con una chiave e un timeout specificati." -#: core/views.py:194 +#: engine/core/views.py:193 msgid "Handles `contact us` form submissions." msgstr "Gestisce l'invio del modulo `contatti`." -#: core/views.py:215 +#: engine/core/views.py:214 msgid "" "Handles requests for processing and validating URLs from incoming POST " "requests." @@ -3002,54 +3038,63 @@ msgstr "" "Gestisce le richieste di elaborazione e validazione degli URL dalle " "richieste POST in arrivo." -#: core/views.py:255 +#: engine/core/views.py:254 msgid "Handles global search queries." msgstr "Gestisce le query di ricerca globali." -#: core/views.py:270 +#: engine/core/views.py:269 msgid "Handles the logic of buying as a business without registration." msgstr "Gestisce la logica dell'acquisto come azienda senza registrazione." -#: core/views.py:306 +#: engine/core/views.py:305 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." -#: core/views.py:316 +#: engine/core/views.py:315 msgid "order_product_uuid is required" msgstr "order_product_uuid è obbligatorio" -#: core/views.py:322 +#: engine/core/views.py:321 msgid "you can only download the digital asset once" msgstr "È possibile scaricare l'asset digitale una sola volta" -#: core/views.py:325 +#: engine/core/views.py:324 msgid "the order must be paid before downloading the digital asset" msgstr "l'ordine deve essere pagato prima di scaricare il bene digitale" -#: core/views.py:331 +#: engine/core/views.py:330 msgid "the order product does not have a product" msgstr "Il prodotto dell'ordine non ha un prodotto" -#: core/views.py:369 +#: engine/core/views.py:368 msgid "favicon not found" msgstr "favicon non trovata" -#: core/views.py:374 +#: engine/core/views.py:373 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." -#: core/views.py:386 +#: engine/core/views.py:385 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 " @@ -3057,11 +3102,11 @@ msgstr "" "indice dell'interfaccia di amministrazione di Django. Utilizza la funzione " "`redirect` di Django per gestire il reindirizzamento HTTP." -#: core/views.py:399 +#: engine/core/views.py:398 msgid "Returns current version of the eVibes. " msgstr "Restituisce la versione corrente di eVibes." -#: core/viewsets.py:137 +#: engine/core/viewsets.py:137 msgid "" "Defines a viewset for managing Evibes-related operations. The EvibesViewSet " "class inherits from ModelViewSet and provides functionality for handling " @@ -3072,24 +3117,23 @@ 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." +"Include il supporto per classi di serializzatori dinamici in base all'azione " +"corrente, permessi personalizzabili e formati di rendering." -#: core/viewsets.py:157 +#: engine/core/viewsets.py:157 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." -#: core/viewsets.py:176 +#: engine/core/viewsets.py:176 msgid "" "Handles operations related to Attribute objects within the application. " "Provides a set of API endpoints to interact with Attribute data. This class " @@ -3102,16 +3146,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." -#: core/viewsets.py:195 +#: engine/core/viewsets.py:195 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, " @@ -3120,7 +3164,7 @@ msgstr "" "per le diverse azioni. Le funzionalità di filtraggio sono fornite da " "DjangoFilterBackend." -#: core/viewsets.py:214 +#: engine/core/viewsets.py:214 msgid "" "Manages views for Category-related operations. The CategoryViewSet class is " "responsible for handling operations related to the Category model in the " @@ -3135,7 +3179,7 @@ msgstr "" "le autorizzazioni per garantire che solo gli utenti autorizzati possano " "accedere a dati specifici." -#: core/viewsets.py:326 +#: engine/core/viewsets.py:326 msgid "" "Represents a viewset for managing Brand instances. This class provides " "functionality for querying, filtering, and serializing Brand objects. It " @@ -3143,11 +3187,11 @@ 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." -#: core/viewsets.py:438 +#: engine/core/viewsets.py:438 msgid "" "Manages operations related to the `Product` model in the system. This class " "provides a viewset for managing products, including their filtering, " @@ -3160,12 +3204,12 @@ 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" -" e si integra con il framework Django REST per le operazioni API RESTful. " +"specifiche. Si estende da `EvibesViewSet` 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." -#: core/viewsets.py:568 +#: engine/core/viewsets.py:568 msgid "" "Represents a viewset for managing Vendor objects. This viewset allows " "fetching, filtering, and serializing Vendor data. It defines the queryset, " @@ -3173,38 +3217,38 @@ 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." -#: core/viewsets.py:588 +#: engine/core/viewsets.py:588 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 `EvibesViewSet` 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 " "di filtraggio di Django per interrogare i dati." -#: core/viewsets.py:615 +#: engine/core/viewsets.py:615 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 " @@ -3216,12 +3260,12 @@ msgstr "" "serializzatori in base all'azione specifica da eseguire e applica le " "autorizzazioni di conseguenza durante l'interazione con i dati degli ordini." -#: core/viewsets.py:813 +#: engine/core/viewsets.py:813 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. " @@ -3231,13 +3275,12 @@ msgstr "" "richiesta. Inoltre, fornisce un'azione dettagliata per gestire il feedback " "sulle istanze di OrderProduct." -#: core/viewsets.py:867 +#: engine/core/viewsets.py:867 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." -#: core/viewsets.py:880 +#: engine/core/viewsets.py:880 msgid "" "Manages the retrieval and handling of PromoCode instances through various " "API actions." @@ -3245,20 +3288,20 @@ msgstr "" "Gestisce il recupero e la gestione delle istanze di PromoCode attraverso " "varie azioni API." -#: core/viewsets.py:902 +#: engine/core/viewsets.py:902 msgid "Represents a view set for managing promotions. " msgstr "Rappresenta un insieme di viste per la gestione delle promozioni." -#: core/viewsets.py:915 +#: engine/core/viewsets.py:915 msgid "Handles operations related to Stock data in the system." msgstr "Gestisce le operazioni relative ai dati delle scorte nel sistema." -#: core/viewsets.py:929 +#: engine/core/viewsets.py:929 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." @@ -3270,10 +3313,10 @@ 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." -#: core/viewsets.py:1044 +#: engine/core/viewsets.py:1044 msgid "" "This class provides viewset functionality for managing `Address` objects. " "The AddressViewSet class enables CRUD operations, filtering, and custom " @@ -3281,18 +3324,18 @@ 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." -#: core/viewsets.py:1111 +#: engine/core/viewsets.py:1111 #, python-brace-format msgid "Geocoding error: {e}" msgstr "Errore di geocodifica: {e}" -#: core/viewsets.py:1119 +#: engine/core/viewsets.py:1119 msgid "" "Handles operations related to Product Tags within the application. This " "class provides functionality for retrieving, filtering, and serializing " diff --git a/engine/core/locale/ja_JP/LC_MESSAGES/django.mo b/engine/core/locale/ja_JP/LC_MESSAGES/django.mo new file mode 100644 index 00000000..68c28af4 Binary files /dev/null and b/engine/core/locale/ja_JP/LC_MESSAGES/django.mo differ diff --git a/core/locale/ja_JP/LC_MESSAGES/django.po b/engine/core/locale/ja_JP/LC_MESSAGES/django.po similarity index 55% rename from core/locale/ja_JP/LC_MESSAGES/django.po rename to engine/core/locale/ja_JP/LC_MESSAGES/django.po index 0549eab9..88b6142c 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,1442 +13,1528 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: core/abstract.py:12 +#: engine/core/abstract.py:12 msgid "unique id" msgstr "ユニークID" -#: core/abstract.py:13 +#: engine/core/abstract.py:13 msgid "unique id is used to surely identify any database object" -msgstr "ユニークIDは、データベースオブジェクトを確実に識別するために使用されます。" +msgstr "" +"ユニークIDは、データベースオブジェクトを確実に識別するために使用されます。" -#: core/abstract.py:20 +#: engine/core/abstract.py:20 msgid "is active" msgstr "アクティブ" -#: core/abstract.py:21 +#: engine/core/abstract.py:21 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に設定された場合、このオブジェクトは必要なパーミッションのないユーザーに" +"は見えない。" -#: core/abstract.py:23 core/choices.py:18 +#: engine/core/abstract.py:23 engine/core/choices.py:18 msgid "created" msgstr "作成" -#: core/abstract.py:23 +#: engine/core/abstract.py:23 msgid "when the object first appeared on the database" msgstr "そのオブジェクトが初めてデータベースに登場した時" -#: core/abstract.py:24 +#: engine/core/abstract.py:24 msgid "modified" msgstr "変形" -#: core/abstract.py:24 +#: engine/core/abstract.py:24 msgid "when the object was last modified" msgstr "オブジェクトの最終編集日時" -#: core/admin.py:68 +#: engine/core/admin.py:68 msgid "translations" msgstr "翻訳" -#: core/admin.py:72 +#: engine/core/admin.py:72 msgid "general" msgstr "一般" -#: core/admin.py:74 +#: engine/core/admin.py:74 msgid "relations" msgstr "関係" -#: core/admin.py:76 +#: engine/core/admin.py:76 msgid "additional info" msgstr "追加情報" -#: core/admin.py:94 +#: engine/core/admin.py:94 msgid "metadata" msgstr "メタデータ" -#: core/admin.py:101 +#: engine/core/admin.py:101 msgid "timestamps" msgstr "タイムスタンプ" -#: core/admin.py:116 +#: engine/core/admin.py:116 #, python-format msgid "activate selected %(verbose_name_plural)s" msgstr "選択した%(verbose_name_plural)sをアクティブにする" -#: core/admin.py:121 +#: engine/core/admin.py:121 msgid "selected items have been activated." msgstr "選択した項目がアクティブになりました!" -#: core/admin.py:127 +#: engine/core/admin.py:127 #, python-format msgid "deactivate selected %(verbose_name_plural)s" msgstr "選択された%(verbose_name_plural)sを非アクティブにする" -#: core/admin.py:132 +#: engine/core/admin.py:132 msgid "selected items have been deactivated." msgstr "選択されたアイテムは無効化されました!" -#: core/admin.py:144 core/graphene/object_types.py:582 -#: core/graphene/object_types.py:589 core/models.py:783 core/models.py:791 +#: engine/core/admin.py:144 engine/core/graphene/object_types.py:586 +#: engine/core/graphene/object_types.py:593 engine/core/models.py:794 +#: engine/core/models.py:802 msgid "attribute value" msgstr "属性値" -#: core/admin.py:145 core/graphene/object_types.py:75 core/models.py:792 +#: engine/core/admin.py:145 engine/core/graphene/object_types.py:75 +#: engine/core/models.py:803 msgid "attribute values" msgstr "属性値" -#: core/admin.py:156 +#: engine/core/admin.py:156 msgid "image" msgstr "画像" -#: core/admin.py:157 core/graphene/object_types.py:474 +#: engine/core/admin.py:157 engine/core/graphene/object_types.py:474 msgid "images" msgstr "画像" -#: core/admin.py:168 core/models.py:559 +#: engine/core/admin.py:169 engine/core/models.py:559 msgid "stock" msgstr "在庫" -#: core/admin.py:169 core/graphene/object_types.py:636 +#: engine/core/admin.py:170 engine/core/graphene/object_types.py:640 msgid "stocks" msgstr "株式" -#: core/admin.py:182 core/models.py:1744 +#: engine/core/admin.py:183 engine/core/models.py:1804 msgid "order product" msgstr "商品のご注文" -#: core/admin.py:183 core/graphene/object_types.py:389 core/models.py:1745 +#: engine/core/admin.py:184 engine/core/graphene/object_types.py:389 +#: engine/core/models.py:1805 msgid "order products" msgstr "商品のご注文" -#: core/admin.py:196 core/admin.py:197 +#: engine/core/admin.py:197 engine/core/admin.py:198 msgid "children" msgstr "子供たち" -#: core/admin.py:965 +#: engine/core/admin.py:969 msgid "Config" msgstr "コンフィグ" -#: core/apps.py:8 +#: engine/core/apps.py:8 msgid "core" msgstr "コア" -#: core/choices.py:4 core/choices.py:20 +#: engine/core/choices.py:4 engine/core/choices.py:20 msgid "finished" msgstr "終了" -#: core/choices.py:5 core/choices.py:19 +#: engine/core/choices.py:5 engine/core/choices.py:19 msgid "delivering" msgstr "配達" -#: core/choices.py:6 +#: engine/core/choices.py:6 msgid "delivered" msgstr "配信" -#: core/choices.py:7 +#: engine/core/choices.py:7 msgid "canceled" msgstr "キャンセル" -#: core/choices.py:8 core/choices.py:16 core/choices.py:24 +#: engine/core/choices.py:8 engine/core/choices.py:16 engine/core/choices.py:24 msgid "failed" msgstr "失敗" -#: core/choices.py:9 core/choices.py:15 +#: engine/core/choices.py:9 engine/core/choices.py:15 msgid "pending" msgstr "申請中" -#: core/choices.py:10 +#: engine/core/choices.py:10 msgid "accepted" msgstr "受諾" -#: core/choices.py:11 +#: engine/core/choices.py:11 msgid "money returned" msgstr "返金" -#: core/choices.py:17 +#: engine/core/choices.py:17 msgid "payment" msgstr "支払い" -#: core/choices.py:21 +#: engine/core/choices.py:21 msgid "momental" msgstr "モメンタル" -#: core/choices.py:24 +#: engine/core/choices.py:24 msgid "successful" msgstr "成功" -#: core/docs/drf/views.py:17 core/graphene/mutations.py:38 +#: engine/core/docs/drf/views.py:17 engine/core/graphene/mutations.py:38 msgid "cache I/O" msgstr "キャッシュI/O" -#: core/docs/drf/views.py:19 +#: engine/core/docs/drf/views.py:19 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 "" "許可されたデータをキャッシュから読み出すには、キーのみを適用する。\n" -"キャッシュにデータを書き込むには、認証付きのキー、データ、タイムアウトを適用する。" +"キャッシュにデータを書き込むには、認証付きのキー、データ、タイムアウトを適用" +"する。" -#: core/docs/drf/views.py:32 +#: engine/core/docs/drf/views.py:32 msgid "get a list of supported languages" msgstr "サポートされている言語のリストを取得する" -#: core/docs/drf/views.py:41 +#: engine/core/docs/drf/views.py:41 msgid "get application's exposable parameters" msgstr "アプリケーションの公開可能なパラメータを取得する" -#: core/docs/drf/views.py:48 +#: engine/core/docs/drf/views.py:48 msgid "send a message to the support team" msgstr "サポートチームにメッセージを送る" -#: core/docs/drf/views.py:59 core/graphene/mutations.py:58 +#: engine/core/docs/drf/views.py:59 engine/core/graphene/mutations.py:58 msgid "request a CORSed URL" msgstr "CORSされたURLを要求する。httpsのみ許可。" -#: core/docs/drf/views.py:85 +#: engine/core/docs/drf/views.py:85 msgid "global search endpoint to query across project's tables" msgstr "プロジェクト全体のテーブルを検索するグローバル検索エンドポイント" -#: core/docs/drf/views.py:91 +#: engine/core/docs/drf/views.py:91 msgid "purchase an order as a business" msgstr "ビジネスとして注文を購入する" -#: core/docs/drf/views.py:98 +#: engine/core/docs/drf/views.py:98 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` を使用して、ビジネスと" +"して注文を購入する。" -#: core/docs/drf/viewsets.py:58 +#: engine/core/docs/drf/viewsets.py:58 msgid "list all attribute groups (simple view)" msgstr "すべての属性グループをリストアップ(シンプルビュー)" -#: core/docs/drf/viewsets.py:62 +#: engine/core/docs/drf/viewsets.py:62 msgid "retrieve a single attribute group (detailed view)" msgstr "単一の属性グループを取得する(詳細表示)" -#: core/docs/drf/viewsets.py:66 +#: engine/core/docs/drf/viewsets.py:66 msgid "create an attribute group" msgstr "属性グループの作成" -#: core/docs/drf/viewsets.py:70 +#: engine/core/docs/drf/viewsets.py:70 msgid "delete an attribute group" msgstr "属性グループの削除" -#: core/docs/drf/viewsets.py:74 +#: engine/core/docs/drf/viewsets.py:74 msgid "rewrite an existing attribute group saving non-editables" msgstr "既存の属性グループを書き換えて、編集不可能なものを保存する。" -#: core/docs/drf/viewsets.py:78 -msgid "" -"rewrite some fields of an existing attribute group saving non-editables" -msgstr "既存の属性グループのいくつかのフィールドを書き換え、編集不可能なものを保存する。" +#: engine/core/docs/drf/viewsets.py:78 +msgid "rewrite some fields of an existing attribute group saving non-editables" +msgstr "" +"既存の属性グループのいくつかのフィールドを書き換え、編集不可能なものを保存す" +"る。" -#: core/docs/drf/viewsets.py:85 +#: engine/core/docs/drf/viewsets.py:85 msgid "list all attributes (simple view)" msgstr "すべての属性をリストアップ(シンプルな表示)" -#: core/docs/drf/viewsets.py:89 +#: engine/core/docs/drf/viewsets.py:89 msgid "retrieve a single attribute (detailed view)" msgstr "単一の属性を取得する(詳細表示)" -#: core/docs/drf/viewsets.py:93 +#: engine/core/docs/drf/viewsets.py:93 msgid "create an attribute" msgstr "属性を作成する" -#: core/docs/drf/viewsets.py:97 +#: engine/core/docs/drf/viewsets.py:97 msgid "delete an attribute" msgstr "属性を削除する" -#: core/docs/drf/viewsets.py:101 +#: engine/core/docs/drf/viewsets.py:101 msgid "rewrite an existing attribute saving non-editables" msgstr "既存の属性を書き換える。" -#: core/docs/drf/viewsets.py:105 +#: engine/core/docs/drf/viewsets.py:105 msgid "rewrite some fields of an existing attribute saving non-editables" -msgstr "既存の属性のいくつかのフィールドを書き換え、編集不可能なものを保存する。" +msgstr "" +"既存の属性のいくつかのフィールドを書き換え、編集不可能なものを保存する。" -#: core/docs/drf/viewsets.py:112 +#: engine/core/docs/drf/viewsets.py:112 msgid "list all attribute values (simple view)" msgstr "すべての属性値をリストアップ(シンプルビュー)" -#: core/docs/drf/viewsets.py:116 +#: engine/core/docs/drf/viewsets.py:116 msgid "retrieve a single attribute value (detailed view)" msgstr "単一の属性値を取得する(詳細表示)" -#: core/docs/drf/viewsets.py:120 +#: engine/core/docs/drf/viewsets.py:120 msgid "create an attribute value" msgstr "属性値の作成" -#: core/docs/drf/viewsets.py:124 +#: engine/core/docs/drf/viewsets.py:124 msgid "delete an attribute value" msgstr "属性値の削除" -#: core/docs/drf/viewsets.py:128 +#: engine/core/docs/drf/viewsets.py:128 msgid "rewrite an existing attribute value saving non-editables" msgstr "既存の属性値を書き換える。" -#: core/docs/drf/viewsets.py:132 -msgid "" -"rewrite some fields of an existing attribute value saving non-editables" -msgstr "既存の属性値のいくつかのフィールドを書き換え、編集不可能な値を保存する。" +#: engine/core/docs/drf/viewsets.py:132 +msgid "rewrite some fields of an existing attribute value saving non-editables" +msgstr "" +"既存の属性値のいくつかのフィールドを書き換え、編集不可能な値を保存する。" -#: core/docs/drf/viewsets.py:139 core/docs/drf/viewsets.py:140 +#: engine/core/docs/drf/viewsets.py:139 engine/core/docs/drf/viewsets.py:140 msgid "list all categories (simple view)" msgstr "全カテゴリーを一覧表示(シンプル表示)" -#: core/docs/drf/viewsets.py:144 core/docs/drf/viewsets.py:145 +#: engine/core/docs/drf/viewsets.py:144 engine/core/docs/drf/viewsets.py:145 msgid "retrieve a single category (detailed view)" msgstr "単一のカテゴリーを取得する(詳細表示)" -#: core/docs/drf/viewsets.py:149 core/docs/drf/viewsets.py:150 -msgid "create a category" -msgstr "カテゴリーを作成する" - -#: core/docs/drf/viewsets.py:154 core/docs/drf/viewsets.py:155 -msgid "delete a category" -msgstr "カテゴリーの削除" - -#: core/docs/drf/viewsets.py:159 core/docs/drf/viewsets.py:160 -msgid "rewrite an existing category saving non-editables" -msgstr "既存のカテゴリーを書き換え、編集不可能なものを保存する。" - -#: core/docs/drf/viewsets.py:164 core/docs/drf/viewsets.py:165 -msgid "rewrite some fields of an existing category saving non-editables" -msgstr "編集不可を保存している既存のカテゴリのいくつかのフィールドを書き換える" - -#: core/docs/drf/viewsets.py:169 core/docs/drf/viewsets.py:501 -#: core/graphene/object_types.py:117 core/graphene/object_types.py:207 -#: core/graphene/object_types.py:482 -msgid "SEO Meta snapshot" -msgstr "SEOメタ・スナップショット" - -#: core/docs/drf/viewsets.py:170 -msgid "returns a snapshot of the category's SEO meta data" -msgstr "カテゴリのSEOメタデータのスナップショットを返します。" - -#: core/docs/drf/viewsets.py:175 +#: engine/core/docs/drf/viewsets.py:150 engine/core/docs/drf/viewsets.py:183 msgid "Category UUID or slug" msgstr "カテゴリーUUIDまたはスラッグ" -#: core/docs/drf/viewsets.py:188 +#: engine/core/docs/drf/viewsets.py:157 engine/core/docs/drf/viewsets.py:158 +msgid "create a category" +msgstr "カテゴリーを作成する" + +#: engine/core/docs/drf/viewsets.py:162 engine/core/docs/drf/viewsets.py:163 +msgid "delete a category" +msgstr "カテゴリーの削除" + +#: engine/core/docs/drf/viewsets.py:167 engine/core/docs/drf/viewsets.py:168 +msgid "rewrite an existing category saving non-editables" +msgstr "既存のカテゴリーを書き換え、編集不可能なものを保存する。" + +#: engine/core/docs/drf/viewsets.py:172 engine/core/docs/drf/viewsets.py:173 +msgid "rewrite some fields of an existing category saving non-editables" +msgstr "編集不可を保存している既存のカテゴリのいくつかのフィールドを書き換える" + +#: engine/core/docs/drf/viewsets.py:177 engine/core/docs/drf/viewsets.py:517 +#: engine/core/graphene/object_types.py:117 +#: engine/core/graphene/object_types.py:207 +#: engine/core/graphene/object_types.py:482 +msgid "SEO Meta snapshot" +msgstr "SEOメタ・スナップショット" + +#: engine/core/docs/drf/viewsets.py:178 +msgid "returns a snapshot of the category's SEO meta data" +msgstr "カテゴリのSEOメタデータのスナップショットを返します。" + +#: engine/core/docs/drf/viewsets.py:196 msgid "list all orders (simple view)" msgstr "全カテゴリーを一覧表示(シンプル表示)" -#: core/docs/drf/viewsets.py:189 +#: engine/core/docs/drf/viewsets.py:197 msgid "for non-staff users, only their own orders are returned." msgstr "スタッフ以外のユーザーについては、自分の注文のみが返却される。" -#: core/docs/drf/viewsets.py:195 +#: engine/core/docs/drf/viewsets.py:203 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の大文字小文字を区別しない部分文字列検索" -#: core/docs/drf/viewsets.py:202 +#: engine/core/docs/drf/viewsets.py:210 msgid "Filter orders with buy_time >= this ISO 8601 datetime" msgstr "buy_time >= このISO 8601の日時を持つ注文をフィルタリングする。" -#: core/docs/drf/viewsets.py:207 +#: engine/core/docs/drf/viewsets.py:215 msgid "Filter orders with buy_time <= this ISO 8601 datetime" msgstr "buy_time <= このISO 8601の日付時間の注文をフィルタリングする。" -#: core/docs/drf/viewsets.py:212 +#: engine/core/docs/drf/viewsets.py:220 msgid "Filter by exact order UUID" msgstr "正確な順序UUIDによるフィルタリング" -#: core/docs/drf/viewsets.py:217 +#: engine/core/docs/drf/viewsets.py:225 msgid "Filter by exact human-readable order ID" msgstr "人間が読み取れる正確な注文IDによるフィルタリング" -#: core/docs/drf/viewsets.py:222 +#: engine/core/docs/drf/viewsets.py:230 msgid "Filter by user's email (case-insensitive exact match)" -msgstr "ユーザーのEメールによるフィルタリング(大文字・小文字を区別しない完全一致)" +msgstr "" +"ユーザーのEメールによるフィルタリング(大文字・小文字を区別しない完全一致)" -#: core/docs/drf/viewsets.py:227 +#: engine/core/docs/drf/viewsets.py:235 msgid "Filter by user's UUID" msgstr "ユーザーのUUIDによるフィルタリング" -#: core/docs/drf/viewsets.py:232 +#: engine/core/docs/drf/viewsets.py:240 msgid "Filter by order status (case-insensitive substring match)" -msgstr "注文ステータスによるフィルタリング(大文字と小文字を区別しない部分文字列マッチ)" - -#: core/docs/drf/viewsets.py:238 -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')." msgstr "" -"uuid、human_readable_id、user_email、user、status、created、modified、buy_time、randomのいずれかによる順序。降順の場合は'-'をプレフィックスとしてつける(例:'-buy_time')。" +"注文ステータスによるフィルタリング(大文字と小文字を区別しない部分文字列マッ" +"チ)" -#: core/docs/drf/viewsets.py:247 +#: engine/core/docs/drf/viewsets.py:246 +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')." +msgstr "" +"uuid、human_readable_id、user_email、user、status、created、modified、" +"buy_time、randomのいずれかによる順序。降順の場合は'-'をプレフィックスとしてつ" +"ける(例:'-buy_time')。" + +#: engine/core/docs/drf/viewsets.py:255 msgid "retrieve a single order (detailed view)" msgstr "単一のカテゴリーを取得する(詳細表示)" -#: core/docs/drf/viewsets.py:251 +#: engine/core/docs/drf/viewsets.py:260 +msgid "Order UUID or human-readable id" +msgstr "注文UUIDまたは人間が読めるID" + +#: engine/core/docs/drf/viewsets.py:267 msgid "create an order" msgstr "属性を作成する" -#: core/docs/drf/viewsets.py:252 +#: engine/core/docs/drf/viewsets.py:268 msgid "doesn't work for non-staff users." msgstr "スタッフ以外のユーザーには使えない。" -#: core/docs/drf/viewsets.py:256 +#: engine/core/docs/drf/viewsets.py:272 msgid "delete an order" msgstr "属性を削除する" -#: core/docs/drf/viewsets.py:260 +#: engine/core/docs/drf/viewsets.py:276 msgid "rewrite an existing order saving non-editables" msgstr "既存のカテゴリーを書き換え、編集不可能なものを保存する。" -#: core/docs/drf/viewsets.py:264 +#: engine/core/docs/drf/viewsets.py:280 msgid "rewrite some fields of an existing order saving non-editables" msgstr "編集不可を保存している既存のカテゴリのいくつかのフィールドを書き換える" -#: core/docs/drf/viewsets.py:268 +#: engine/core/docs/drf/viewsets.py:284 msgid "purchase an order" msgstr "注文時の購入価格" -#: core/docs/drf/viewsets.py:270 +#: engine/core/docs/drf/viewsets.py:286 msgid "" "finalizes the order purchase. if `force_balance` is used, the purchase is " "completed using the user's balance; if `force_payment` is used, a " "transaction is initiated." msgstr "" -"注文の購入を確定する。force_balance` が使用された場合、ユーザーの残高を使用して購入が完了します。 `force_payment` " -"が使用された場合、トランザクションが開始されます。" +"注文の購入を確定する。force_balance` が使用された場合、ユーザーの残高を使用し" +"て購入が完了します。 `force_payment` が使用された場合、トランザクションが開始" +"されます。" -#: core/docs/drf/viewsets.py:282 core/graphene/mutations.py:335 +#: engine/core/docs/drf/viewsets.py:298 engine/core/graphene/mutations.py:335 msgid "purchase an order without account creation" msgstr "アカウントを作成せずに注文を購入する" -#: core/docs/drf/viewsets.py:283 +#: engine/core/docs/drf/viewsets.py:299 msgid "finalizes the order purchase for a non-registered user." msgstr "は、未登録ユーザーの注文購入を確定します。" -#: core/docs/drf/viewsets.py:291 +#: engine/core/docs/drf/viewsets.py:307 msgid "add product to order" msgstr "注文に商品を追加する" -#: core/docs/drf/viewsets.py:292 +#: engine/core/docs/drf/viewsets.py:308 msgid "" "adds a product to an order using the provided `product_uuid` and " "`attributes`." -msgstr "指定した `product_uuid` と `attributes` を使用して、商品を注文に追加する。" +msgstr "" +"指定した `product_uuid` と `attributes` を使用して、商品を注文に追加する。" -#: core/docs/drf/viewsets.py:297 +#: engine/core/docs/drf/viewsets.py:313 msgid "add a list of products to order, quantities will not count" msgstr "数量はカウントされません。" -#: core/docs/drf/viewsets.py:298 +#: engine/core/docs/drf/viewsets.py:314 msgid "" "adds a list of products to an order using the provided `product_uuid` and " "`attributes`." -msgstr "指定された `product_uuid` と `attributes` を使用して、注文に商品のリストを追加する。" +msgstr "" +"指定された `product_uuid` と `attributes` を使用して、注文に商品のリストを追" +"加する。" -#: core/docs/drf/viewsets.py:303 +#: engine/core/docs/drf/viewsets.py:319 msgid "remove product from order" msgstr "注文から商品を削除する" -#: core/docs/drf/viewsets.py:304 +#: engine/core/docs/drf/viewsets.py:320 msgid "" "removes a product from an order using the provided `product_uuid` and " "`attributes`." -msgstr "指定された `product_uuid` と `attributes` を使用して、注文から商品を削除する。" +msgstr "" +"指定された `product_uuid` と `attributes` を使用して、注文から商品を削除す" +"る。" -#: core/docs/drf/viewsets.py:309 +#: engine/core/docs/drf/viewsets.py:325 msgid "remove product from order, quantities will not count" msgstr "注文から商品を削除すると、数量はカウントされません。" -#: core/docs/drf/viewsets.py:310 +#: engine/core/docs/drf/viewsets.py:326 msgid "" "removes a list of products from an order using the provided `product_uuid` " "and `attributes`" -msgstr "指定された `product_uuid` と `attributes` を用いて、注文から商品のリストを削除する。" +msgstr "" +"指定された `product_uuid` と `attributes` を用いて、注文から商品のリストを削" +"除する。" -#: core/docs/drf/viewsets.py:318 +#: engine/core/docs/drf/viewsets.py:334 msgid "list all wishlists (simple view)" msgstr "すべての属性をリストアップ(シンプルな表示)" -#: core/docs/drf/viewsets.py:319 +#: engine/core/docs/drf/viewsets.py:335 msgid "for non-staff users, only their own wishlists are returned." msgstr "スタッフ以外のユーザーには、自分のウィッシュリストのみが返されます。" -#: core/docs/drf/viewsets.py:323 +#: engine/core/docs/drf/viewsets.py:339 msgid "retrieve a single wishlist (detailed view)" msgstr "単一の属性を取得する(詳細表示)" -#: core/docs/drf/viewsets.py:327 +#: engine/core/docs/drf/viewsets.py:343 msgid "create an wishlist" msgstr "属性を作成する" -#: core/docs/drf/viewsets.py:328 +#: engine/core/docs/drf/viewsets.py:344 msgid "Doesn't work for non-staff users." msgstr "スタッフ以外のユーザーには使えない。" -#: core/docs/drf/viewsets.py:332 +#: engine/core/docs/drf/viewsets.py:348 msgid "delete an wishlist" msgstr "属性を削除する" -#: core/docs/drf/viewsets.py:336 +#: engine/core/docs/drf/viewsets.py:352 msgid "rewrite an existing wishlist saving non-editables" msgstr "既存の属性を書き換える。" -#: core/docs/drf/viewsets.py:340 +#: engine/core/docs/drf/viewsets.py:356 msgid "rewrite some fields of an existing wishlist saving non-editables" -msgstr "既存の属性のいくつかのフィールドを書き換え、編集不可能なものを保存する。" +msgstr "" +"既存の属性のいくつかのフィールドを書き換え、編集不可能なものを保存する。" -#: core/docs/drf/viewsets.py:344 +#: engine/core/docs/drf/viewsets.py:360 msgid "add product to wishlist" msgstr "注文に商品を追加する" -#: core/docs/drf/viewsets.py:345 +#: engine/core/docs/drf/viewsets.py:361 msgid "adds a product to an wishlist using the provided `product_uuid`" msgstr "指定された `product_uuid` を使ってウィッシュリストに商品を追加する。" -#: core/docs/drf/viewsets.py:350 +#: engine/core/docs/drf/viewsets.py:366 msgid "remove product from wishlist" msgstr "ウィッシュリストから商品を削除する" -#: core/docs/drf/viewsets.py:351 +#: engine/core/docs/drf/viewsets.py:367 msgid "removes a product from an wishlist using the provided `product_uuid`" -msgstr "指定された `product_uuid` を使ってウィッシュリストから商品を削除します。" +msgstr "" +"指定された `product_uuid` を使ってウィッシュリストから商品を削除します。" -#: core/docs/drf/viewsets.py:356 +#: engine/core/docs/drf/viewsets.py:372 msgid "add many products to wishlist" msgstr "ウィッシュリストに多くの商品を追加する" -#: core/docs/drf/viewsets.py:357 +#: engine/core/docs/drf/viewsets.py:373 msgid "adds many products to an wishlist using the provided `product_uuids`" -msgstr "指定された `product_uuids` を使ってウィッシュリストに多くの商品を追加する。" +msgstr "" +"指定された `product_uuids` を使ってウィッシュリストに多くの商品を追加する。" -#: core/docs/drf/viewsets.py:362 +#: engine/core/docs/drf/viewsets.py:378 msgid "remove many products from wishlist" msgstr "注文から商品を削除する" -#: core/docs/drf/viewsets.py:363 +#: engine/core/docs/drf/viewsets.py:379 msgid "" "removes many products from an wishlist using the provided `product_uuids`" -msgstr "指定された `product_uuids` を使ってウィッシュリストから多くの商品を削除する。" +msgstr "" +"指定された `product_uuids` を使ってウィッシュリストから多くの商品を削除する。" -#: core/docs/drf/viewsets.py:370 +#: engine/core/docs/drf/viewsets.py:386 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`。" -#: core/docs/drf/viewsets.py:386 core/docs/drf/viewsets.py:387 +#: engine/core/docs/drf/viewsets.py:402 engine/core/docs/drf/viewsets.py:403 msgid "list all products (simple view)" msgstr "全商品を一覧表示(シンプル表示)" -#: core/docs/drf/viewsets.py:392 +#: engine/core/docs/drf/viewsets.py:408 msgid "(exact) Product UUID" msgstr "(正確には)製品UUID" -#: core/docs/drf/viewsets.py:399 +#: engine/core/docs/drf/viewsets.py:415 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" -#: core/docs/drf/viewsets.py:413 core/docs/drf/viewsets.py:414 +#: engine/core/docs/drf/viewsets.py:429 engine/core/docs/drf/viewsets.py:430 msgid "retrieve a single product (detailed view)" msgstr "単一の製品を取得する(詳細表示)" -#: core/docs/drf/viewsets.py:419 core/docs/drf/viewsets.py:443 -#: core/docs/drf/viewsets.py:459 core/docs/drf/viewsets.py:475 -#: core/docs/drf/viewsets.py:491 core/docs/drf/viewsets.py:507 +#: engine/core/docs/drf/viewsets.py:435 engine/core/docs/drf/viewsets.py:459 +#: engine/core/docs/drf/viewsets.py:475 engine/core/docs/drf/viewsets.py:491 +#: engine/core/docs/drf/viewsets.py:507 engine/core/docs/drf/viewsets.py:523 msgid "Product UUID or slug" msgstr "製品UUIDまたはスラグ" -#: core/docs/drf/viewsets.py:429 core/docs/drf/viewsets.py:430 +#: engine/core/docs/drf/viewsets.py:445 engine/core/docs/drf/viewsets.py:446 msgid "create a product" msgstr "製品を作る" -#: core/docs/drf/viewsets.py:437 core/docs/drf/viewsets.py:438 +#: engine/core/docs/drf/viewsets.py:453 engine/core/docs/drf/viewsets.py:454 msgid "rewrite an existing product, preserving non-editable fields" msgstr "編集不可能なフィールドを保持したまま、既存の製品を書き換える。" -#: core/docs/drf/viewsets.py:453 core/docs/drf/viewsets.py:454 +#: engine/core/docs/drf/viewsets.py:469 engine/core/docs/drf/viewsets.py:470 msgid "" "update some fields of an existing product, preserving non-editable fields" -msgstr "編集不可能なフィールドを保持したまま、既存の製品の一部のフィールドを更新する。" +msgstr "" +"編集不可能なフィールドを保持したまま、既存の製品の一部のフィールドを更新す" +"る。" -#: core/docs/drf/viewsets.py:469 core/docs/drf/viewsets.py:470 +#: engine/core/docs/drf/viewsets.py:485 engine/core/docs/drf/viewsets.py:486 msgid "delete a product" msgstr "製品を削除する" -#: core/docs/drf/viewsets.py:485 core/docs/drf/viewsets.py:486 +#: engine/core/docs/drf/viewsets.py:501 engine/core/docs/drf/viewsets.py:502 msgid "lists all permitted feedbacks for a product" msgstr "製品に対して許可されたすべてのフィードバックを一覧表示します。" -#: core/docs/drf/viewsets.py:502 +#: engine/core/docs/drf/viewsets.py:518 msgid "returns a snapshot of the product's SEO meta data" msgstr "商品のSEOメタデータのスナップショットを返します。" -#: core/docs/drf/viewsets.py:520 +#: engine/core/docs/drf/viewsets.py:536 msgid "list all addresses" msgstr "全住所のリスト" -#: core/docs/drf/viewsets.py:527 +#: engine/core/docs/drf/viewsets.py:543 msgid "retrieve a single address" msgstr "単一アドレスの取得" -#: core/docs/drf/viewsets.py:534 +#: engine/core/docs/drf/viewsets.py:550 msgid "create a new address" msgstr "新しいアドレスを作成する" -#: core/docs/drf/viewsets.py:542 +#: engine/core/docs/drf/viewsets.py:558 msgid "delete an address" msgstr "アドレスの削除" -#: core/docs/drf/viewsets.py:549 +#: engine/core/docs/drf/viewsets.py:565 msgid "update an entire address" msgstr "アドレス全体の更新" -#: core/docs/drf/viewsets.py:557 +#: engine/core/docs/drf/viewsets.py:573 msgid "partially update an address" msgstr "アドレスの一部更新" -#: core/docs/drf/viewsets.py:565 +#: engine/core/docs/drf/viewsets.py:581 msgid "autocomplete address suggestions" msgstr "オートコンプリート住所入力" -#: core/docs/drf/viewsets.py:570 +#: engine/core/docs/drf/viewsets.py:586 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" -#: core/docs/drf/viewsets.py:576 +#: engine/core/docs/drf/viewsets.py:592 msgid "limit the results amount, 1 < limit < 10, default: 5" msgstr "結果を制限する, 1 < limit < 10, デフォルト: 5" -#: core/docs/drf/viewsets.py:589 +#: engine/core/docs/drf/viewsets.py:605 msgid "list all feedbacks (simple view)" msgstr "すべてのフィードバックを表示する(シンプルな表示)" -#: core/docs/drf/viewsets.py:593 +#: engine/core/docs/drf/viewsets.py:609 msgid "retrieve a single feedback (detailed view)" msgstr "単一のフィードバックを取得する(詳細表示)" -#: core/docs/drf/viewsets.py:597 +#: engine/core/docs/drf/viewsets.py:613 msgid "create a feedback" msgstr "フィードバックを作成する" -#: core/docs/drf/viewsets.py:601 +#: engine/core/docs/drf/viewsets.py:617 msgid "delete a feedback" msgstr "フィードバックを削除する" -#: core/docs/drf/viewsets.py:605 +#: engine/core/docs/drf/viewsets.py:621 msgid "rewrite an existing feedback saving non-editables" msgstr "既存のフィードバックを書き換える。" -#: core/docs/drf/viewsets.py:609 +#: engine/core/docs/drf/viewsets.py:625 msgid "rewrite some fields of an existing feedback saving non-editables" -msgstr "既存のフィードバックのいくつかのフィールドを書き換えて、編集不可能なものを保存する。" +msgstr "" +"既存のフィードバックのいくつかのフィールドを書き換えて、編集不可能なものを保" +"存する。" -#: core/docs/drf/viewsets.py:616 +#: engine/core/docs/drf/viewsets.py:632 msgid "list all order–product relations (simple view)" msgstr "すべての注文と商品の関係をリストアップする(シンプルビュー)" -#: core/docs/drf/viewsets.py:623 +#: engine/core/docs/drf/viewsets.py:639 msgid "retrieve a single order–product relation (detailed view)" msgstr "単一の注文と商品の関係を取得する(詳細表示)" -#: core/docs/drf/viewsets.py:630 +#: engine/core/docs/drf/viewsets.py:646 msgid "create a new order–product relation" msgstr "新しい注文と商品の関係を作る" -#: core/docs/drf/viewsets.py:637 +#: engine/core/docs/drf/viewsets.py:653 msgid "replace an existing order–product relation" msgstr "既存の注文と商品の関係を置き換える" -#: core/docs/drf/viewsets.py:644 +#: engine/core/docs/drf/viewsets.py:660 msgid "partially update an existing order–product relation" msgstr "既存の注文と商品の関係を部分的に更新する" -#: core/docs/drf/viewsets.py:651 +#: engine/core/docs/drf/viewsets.py:667 msgid "delete an order–product relation" msgstr "注文と商品の関係を削除する" -#: core/docs/drf/viewsets.py:658 +#: engine/core/docs/drf/viewsets.py:674 msgid "add or remove feedback on an order–product relation" msgstr "注文と商品の関係に関するフィードバックを追加または削除する。" -#: core/docs/drf/viewsets.py:672 +#: engine/core/docs/drf/viewsets.py:688 msgid "list all brands (simple view)" msgstr "すべてのブランドをリストアップ(シンプル表示)" -#: core/docs/drf/viewsets.py:676 +#: engine/core/docs/drf/viewsets.py:692 msgid "retrieve a single brand (detailed view)" msgstr "単一ブランドの検索(詳細表示)" -#: core/docs/drf/viewsets.py:680 +#: engine/core/docs/drf/viewsets.py:697 engine/core/docs/drf/viewsets.py:725 +msgid "Brand UUID or slug" +msgstr "ブランドUUIDまたはスラッグ" + +#: engine/core/docs/drf/viewsets.py:704 msgid "create a brand" msgstr "ブランドを作る" -#: core/docs/drf/viewsets.py:684 +#: engine/core/docs/drf/viewsets.py:708 msgid "delete a brand" msgstr "ブランドの削除" -#: core/docs/drf/viewsets.py:688 +#: engine/core/docs/drf/viewsets.py:712 msgid "rewrite an existing brand saving non-editables" msgstr "編集不可の既存ブランドをリライトする" -#: core/docs/drf/viewsets.py:692 +#: engine/core/docs/drf/viewsets.py:716 msgid "rewrite some fields of an existing brand saving non-editables" -msgstr "編集不可能なフィールドを保存している既存ブランドのフィールドを書き換える。" +msgstr "" +"編集不可能なフィールドを保存している既存ブランドのフィールドを書き換える。" -#: core/docs/drf/viewsets.py:696 +#: engine/core/docs/drf/viewsets.py:720 msgid "SEO Meta snapshot for brand" msgstr "ブランドのSEOメタ・スナップショット" -#: core/docs/drf/viewsets.py:703 +#: engine/core/docs/drf/viewsets.py:735 msgid "list all vendors (simple view)" msgstr "全ベンダーのリスト(シンプルビュー)" -#: core/docs/drf/viewsets.py:707 +#: engine/core/docs/drf/viewsets.py:739 msgid "retrieve a single vendor (detailed view)" msgstr "単一ベンダーの検索(詳細表示)" -#: core/docs/drf/viewsets.py:711 +#: engine/core/docs/drf/viewsets.py:743 msgid "create a vendor" msgstr "ベンダーの作成" -#: core/docs/drf/viewsets.py:715 +#: engine/core/docs/drf/viewsets.py:747 msgid "delete a vendor" msgstr "ベンダーの削除" -#: core/docs/drf/viewsets.py:719 +#: engine/core/docs/drf/viewsets.py:751 msgid "rewrite an existing vendor saving non-editables" msgstr "既存のベンダーを書き換え、編集不可能な部分を保存する。" -#: core/docs/drf/viewsets.py:723 +#: engine/core/docs/drf/viewsets.py:755 msgid "rewrite some fields of an existing vendor saving non-editables" -msgstr "既存のベンダーのいくつかのフィールドを書き換えて、編集不可能なフィールドを保存する。" +msgstr "" +"既存のベンダーのいくつかのフィールドを書き換えて、編集不可能なフィールドを保" +"存する。" -#: core/docs/drf/viewsets.py:730 +#: engine/core/docs/drf/viewsets.py:762 msgid "list all product images (simple view)" msgstr "すべての商品画像を一覧表示(シンプル表示)" -#: core/docs/drf/viewsets.py:734 +#: engine/core/docs/drf/viewsets.py:766 msgid "retrieve a single product image (detailed view)" msgstr "1枚の商品画像を取得する(詳細表示)" -#: core/docs/drf/viewsets.py:738 +#: engine/core/docs/drf/viewsets.py:770 msgid "create a product image" msgstr "製品イメージの作成" -#: core/docs/drf/viewsets.py:742 +#: engine/core/docs/drf/viewsets.py:774 msgid "delete a product image" msgstr "商品画像を削除する" -#: core/docs/drf/viewsets.py:746 +#: engine/core/docs/drf/viewsets.py:778 msgid "rewrite an existing product image saving non-editables" msgstr "既存の商品画像を書き換え、編集不可能な部分を保存する。" -#: core/docs/drf/viewsets.py:750 +#: engine/core/docs/drf/viewsets.py:782 msgid "rewrite some fields of an existing product image saving non-editables" -msgstr "既存の商品画像のいくつかのフィールドを書き換えて、編集不可能な部分を保存する。" +msgstr "" +"既存の商品画像のいくつかのフィールドを書き換えて、編集不可能な部分を保存す" +"る。" -#: core/docs/drf/viewsets.py:757 +#: engine/core/docs/drf/viewsets.py:789 msgid "list all promo codes (simple view)" msgstr "すべてのプロモコードを一覧表示(シンプル表示)" -#: core/docs/drf/viewsets.py:761 +#: engine/core/docs/drf/viewsets.py:793 msgid "retrieve a single promo code (detailed view)" msgstr "単一のプロモコードを取得する(詳細表示)" -#: core/docs/drf/viewsets.py:765 +#: engine/core/docs/drf/viewsets.py:797 msgid "create a promo code" msgstr "プロモコードを作成する" -#: core/docs/drf/viewsets.py:769 +#: engine/core/docs/drf/viewsets.py:801 msgid "delete a promo code" msgstr "プロモコードを削除する" -#: core/docs/drf/viewsets.py:773 +#: engine/core/docs/drf/viewsets.py:805 msgid "rewrite an existing promo code saving non-editables" msgstr "既存のプロモコードを書き換え、編集不可のプロモコードを保存する" -#: core/docs/drf/viewsets.py:777 +#: engine/core/docs/drf/viewsets.py:809 msgid "rewrite some fields of an existing promo code saving non-editables" -msgstr "既存のプロモコードの一部のフィールドを書き換えて、編集不可能な部分を保存する。" +msgstr "" +"既存のプロモコードの一部のフィールドを書き換えて、編集不可能な部分を保存す" +"る。" -#: core/docs/drf/viewsets.py:784 +#: engine/core/docs/drf/viewsets.py:816 msgid "list all promotions (simple view)" msgstr "すべてのプロモーションを一覧表示(シンプル表示)" -#: core/docs/drf/viewsets.py:788 +#: engine/core/docs/drf/viewsets.py:820 msgid "retrieve a single promotion (detailed view)" msgstr "単一のプロモーションを取得する(詳細表示)" -#: core/docs/drf/viewsets.py:792 +#: engine/core/docs/drf/viewsets.py:824 msgid "create a promotion" msgstr "プロモーションの作成" -#: core/docs/drf/viewsets.py:796 +#: engine/core/docs/drf/viewsets.py:828 msgid "delete a promotion" msgstr "プロモーションの削除" -#: core/docs/drf/viewsets.py:800 +#: engine/core/docs/drf/viewsets.py:832 msgid "rewrite an existing promotion saving non-editables" msgstr "既存のプロモーションを書き換える。" -#: core/docs/drf/viewsets.py:804 +#: engine/core/docs/drf/viewsets.py:836 msgid "rewrite some fields of an existing promotion saving non-editables" -msgstr "既存のプロモーションのいくつかのフィールドを書き換え、編集不可能な部分を保存する。" +msgstr "" +"既存のプロモーションのいくつかのフィールドを書き換え、編集不可能な部分を保存" +"する。" -#: core/docs/drf/viewsets.py:811 +#: engine/core/docs/drf/viewsets.py:843 msgid "list all stocks (simple view)" msgstr "全銘柄リスト(シンプルビュー)" -#: core/docs/drf/viewsets.py:815 +#: engine/core/docs/drf/viewsets.py:847 msgid "retrieve a single stock (detailed view)" msgstr "単一銘柄の取得(詳細表示)" -#: core/docs/drf/viewsets.py:819 +#: engine/core/docs/drf/viewsets.py:851 msgid "create a stock record" msgstr "ストックレコードの作成" -#: core/docs/drf/viewsets.py:823 +#: engine/core/docs/drf/viewsets.py:855 msgid "delete a stock record" msgstr "ストックレコードの削除" -#: core/docs/drf/viewsets.py:827 +#: engine/core/docs/drf/viewsets.py:859 msgid "rewrite an existing stock record saving non-editables" msgstr "既存のストックレコードを書き換え、編集不可能なものを保存する。" -#: core/docs/drf/viewsets.py:831 +#: engine/core/docs/drf/viewsets.py:863 msgid "rewrite some fields of an existing stock record saving non-editables" -msgstr "編集不可能なフィールドを保存している既存のストックレコードの一部のフィールドを書き換える。" +msgstr "" +"編集不可能なフィールドを保存している既存のストックレコードの一部のフィールド" +"を書き換える。" -#: core/docs/drf/viewsets.py:838 +#: engine/core/docs/drf/viewsets.py:870 msgid "list all product tags (simple view)" msgstr "すべての商品タグを一覧表示(シンプル表示)" -#: core/docs/drf/viewsets.py:842 +#: engine/core/docs/drf/viewsets.py:874 msgid "retrieve a single product tag (detailed view)" msgstr "単一の商品タグを取得する(詳細表示)" -#: core/docs/drf/viewsets.py:846 +#: engine/core/docs/drf/viewsets.py:878 msgid "create a product tag" msgstr "商品タグの作成" -#: core/docs/drf/viewsets.py:850 +#: engine/core/docs/drf/viewsets.py:882 msgid "delete a product tag" msgstr "商品タグの削除" -#: core/docs/drf/viewsets.py:854 +#: engine/core/docs/drf/viewsets.py:886 msgid "rewrite an existing product tag saving non-editables" msgstr "既存の商品タグを書き換え、編集不可能なものを保存する。" -#: core/docs/drf/viewsets.py:858 +#: engine/core/docs/drf/viewsets.py:890 msgid "rewrite some fields of an existing product tag saving non-editables" -msgstr "既存の商品タグの一部のフィールドを書き換えて、編集不可能な部分を保存する。" +msgstr "" +"既存の商品タグの一部のフィールドを書き換えて、編集不可能な部分を保存する。" -#: core/elasticsearch/__init__.py:118 core/elasticsearch/__init__.py:550 +#: engine/core/elasticsearch/__init__.py:122 +#: engine/core/elasticsearch/__init__.py:570 msgid "no search term provided." msgstr "検索語はありません。" -#: core/filters.py:69 core/filters.py:412 core/filters.py:539 +#: engine/core/filters.py:69 engine/core/filters.py:426 +#: engine/core/filters.py:553 msgid "Search" msgstr "検索" -#: core/filters.py:70 core/filters.py:569 core/filters.py:598 +#: engine/core/filters.py:70 engine/core/filters.py:583 +#: engine/core/filters.py:612 msgid "UUID" msgstr "ユーユーアイディー" -#: core/filters.py:71 core/filters.py:414 core/filters.py:541 +#: engine/core/filters.py:71 engine/core/filters.py:428 +#: engine/core/filters.py:555 msgid "Name" msgstr "名称" -#: core/filters.py:72 core/filters.py:543 +#: engine/core/filters.py:72 engine/core/filters.py:557 msgid "Categories" msgstr "カテゴリー" -#: core/filters.py:74 +#: engine/core/filters.py:74 msgid "Categories Slugs" msgstr "カテゴリー ナメクジ" -#: core/filters.py:75 core/filters.py:422 +#: engine/core/filters.py:75 engine/core/filters.py:436 msgid "Tags" msgstr "タグ" -#: core/filters.py:76 +#: engine/core/filters.py:76 msgid "Min Price" msgstr "最低価格" -#: core/filters.py:77 +#: engine/core/filters.py:77 msgid "Max Price" msgstr "最高価格" -#: core/filters.py:78 +#: engine/core/filters.py:78 msgid "Is Active" msgstr "アクティブ" -#: core/filters.py:79 +#: engine/core/filters.py:79 msgid "Brand" msgstr "ブランド" -#: core/filters.py:80 +#: engine/core/filters.py:80 msgid "Attributes" msgstr "属性" -#: core/filters.py:81 +#: engine/core/filters.py:81 msgid "Quantity" msgstr "数量" -#: core/filters.py:82 core/filters.py:416 core/filters.py:542 -#: core/models.py:322 core/models.py:483 core/models.py:637 +#: engine/core/filters.py:82 engine/core/filters.py:430 +#: engine/core/filters.py:556 engine/core/models.py:321 +#: engine/core/models.py:482 engine/core/models.py:637 msgid "Slug" msgstr "スラッグ" -#: core/filters.py:83 +#: engine/core/filters.py:83 msgid "Is Digital" msgstr "デジタル" -#: core/filters.py:84 +#: engine/core/filters.py:84 msgid "Include sub-categories" msgstr "サブカテゴリーを含む" -#: core/filters.py:87 +#: engine/core/filters.py:87 msgid "Include personal ordered" msgstr "個人注文商品を含む" -#: core/filters.py:89 core/models.py:641 +#: engine/core/filters.py:89 engine/core/models.py:641 msgid "SKU" msgstr "SKU" -#: core/filters.py:173 +#: engine/core/filters.py:184 msgid "there must be a category_uuid to use include_subcategories flag" -msgstr "include_subcategoriesフラグを使うには、category_uuidがなければならない。" +msgstr "" +"include_subcategoriesフラグを使うには、category_uuidがなければならない。" -#: core/filters.py:339 +#: engine/core/filters.py:353 msgid "Search (ID, product name or part number)" msgstr "検索(ID、製品名または部品番号)" -#: core/filters.py:342 +#: engine/core/filters.py:356 msgid "Bought after (inclusive)" msgstr "購入時期" -#: core/filters.py:343 +#: engine/core/filters.py:357 msgid "Bought before (inclusive)" msgstr "以前に購入したもの(含む)" -#: core/filters.py:346 core/filters.py:393 core/filters.py:600 +#: engine/core/filters.py:360 engine/core/filters.py:407 +#: engine/core/filters.py:614 msgid "User email" msgstr "ユーザーEメール" -#: core/filters.py:347 core/filters.py:394 core/filters.py:578 -#: core/filters.py:599 +#: engine/core/filters.py:361 engine/core/filters.py:408 +#: engine/core/filters.py:592 engine/core/filters.py:613 msgid "User UUID" msgstr "ユーザーUUID" -#: core/filters.py:348 +#: engine/core/filters.py:362 msgid "Status" msgstr "ステータス" -#: core/filters.py:352 +#: engine/core/filters.py:366 msgid "Human Readable ID" msgstr "人間が読めるID" -#: core/filters.py:415 +#: engine/core/filters.py:429 msgid "Parent" msgstr "親" -#: core/filters.py:419 +#: engine/core/filters.py:433 msgid "Whole category(has at least 1 product or not)" msgstr "カテゴリー全体(少なくとも1つの製品があるかどうか)" -#: core/filters.py:423 +#: engine/core/filters.py:437 msgid "Level" msgstr "レベル" -#: core/filters.py:573 +#: engine/core/filters.py:587 msgid "Product UUID" msgstr "製品UUID" -#: core/graphene/mutations.py:41 +#: engine/core/graphene/mutations.py:41 msgid "key to look for in or set into the cache" msgstr "キャッシュを探すキー、またはキャッシュにセットするキー" -#: core/graphene/mutations.py:42 +#: engine/core/graphene/mutations.py:42 msgid "data to store in cache" msgstr "キャッシュに保存するデータ" -#: core/graphene/mutations.py:45 +#: engine/core/graphene/mutations.py:45 msgid "timeout in seconds to set the data for into the cache" msgstr "キャッシュにデータをセットするタイムアウト時間(秒" -#: core/graphene/mutations.py:48 +#: engine/core/graphene/mutations.py:48 msgid "cached data" msgstr "キャッシュ・データ" -#: core/graphene/mutations.py:63 +#: engine/core/graphene/mutations.py:63 msgid "camelized JSON data from the requested URL" msgstr "リクエストされたURLからキャメル化されたJSONデータ" -#: core/graphene/mutations.py:68 core/views.py:232 +#: engine/core/graphene/mutations.py:68 engine/core/views.py:231 msgid "only URLs starting with http(s):// are allowed" msgstr "http(s)://で始まるURLのみが許可されます。" -#: core/graphene/mutations.py:84 +#: engine/core/graphene/mutations.py:84 msgid "add a product to the order" msgstr "注文に商品を追加する" -#: core/graphene/mutations.py:105 core/graphene/mutations.py:132 -#: core/graphene/mutations.py:240 core/graphene/mutations.py:288 +#: engine/core/graphene/mutations.py:105 engine/core/graphene/mutations.py:132 +#: engine/core/graphene/mutations.py:240 engine/core/graphene/mutations.py:288 #, python-brace-format msgid "order {order_uuid} not found" msgstr "注文 {order_uuid} が見つかりません!" -#: core/graphene/mutations.py:111 core/graphene/mutations.py:160 +#: engine/core/graphene/mutations.py:111 engine/core/graphene/mutations.py:160 msgid "remove a product from the order" msgstr "注文から商品を削除する" -#: core/graphene/mutations.py:138 +#: engine/core/graphene/mutations.py:138 msgid "remove all products from the order" msgstr "注文からすべての商品を削除する" -#: core/graphene/mutations.py:183 +#: engine/core/graphene/mutations.py:183 msgid "buy an order" msgstr "注文する" -#: core/graphene/mutations.py:212 core/graphene/mutations.py:266 +#: engine/core/graphene/mutations.py:212 engine/core/graphene/mutations.py:266 msgid "please provide either order_uuid or order_hr_id - mutually exclusive" msgstr "order_uuidまたはorder_hr_idを入力してください!" -#: core/graphene/mutations.py:237 core/graphene/mutations.py:502 -#: core/graphene/mutations.py:544 core/viewsets.py:704 +#: engine/core/graphene/mutations.py:237 engine/core/graphene/mutations.py:502 +#: engine/core/graphene/mutations.py:544 engine/core/viewsets.py:704 msgid "wrong type came from order.buy() method: {type(instance)!s}" msgstr "order.buy()メソッドから間違った型が来た:{type(instance)!s}。" -#: core/graphene/mutations.py:246 +#: engine/core/graphene/mutations.py:246 msgid "perform an action on a list of products in the order" msgstr "注文商品のリストに対してアクションを実行する" -#: core/graphene/mutations.py:251 +#: engine/core/graphene/mutations.py:251 msgid "remove/add" msgstr "削除/追加" -#: core/graphene/mutations.py:283 core/graphene/mutations.py:324 +#: engine/core/graphene/mutations.py:283 engine/core/graphene/mutations.py:324 msgid "action must be either add or remove" msgstr "アクションは \"add \"か \"remove \"のどちらかでなければならない!" -#: core/graphene/mutations.py:294 +#: engine/core/graphene/mutations.py:294 msgid "perform an action on a list of products in the wishlist" msgstr "ウィッシュリストの商品リストに対してアクションを実行する" -#: core/graphene/mutations.py:312 +#: engine/core/graphene/mutations.py:312 msgid "please provide wishlist_uuid value" msgstr "wishlist_uuid`の値を指定してください。" -#: core/graphene/mutations.py:329 core/graphene/mutations.py:405 -#: core/graphene/mutations.py:433 core/graphene/mutations.py:461 -#: core/graphene/mutations.py:505 +#: engine/core/graphene/mutations.py:329 engine/core/graphene/mutations.py:405 +#: engine/core/graphene/mutations.py:433 engine/core/graphene/mutations.py:461 +#: engine/core/graphene/mutations.py:505 #, python-brace-format msgid "wishlist {wishlist_uuid} not found" msgstr "ウィッシュリスト {wishlist_uuid} が見つかりません!" -#: core/graphene/mutations.py:383 +#: engine/core/graphene/mutations.py:383 msgid "add a product to the wishlist" msgstr "注文に商品を追加する" -#: core/graphene/mutations.py:411 +#: engine/core/graphene/mutations.py:411 msgid "remove a product from the wishlist" msgstr "注文から商品を削除する" -#: core/graphene/mutations.py:439 +#: engine/core/graphene/mutations.py:439 msgid "remove all products from the wishlist" msgstr "注文から商品を削除する" -#: core/graphene/mutations.py:467 +#: engine/core/graphene/mutations.py:467 msgid "buy all products from the wishlist" msgstr "注文から商品を削除する" -#: core/graphene/mutations.py:511 +#: engine/core/graphene/mutations.py:511 msgid "buy a product" msgstr "注文する" -#: core/graphene/mutations.py:517 +#: engine/core/graphene/mutations.py:517 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のような形式の文字列として送信してください。" -#: core/graphene/mutations.py:550 +#: engine/core/graphene/mutations.py:550 msgid "add or delete a feedback for orderproduct" msgstr "orderproductに対するフィードバックを追加または削除する。" -#: core/graphene/mutations.py:574 +#: engine/core/graphene/mutations.py:574 msgid "action must be either `add` or `remove`" msgstr "アクションは `add` または `remove` のいずれかでなければならない!" -#: core/graphene/mutations.py:577 +#: engine/core/graphene/mutations.py:577 #, python-brace-format msgid "order product {order_product_uuid} not found" msgstr "Orderproduct {order_product_uuid} が見つかりません!" -#: core/graphene/mutations.py:644 +#: engine/core/graphene/mutations.py:644 msgid "original address string provided by the user" msgstr "ユーザーが提供したオリジナルのアドレス文字列" -#: core/graphene/mutations.py:680 core/models.py:930 core/models.py:943 -#: core/models.py:1358 core/models.py:1387 core/models.py:1412 -#: core/viewsets.py:707 +#: engine/core/graphene/mutations.py:680 engine/core/models.py:941 +#: engine/core/models.py:954 engine/core/models.py:1369 +#: engine/core/models.py:1398 engine/core/models.py:1423 +#: engine/core/viewsets.py:707 #, python-brace-format msgid "{name} does not exist: {uuid}" msgstr "{name}は存在しません:{uuid}が存在しません!" -#: core/graphene/mutations.py:694 +#: engine/core/graphene/mutations.py:694 msgid "limit must be between 1 and 10" msgstr "上限は1から10の間でなければならない" -#: core/graphene/mutations.py:743 +#: engine/core/graphene/mutations.py:743 msgid "elasticsearch - works like a charm" msgstr "ElasticSearch - 魅力のように動作" -#: core/graphene/object_types.py:82 core/graphene/object_types.py:370 -#: core/graphene/object_types.py:417 core/models.py:754 core/models.py:1225 -#: core/models.py:1823 +#: engine/core/graphene/object_types.py:82 +#: engine/core/graphene/object_types.py:370 +#: engine/core/graphene/object_types.py:417 engine/core/models.py:765 +#: engine/core/models.py:1236 engine/core/models.py:1883 msgid "attributes" msgstr "属性" -#: core/graphene/object_types.py:95 +#: engine/core/graphene/object_types.py:95 msgid "grouped attributes" msgstr "グループ化された属性" -#: core/graphene/object_types.py:102 +#: engine/core/graphene/object_types.py:102 msgid "groups of attributes" msgstr "属性のグループ" -#: core/graphene/object_types.py:116 core/graphene/object_types.py:193 -#: core/graphene/object_types.py:223 core/models.py:426 +#: engine/core/graphene/object_types.py:116 +#: engine/core/graphene/object_types.py:193 +#: engine/core/graphene/object_types.py:223 engine/core/models.py:425 msgid "categories" msgstr "カテゴリー" -#: core/graphene/object_types.py:124 core/models.py:497 +#: engine/core/graphene/object_types.py:124 engine/core/models.py:496 msgid "brands" msgstr "ブランド" -#: core/graphene/object_types.py:195 +#: engine/core/graphene/object_types.py:195 msgid "category image url" msgstr "カテゴリー" -#: core/graphene/object_types.py:196 core/graphene/object_types.py:317 -#: core/models.py:284 +#: engine/core/graphene/object_types.py:196 +#: engine/core/graphene/object_types.py:317 engine/core/models.py:283 msgid "markup percentage" msgstr "マークアップ率" -#: core/graphene/object_types.py:199 +#: engine/core/graphene/object_types.py:199 msgid "which attributes and values can be used for filtering this category." msgstr "このカテゴリのフィルタリングに使用できる属性と値。" -#: core/graphene/object_types.py:203 -msgid "" -"minimum and maximum prices for products in this category, if available." +#: engine/core/graphene/object_types.py:203 +msgid "minimum and maximum prices for products in this category, if available." msgstr "このカテゴリーの商品の最低価格と最高価格がある場合。" -#: core/graphene/object_types.py:205 +#: engine/core/graphene/object_types.py:205 msgid "tags for this category" msgstr "このカテゴリのタグ" -#: core/graphene/object_types.py:206 +#: engine/core/graphene/object_types.py:206 msgid "products in this category" msgstr "このカテゴリの製品" -#: core/graphene/object_types.py:324 core/models.py:189 +#: engine/core/graphene/object_types.py:324 engine/core/models.py:188 msgid "vendors" msgstr "ベンダー" -#: core/graphene/object_types.py:328 +#: engine/core/graphene/object_types.py:328 msgid "Latitude (Y coordinate)" msgstr "緯度(Y座標)" -#: core/graphene/object_types.py:329 +#: engine/core/graphene/object_types.py:329 msgid "Longitude (X coordinate)" msgstr "経度(X座標)" -#: core/graphene/object_types.py:358 +#: engine/core/graphene/object_types.py:358 msgid "comment" msgstr "どのように" -#: core/graphene/object_types.py:359 core/graphene/object_types.py:483 +#: engine/core/graphene/object_types.py:359 +#: engine/core/graphene/object_types.py:483 msgid "rating value from 1 to 10, inclusive, or 0 if not set." msgstr "1から10までの評価値(設定されていない場合は0)。" -#: core/graphene/object_types.py:366 +#: engine/core/graphene/object_types.py:366 msgid "represents feedback from a user." msgstr "ユーザーからのフィードバックを表す。" -#: core/graphene/object_types.py:371 core/graphene/object_types.py:418 -#: core/models.py:1219 +#: engine/core/graphene/object_types.py:371 +#: engine/core/graphene/object_types.py:418 engine/core/models.py:1230 msgid "notifications" msgstr "お知らせ" -#: core/graphene/object_types.py:372 +#: engine/core/graphene/object_types.py:372 msgid "download url for this order product if applicable" msgstr "該当する場合は、この注文商品のダウンロードURLを入力してください。" -#: core/graphene/object_types.py:373 core/models.py:1939 +#: engine/core/graphene/object_types.py:373 engine/core/models.py:1722 msgid "feedback" msgstr "フィードバック" -#: core/graphene/object_types.py:407 +#: engine/core/graphene/object_types.py:407 msgid "a list of order products in this order" msgstr "注文商品のリスト" -#: core/graphene/object_types.py:409 core/models.py:1189 +#: engine/core/graphene/object_types.py:409 engine/core/models.py:1200 msgid "billing address" msgstr "請求先住所" -#: core/graphene/object_types.py:412 +#: engine/core/graphene/object_types.py:412 msgid "" "shipping address for this order, leave blank if same as billing address or " "if not applicable" msgstr "請求先住所と同じ場合、または該当しない場合は空白にしてください。" -#: core/graphene/object_types.py:414 +#: engine/core/graphene/object_types.py:414 msgid "total price of this order" msgstr "この注文の合計金額" -#: core/graphene/object_types.py:415 +#: engine/core/graphene/object_types.py:415 msgid "total quantity of products in order" msgstr "注文商品の総数量" -#: core/graphene/object_types.py:416 +#: engine/core/graphene/object_types.py:416 msgid "are all products in the order digital" msgstr "ご注文の商品はすべてデジタルですか?" -#: core/graphene/object_types.py:419 +#: engine/core/graphene/object_types.py:419 msgid "transactions for this order" msgstr "この注文の取引" -#: core/graphene/object_types.py:438 core/models.py:1253 +#: engine/core/graphene/object_types.py:438 engine/core/models.py:1264 msgid "orders" msgstr "受注状況" -#: core/graphene/object_types.py:459 +#: engine/core/graphene/object_types.py:459 msgid "image url" msgstr "画像URL" -#: core/graphene/object_types.py:466 +#: engine/core/graphene/object_types.py:466 msgid "product's images" msgstr "製品画像" -#: core/graphene/object_types.py:473 core/models.py:425 core/models.py:579 +#: engine/core/graphene/object_types.py:473 engine/core/models.py:424 +#: engine/core/models.py:579 msgid "category" msgstr "カテゴリー" -#: core/graphene/object_types.py:475 core/models.py:1940 +#: engine/core/graphene/object_types.py:475 engine/core/models.py:1723 msgid "feedbacks" msgstr "フィードバック" -#: core/graphene/object_types.py:476 core/models.py:496 core/models.py:588 +#: engine/core/graphene/object_types.py:476 engine/core/models.py:495 +#: engine/core/models.py:588 msgid "brand" msgstr "ブランド" -#: core/graphene/object_types.py:477 core/models.py:107 +#: engine/core/graphene/object_types.py:477 engine/core/models.py:106 msgid "attribute groups" msgstr "属性グループ" -#: core/graphene/object_types.py:478 -#: core/templates/digital_order_created_email.html:111 -#: core/templates/digital_order_delivered_email.html:109 -#: core/templates/shipped_order_created_email.html:109 -#: core/templates/shipped_order_delivered_email.html:109 +#: engine/core/graphene/object_types.py:478 +#: engine/core/templates/digital_order_created_email.html:111 +#: engine/core/templates/digital_order_delivered_email.html:109 +#: engine/core/templates/shipped_order_created_email.html:109 +#: engine/core/templates/shipped_order_delivered_email.html:109 msgid "price" msgstr "価格" -#: core/graphene/object_types.py:479 -#: core/templates/digital_order_created_email.html:110 -#: core/templates/digital_order_delivered_email.html:108 -#: core/templates/shipped_order_created_email.html:108 -#: core/templates/shipped_order_delivered_email.html:108 +#: engine/core/graphene/object_types.py:479 +#: engine/core/templates/digital_order_created_email.html:110 +#: engine/core/templates/digital_order_delivered_email.html:108 +#: engine/core/templates/shipped_order_created_email.html:108 +#: engine/core/templates/shipped_order_delivered_email.html:108 msgid "quantity" msgstr "数量" -#: core/graphene/object_types.py:480 +#: engine/core/graphene/object_types.py:480 msgid "number of feedbacks" msgstr "フィードバック数" -#: core/graphene/object_types.py:481 +#: engine/core/graphene/object_types.py:481 msgid "only available for personal orders" msgstr "個人注文のみの商品" -#: core/graphene/object_types.py:507 core/models.py:651 +#: engine/core/graphene/object_types.py:484 +msgid "discount price" +msgstr "割引価格" + +#: engine/core/graphene/object_types.py:508 engine/core/models.py:651 msgid "products" msgstr "製品紹介" -#: core/graphene/object_types.py:607 +#: engine/core/graphene/object_types.py:611 msgid "promocodes" msgstr "プロモコード" -#: core/graphene/object_types.py:617 +#: engine/core/graphene/object_types.py:621 msgid "products on sale" msgstr "販売商品" -#: core/graphene/object_types.py:624 core/models.py:879 +#: engine/core/graphene/object_types.py:628 engine/core/models.py:890 msgid "promotions" msgstr "プロモーション" -#: core/graphene/object_types.py:628 core/models.py:188 +#: engine/core/graphene/object_types.py:632 engine/core/models.py:187 msgid "vendor" msgstr "ベンダー" -#: core/graphene/object_types.py:629 core/models.py:650 -#: core/templates/digital_order_created_email.html:109 -#: core/templates/digital_order_delivered_email.html:107 -#: core/templates/shipped_order_created_email.html:107 -#: core/templates/shipped_order_delivered_email.html:107 +#: engine/core/graphene/object_types.py:633 engine/core/models.py:650 +#: 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 +#: engine/core/templates/shipped_order_delivered_email.html:107 msgid "product" msgstr "製品" -#: core/graphene/object_types.py:640 core/models.py:902 +#: engine/core/graphene/object_types.py:644 engine/core/models.py:913 msgid "wishlisted products" msgstr "ウィッシュリスト掲載商品" -#: core/graphene/object_types.py:646 core/models.py:919 +#: engine/core/graphene/object_types.py:650 engine/core/models.py:930 msgid "wishlists" msgstr "ウィッシュリスト" -#: core/graphene/object_types.py:650 +#: engine/core/graphene/object_types.py:654 msgid "tagged products" msgstr "タグ別アーカイブ" -#: core/graphene/object_types.py:657 core/models.py:225 core/models.py:594 +#: engine/core/graphene/object_types.py:661 engine/core/models.py:224 +#: engine/core/models.py:594 msgid "product tags" msgstr "商品タグ" -#: core/graphene/object_types.py:661 +#: engine/core/graphene/object_types.py:665 msgid "tagged categories" msgstr "タグ別アーカイブ" -#: core/graphene/object_types.py:668 +#: engine/core/graphene/object_types.py:672 msgid "categories tags" msgstr "カテゴリー' タグ" -#: core/graphene/object_types.py:672 +#: engine/core/graphene/object_types.py:676 msgid "project name" msgstr "プロジェクト名" -#: core/graphene/object_types.py:673 +#: engine/core/graphene/object_types.py:677 msgid "company email" msgstr "会社Eメール" -#: core/graphene/object_types.py:674 +#: engine/core/graphene/object_types.py:678 msgid "company name" msgstr "会社名" -#: core/graphene/object_types.py:675 +#: engine/core/graphene/object_types.py:679 msgid "company address" msgstr "会社住所" -#: core/graphene/object_types.py:676 +#: engine/core/graphene/object_types.py:680 msgid "company phone number" msgstr "会社電話番号" -#: core/graphene/object_types.py:677 +#: engine/core/graphene/object_types.py:681 msgid "email from, sometimes it must be used instead of host user value" msgstr "'email from' は、ホストユーザの値の代わりに使用されることがあります。" -#: core/graphene/object_types.py:678 +#: engine/core/graphene/object_types.py:682 msgid "email host user" msgstr "メールホストユーザー" -#: core/graphene/object_types.py:679 +#: engine/core/graphene/object_types.py:683 msgid "maximum amount for payment" msgstr "支払限度額" -#: core/graphene/object_types.py:680 +#: engine/core/graphene/object_types.py:684 msgid "minimum amount for payment" msgstr "最低支払額" -#: core/graphene/object_types.py:681 +#: engine/core/graphene/object_types.py:685 msgid "analytics data" msgstr "分析データ" -#: core/graphene/object_types.py:682 +#: engine/core/graphene/object_types.py:686 msgid "advertisement data" msgstr "広告データ" -#: core/graphene/object_types.py:685 +#: engine/core/graphene/object_types.py:689 msgid "company configuration" msgstr "構成" -#: core/graphene/object_types.py:689 +#: engine/core/graphene/object_types.py:693 msgid "language code" msgstr "言語コード" -#: core/graphene/object_types.py:690 +#: engine/core/graphene/object_types.py:694 msgid "language name" msgstr "言語名" -#: core/graphene/object_types.py:691 +#: engine/core/graphene/object_types.py:695 msgid "language flag, if exists :)" msgstr "言語フラグがある場合 :)" -#: core/graphene/object_types.py:694 +#: engine/core/graphene/object_types.py:698 msgid "supported languages" msgstr "サポートされている言語のリストを取得する" -#: core/graphene/object_types.py:725 core/graphene/object_types.py:726 -#: core/graphene/object_types.py:727 +#: engine/core/graphene/object_types.py:729 +#: engine/core/graphene/object_types.py:730 +#: engine/core/graphene/object_types.py:731 msgid "products search results" msgstr "製品検索結果" -#: core/graphene/object_types.py:728 +#: engine/core/graphene/object_types.py:732 msgid "posts search results" msgstr "製品検索結果" -#: core/models.py:76 +#: engine/core/models.py:75 msgid "" "Represents a group of attributes, which can be hierarchical. This class is " "used to manage and organize attribute groups. An attribute group can have a " "parent group, forming a hierarchical structure. This can be useful for " "categorizing and managing attributes more effectively in acomplex system." msgstr "" -"属性グループを表し、階層化することができます。このクラスは、属性グループの管理と整理に使用します。属性グループは親グループを持つことができ、階層構造を形成します。これは、複雑なシステムで属性をより効果的に分類・管理するのに便利です。" +"属性グループを表し、階層化することができます。このクラスは、属性グループの管" +"理と整理に使用します。属性グループは親グループを持つことができ、階層構造を形" +"成します。これは、複雑なシステムで属性をより効果的に分類・管理するのに便利で" +"す。" -#: core/models.py:92 +#: engine/core/models.py:91 msgid "parent of this group" msgstr "このグループの親" -#: core/models.py:93 +#: engine/core/models.py:92 msgid "parent attribute group" msgstr "親属性グループ" -#: core/models.py:97 core/models.py:98 +#: engine/core/models.py:96 engine/core/models.py:97 msgid "attribute group's name" msgstr "属性グループ名" -#: core/models.py:106 core/models.py:716 +#: engine/core/models.py:105 engine/core/models.py:727 msgid "attribute group" msgstr "属性グループ" -#: core/models.py:112 +#: engine/core/models.py:111 msgid "" "Represents a vendor entity capable of storing information about external " "vendors and their interaction requirements. The Vendor class is used to " @@ -1458,50 +1544,54 @@ msgid "" "also maintains additional metadata and constraints, making it suitable for " "use in systems that interact with third-party vendors." msgstr "" -"外部ベンダーとその相互作用要件に関する情報を格納できるベンダー・エンティティを表します。Vendor " -"クラスは、外部ベンダーに関連する情報を定義・管理するために使用します。これは、ベンダーの名前、通信に必要な認証の詳細、ベンダーから取得した商品に適用されるパーセンテージのマークアップを格納します。このモデルは、追加のメタデータと制約も保持するため、サードパーティ・ベンダーとやり取りするシステムでの使用に適しています。" +"外部ベンダーとその相互作用要件に関する情報を格納できるベンダー・エンティティ" +"を表します。Vendor クラスは、外部ベンダーに関連する情報を定義・管理するために" +"使用します。これは、ベンダーの名前、通信に必要な認証の詳細、ベンダーから取得" +"した商品に適用されるパーセンテージのマークアップを格納します。このモデルは、" +"追加のメタデータと制約も保持するため、サードパーティ・ベンダーとやり取りする" +"システムでの使用に適しています。" -#: core/models.py:125 +#: engine/core/models.py:124 msgid "stores credentials and endpoints required for vendor communication" msgstr "ベンダーのAPI通信に必要な認証情報とエンドポイントを保存する。" -#: core/models.py:126 +#: engine/core/models.py:125 msgid "authentication info" msgstr "認証情報" -#: core/models.py:131 +#: engine/core/models.py:130 msgid "define the markup for products retrieved from this vendor" msgstr "このベンダーから取得した商品のマークアップを定義する。" -#: core/models.py:132 +#: engine/core/models.py:131 msgid "vendor markup percentage" msgstr "ベンダーのマークアップ率" -#: core/models.py:136 +#: engine/core/models.py:135 msgid "name of this vendor" msgstr "このベンダーの名前" -#: core/models.py:137 +#: engine/core/models.py:136 msgid "vendor name" msgstr "ベンダー名" -#: core/models.py:148 +#: engine/core/models.py:147 msgid "response file" msgstr "レスポンスファイル" -#: core/models.py:149 +#: engine/core/models.py:148 msgid "vendor's last processing response" msgstr "ベンダーの最終処理回答" -#: core/models.py:155 +#: engine/core/models.py:154 msgid "vendor's integration file path" msgstr "ベンダーの統合ファイルパス" -#: core/models.py:156 +#: engine/core/models.py:155 msgid "integration path" msgstr "統合パス" -#: core/models.py:198 +#: engine/core/models.py:197 msgid "" "Represents a product tag used for classifying or identifying products. The " "ProductTag class is designed to uniquely identify and classify products " @@ -1509,46 +1599,51 @@ msgid "" "display name. It supports operations exported through mixins and provides " "metadata customization for administrative purposes." msgstr "" -"製品を分類または識別するために使用される製品タグを表します。ProductTag " -"クラスは、内部タグ識別子とユーザーフレンドリーな表示名の組み合わせによって、製品を一意に識別および分類するように設計されています。ミキシンを通じてエクスポートされる操作をサポートし、管理目的のためにメタデータのカスタマイズを提供します。" +"製品を分類または識別するために使用される製品タグを表します。ProductTag クラス" +"は、内部タグ識別子とユーザーフレンドリーな表示名の組み合わせによって、製品を" +"一意に識別および分類するように設計されています。ミキシンを通じてエクスポート" +"される操作をサポートし、管理目的のためにメタデータのカスタマイズを提供しま" +"す。" -#: core/models.py:210 core/models.py:241 +#: engine/core/models.py:209 engine/core/models.py:240 msgid "internal tag identifier for the product tag" msgstr "商品タグの内部タグ識別子" -#: core/models.py:211 core/models.py:242 +#: engine/core/models.py:210 engine/core/models.py:241 msgid "tag name" msgstr "タグ名" -#: core/models.py:215 core/models.py:246 +#: engine/core/models.py:214 engine/core/models.py:245 msgid "user-friendly name for the product tag" msgstr "商品タグのユーザーフレンドリーな名前" -#: core/models.py:216 core/models.py:247 +#: engine/core/models.py:215 engine/core/models.py:246 msgid "tag display name" msgstr "タグ表示名" -#: core/models.py:224 +#: engine/core/models.py:223 msgid "product tag" msgstr "商品タグ" -#: core/models.py:230 +#: engine/core/models.py:229 msgid "" "Represents a category tag used for products. This class models a category " "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 "" -"商品に使用されるカテゴリータグを表します。このクラスは、商品の関連付けと分類に使用できるカテゴリタグをモデル化します。内部タグ識別子とユーザーフレンドリーな表示名の属性が含まれます。" +"商品に使用されるカテゴリータグを表します。このクラスは、商品の関連付けと分類" +"に使用できるカテゴリタグをモデル化します。内部タグ識別子とユーザーフレンド" +"リーな表示名の属性が含まれます。" -#: core/models.py:255 +#: engine/core/models.py:254 msgid "category tag" msgstr "カテゴリタグ" -#: core/models.py:256 core/models.py:328 +#: engine/core/models.py:255 engine/core/models.py:327 msgid "category tags" msgstr "カテゴリータグ" -#: core/models.py:261 +#: engine/core/models.py:260 msgid "" "Represents a category entity to organize and group related items in a " "hierarchical structure. Categories may have hierarchical relationships with " @@ -1560,175 +1655,190 @@ msgid "" "hierarchy of categories, as well as assign attributes like images, tags, or " "priority." msgstr "" -"関連するアイテムを階層構造で整理し、グループ化するためのカテゴリ・エンティティを表します。カテゴリは、親子関係をサポートする他のカテゴリとの階層関係を持つことができます。このクラスには、カテゴリ関連機能の基盤となるメタデータおよび視覚表現のためのフィールドが含まれます。このクラスは通常、アプリケーション内で商品カテゴリやその他の類似のグループ化を定義および管理するために使用され、ユーザや管理者がカテゴリの名前、説明、階層を指定したり、画像、タグ、優先度などの属性を割り当てることができます。" +"関連するアイテムを階層構造で整理し、グループ化するためのカテゴリ・エンティ" +"ティを表します。カテゴリは、親子関係をサポートする他のカテゴリとの階層関係を" +"持つことができます。このクラスには、カテゴリ関連機能の基盤となるメタデータお" +"よび視覚表現のためのフィールドが含まれます。このクラスは通常、アプリケーショ" +"ン内で商品カテゴリやその他の類似のグループ化を定義および管理するために使用さ" +"れ、ユーザや管理者がカテゴリの名前、説明、階層を指定したり、画像、タグ、優先" +"度などの属性を割り当てることができます。" -#: core/models.py:275 +#: engine/core/models.py:274 msgid "upload an image representing this category" msgstr "このカテゴリーを表す画像をアップロードする" -#: core/models.py:278 +#: engine/core/models.py:277 msgid "category image" msgstr "カテゴリーイメージ" -#: core/models.py:283 +#: engine/core/models.py:282 msgid "define a markup percentage for products in this category" msgstr "このカテゴリの商品のマークアップ率を定義する" -#: core/models.py:292 +#: engine/core/models.py:291 msgid "parent of this category to form a hierarchical structure" msgstr "階層構造を形成するこのカテゴリの親" -#: core/models.py:293 +#: engine/core/models.py:292 msgid "parent category" msgstr "親カテゴリー" -#: core/models.py:298 +#: engine/core/models.py:297 msgid "category name" msgstr "カテゴリー名" -#: core/models.py:299 +#: engine/core/models.py:298 msgid "provide a name for this category" msgstr "このカテゴリの名前を入力してください。" -#: core/models.py:306 +#: engine/core/models.py:305 msgid "add a detailed description for this category" msgstr "このカテゴリの詳細説明を追加する" -#: core/models.py:307 +#: engine/core/models.py:306 msgid "category description" msgstr "カテゴリー説明" -#: core/models.py:327 +#: engine/core/models.py:326 msgid "tags that help describe or group this category" msgstr "このカテゴリーを説明またはグループ化するのに役立つタグ" -#: core/models.py:334 core/models.py:489 +#: engine/core/models.py:333 engine/core/models.py:488 msgid "priority" msgstr "優先順位" -#: core/models.py:432 +#: engine/core/models.py:431 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 "" -"システム内のブランド・オブジェクトを表します。このクラスは、名前、ロゴ、説明、関連カテゴリ、一意のスラッグ、および優先順位など、ブランドに関連する情報と属性を処理します。このクラスによって、アプリケーション内でブランド関連データを整理し、表現することができます。" +"システム内のブランド・オブジェクトを表します。このクラスは、名前、ロゴ、説" +"明、関連カテゴリ、一意のスラッグ、および優先順位など、ブランドに関連する情報" +"と属性を処理します。このクラスによって、アプリケーション内でブランド関連デー" +"タを整理し、表現することができます。" -#: core/models.py:442 +#: engine/core/models.py:441 msgid "name of this brand" msgstr "ブランド名" -#: core/models.py:443 +#: engine/core/models.py:442 msgid "brand name" msgstr "ブランド名" -#: core/models.py:450 +#: engine/core/models.py:449 msgid "upload a logo representing this brand" msgstr "このブランドを代表するロゴをアップロードする" -#: core/models.py:452 +#: engine/core/models.py:451 msgid "brand small image" msgstr "小さなブランドイメージ" -#: core/models.py:458 +#: engine/core/models.py:457 msgid "upload a big logo representing this brand" msgstr "このブランドを象徴する大きなロゴをアップロードする" -#: core/models.py:460 +#: engine/core/models.py:459 msgid "brand big image" msgstr "大きなブランドイメージ" -#: core/models.py:465 +#: engine/core/models.py:464 msgid "add a detailed description of the brand" msgstr "ブランドの詳細な説明を加える" -#: core/models.py:466 +#: engine/core/models.py:465 msgid "brand description" msgstr "ブランド説明" -#: core/models.py:471 +#: engine/core/models.py:470 msgid "optional categories that this brand is associated with" msgstr "このブランドが関連するオプション・カテゴリー" -#: core/models.py:472 +#: engine/core/models.py:471 msgid "associated categories" msgstr "カテゴリー" -#: core/models.py:502 +#: engine/core/models.py:501 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、デジタル資" +"産などの在庫関連プロパティを提供します。これは在庫管理システムの一部で、さま" +"ざまなベンダーから入手可能な製品の追跡と評価を可能にします。" -#: core/models.py:514 +#: engine/core/models.py:513 msgid "the vendor supplying this product stock" msgstr "この製品の在庫を供給しているベンダー" -#: core/models.py:515 +#: engine/core/models.py:514 msgid "associated vendor" msgstr "関連ベンダー" -#: core/models.py:519 +#: engine/core/models.py:518 msgid "final price to the customer after markups" msgstr "マークアップ後の顧客への最終価格" -#: core/models.py:520 +#: engine/core/models.py:519 msgid "selling price" msgstr "販売価格" -#: core/models.py:525 +#: engine/core/models.py:524 msgid "the product associated with this stock entry" msgstr "このストックエントリーに関連する製品" -#: core/models.py:526 core/models.py:779 core/models.py:825 -#: core/models.py:1718 +#: engine/core/models.py:525 engine/core/models.py:790 +#: engine/core/models.py:836 engine/core/models.py:1778 msgid "associated product" msgstr "関連製品" -#: core/models.py:533 +#: engine/core/models.py:532 msgid "the price paid to the vendor for this product" msgstr "この製品に対してベンダーに支払われた価格" -#: core/models.py:534 +#: engine/core/models.py:533 msgid "vendor purchase price" msgstr "ベンダーの購入価格" -#: core/models.py:538 +#: engine/core/models.py:537 msgid "available quantity of the product in stock" msgstr "在庫数" -#: core/models.py:539 +#: engine/core/models.py:538 msgid "quantity in stock" msgstr "在庫数" -#: core/models.py:543 +#: engine/core/models.py:542 msgid "vendor-assigned SKU for identifying the product" msgstr "製品を識別するためにベンダーが割り当てたSKU" -#: core/models.py:544 +#: engine/core/models.py:543 msgid "vendor sku" msgstr "ベンダーのSKU" -#: core/models.py:550 +#: engine/core/models.py:549 msgid "digital file associated with this stock if applicable" msgstr "この銘柄に関連するデジタルファイル(該当する場合" -#: core/models.py:551 +#: engine/core/models.py:550 msgid "digital file" msgstr "デジタルファイル" -#: core/models.py:560 +#: engine/core/models.py:553 +msgid "system attributes" +msgstr "システム属性" + +#: engine/core/models.py:560 msgid "stock entries" msgstr "ストックエントリー" -#: core/models.py:565 +#: engine/core/models.py:565 msgid "" "Represents a product with attributes such as category, brand, tags, digital " "status, name, description, part number, and slug. Provides related utility " @@ -1739,350 +1849,376 @@ 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 など) と相互作用し、パフォーマンスを向上させるた" +"めに、頻繁にアクセスされるプロパティのキャッシュを管理します。アプリケーショ" +"ン内で商品データとその関連情報を定義し、操作するために使用されます。" -#: core/models.py:578 +#: engine/core/models.py:578 msgid "category this product belongs to" msgstr "この製品が属するカテゴリ" -#: core/models.py:587 +#: engine/core/models.py:587 msgid "optionally associate this product with a brand" msgstr "オプションでこの製品をブランドと関連付ける" -#: core/models.py:593 +#: engine/core/models.py:593 msgid "tags that help describe or group this product" msgstr "この商品の説明やグループ分けに役立つタグ" -#: core/models.py:598 +#: engine/core/models.py:598 msgid "indicates whether this product is digitally delivered" msgstr "この製品がデジタル配信されるかどうかを示す" -#: core/models.py:599 +#: engine/core/models.py:599 msgid "is product digital" msgstr "製品はデジタルか" -#: core/models.py:605 +#: engine/core/models.py:605 msgid "provide a clear identifying name for the product" msgstr "製品の明確な識別名を提供する" -#: core/models.py:606 +#: engine/core/models.py:606 msgid "product name" msgstr "商品名" -#: core/models.py:612 core/models.py:867 +#: engine/core/models.py:612 engine/core/models.py:878 msgid "add a detailed description of the product" msgstr "商品の詳細説明を追加する" -#: core/models.py:613 +#: engine/core/models.py:613 msgid "product description" msgstr "商品説明" -#: core/models.py:620 +#: engine/core/models.py:620 msgid "part number for this product" msgstr "この製品の品番" -#: core/models.py:621 +#: engine/core/models.py:621 msgid "part number" msgstr "品番" -#: core/models.py:640 +#: engine/core/models.py:640 msgid "stock keeping unit for this product" msgstr "この製品の在庫管理単位" -#: core/models.py:702 +#: engine/core/models.py:713 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 などの" +"複数の型の値をサポートしています。これにより、動的で柔軟なデータ構造化が可能" +"になります。" -#: core/models.py:715 +#: engine/core/models.py:726 msgid "group of this attribute" msgstr "この属性のグループ" -#: core/models.py:721 +#: engine/core/models.py:732 msgid "string" msgstr "ストリング" -#: core/models.py:722 +#: engine/core/models.py:733 msgid "integer" msgstr "整数" -#: core/models.py:723 +#: engine/core/models.py:734 msgid "float" msgstr "フロート" -#: core/models.py:724 +#: engine/core/models.py:735 msgid "boolean" msgstr "ブーリアン" -#: core/models.py:725 +#: engine/core/models.py:736 msgid "array" msgstr "配列" -#: core/models.py:726 +#: engine/core/models.py:737 msgid "object" msgstr "対象" -#: core/models.py:728 +#: engine/core/models.py:739 msgid "type of the attribute's value" msgstr "属性値のタイプ" -#: core/models.py:729 +#: engine/core/models.py:740 msgid "value type" msgstr "値の種類" -#: core/models.py:734 +#: engine/core/models.py:745 msgid "name of this attribute" msgstr "この属性の名前" -#: core/models.py:735 +#: engine/core/models.py:746 msgid "attribute's name" msgstr "属性名" -#: core/models.py:740 +#: engine/core/models.py:751 msgid "is filterable" msgstr "フィルタリング可能" -#: core/models.py:741 +#: engine/core/models.py:752 msgid "designates whether this attribute can be used for filtering or not" msgstr "この属性がフィルタリングに使用できるかどうかを指定する。" -#: core/models.py:753 core/models.py:771 -#: core/templates/digital_order_delivered_email.html:134 +#: engine/core/models.py:764 engine/core/models.py:782 +#: engine/core/templates/digital_order_delivered_email.html:134 msgid "attribute" msgstr "属性" -#: core/models.py:759 +#: engine/core/models.py:770 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 "" -"製品にリンクされている属性の特定の値を表します。これは、「属性」を一意の「値」にリンクし、製品特性のより良い編成と動的な表現を可能にします。" +"製品にリンクされている属性の特定の値を表します。これは、「属性」を一意の" +"「値」にリンクし、製品特性のより良い編成と動的な表現を可能にします。" -#: core/models.py:770 +#: engine/core/models.py:781 msgid "attribute of this value" msgstr "この値の属性" -#: core/models.py:778 +#: engine/core/models.py:789 msgid "the specific product associated with this attribute's value" msgstr "この属性の値に関連する特定の製品" -#: core/models.py:784 +#: engine/core/models.py:795 msgid "the specific value for this attribute" msgstr "この属性の具体的な値" -#: core/models.py:797 +#: engine/core/models.py:808 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 "" -"システム内の商品に関連付けられた商品画像を表します。このクラスは商品の画像を管理するために設計されており、画像ファイルのアップロード、特定の商品との関連付け、表示順の決定などの機能を提供します。また、画像の代替テキストによるアクセシビリティ機能も備えています。" +"システム内の商品に関連付けられた商品画像を表します。このクラスは商品の画像を" +"管理するために設計されており、画像ファイルのアップロード、特定の商品との関連" +"付け、表示順の決定などの機能を提供します。また、画像の代替テキストによるアク" +"セシビリティ機能も備えています。" -#: core/models.py:808 +#: engine/core/models.py:819 msgid "provide alternative text for the image for accessibility" msgstr "アクセシビリティのために、画像に代替テキストを提供する。" -#: core/models.py:809 +#: engine/core/models.py:820 msgid "image alt text" msgstr "画像のaltテキスト" -#: core/models.py:812 +#: engine/core/models.py:823 msgid "upload the image file for this product" msgstr "この商品の画像ファイルをアップロードする" -#: core/models.py:813 core/models.py:837 +#: engine/core/models.py:824 engine/core/models.py:848 msgid "product image" msgstr "商品画像" -#: core/models.py:818 +#: engine/core/models.py:829 msgid "determines the order in which images are displayed" msgstr "画像の表示順を決める" -#: core/models.py:819 +#: engine/core/models.py:830 msgid "display priority" msgstr "表示優先度" -#: core/models.py:824 +#: engine/core/models.py:835 msgid "the product that this image represents" msgstr "この画像が表す製品" -#: core/models.py:838 +#: engine/core/models.py:849 msgid "product images" msgstr "商品画像" -#: core/models.py:843 +#: engine/core/models.py:854 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 "" -"割引を伴う商品の販促キャンペーンを表します。このクラスは、商品に対してパーセンテージベースの割引を提供する販促キャンペーンを定義および管理するために使用します。このクラスには、割引率を設定し、プロモーションの詳細を提供し、該当する商品にリンクするための属性が含まれます。商品カタログと統合して、キャンペーンの対象商品を決定します。" +"割引を伴う商品の販促キャンペーンを表します。このクラスは、商品に対してパーセ" +"ンテージベースの割引を提供する販促キャンペーンを定義および管理するために使用" +"します。このクラスには、割引率を設定し、プロモーションの詳細を提供し、該当す" +"る商品にリンクするための属性が含まれます。商品カタログと統合して、キャンペー" +"ンの対象商品を決定します。" -#: core/models.py:855 +#: engine/core/models.py:866 msgid "percentage discount for the selected products" msgstr "選択した商品の割引率" -#: core/models.py:856 +#: engine/core/models.py:867 msgid "discount percentage" msgstr "割引率" -#: core/models.py:861 +#: engine/core/models.py:872 msgid "provide a unique name for this promotion" msgstr "このプロモーションのユニークな名前を入力してください。" -#: core/models.py:862 +#: engine/core/models.py:873 msgid "promotion name" msgstr "プロモーション名" -#: core/models.py:868 +#: engine/core/models.py:879 msgid "promotion description" msgstr "プロモーション内容" -#: core/models.py:873 +#: engine/core/models.py:884 msgid "select which products are included in this promotion" msgstr "キャンペーン対象商品をお選びください。" -#: core/models.py:874 +#: engine/core/models.py:885 msgid "included products" msgstr "含まれる製品" -#: core/models.py:878 +#: engine/core/models.py:889 msgid "promotion" msgstr "プロモーション" -#: core/models.py:889 +#: engine/core/models.py:900 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 "" -"希望する商品を保存・管理するためのユーザーのウィッシュリストを表します。このクラスは、商品のコレクションを管理する機能を提供し、商品の追加や削除などの操作をサポートし、複数の商品を一度に追加したり削除したりする操作をサポートします。" +"希望する商品を保存・管理するためのユーザーのウィッシュリストを表します。この" +"クラスは、商品のコレクションを管理する機能を提供し、商品の追加や削除などの操" +"作をサポートし、複数の商品を一度に追加したり削除したりする操作をサポートしま" +"す。" -#: core/models.py:901 +#: engine/core/models.py:912 msgid "products that the user has marked as wanted" msgstr "ユーザーが欲しいとマークした商品" -#: core/models.py:909 +#: engine/core/models.py:920 msgid "user who owns this wishlist" msgstr "このウィッシュリストを所有しているユーザー" -#: core/models.py:910 +#: engine/core/models.py:921 msgid "wishlist owner" msgstr "ウィッシュリストのオーナー" -#: core/models.py:918 +#: engine/core/models.py:929 msgid "wishlist" msgstr "ウィッシュリスト" -#: core/models.py:960 +#: engine/core/models.py:971 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 "" -"商品に関連付けられたドキュメンタリーのレコードを表します。このクラスは、ファイルのアップロードとそのメタデータを含む、特定の商品に関連するドキュメンタリーに関する情報を格納するために使用されます。ドキュメントファイルのファイルタイプと保存パスを処理するメソッドとプロパティが含まれています。特定のミックスインから機能を拡張し、追加のカスタム機能を提供します。" +"商品に関連付けられたドキュメンタリーのレコードを表します。このクラスは、ファ" +"イルのアップロードとそのメタデータを含む、特定の商品に関連するドキュメンタ" +"リーに関する情報を格納するために使用されます。ドキュメントファイルのファイル" +"タイプと保存パスを処理するメソッドとプロパティが含まれています。特定のミック" +"スインから機能を拡張し、追加のカスタム機能を提供します。" -#: core/models.py:973 +#: engine/core/models.py:984 msgid "documentary" msgstr "ドキュメンタリー" -#: core/models.py:974 +#: engine/core/models.py:985 msgid "documentaries" msgstr "ドキュメンタリー" -#: core/models.py:984 +#: engine/core/models.py:995 msgid "unresolved" msgstr "未解決" -#: core/models.py:989 +#: engine/core/models.py:1000 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 レス" +"ポンスを保存してさらなる処理や検査を行うことができます。また、このクラスは住" +"所とユーザを関連付けることができ、 パーソナライズされたデータの取り扱いを容易" +"にします。" -#: core/models.py:1004 +#: engine/core/models.py:1015 msgid "address line for the customer" msgstr "お客様の住所" -#: core/models.py:1005 +#: engine/core/models.py:1016 msgid "address line" msgstr "住所" -#: core/models.py:1007 +#: engine/core/models.py:1018 msgid "street" msgstr "ストリート" -#: core/models.py:1008 +#: engine/core/models.py:1019 msgid "district" msgstr "地区" -#: core/models.py:1009 +#: engine/core/models.py:1020 msgid "city" msgstr "都市" -#: core/models.py:1010 +#: engine/core/models.py:1021 msgid "region" msgstr "地域" -#: core/models.py:1011 +#: engine/core/models.py:1022 msgid "postal code" msgstr "郵便番号" -#: core/models.py:1012 +#: engine/core/models.py:1023 msgid "country" msgstr "国名" -#: core/models.py:1019 +#: engine/core/models.py:1030 msgid "geolocation point: (longitude, latitude)" msgstr "ジオロケーションポイント(経度、緯度)" -#: core/models.py:1022 +#: engine/core/models.py:1033 msgid "full JSON response from geocoder for this address" msgstr "この住所に対するジオコーダーからの完全なJSON応答" -#: core/models.py:1027 +#: engine/core/models.py:1038 msgid "stored JSON response from the geocoding service" msgstr "ジオコーディング・サービスからの保存されたJSONレスポンス" -#: core/models.py:1035 +#: engine/core/models.py:1046 msgid "address" msgstr "住所" -#: core/models.py:1036 +#: engine/core/models.py:1047 msgid "addresses" msgstr "住所" -#: core/models.py:1048 +#: engine/core/models.py:1059 msgid "" "Represents a promotional code that can be used for discounts, managing its " "validity, type of discount, and application. The PromoCode class stores " @@ -2091,238 +2227,290 @@ 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 クラスは、一意の識別子、割引のプロパティ (金額または" +"パーセンテージ)、有効期間、関連するユーザ (もしあれば)、および使用状況など、" +"プロモーションコードに関する詳細を格納します。これは、制約が満たされているこ" +"とを保証しながら、プロモコードを検証し、注文に適用する機能を含んでいます。" -#: core/models.py:1062 +#: engine/core/models.py:1073 msgid "unique code used by a user to redeem a discount" msgstr "ユーザーが割引を利用する際に使用する固有のコード" -#: core/models.py:1063 +#: engine/core/models.py:1074 msgid "promo code identifier" msgstr "プロモコード識別子" -#: core/models.py:1070 +#: engine/core/models.py:1081 msgid "fixed discount amount applied if percent is not used" msgstr "パーセントを使用しない場合に適用される固定割引額" -#: core/models.py:1071 +#: engine/core/models.py:1082 msgid "fixed discount amount" msgstr "固定割引額" -#: core/models.py:1077 +#: engine/core/models.py:1088 msgid "percentage discount applied if fixed amount is not used" msgstr "定額を使用しない場合に適用される割引率" -#: core/models.py:1078 +#: engine/core/models.py:1089 msgid "percentage discount" msgstr "割引率" -#: core/models.py:1083 +#: engine/core/models.py:1094 msgid "timestamp when the promocode expires" msgstr "プロモコードの有効期限が切れるタイムスタンプ" -#: core/models.py:1084 +#: engine/core/models.py:1095 msgid "end validity time" msgstr "終了有効時間" -#: core/models.py:1089 +#: engine/core/models.py:1100 msgid "timestamp from which this promocode is valid" msgstr "このプロモコードが有効なタイムスタンプ" -#: core/models.py:1090 +#: engine/core/models.py:1101 msgid "start validity time" msgstr "開始有効時間" -#: core/models.py:1095 +#: engine/core/models.py:1106 msgid "timestamp when the promocode was used, blank if not used yet" msgstr "プロモコードが使用されたタイムスタンプ、未使用の場合は空白" -#: core/models.py:1096 +#: engine/core/models.py:1107 msgid "usage timestamp" msgstr "使用タイムスタンプ" -#: core/models.py:1101 +#: engine/core/models.py:1112 msgid "user assigned to this promocode if applicable" msgstr "該当する場合、このプロモコードに割り当てられたユーザー" -#: core/models.py:1102 +#: engine/core/models.py:1113 msgid "assigned user" msgstr "担当ユーザー" -#: core/models.py:1109 +#: engine/core/models.py:1120 msgid "promo code" msgstr "プロモコード" -#: core/models.py:1110 +#: engine/core/models.py:1121 msgid "promo codes" msgstr "プロモコード" -#: core/models.py:1125 +#: engine/core/models.py:1136 msgid "" "only one type of discount should be defined (amount or percent), but not " "both or neither." -msgstr "割引の種類は1つだけ(金額またはパーセント)定義されるべきで、両方またはどちらも定義してはならない。" +msgstr "" +"割引の種類は1つだけ(金額またはパーセント)定義されるべきで、両方またはどちら" +"も定義してはならない。" -#: core/models.py:1146 +#: engine/core/models.py:1157 msgid "promocode already used" msgstr "プロモコードはすでに使用されています" -#: core/models.py:1162 +#: engine/core/models.py:1173 #, python-brace-format msgid "invalid discount type for promocode {self.uuid}" msgstr "プロモコード {self.uuid} の割引タイプが無効です!" -#: core/models.py:1171 +#: engine/core/models.py:1182 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 "" -"ユーザーによる注文を表します。このクラスは、請求や配送情報、ステータス、関連するユーザ、通知、関連する操作などのさまざまな属性を含む、アプリケーション内の注文をモデル化します。注文は関連する商品を持つことができ、プロモーションを適用し、住所を設定し、配送または請求の詳細を更新することができます。同様に、注文のライフサイクルにおける商品の管理もサポートします。" +"ユーザーによる注文を表します。このクラスは、請求や配送情報、ステータス、関連" +"するユーザ、通知、関連する操作などのさまざまな属性を含む、アプリケーション内" +"の注文をモデル化します。注文は関連する商品を持つことができ、プロモーションを" +"適用し、住所を設定し、配送または請求の詳細を更新することができます。同様に、" +"注文のライフサイクルにおける商品の管理もサポートします。" -#: core/models.py:1188 +#: engine/core/models.py:1199 msgid "the billing address used for this order" msgstr "この注文に使用される請求先住所" -#: core/models.py:1196 +#: engine/core/models.py:1207 msgid "optional promo code applied to this order" msgstr "この注文に適用されるプロモコード" -#: core/models.py:1197 +#: engine/core/models.py:1208 msgid "applied promo code" msgstr "プロモーションコード適用" -#: core/models.py:1205 +#: engine/core/models.py:1216 msgid "the shipping address used for this order" msgstr "この注文に使用された配送先住所" -#: core/models.py:1206 +#: engine/core/models.py:1217 msgid "shipping address" msgstr "配送先住所" -#: core/models.py:1212 +#: engine/core/models.py:1223 msgid "current status of the order in its lifecycle" msgstr "ライフサイクルにおける現在の注文状況" -#: core/models.py:1213 +#: engine/core/models.py:1224 msgid "order status" msgstr "注文状況" -#: core/models.py:1218 core/models.py:1695 +#: engine/core/models.py:1229 engine/core/models.py:1755 msgid "json structure of notifications to display to users" -msgstr "ユーザーに表示する通知のJSON構造、管理UIではテーブルビューが使用されます。" +msgstr "" +"ユーザーに表示する通知のJSON構造、管理UIではテーブルビューが使用されます。" -#: core/models.py:1224 +#: engine/core/models.py:1235 msgid "json representation of order attributes for this order" msgstr "この注文の注文属性のJSON表現" -#: core/models.py:1230 +#: engine/core/models.py:1241 msgid "the user who placed the order" msgstr "注文を行ったユーザー" -#: core/models.py:1231 +#: engine/core/models.py:1242 msgid "user" msgstr "ユーザー" -#: core/models.py:1237 +#: engine/core/models.py:1248 msgid "the timestamp when the order was finalized" msgstr "注文が確定したタイムスタンプ" -#: core/models.py:1238 +#: engine/core/models.py:1249 msgid "buy time" msgstr "時間を買う" -#: core/models.py:1245 +#: engine/core/models.py:1256 msgid "a human-readable identifier for the order" msgstr "オーダーの人間が読み取り可能な識別子。" -#: core/models.py:1246 +#: engine/core/models.py:1257 msgid "human readable id" msgstr "人間が読めるID" -#: core/models.py:1252 +#: engine/core/models.py:1263 msgid "order" msgstr "オーダー" -#: core/models.py:1294 +#: engine/core/models.py:1305 msgid "a user must have only one pending order at a time" msgstr "ユーザーは一度に1つの未決注文しか持つことができません!" -#: core/models.py:1326 +#: engine/core/models.py:1337 msgid "you cannot add products to an order that is not a pending one" msgstr "保留中の注文以外の注文に商品を追加することはできません。" -#: core/models.py:1331 +#: engine/core/models.py:1342 msgid "you cannot add inactive products to order" msgstr "アクティブでない商品を注文に追加することはできません。" -#: core/models.py:1348 +#: engine/core/models.py:1359 msgid "you cannot add more products than available in stock" msgstr "在庫以上の商品を追加することはできません。" -#: core/models.py:1370 core/models.py:1395 core/models.py:1403 +#: engine/core/models.py:1381 engine/core/models.py:1406 +#: engine/core/models.py:1414 msgid "you cannot remove products from an order that is not a pending one" msgstr "保留中の注文以外の注文から商品を削除することはできません。" -#: core/models.py:1391 +#: engine/core/models.py:1402 #, python-brace-format msgid "{name} does not exist with query <{query}>" msgstr "{name}はクエリ<{query}と一緒に存在しません!" -#: core/models.py:1423 +#: engine/core/models.py:1434 msgid "promocode does not exist" msgstr "プロモコードが存在しない" -#: core/models.py:1429 +#: engine/core/models.py:1440 msgid "you can only buy physical products with shipping address specified" msgstr "配送先住所が指定された現物商品のみ購入可能!" -#: core/models.py:1448 +#: engine/core/models.py:1459 msgid "address does not exist" msgstr "アドレスが存在しない" -#: core/models.py:1469 core/models.py:1538 +#: engine/core/models.py:1480 engine/core/models.py:1549 msgid "you can not buy at this moment, please try again in a few minutes" msgstr "現在ご購入いただけません。数分後にもう一度お試しください。" -#: core/models.py:1472 core/models.py:1534 +#: engine/core/models.py:1483 engine/core/models.py:1545 msgid "invalid force value" msgstr "無効なフォース値" -#: core/models.py:1478 core/models.py:1541 +#: engine/core/models.py:1489 engine/core/models.py:1552 msgid "you cannot purchase an empty order!" msgstr "空注文はできません!" -#: core/models.py:1497 +#: engine/core/models.py:1508 msgid "you cannot buy an order without a user" msgstr "ユーザーがいない注文は購入できない!" -#: core/models.py:1511 +#: engine/core/models.py:1522 msgid "a user without a balance cannot buy with balance" msgstr "残高のないユーザーは、残高で購入することはできない!" -#: core/models.py:1516 +#: engine/core/models.py:1527 msgid "insufficient funds to complete the order" msgstr "注文を完了するための資金不足" -#: core/models.py:1550 +#: engine/core/models.py:1561 msgid "" "you cannot buy without registration, please provide the following " "information: customer name, customer email, customer phone number" -msgstr "ご登録がない場合はご購入いただけませんので、以下の情報をお知らせください:お客様のお名前、お客様のEメール、お客様の電話番号" +msgstr "" +"ご登録がない場合はご購入いただけませんので、以下の情報をお知らせください:お" +"客様のお名前、お客様のEメール、お客様の電話番号" -#: core/models.py:1559 +#: engine/core/models.py:1570 #, 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}が無効で" +"す!" -#: core/models.py:1668 +#: engine/core/models.py:1685 +msgid "" +"Manages user feedback for products. This class is designed to capture and " +"store user feedback for specific products that they have purchased. It " +"contains attributes to store user comments, a reference to the related " +"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:1697 +msgid "user-provided comments about their experience with the product" +msgstr "ユーザーから寄せられた製品使用体験に関するコメント" + +#: engine/core/models.py:1698 +msgid "feedback comments" +msgstr "フィードバック・コメント" + +#: engine/core/models.py:1705 +msgid "references the specific product in an order that this feedback is about" +msgstr "このフィードバックが対象としている注文の特定の製品を参照する。" + +#: engine/core/models.py:1706 +msgid "related order product" +msgstr "関連注文商品" + +#: engine/core/models.py:1711 +msgid "user-assigned rating for the product" +msgstr "ユーザーによる製品の評価" + +#: engine/core/models.py:1712 +msgid "product rating" +msgstr "製品評価" + +#: engine/core/models.py:1728 msgid "" "Represents products associated with orders and their attributes. The " "OrderProduct model maintains information about a product that is part of an " @@ -2334,270 +2522,248 @@ 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モデルと統合され、それらへの参照を" +"保存します。" -#: core/models.py:1683 +#: engine/core/models.py:1743 msgid "the price paid by the customer for this product at purchase time" msgstr "この商品の購入時に顧客が支払った価格" -#: core/models.py:1684 +#: engine/core/models.py:1744 msgid "purchase price at order time" msgstr "注文時の購入価格" -#: core/models.py:1689 +#: engine/core/models.py:1749 msgid "internal comments for admins about this ordered product" msgstr "この注文商品に関する管理者への内部コメント" -#: core/models.py:1690 +#: engine/core/models.py:1750 msgid "internal comments" msgstr "社内コメント" -#: core/models.py:1696 +#: engine/core/models.py:1756 msgid "user notifications" msgstr "ユーザー通知" -#: core/models.py:1701 +#: engine/core/models.py:1761 msgid "json representation of this item's attributes" msgstr "このアイテムの属性のJSON表現" -#: core/models.py:1702 +#: engine/core/models.py:1762 msgid "ordered product attributes" msgstr "製品属性の順序" -#: core/models.py:1707 +#: engine/core/models.py:1767 msgid "reference to the parent order that contains this product" msgstr "この商品を含む親注文への参照" -#: core/models.py:1708 +#: engine/core/models.py:1768 msgid "parent order" msgstr "親注文" -#: core/models.py:1717 +#: engine/core/models.py:1777 msgid "the specific product associated with this order line" msgstr "この注文ラインに関連する特定の製品" -#: core/models.py:1724 +#: engine/core/models.py:1784 msgid "quantity of this specific product in the order" msgstr "注文に含まれる特定の商品の数量" -#: core/models.py:1725 +#: engine/core/models.py:1785 msgid "product quantity" msgstr "製品数量" -#: core/models.py:1732 +#: engine/core/models.py:1792 msgid "current status of this product in the order" msgstr "この商品の現在のご注文状況" -#: core/models.py:1733 +#: engine/core/models.py:1793 msgid "product line status" msgstr "製品ラインの状況" -#: core/models.py:1798 +#: engine/core/models.py:1858 msgid "order product must have an order" msgstr "Orderproductには関連する注文がなければならない!" -#: core/models.py:1800 +#: engine/core/models.py:1860 #, python-brace-format msgid "wrong action specified for feedback: {action}" msgstr "フィードバックに指定されたアクションが間違っています:{action}です!" -#: core/models.py:1814 +#: engine/core/models.py:1874 msgid "you cannot feedback an order which is not received" msgstr "受信していない注文をフィードバックすることはできません。" -#: core/models.py:1820 +#: engine/core/models.py:1880 msgid "name" msgstr "名称" -#: core/models.py:1821 +#: engine/core/models.py:1881 msgid "URL of the integration" msgstr "統合のURL" -#: core/models.py:1822 +#: engine/core/models.py:1882 msgid "authentication credentials" msgstr "認証情報" -#: core/models.py:1844 +#: engine/core/models.py:1904 msgid "you can only have one default CRM provider" msgstr "デフォルトのCRMプロバイダーは1つだけです。" -#: core/models.py:1854 +#: engine/core/models.py:1914 msgid "CRM" msgstr "CRM" -#: core/models.py:1855 +#: engine/core/models.py:1915 msgid "CRMs" msgstr "CRM" -#: core/models.py:1867 +#: engine/core/models.py:1927 msgid "order CRM link" msgstr "注文のCRMリンク" -#: core/models.py:1868 +#: engine/core/models.py:1928 msgid "orders CRM links" msgstr "オーダーのCRMリンク" -#: core/models.py:1873 +#: engine/core/models.py:1933 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 を生成するメソッドも含まれています。" -#: core/models.py:1887 +#: engine/core/models.py:1947 msgid "download" msgstr "ダウンロード" -#: core/models.py:1888 +#: engine/core/models.py:1948 msgid "downloads" msgstr "ダウンロード" -#: core/models.py:1902 -msgid "" -"Manages user feedback for products. This class is designed to capture and " -"store user feedback for specific products that they have purchased. It " -"contains attributes to store user comments, a reference to the related " -"product in the order, and a user-assigned rating. The class uses database " -"fields to effectively model and manage feedback data." -msgstr "" -"製品に対するユーザのフィードバックを管理します。このクラスは、購入した特定の商品に対するユーザのフィードバックを取得し、保存するために設計されています。ユーザのコメント、注文の関連商品への参照、そしてユーザが割り当てた評価を保存する属性を含みます。このクラスは、フィードバックデータを効果的にモデル化し、管理するためにデータベースフィールドを使用します。" - -#: core/models.py:1914 -msgid "user-provided comments about their experience with the product" -msgstr "ユーザーから寄せられた製品使用体験に関するコメント" - -#: core/models.py:1915 -msgid "feedback comments" -msgstr "フィードバック・コメント" - -#: core/models.py:1922 -msgid "" -"references the specific product in an order that this feedback is about" -msgstr "このフィードバックが対象としている注文の特定の製品を参照する。" - -#: core/models.py:1923 -msgid "related order product" -msgstr "関連注文商品" - -#: core/models.py:1928 -msgid "user-assigned rating for the product" -msgstr "ユーザーによる製品の評価" - -#: core/models.py:1929 -msgid "product rating" -msgstr "製品評価" - -#: core/serializers/utility.py:89 +#: engine/core/serializers/utility.py:89 msgid "" "you must provide a comment, rating, and order product uuid to add feedback." -msgstr "フィードバックを追加するには、コメント、評価、および注文商品の uuid を入力する必要があります。" +msgstr "" +"フィードバックを追加するには、コメント、評価、および注文商品の uuid を入力す" +"る必要があります。" -#: core/signals.py:73 -msgid "error during promocode creation: {e!s}" -msgstr "プロモコード作成中にエラーが発生しました:{e!s}です。" - -#: core/sitemaps.py:25 +#: engine/core/sitemaps.py:25 msgid "Home" msgstr "ホーム" -#: core/sitemaps.py:30 +#: engine/core/sitemaps.py:30 msgid "Contact Us" msgstr "お問い合わせ" -#: core/sitemaps.py:35 +#: engine/core/sitemaps.py:35 msgid "About Us" msgstr "会社概要" -#: core/templates/digital_order_created_email.html:7 -#: core/templates/digital_order_created_email.html:100 -#: core/templates/digital_order_delivered_email.html:6 -#: core/templates/shipped_order_created_email.html:7 -#: core/templates/shipped_order_created_email.html:99 -#: core/templates/shipped_order_delivered_email.html:7 -#: core/templates/shipped_order_delivered_email.html:99 +#: engine/core/templates/digital_order_created_email.html:7 +#: engine/core/templates/digital_order_created_email.html:100 +#: engine/core/templates/digital_order_delivered_email.html:6 +#: engine/core/templates/shipped_order_created_email.html:7 +#: engine/core/templates/shipped_order_created_email.html:99 +#: engine/core/templates/shipped_order_delivered_email.html:7 +#: engine/core/templates/shipped_order_delivered_email.html:99 msgid "order confirmation" msgstr "ご注文の確認" -#: core/templates/digital_order_created_email.html:95 -#: core/templates/digital_order_delivered_email.html:94 -#: core/templates/promocode_granted_email.html:94 -#: core/templates/shipped_order_created_email.html:94 -#: core/templates/shipped_order_delivered_email.html:94 +#: engine/core/templates/digital_order_created_email.html:95 +#: engine/core/templates/digital_order_delivered_email.html:94 +#: engine/core/templates/promocode_granted_email.html:94 +#: engine/core/templates/shipped_order_created_email.html:94 +#: engine/core/templates/shipped_order_delivered_email.html:94 msgid "logo" msgstr "ロゴ" -#: core/templates/digital_order_created_email.html:101 -#: core/templates/shipped_order_created_email.html:100 -#: core/templates/shipped_order_delivered_email.html:100 +#: engine/core/templates/digital_order_created_email.html:101 +#: engine/core/templates/shipped_order_created_email.html:100 +#: engine/core/templates/shipped_order_delivered_email.html:100 #, python-format msgid "hello %(order.user.first_name)s," msgstr "こんにちは%(order.user.first_name)s、" -#: core/templates/digital_order_created_email.html:102 +#: engine/core/templates/digital_order_created_email.html:102 #, 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!ご注文を承りましたことをお知らせいた" +"します。以下、ご注文の詳細です:" -#: core/templates/digital_order_created_email.html:112 -#: core/templates/digital_order_delivered_email.html:110 -#: core/templates/shipped_order_created_email.html:110 -#: core/templates/shipped_order_delivered_email.html:110 +#: engine/core/templates/digital_order_created_email.html:112 +#: engine/core/templates/digital_order_delivered_email.html:110 +#: engine/core/templates/shipped_order_created_email.html:110 +#: engine/core/templates/shipped_order_delivered_email.html:110 msgid "total" msgstr "合計" -#: core/templates/digital_order_created_email.html:125 -#: core/templates/digital_order_delivered_email.html:157 -#: core/templates/shipped_order_created_email.html:127 -#: core/templates/shipped_order_delivered_email.html:127 +#: engine/core/templates/digital_order_created_email.html:125 +#: engine/core/templates/digital_order_delivered_email.html:157 +#: engine/core/templates/shipped_order_created_email.html:127 +#: engine/core/templates/shipped_order_delivered_email.html:127 msgid "total price" msgstr "合計価格" -#: core/templates/digital_order_created_email.html:131 -#: core/templates/shipped_order_created_email.html:140 -#: core/templates/shipped_order_delivered_email.html:140 +#: engine/core/templates/digital_order_created_email.html:131 +#: engine/core/templates/shipped_order_created_email.html:140 +#: engine/core/templates/shipped_order_delivered_email.html:140 #, python-format 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までお気軽にお問い合わ" +"せください。" -#: core/templates/digital_order_created_email.html:133 +#: engine/core/templates/digital_order_created_email.html:133 #, python-format msgid "best regards,
the %(config.PROJECT_NAME)s team" msgstr "よろしくお願いします、
%(config.PROJECT_NAME)sチーム" -#: core/templates/digital_order_created_email.html:139 -#: core/templates/digital_order_delivered_email.html:171 -#: core/templates/promocode_granted_email.html:114 +#: engine/core/templates/digital_order_created_email.html:139 +#: engine/core/templates/digital_order_delivered_email.html:171 +#: engine/core/templates/promocode_granted_email.html:114 msgid "all rights reserved" msgstr "無断複写・転載を禁じます。" -#: core/templates/digital_order_delivered_email.html:99 +#: engine/core/templates/digital_order_delivered_email.html:99 msgid "order delivered" msgstr "注文の配達" -#: core/templates/digital_order_delivered_email.html:100 -#: core/templates/promocode_granted_email.html:100 +#: engine/core/templates/digital_order_delivered_email.html:100 +#: engine/core/templates/promocode_granted_email.html:100 #, python-format msgid "hello %(user_first_name)s," msgstr "こんにちは%(user_first_name)s、" -#: core/templates/digital_order_delivered_email.html:101 +#: engine/core/templates/digital_order_delivered_email.html:101 #, python-format 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が正常に処理されました!以下はご注文の詳細です:" -#: core/templates/digital_order_delivered_email.html:128 +#: engine/core/templates/digital_order_delivered_email.html:128 msgid "" "additional\n" " information" @@ -2605,39 +2771,41 @@ msgstr "" "追加\n" " 追加情報" -#: core/templates/digital_order_delivered_email.html:137 -#: core/templates/json_table_widget.html:6 +#: engine/core/templates/digital_order_delivered_email.html:137 +#: engine/core/templates/json_table_widget.html:6 msgid "value" msgstr "価値" -#: core/templates/digital_order_delivered_email.html:163 -#: core/templates/promocode_granted_email.html:106 +#: engine/core/templates/digital_order_delivered_email.html:163 +#: engine/core/templates/promocode_granted_email.html:106 #, python-format 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までお気軽にお問い合わせくださ" +"い。" -#: core/templates/digital_order_delivered_email.html:165 -#: core/templates/promocode_granted_email.html:108 +#: engine/core/templates/digital_order_delivered_email.html:165 +#: engine/core/templates/promocode_granted_email.html:108 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "よろしくお願いします、
%(project_name)sチーム" -#: core/templates/json_table_widget.html:5 +#: engine/core/templates/json_table_widget.html:5 msgid "key" msgstr "キー" -#: core/templates/json_table_widget.html:40 +#: engine/core/templates/json_table_widget.html:40 msgid "Add Row" msgstr "行を追加" -#: core/templates/promocode_granted_email.html:6 -#: core/templates/promocode_granted_email.html:99 +#: engine/core/templates/promocode_granted_email.html:6 +#: engine/core/templates/promocode_granted_email.html:99 msgid "promocode granted" msgstr "プロモーションコード" -#: core/templates/promocode_granted_email.html:101 +#: engine/core/templates/promocode_granted_email.html:101 msgid "" "Thank you for staying with us! We have granted you with a promocode\n" " for " @@ -2645,31 +2813,34 @@ msgstr "" "ご宿泊ありがとうございます!プロモーションコード\n" " を付与させていただきました。" -#: core/templates/shipped_order_created_email.html:101 -#: core/templates/shipped_order_delivered_email.html:101 +#: 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 "" +"ご注文ありがとうございます!ご購入を確認させていただきました。以下、ご注文の" +"詳細です:" -#: core/templates/shipped_order_created_email.html:123 -#: core/templates/shipped_order_delivered_email.html:123 +#: engine/core/templates/shipped_order_created_email.html:123 +#: engine/core/templates/shipped_order_delivered_email.html:123 msgid "shipping price" msgstr "送料" -#: core/templates/shipped_order_created_email.html:133 -#: core/templates/shipped_order_delivered_email.html:133 +#: engine/core/templates/shipped_order_created_email.html:133 +#: engine/core/templates/shipped_order_delivered_email.html:133 msgid "your order will be delivered to the following address:" msgstr "ご注文の商品は以下の住所に配送されます:" -#: core/templates/shipped_order_created_email.html:142 -#: core/templates/shipped_order_delivered_email.html:142 +#: engine/core/templates/shipped_order_created_email.html:142 +#: engine/core/templates/shipped_order_delivered_email.html:142 #, python-format msgid "best regards,
The %(config.PROJECT_NAME)s team" msgstr "よろしくお願いします、
%(config.PROJECT_NAME)sチーム" -#: core/templates/shipped_order_created_email.html:147 -#: core/templates/shipped_order_delivered_email.html:147 +#: engine/core/templates/shipped_order_created_email.html:147 +#: engine/core/templates/shipped_order_delivered_email.html:147 msgid "" "all rights\n" " reserved" @@ -2677,146 +2848,163 @@ msgstr "" "すべての権利\n" " 予約済み" -#: core/utils/caching.py:44 +#: engine/core/utils/caching.py:44 msgid "both data and timeout are required" msgstr "データとタイムアウトの両方が必要" -#: core/utils/caching.py:46 +#: engine/core/utils/caching.py:46 msgid "invalid timeout value, it must be between 0 and 216000 seconds" msgstr "無効なタイムアウト値です。" -#: core/utils/emailing.py:27 +#: engine/core/utils/emailing.py:27 #, python-brace-format msgid "{config.PROJECT_NAME} | contact us initiated" msgstr "{config.PROJECT_NAME}|コンタクト開始| お問い合わせはこちらから" -#: core/utils/emailing.py:73 +#: engine/core/utils/emailing.py:73 #, python-brace-format msgid "{config.PROJECT_NAME} | order confirmation" msgstr "{config.PROJECT_NAME}|注文確認| ご注文の確認" -#: core/utils/emailing.py:105 +#: engine/core/utils/emailing.py:105 #, python-brace-format msgid "{config.PROJECT_NAME} | order delivered" msgstr "{config.PROJECT_NAME}|ご注文は配送されますか?" -#: core/utils/emailing.py:188 +#: engine/core/utils/emailing.py:188 #, python-brace-format msgid "{config.PROJECT_NAME} | promocode granted" msgstr "{config.PROJECT_NAME}|プロモコード付与" -#: core/utils/messages.py:3 +#: engine/core/utils/messages.py:3 msgid "you do not have permission to perform this action." msgstr "この操作を行う権限がありません。" -#: core/utils/nominatim.py:8 +#: engine/core/utils/nominatim.py:8 msgid "NOMINATIM_URL must be configured." msgstr "NOMINATIM_URLパラメータを設定する必要があります!" -#: core/validators.py:16 +#: engine/core/validators.py:16 #, 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} ピクセルを超えないようにしてくだ" +"さい!" -#: core/views.py:72 +#: engine/core/views.py:71 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用の適切なコンテントタイプヘッダーが含まれるようにします。" -#: core/views.py:87 +#: engine/core/views.py:86 msgid "" "Handles the detailed view response for a sitemap. This function processes " "the request, fetches the appropriate sitemap detail response, and sets the " "Content-Type header for XML." msgstr "" -"サイトマップの詳細表示レスポンスを処理します。この関数はリクエストを処理し、適切なサイトマップ詳細レスポンスを取得し、XML の Content-" -"Type ヘッダを設定します。" +"サイトマップの詳細表示レスポンスを処理します。この関数はリクエストを処理し、" +"適切なサイトマップ詳細レスポンスを取得し、XML の Content-Type ヘッダを設定し" +"ます。" -#: core/views.py:116 +#: engine/core/views.py:115 msgid "" "Returns a list of supported languages and their corresponding information." msgstr "サポートされている言語の一覧と対応する情報を返します。" -#: core/views.py:148 +#: engine/core/views.py:147 msgid "Returns the parameters of the website as a JSON object." msgstr "ウェブサイトのパラメータをJSONオブジェクトとして返します。" -#: core/views.py:167 +#: engine/core/views.py:166 msgid "" "Handles cache operations such as reading and setting cache data with a " "specified key and timeout." -msgstr "指定されたキーとタイムアウトで、キャッシュ・データの読み取りや設定などのキャッシュ操作を行う。" +msgstr "" +"指定されたキーとタイムアウトで、キャッシュ・データの読み取りや設定などの" +"キャッシュ操作を行う。" -#: core/views.py:194 +#: engine/core/views.py:193 msgid "Handles `contact us` form submissions." msgstr "お問い合わせフォームの送信を処理する。" -#: core/views.py:215 +#: engine/core/views.py:214 msgid "" "Handles requests for processing and validating URLs from incoming POST " "requests." -msgstr "入ってくる POST リクエストからの URL の処理と検証のリクエストを処理します。" +msgstr "" +"入ってくる POST リクエストからの URL の処理と検証のリクエストを処理します。" -#: core/views.py:255 +#: engine/core/views.py:254 msgid "Handles global search queries." msgstr "グローバル検索クエリを処理する。" -#: core/views.py:270 +#: engine/core/views.py:269 msgid "Handles the logic of buying as a business without registration." msgstr "登録なしでビジネスとして購入するロジックを扱う。" -#: core/views.py:306 +#: engine/core/views.py:305 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エラーが発生します。" -#: core/views.py:316 +#: engine/core/views.py:315 msgid "order_product_uuid is required" msgstr "order_product_uuidは必須です。" -#: core/views.py:322 +#: engine/core/views.py:321 msgid "you can only download the digital asset once" msgstr "デジタルアセットのダウンロードは1回限りです。" -#: core/views.py:325 +#: engine/core/views.py:324 msgid "the order must be paid before downloading the digital asset" msgstr "デジタル資産をダウンロードする前に、注文を支払う必要があります。" -#: core/views.py:331 +#: engine/core/views.py:330 msgid "the order product does not have a product" msgstr "注文商品に商品がない" -#: core/views.py:369 +#: engine/core/views.py:368 msgid "favicon not found" msgstr "ファビコンが見つかりません" -#: core/views.py:374 +#: engine/core/views.py:373 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 エラーが発生します。" -#: core/views.py:386 +#: engine/core/views.py:385 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` 関数を使いま" +"す。" -#: core/views.py:399 +#: engine/core/views.py:398 msgid "Returns current version of the eVibes. " msgstr "eVibes の現在のバージョンを返します。" -#: core/viewsets.py:137 +#: engine/core/viewsets.py:137 msgid "" "Defines a viewset for managing Evibes-related operations. The EvibesViewSet " "class inherits from ModelViewSet and provides functionality for handling " @@ -2824,23 +3012,25 @@ msgid "" "serializer classes based on the current action, customizable permissions, " "and rendering formats." msgstr "" -"Evibes 関連の操作を管理するためのビューセットを定義します。EvibesViewSet クラスは ModelViewSet を継承し、Evibes" -" エンティティに対する アクションや操作を扱うための機能を提供します。現在のアクションに基づいた動的なシリアライザークラスのサポート、 " -"カスタマイズ可能なパーミッション、レンダリングフォーマットが含まれます。" +"Evibes 関連の操作を管理するためのビューセットを定義します。EvibesViewSet クラ" +"スは ModelViewSet を継承し、Evibes エンティティに対する アクションや操作を扱" +"うための機能を提供します。現在のアクションに基づいた動的なシリアライザークラ" +"スのサポート、 カスタマイズ可能なパーミッション、レンダリングフォーマットが含" +"まれます。" -#: core/viewsets.py:157 +#: engine/core/viewsets.py:157 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" +"データの要求と応答を処理する標準化された方法を提供します。" -#: core/viewsets.py:176 +#: engine/core/viewsets.py:176 msgid "" "Handles operations related to Attribute objects within the application. " "Provides a set of API endpoints to interact with Attribute data. This class " @@ -2849,24 +3039,27 @@ msgid "" "specific fields or retrieving detailed versus simplified information " "depending on the request." msgstr "" -"アプリケーション内でAttributeオブジェクトに関連する操作を処理する。Attribute データと対話するための API " -"エンドポイントのセットを提供します。このクラスは、Attribute " -"オブジェクトのクエリ、フィルタリング、およびシリアライズを管理し、特定のフィールドによるフィルタリングや、リクエストに応じた詳細情報と簡略化された情報の取得など、返されるデータの動的な制御を可能にします。" +"アプリケーション内でAttributeオブジェクトに関連する操作を処理する。Attribute " +"データと対話するための API エンドポイントのセットを提供します。このクラスは、" +"Attribute オブジェクトのクエリ、フィルタリング、およびシリアライズを管理し、" +"特定のフィールドによるフィルタリングや、リクエストに応じた詳細情報と簡略化さ" +"れた情報の取得など、返されるデータの動的な制御を可能にします。" -#: core/viewsets.py:195 +#: engine/core/viewsets.py:195 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 を" +"通して提供されます。" -#: core/viewsets.py:214 +#: engine/core/viewsets.py:214 msgid "" "Manages views for Category-related operations. The CategoryViewSet class is " "responsible for handling operations related to the Category model in the " @@ -2874,9 +3067,13 @@ msgid "" "The viewset also enforces permissions to ensure that only authorized users " "can access specific data." msgstr "" -"Category関連の操作のためのビューを管理します。CategoryViewSetクラスは、システム内のCategoryモデルに関連する操作を処理する責任があります。カテゴリデータの取得、フィルタリング、シリアライズをサポートします。ビューセットはまた、許可されたユーザーだけが特定のデータにアクセスできるようにパーミッションを強制します。" +"Category関連の操作のためのビューを管理します。CategoryViewSetクラスは、システ" +"ム内のCategoryモデルに関連する操作を処理する責任があります。カテゴリデータの" +"取得、フィルタリング、シリアライズをサポートします。ビューセットはまた、許可" +"されたユーザーだけが特定のデータにアクセスできるようにパーミッションを強制し" +"ます。" -#: core/viewsets.py:326 +#: engine/core/viewsets.py:326 msgid "" "Represents a viewset for managing Brand instances. This class provides " "functionality for querying, filtering, and serializing Brand objects. It " @@ -2884,10 +3081,11 @@ msgid "" "endpoints for Brand objects." msgstr "" "Brandインスタンスを管理するためのビューセットを表します。このクラスは Brand " -"オブジェクトのクエリ、フィルタリング、シリアライズの機能を提供します。Django の ViewSet フレームワークを使い、 Brand " -"オブジェクトの API エンドポイントの実装を簡素化します。" +"オブジェクトのクエリ、フィルタリング、シリアライズの機能を提供します。Django " +"の ViewSet フレームワークを使い、 Brand オブジェクトの API エンドポイントの実" +"装を簡素化します。" -#: core/viewsets.py:438 +#: engine/core/viewsets.py:438 msgid "" "Manages operations related to the `Product` model in the system. This class " "provides a viewset for managing products, including their filtering, " @@ -2897,12 +3095,14 @@ msgid "" "product details, applying permissions, and accessing related feedback of a " "product." msgstr "" -"システム内の `Product` " -"モデルに関連する操作を管理する。このクラスは、商品のフィルタリング、シリアライズ、特定のインスタンスに対する操作など、商品を管理するためのビューセットを提供します。共通の機能を使うために" -" `EvibesViewSet` を継承し、 RESTful API 操作のために Django REST " -"フレームワークと統合しています。商品の詳細を取得したり、パーミッションを適用したり、商品の関連するフィードバックにアクセスするためのメソッドを含みます。" +"システム内の `Product` モデルに関連する操作を管理する。このクラスは、商品の" +"フィルタリング、シリアライズ、特定のインスタンスに対する操作など、商品を管理" +"するためのビューセットを提供します。共通の機能を使うために `EvibesViewSet` を" +"継承し、 RESTful API 操作のために Django REST フレームワークと統合していま" +"す。商品の詳細を取得したり、パーミッションを適用したり、商品の関連するフィー" +"ドバックにアクセスするためのメソッドを含みます。" -#: core/viewsets.py:568 +#: engine/core/viewsets.py:568 msgid "" "Represents a viewset for managing Vendor objects. This viewset allows " "fetching, filtering, and serializing Vendor data. It defines the queryset, " @@ -2910,81 +3110,97 @@ 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 関連リソースへの合理的なアクセスを提供することで" +"す。" -#: core/viewsets.py:588 +#: engine/core/viewsets.py:588 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 `EvibesViewSet` and makes " "use of Django's filtering system for querying data." msgstr "" -"Feedback オブジェクトを扱うビューセットの表現。このクラスは、一覧表示、フィルタリング、詳細の取得など、Feedback " -"オブジェクトに関する操作を管理します。このビューセットの目的は、アクションごとに異なるシリアライザを提供し、アクセス可能な Feedback " -"オブジェクトのパーミッションベースの処理を実装することです。ベースとなる `EvibesViewSet` を拡張し、Django " -"のフィルタリングシステムを利用してデータを取得します。" +"Feedback オブジェクトを扱うビューセットの表現。このクラスは、一覧表示、フィル" +"タリング、詳細の取得など、Feedback オブジェクトに関する操作を管理します。この" +"ビューセットの目的は、アクションごとに異なるシリアライザを提供し、アクセス可" +"能な Feedback オブジェクトのパーミッションベースの処理を実装することです。" +"ベースとなる `EvibesViewSet` を拡張し、Django のフィルタリングシステムを利用" +"してデータを取得します。" -#: core/viewsets.py:615 +#: engine/core/viewsets.py:615 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は、実行される特定のアク" +"ションに基づいて複数のシリアライザを使用し、注文データを操作している間、それ" +"に応じてパーミッションを強制します。" -#: core/viewsets.py:813 +#: engine/core/viewsets.py:813 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 インスタン" +"スに関するフィードバックを処理するための詳細なアクションを提供します。" -#: core/viewsets.py:867 +#: engine/core/viewsets.py:867 msgid "Manages operations related to Product images in the application. " msgstr "アプリケーション内の商品画像に関する操作を管理します。" -#: core/viewsets.py:880 +#: engine/core/viewsets.py:880 msgid "" "Manages the retrieval and handling of PromoCode instances through various " "API actions." -msgstr "様々なAPIアクションによるプロモコードインスタンスの取得と処理を管理します。" +msgstr "" +"様々なAPIアクションによるプロモコードインスタンスの取得と処理を管理します。" -#: core/viewsets.py:902 +#: engine/core/viewsets.py:902 msgid "Represents a view set for managing promotions. " msgstr "プロモーションを管理するためのビューセットを表します。" -#: core/viewsets.py:915 +#: engine/core/viewsets.py:915 msgid "Handles operations related to Stock data in the system." msgstr "システム内のストックデータに関する操作を行う。" -#: core/viewsets.py:929 +#: engine/core/viewsets.py:929 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は、ウィッシュリスト" +"商品の追加、削除、一括アクションなどの機能を容易にします。明示的なパーミッ" +"ションが付与されていない限り、ユーザーが自分のウィッシュリストのみを管理でき" +"るよう、パーミッションチェックが統合されています。" -#: core/viewsets.py:1044 +#: engine/core/viewsets.py:1044 msgid "" "This class provides viewset functionality for managing `Address` objects. " "The AddressViewSet class enables CRUD operations, filtering, and custom " @@ -2992,16 +3208,18 @@ msgid "" "different HTTP methods, serializer overrides, and permission handling based " "on the request context." msgstr "" -"このクラスは `Address` オブジェクトを管理するためのビューセット機能を提供する。AddressViewSet " -"クラスは、住所エンティティに関連する CRUD 操作、フィルタリング、カスタムアクションを可能にします。異なる HTTP " -"メソッドに特化した振る舞いや、シリアライザのオーバーライド、 リクエストコンテキストに基づいたパーミッション処理などを含みます。" +"このクラスは `Address` オブジェクトを管理するためのビューセット機能を提供す" +"る。AddressViewSet クラスは、住所エンティティに関連する CRUD 操作、フィルタリ" +"ング、カスタムアクションを可能にします。異なる HTTP メソッドに特化した振る舞" +"いや、シリアライザのオーバーライド、 リクエストコンテキストに基づいたパーミッ" +"ション処理などを含みます。" -#: core/viewsets.py:1111 +#: engine/core/viewsets.py:1111 #, python-brace-format msgid "Geocoding error: {e}" msgstr "ジオコーディングエラー:{e}" -#: core/viewsets.py:1119 +#: engine/core/viewsets.py:1119 msgid "" "Handles operations related to Product Tags within the application. This " "class provides functionality for retrieving, filtering, and serializing " @@ -3009,4 +3227,8 @@ msgid "" "using the specified filter backend and dynamically uses different " "serializers based on the action being performed." msgstr "" -"アプリケーション内で商品タグに関連する操作を処理します。このクラスは、商品タグオブジェクトの取得、フィルタリング、シリアライズの機能を提供します。指定されたフィルタバックエンドを使用して特定の属性に対する柔軟なフィルタリングをサポートし、実行されるアクションに基づいて動的に異なるシリアライザを使用します。" +"アプリケーション内で商品タグに関連する操作を処理します。このクラスは、商品タ" +"グオブジェクトの取得、フィルタリング、シリアライズの機能を提供します。指定さ" +"れたフィルタバックエンドを使用して特定の属性に対する柔軟なフィルタリングをサ" +"ポートし、実行されるアクションに基づいて動的に異なるシリアライザを使用しま" +"す。" diff --git a/core/locale/kk_KZ/LC_MESSAGES/django.mo b/engine/core/locale/kk_KZ/LC_MESSAGES/django.mo similarity index 74% rename from core/locale/kk_KZ/LC_MESSAGES/django.mo rename to engine/core/locale/kk_KZ/LC_MESSAGES/django.mo index 692bae97..7640ce00 100644 Binary files a/core/locale/kk_KZ/LC_MESSAGES/django.mo and b/engine/core/locale/kk_KZ/LC_MESSAGES/django.mo differ diff --git a/core/locale/kk_KZ/LC_MESSAGES/django.po b/engine/core/locale/kk_KZ/LC_MESSAGES/django.po similarity index 62% rename from core/locale/kk_KZ/LC_MESSAGES/django.po rename to engine/core/locale/kk_KZ/LC_MESSAGES/django.po index b17c781f..4ab99bc1 100644 --- a/core/locale/kk_KZ/LC_MESSAGES/django.po +++ b/engine/core/locale/kk_KZ/LC_MESSAGES/django.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: EVIBES 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -16,518 +16,526 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: core/abstract.py:12 +#: engine/core/abstract.py:12 msgid "unique id" msgstr "" -#: core/abstract.py:13 +#: engine/core/abstract.py:13 msgid "unique id is used to surely identify any database object" msgstr "" -#: core/abstract.py:20 +#: engine/core/abstract.py:20 msgid "is active" msgstr "" -#: core/abstract.py:21 +#: engine/core/abstract.py:21 msgid "" "if set to false, this object can't be seen by users without needed permission" msgstr "" -#: core/abstract.py:23 core/choices.py:18 +#: engine/core/abstract.py:23 engine/core/choices.py:18 msgid "created" msgstr "" -#: core/abstract.py:23 +#: engine/core/abstract.py:23 msgid "when the object first appeared on the database" msgstr "" -#: core/abstract.py:24 +#: engine/core/abstract.py:24 msgid "modified" msgstr "" -#: core/abstract.py:24 +#: engine/core/abstract.py:24 msgid "when the object was last modified" msgstr "" -#: core/admin.py:68 +#: engine/core/admin.py:68 msgid "translations" msgstr "" -#: core/admin.py:72 +#: engine/core/admin.py:72 msgid "general" msgstr "" -#: core/admin.py:74 +#: engine/core/admin.py:74 msgid "relations" msgstr "" -#: core/admin.py:76 +#: engine/core/admin.py:76 msgid "additional info" msgstr "" -#: core/admin.py:94 +#: engine/core/admin.py:94 msgid "metadata" msgstr "" -#: core/admin.py:101 +#: engine/core/admin.py:101 msgid "timestamps" msgstr "" -#: core/admin.py:116 +#: engine/core/admin.py:116 #, python-format msgid "activate selected %(verbose_name_plural)s" msgstr "" -#: core/admin.py:121 +#: engine/core/admin.py:121 msgid "selected items have been activated." msgstr "" -#: core/admin.py:127 +#: engine/core/admin.py:127 #, python-format msgid "deactivate selected %(verbose_name_plural)s" msgstr "" -#: core/admin.py:132 +#: engine/core/admin.py:132 msgid "selected items have been deactivated." msgstr "" -#: core/admin.py:144 core/graphene/object_types.py:582 -#: core/graphene/object_types.py:589 core/models.py:783 core/models.py:791 +#: engine/core/admin.py:144 engine/core/graphene/object_types.py:586 +#: engine/core/graphene/object_types.py:593 engine/core/models.py:794 +#: engine/core/models.py:802 msgid "attribute value" msgstr "" -#: core/admin.py:145 core/graphene/object_types.py:75 core/models.py:792 +#: engine/core/admin.py:145 engine/core/graphene/object_types.py:75 +#: engine/core/models.py:803 msgid "attribute values" msgstr "" -#: core/admin.py:156 +#: engine/core/admin.py:156 msgid "image" msgstr "" -#: core/admin.py:157 core/graphene/object_types.py:474 +#: engine/core/admin.py:157 engine/core/graphene/object_types.py:474 msgid "images" msgstr "" -#: core/admin.py:168 core/models.py:559 +#: engine/core/admin.py:169 engine/core/models.py:559 msgid "stock" msgstr "" -#: core/admin.py:169 core/graphene/object_types.py:636 +#: engine/core/admin.py:170 engine/core/graphene/object_types.py:640 msgid "stocks" msgstr "" -#: core/admin.py:182 core/models.py:1744 +#: engine/core/admin.py:183 engine/core/models.py:1804 msgid "order product" msgstr "" -#: core/admin.py:183 core/graphene/object_types.py:389 core/models.py:1745 +#: engine/core/admin.py:184 engine/core/graphene/object_types.py:389 +#: engine/core/models.py:1805 msgid "order products" msgstr "" -#: core/admin.py:196 core/admin.py:197 +#: engine/core/admin.py:197 engine/core/admin.py:198 msgid "children" msgstr "" -#: core/admin.py:965 +#: engine/core/admin.py:969 msgid "Config" msgstr "" -#: core/apps.py:8 +#: engine/core/apps.py:8 msgid "core" msgstr "" -#: core/choices.py:4 core/choices.py:20 +#: engine/core/choices.py:4 engine/core/choices.py:20 msgid "finished" msgstr "" -#: core/choices.py:5 core/choices.py:19 +#: engine/core/choices.py:5 engine/core/choices.py:19 msgid "delivering" msgstr "" -#: core/choices.py:6 +#: engine/core/choices.py:6 msgid "delivered" msgstr "" -#: core/choices.py:7 +#: engine/core/choices.py:7 msgid "canceled" msgstr "" -#: core/choices.py:8 core/choices.py:16 core/choices.py:24 +#: engine/core/choices.py:8 engine/core/choices.py:16 engine/core/choices.py:24 msgid "failed" msgstr "" -#: core/choices.py:9 core/choices.py:15 +#: engine/core/choices.py:9 engine/core/choices.py:15 msgid "pending" msgstr "" -#: core/choices.py:10 +#: engine/core/choices.py:10 msgid "accepted" msgstr "" -#: core/choices.py:11 +#: engine/core/choices.py:11 msgid "money returned" msgstr "" -#: core/choices.py:17 +#: engine/core/choices.py:17 msgid "payment" msgstr "" -#: core/choices.py:21 +#: engine/core/choices.py:21 msgid "momental" msgstr "" -#: core/choices.py:24 +#: engine/core/choices.py:24 msgid "successful" msgstr "" -#: core/docs/drf/views.py:17 core/graphene/mutations.py:38 +#: engine/core/docs/drf/views.py:17 engine/core/graphene/mutations.py:38 msgid "cache I/O" msgstr "" -#: core/docs/drf/views.py:19 +#: engine/core/docs/drf/views.py:19 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 "" -#: core/docs/drf/views.py:32 +#: engine/core/docs/drf/views.py:32 msgid "get a list of supported languages" msgstr "" -#: core/docs/drf/views.py:41 +#: engine/core/docs/drf/views.py:41 msgid "get application's exposable parameters" msgstr "" -#: core/docs/drf/views.py:48 +#: engine/core/docs/drf/views.py:48 msgid "send a message to the support team" msgstr "" -#: core/docs/drf/views.py:59 core/graphene/mutations.py:58 +#: engine/core/docs/drf/views.py:59 engine/core/graphene/mutations.py:58 msgid "request a CORSed URL" msgstr "" -#: core/docs/drf/views.py:85 +#: engine/core/docs/drf/views.py:85 msgid "global search endpoint to query across project's tables" msgstr "" -#: core/docs/drf/views.py:91 +#: engine/core/docs/drf/views.py:91 msgid "purchase an order as a business" msgstr "" -#: core/docs/drf/views.py:98 +#: engine/core/docs/drf/views.py:98 msgid "" "purchase an order as a business, using the provided `products` with " "`product_uuid` and `attributes`." msgstr "" -#: core/docs/drf/viewsets.py:58 +#: engine/core/docs/drf/viewsets.py:58 msgid "list all attribute groups (simple view)" msgstr "" -#: core/docs/drf/viewsets.py:62 +#: engine/core/docs/drf/viewsets.py:62 msgid "retrieve a single attribute group (detailed view)" msgstr "" -#: core/docs/drf/viewsets.py:66 +#: engine/core/docs/drf/viewsets.py:66 msgid "create an attribute group" msgstr "" -#: core/docs/drf/viewsets.py:70 +#: engine/core/docs/drf/viewsets.py:70 msgid "delete an attribute group" msgstr "" -#: core/docs/drf/viewsets.py:74 +#: engine/core/docs/drf/viewsets.py:74 msgid "rewrite an existing attribute group saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:78 +#: engine/core/docs/drf/viewsets.py:78 msgid "rewrite some fields of an existing attribute group saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:85 +#: engine/core/docs/drf/viewsets.py:85 msgid "list all attributes (simple view)" msgstr "" -#: core/docs/drf/viewsets.py:89 +#: engine/core/docs/drf/viewsets.py:89 msgid "retrieve a single attribute (detailed view)" msgstr "" -#: core/docs/drf/viewsets.py:93 +#: engine/core/docs/drf/viewsets.py:93 msgid "create an attribute" msgstr "" -#: core/docs/drf/viewsets.py:97 +#: engine/core/docs/drf/viewsets.py:97 msgid "delete an attribute" msgstr "" -#: core/docs/drf/viewsets.py:101 +#: engine/core/docs/drf/viewsets.py:101 msgid "rewrite an existing attribute saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:105 +#: engine/core/docs/drf/viewsets.py:105 msgid "rewrite some fields of an existing attribute saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:112 +#: engine/core/docs/drf/viewsets.py:112 msgid "list all attribute values (simple view)" msgstr "" -#: core/docs/drf/viewsets.py:116 +#: engine/core/docs/drf/viewsets.py:116 msgid "retrieve a single attribute value (detailed view)" msgstr "" -#: core/docs/drf/viewsets.py:120 +#: engine/core/docs/drf/viewsets.py:120 msgid "create an attribute value" msgstr "" -#: core/docs/drf/viewsets.py:124 +#: engine/core/docs/drf/viewsets.py:124 msgid "delete an attribute value" msgstr "" -#: core/docs/drf/viewsets.py:128 +#: engine/core/docs/drf/viewsets.py:128 msgid "rewrite an existing attribute value saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:132 +#: engine/core/docs/drf/viewsets.py:132 msgid "rewrite some fields of an existing attribute value saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:139 core/docs/drf/viewsets.py:140 +#: engine/core/docs/drf/viewsets.py:139 engine/core/docs/drf/viewsets.py:140 msgid "list all categories (simple view)" msgstr "" -#: core/docs/drf/viewsets.py:144 core/docs/drf/viewsets.py:145 +#: engine/core/docs/drf/viewsets.py:144 engine/core/docs/drf/viewsets.py:145 msgid "retrieve a single category (detailed view)" msgstr "" -#: core/docs/drf/viewsets.py:149 core/docs/drf/viewsets.py:150 -msgid "create a category" -msgstr "" - -#: core/docs/drf/viewsets.py:154 core/docs/drf/viewsets.py:155 -msgid "delete a category" -msgstr "" - -#: core/docs/drf/viewsets.py:159 core/docs/drf/viewsets.py:160 -msgid "rewrite an existing category saving non-editables" -msgstr "" - -#: core/docs/drf/viewsets.py:164 core/docs/drf/viewsets.py:165 -msgid "rewrite some fields of an existing category saving non-editables" -msgstr "" - -#: core/docs/drf/viewsets.py:169 core/docs/drf/viewsets.py:501 -#: core/graphene/object_types.py:117 core/graphene/object_types.py:207 -#: core/graphene/object_types.py:482 -msgid "SEO Meta snapshot" -msgstr "" - -#: core/docs/drf/viewsets.py:170 -msgid "returns a snapshot of the category's SEO meta data" -msgstr "" - -#: core/docs/drf/viewsets.py:175 +#: engine/core/docs/drf/viewsets.py:150 engine/core/docs/drf/viewsets.py:183 msgid "Category UUID or slug" msgstr "" -#: core/docs/drf/viewsets.py:188 +#: engine/core/docs/drf/viewsets.py:157 engine/core/docs/drf/viewsets.py:158 +msgid "create a category" +msgstr "" + +#: engine/core/docs/drf/viewsets.py:162 engine/core/docs/drf/viewsets.py:163 +msgid "delete a category" +msgstr "" + +#: engine/core/docs/drf/viewsets.py:167 engine/core/docs/drf/viewsets.py:168 +msgid "rewrite an existing category saving non-editables" +msgstr "" + +#: engine/core/docs/drf/viewsets.py:172 engine/core/docs/drf/viewsets.py:173 +msgid "rewrite some fields of an existing category saving non-editables" +msgstr "" + +#: engine/core/docs/drf/viewsets.py:177 engine/core/docs/drf/viewsets.py:517 +#: engine/core/graphene/object_types.py:117 +#: engine/core/graphene/object_types.py:207 +#: engine/core/graphene/object_types.py:482 +msgid "SEO Meta snapshot" +msgstr "" + +#: engine/core/docs/drf/viewsets.py:178 +msgid "returns a snapshot of the category's SEO meta data" +msgstr "" + +#: engine/core/docs/drf/viewsets.py:196 msgid "list all orders (simple view)" msgstr "" -#: core/docs/drf/viewsets.py:189 +#: engine/core/docs/drf/viewsets.py:197 msgid "for non-staff users, only their own orders are returned." msgstr "" -#: core/docs/drf/viewsets.py:195 +#: engine/core/docs/drf/viewsets.py:203 msgid "" "Case-insensitive substring search across human_readable_id, order_products." "product.name, and order_products.product.partnumber" msgstr "" -#: core/docs/drf/viewsets.py:202 +#: engine/core/docs/drf/viewsets.py:210 msgid "Filter orders with buy_time >= this ISO 8601 datetime" msgstr "" -#: core/docs/drf/viewsets.py:207 +#: engine/core/docs/drf/viewsets.py:215 msgid "Filter orders with buy_time <= this ISO 8601 datetime" msgstr "" -#: core/docs/drf/viewsets.py:212 +#: engine/core/docs/drf/viewsets.py:220 msgid "Filter by exact order UUID" msgstr "" -#: core/docs/drf/viewsets.py:217 +#: engine/core/docs/drf/viewsets.py:225 msgid "Filter by exact human-readable order ID" msgstr "" -#: core/docs/drf/viewsets.py:222 +#: engine/core/docs/drf/viewsets.py:230 msgid "Filter by user's email (case-insensitive exact match)" msgstr "" -#: core/docs/drf/viewsets.py:227 +#: engine/core/docs/drf/viewsets.py:235 msgid "Filter by user's UUID" msgstr "" -#: core/docs/drf/viewsets.py:232 +#: engine/core/docs/drf/viewsets.py:240 msgid "Filter by order status (case-insensitive substring match)" msgstr "" -#: core/docs/drf/viewsets.py:238 +#: engine/core/docs/drf/viewsets.py:246 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')." msgstr "" -#: core/docs/drf/viewsets.py:247 +#: engine/core/docs/drf/viewsets.py:255 msgid "retrieve a single order (detailed view)" msgstr "" -#: core/docs/drf/viewsets.py:251 +#: engine/core/docs/drf/viewsets.py:260 +msgid "Order UUID or human-readable id" +msgstr "" + +#: engine/core/docs/drf/viewsets.py:267 msgid "create an order" msgstr "" -#: core/docs/drf/viewsets.py:252 +#: engine/core/docs/drf/viewsets.py:268 msgid "doesn't work for non-staff users." msgstr "" -#: core/docs/drf/viewsets.py:256 +#: engine/core/docs/drf/viewsets.py:272 msgid "delete an order" msgstr "" -#: core/docs/drf/viewsets.py:260 +#: engine/core/docs/drf/viewsets.py:276 msgid "rewrite an existing order saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:264 +#: engine/core/docs/drf/viewsets.py:280 msgid "rewrite some fields of an existing order saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:268 +#: engine/core/docs/drf/viewsets.py:284 msgid "purchase an order" msgstr "" -#: core/docs/drf/viewsets.py:270 +#: engine/core/docs/drf/viewsets.py:286 msgid "" "finalizes the order purchase. if `force_balance` is used, the purchase is " "completed using the user's balance; if `force_payment` is used, a " "transaction is initiated." msgstr "" -#: core/docs/drf/viewsets.py:282 core/graphene/mutations.py:335 +#: engine/core/docs/drf/viewsets.py:298 engine/core/graphene/mutations.py:335 msgid "purchase an order without account creation" msgstr "" -#: core/docs/drf/viewsets.py:283 +#: engine/core/docs/drf/viewsets.py:299 msgid "finalizes the order purchase for a non-registered user." msgstr "" -#: core/docs/drf/viewsets.py:291 +#: engine/core/docs/drf/viewsets.py:307 msgid "add product to order" msgstr "" -#: core/docs/drf/viewsets.py:292 +#: engine/core/docs/drf/viewsets.py:308 msgid "" "adds a product to an order using the provided `product_uuid` and " "`attributes`." msgstr "" -#: core/docs/drf/viewsets.py:297 +#: engine/core/docs/drf/viewsets.py:313 msgid "add a list of products to order, quantities will not count" msgstr "" -#: core/docs/drf/viewsets.py:298 +#: engine/core/docs/drf/viewsets.py:314 msgid "" "adds a list of products to an order using the provided `product_uuid` and " "`attributes`." msgstr "" -#: core/docs/drf/viewsets.py:303 +#: engine/core/docs/drf/viewsets.py:319 msgid "remove product from order" msgstr "" -#: core/docs/drf/viewsets.py:304 +#: engine/core/docs/drf/viewsets.py:320 msgid "" "removes a product from an order using the provided `product_uuid` and " "`attributes`." msgstr "" -#: core/docs/drf/viewsets.py:309 +#: engine/core/docs/drf/viewsets.py:325 msgid "remove product from order, quantities will not count" msgstr "" -#: core/docs/drf/viewsets.py:310 +#: engine/core/docs/drf/viewsets.py:326 msgid "" "removes a list of products from an order using the provided `product_uuid` " "and `attributes`" msgstr "" -#: core/docs/drf/viewsets.py:318 +#: engine/core/docs/drf/viewsets.py:334 msgid "list all wishlists (simple view)" msgstr "" -#: core/docs/drf/viewsets.py:319 +#: engine/core/docs/drf/viewsets.py:335 msgid "for non-staff users, only their own wishlists are returned." msgstr "" -#: core/docs/drf/viewsets.py:323 +#: engine/core/docs/drf/viewsets.py:339 msgid "retrieve a single wishlist (detailed view)" msgstr "" -#: core/docs/drf/viewsets.py:327 +#: engine/core/docs/drf/viewsets.py:343 msgid "create an wishlist" msgstr "" -#: core/docs/drf/viewsets.py:328 +#: engine/core/docs/drf/viewsets.py:344 msgid "Doesn't work for non-staff users." msgstr "" -#: core/docs/drf/viewsets.py:332 +#: engine/core/docs/drf/viewsets.py:348 msgid "delete an wishlist" msgstr "" -#: core/docs/drf/viewsets.py:336 +#: engine/core/docs/drf/viewsets.py:352 msgid "rewrite an existing wishlist saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:340 +#: engine/core/docs/drf/viewsets.py:356 msgid "rewrite some fields of an existing wishlist saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:344 +#: engine/core/docs/drf/viewsets.py:360 msgid "add product to wishlist" msgstr "" -#: core/docs/drf/viewsets.py:345 +#: engine/core/docs/drf/viewsets.py:361 msgid "adds a product to an wishlist using the provided `product_uuid`" msgstr "" -#: core/docs/drf/viewsets.py:350 +#: engine/core/docs/drf/viewsets.py:366 msgid "remove product from wishlist" msgstr "" -#: core/docs/drf/viewsets.py:351 +#: engine/core/docs/drf/viewsets.py:367 msgid "removes a product from an wishlist using the provided `product_uuid`" msgstr "" -#: core/docs/drf/viewsets.py:356 +#: engine/core/docs/drf/viewsets.py:372 msgid "add many products to wishlist" msgstr "" -#: core/docs/drf/viewsets.py:357 +#: engine/core/docs/drf/viewsets.py:373 msgid "adds many products to an wishlist using the provided `product_uuids`" msgstr "" -#: core/docs/drf/viewsets.py:362 +#: engine/core/docs/drf/viewsets.py:378 msgid "remove many products from wishlist" msgstr "" -#: core/docs/drf/viewsets.py:363 +#: engine/core/docs/drf/viewsets.py:379 msgid "" "removes many products from an wishlist using the provided `product_uuids`" msgstr "" -#: core/docs/drf/viewsets.py:370 +#: engine/core/docs/drf/viewsets.py:386 msgid "" "Filter by one or more attribute name/value pairs. \n" "• **Syntax**: `attr_name=method-value[;attr2=method2-value2]…` \n" @@ -544,871 +552,893 @@ msgid "" "`b64-description=icontains-aGVhdC1jb2xk`" msgstr "" -#: core/docs/drf/viewsets.py:386 core/docs/drf/viewsets.py:387 +#: engine/core/docs/drf/viewsets.py:402 engine/core/docs/drf/viewsets.py:403 msgid "list all products (simple view)" msgstr "" -#: core/docs/drf/viewsets.py:392 +#: engine/core/docs/drf/viewsets.py:408 msgid "(exact) Product UUID" msgstr "" -#: core/docs/drf/viewsets.py:399 +#: engine/core/docs/drf/viewsets.py:415 msgid "" "Comma-separated list of fields to sort by. Prefix with `-` for " "descending. \n" "**Allowed:** uuid, rating, name, slug, created, modified, price, random" msgstr "" -#: core/docs/drf/viewsets.py:413 core/docs/drf/viewsets.py:414 +#: engine/core/docs/drf/viewsets.py:429 engine/core/docs/drf/viewsets.py:430 msgid "retrieve a single product (detailed view)" msgstr "" -#: core/docs/drf/viewsets.py:419 core/docs/drf/viewsets.py:443 -#: core/docs/drf/viewsets.py:459 core/docs/drf/viewsets.py:475 -#: core/docs/drf/viewsets.py:491 core/docs/drf/viewsets.py:507 +#: engine/core/docs/drf/viewsets.py:435 engine/core/docs/drf/viewsets.py:459 +#: engine/core/docs/drf/viewsets.py:475 engine/core/docs/drf/viewsets.py:491 +#: engine/core/docs/drf/viewsets.py:507 engine/core/docs/drf/viewsets.py:523 msgid "Product UUID or slug" msgstr "" -#: core/docs/drf/viewsets.py:429 core/docs/drf/viewsets.py:430 +#: engine/core/docs/drf/viewsets.py:445 engine/core/docs/drf/viewsets.py:446 msgid "create a product" msgstr "" -#: core/docs/drf/viewsets.py:437 core/docs/drf/viewsets.py:438 +#: engine/core/docs/drf/viewsets.py:453 engine/core/docs/drf/viewsets.py:454 msgid "rewrite an existing product, preserving non-editable fields" msgstr "" -#: core/docs/drf/viewsets.py:453 core/docs/drf/viewsets.py:454 +#: engine/core/docs/drf/viewsets.py:469 engine/core/docs/drf/viewsets.py:470 msgid "" "update some fields of an existing product, preserving non-editable fields" msgstr "" -#: core/docs/drf/viewsets.py:469 core/docs/drf/viewsets.py:470 +#: engine/core/docs/drf/viewsets.py:485 engine/core/docs/drf/viewsets.py:486 msgid "delete a product" msgstr "" -#: core/docs/drf/viewsets.py:485 core/docs/drf/viewsets.py:486 +#: engine/core/docs/drf/viewsets.py:501 engine/core/docs/drf/viewsets.py:502 msgid "lists all permitted feedbacks for a product" msgstr "" -#: core/docs/drf/viewsets.py:502 +#: engine/core/docs/drf/viewsets.py:518 msgid "returns a snapshot of the product's SEO meta data" msgstr "" -#: core/docs/drf/viewsets.py:520 +#: engine/core/docs/drf/viewsets.py:536 msgid "list all addresses" msgstr "" -#: core/docs/drf/viewsets.py:527 +#: engine/core/docs/drf/viewsets.py:543 msgid "retrieve a single address" msgstr "" -#: core/docs/drf/viewsets.py:534 +#: engine/core/docs/drf/viewsets.py:550 msgid "create a new address" msgstr "" -#: core/docs/drf/viewsets.py:542 +#: engine/core/docs/drf/viewsets.py:558 msgid "delete an address" msgstr "" -#: core/docs/drf/viewsets.py:549 +#: engine/core/docs/drf/viewsets.py:565 msgid "update an entire address" msgstr "" -#: core/docs/drf/viewsets.py:557 +#: engine/core/docs/drf/viewsets.py:573 msgid "partially update an address" msgstr "" -#: core/docs/drf/viewsets.py:565 +#: engine/core/docs/drf/viewsets.py:581 msgid "autocomplete address suggestions" msgstr "" -#: core/docs/drf/viewsets.py:570 +#: engine/core/docs/drf/viewsets.py:586 msgid "raw data query string, please append with data from geo-IP endpoint" msgstr "" -#: core/docs/drf/viewsets.py:576 +#: engine/core/docs/drf/viewsets.py:592 msgid "limit the results amount, 1 < limit < 10, default: 5" msgstr "" -#: core/docs/drf/viewsets.py:589 +#: engine/core/docs/drf/viewsets.py:605 msgid "list all feedbacks (simple view)" msgstr "" -#: core/docs/drf/viewsets.py:593 +#: engine/core/docs/drf/viewsets.py:609 msgid "retrieve a single feedback (detailed view)" msgstr "" -#: core/docs/drf/viewsets.py:597 +#: engine/core/docs/drf/viewsets.py:613 msgid "create a feedback" msgstr "" -#: core/docs/drf/viewsets.py:601 +#: engine/core/docs/drf/viewsets.py:617 msgid "delete a feedback" msgstr "" -#: core/docs/drf/viewsets.py:605 +#: engine/core/docs/drf/viewsets.py:621 msgid "rewrite an existing feedback saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:609 +#: engine/core/docs/drf/viewsets.py:625 msgid "rewrite some fields of an existing feedback saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:616 +#: engine/core/docs/drf/viewsets.py:632 msgid "list all order–product relations (simple view)" msgstr "" -#: core/docs/drf/viewsets.py:623 +#: engine/core/docs/drf/viewsets.py:639 msgid "retrieve a single order–product relation (detailed view)" msgstr "" -#: core/docs/drf/viewsets.py:630 +#: engine/core/docs/drf/viewsets.py:646 msgid "create a new order–product relation" msgstr "" -#: core/docs/drf/viewsets.py:637 +#: engine/core/docs/drf/viewsets.py:653 msgid "replace an existing order–product relation" msgstr "" -#: core/docs/drf/viewsets.py:644 +#: engine/core/docs/drf/viewsets.py:660 msgid "partially update an existing order–product relation" msgstr "" -#: core/docs/drf/viewsets.py:651 +#: engine/core/docs/drf/viewsets.py:667 msgid "delete an order–product relation" msgstr "" -#: core/docs/drf/viewsets.py:658 +#: engine/core/docs/drf/viewsets.py:674 msgid "add or remove feedback on an order–product relation" msgstr "" -#: core/docs/drf/viewsets.py:672 +#: engine/core/docs/drf/viewsets.py:688 msgid "list all brands (simple view)" msgstr "" -#: core/docs/drf/viewsets.py:676 +#: engine/core/docs/drf/viewsets.py:692 msgid "retrieve a single brand (detailed view)" msgstr "" -#: core/docs/drf/viewsets.py:680 +#: engine/core/docs/drf/viewsets.py:697 engine/core/docs/drf/viewsets.py:725 +msgid "Brand UUID or slug" +msgstr "" + +#: engine/core/docs/drf/viewsets.py:704 msgid "create a brand" msgstr "" -#: core/docs/drf/viewsets.py:684 +#: engine/core/docs/drf/viewsets.py:708 msgid "delete a brand" msgstr "" -#: core/docs/drf/viewsets.py:688 +#: engine/core/docs/drf/viewsets.py:712 msgid "rewrite an existing brand saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:692 +#: engine/core/docs/drf/viewsets.py:716 msgid "rewrite some fields of an existing brand saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:696 +#: engine/core/docs/drf/viewsets.py:720 msgid "SEO Meta snapshot for brand" msgstr "" -#: core/docs/drf/viewsets.py:703 +#: engine/core/docs/drf/viewsets.py:735 msgid "list all vendors (simple view)" msgstr "" -#: core/docs/drf/viewsets.py:707 +#: engine/core/docs/drf/viewsets.py:739 msgid "retrieve a single vendor (detailed view)" msgstr "" -#: core/docs/drf/viewsets.py:711 +#: engine/core/docs/drf/viewsets.py:743 msgid "create a vendor" msgstr "" -#: core/docs/drf/viewsets.py:715 +#: engine/core/docs/drf/viewsets.py:747 msgid "delete a vendor" msgstr "" -#: core/docs/drf/viewsets.py:719 +#: engine/core/docs/drf/viewsets.py:751 msgid "rewrite an existing vendor saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:723 +#: engine/core/docs/drf/viewsets.py:755 msgid "rewrite some fields of an existing vendor saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:730 +#: engine/core/docs/drf/viewsets.py:762 msgid "list all product images (simple view)" msgstr "" -#: core/docs/drf/viewsets.py:734 +#: engine/core/docs/drf/viewsets.py:766 msgid "retrieve a single product image (detailed view)" msgstr "" -#: core/docs/drf/viewsets.py:738 +#: engine/core/docs/drf/viewsets.py:770 msgid "create a product image" msgstr "" -#: core/docs/drf/viewsets.py:742 +#: engine/core/docs/drf/viewsets.py:774 msgid "delete a product image" msgstr "" -#: core/docs/drf/viewsets.py:746 +#: engine/core/docs/drf/viewsets.py:778 msgid "rewrite an existing product image saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:750 +#: engine/core/docs/drf/viewsets.py:782 msgid "rewrite some fields of an existing product image saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:757 +#: engine/core/docs/drf/viewsets.py:789 msgid "list all promo codes (simple view)" msgstr "" -#: core/docs/drf/viewsets.py:761 +#: engine/core/docs/drf/viewsets.py:793 msgid "retrieve a single promo code (detailed view)" msgstr "" -#: core/docs/drf/viewsets.py:765 +#: engine/core/docs/drf/viewsets.py:797 msgid "create a promo code" msgstr "" -#: core/docs/drf/viewsets.py:769 +#: engine/core/docs/drf/viewsets.py:801 msgid "delete a promo code" msgstr "" -#: core/docs/drf/viewsets.py:773 +#: engine/core/docs/drf/viewsets.py:805 msgid "rewrite an existing promo code saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:777 +#: engine/core/docs/drf/viewsets.py:809 msgid "rewrite some fields of an existing promo code saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:784 +#: engine/core/docs/drf/viewsets.py:816 msgid "list all promotions (simple view)" msgstr "" -#: core/docs/drf/viewsets.py:788 +#: engine/core/docs/drf/viewsets.py:820 msgid "retrieve a single promotion (detailed view)" msgstr "" -#: core/docs/drf/viewsets.py:792 +#: engine/core/docs/drf/viewsets.py:824 msgid "create a promotion" msgstr "" -#: core/docs/drf/viewsets.py:796 +#: engine/core/docs/drf/viewsets.py:828 msgid "delete a promotion" msgstr "" -#: core/docs/drf/viewsets.py:800 +#: engine/core/docs/drf/viewsets.py:832 msgid "rewrite an existing promotion saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:804 +#: engine/core/docs/drf/viewsets.py:836 msgid "rewrite some fields of an existing promotion saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:811 +#: engine/core/docs/drf/viewsets.py:843 msgid "list all stocks (simple view)" msgstr "" -#: core/docs/drf/viewsets.py:815 +#: engine/core/docs/drf/viewsets.py:847 msgid "retrieve a single stock (detailed view)" msgstr "" -#: core/docs/drf/viewsets.py:819 +#: engine/core/docs/drf/viewsets.py:851 msgid "create a stock record" msgstr "" -#: core/docs/drf/viewsets.py:823 +#: engine/core/docs/drf/viewsets.py:855 msgid "delete a stock record" msgstr "" -#: core/docs/drf/viewsets.py:827 +#: engine/core/docs/drf/viewsets.py:859 msgid "rewrite an existing stock record saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:831 +#: engine/core/docs/drf/viewsets.py:863 msgid "rewrite some fields of an existing stock record saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:838 +#: engine/core/docs/drf/viewsets.py:870 msgid "list all product tags (simple view)" msgstr "" -#: core/docs/drf/viewsets.py:842 +#: engine/core/docs/drf/viewsets.py:874 msgid "retrieve a single product tag (detailed view)" msgstr "" -#: core/docs/drf/viewsets.py:846 +#: engine/core/docs/drf/viewsets.py:878 msgid "create a product tag" msgstr "" -#: core/docs/drf/viewsets.py:850 +#: engine/core/docs/drf/viewsets.py:882 msgid "delete a product tag" msgstr "" -#: core/docs/drf/viewsets.py:854 +#: engine/core/docs/drf/viewsets.py:886 msgid "rewrite an existing product tag saving non-editables" msgstr "" -#: core/docs/drf/viewsets.py:858 +#: engine/core/docs/drf/viewsets.py:890 msgid "rewrite some fields of an existing product tag saving non-editables" msgstr "" -#: core/elasticsearch/__init__.py:118 core/elasticsearch/__init__.py:550 +#: engine/core/elasticsearch/__init__.py:122 +#: engine/core/elasticsearch/__init__.py:570 msgid "no search term provided." msgstr "" -#: core/filters.py:69 core/filters.py:412 core/filters.py:539 +#: engine/core/filters.py:69 engine/core/filters.py:426 +#: engine/core/filters.py:553 msgid "Search" msgstr "" -#: core/filters.py:70 core/filters.py:569 core/filters.py:598 +#: engine/core/filters.py:70 engine/core/filters.py:583 +#: engine/core/filters.py:612 msgid "UUID" msgstr "" -#: core/filters.py:71 core/filters.py:414 core/filters.py:541 +#: engine/core/filters.py:71 engine/core/filters.py:428 +#: engine/core/filters.py:555 msgid "Name" msgstr "" -#: core/filters.py:72 core/filters.py:543 +#: engine/core/filters.py:72 engine/core/filters.py:557 msgid "Categories" msgstr "" -#: core/filters.py:74 +#: engine/core/filters.py:74 msgid "Categories Slugs" msgstr "" -#: core/filters.py:75 core/filters.py:422 +#: engine/core/filters.py:75 engine/core/filters.py:436 msgid "Tags" msgstr "" -#: core/filters.py:76 +#: engine/core/filters.py:76 msgid "Min Price" msgstr "" -#: core/filters.py:77 +#: engine/core/filters.py:77 msgid "Max Price" msgstr "" -#: core/filters.py:78 +#: engine/core/filters.py:78 msgid "Is Active" msgstr "" -#: core/filters.py:79 +#: engine/core/filters.py:79 msgid "Brand" msgstr "" -#: core/filters.py:80 +#: engine/core/filters.py:80 msgid "Attributes" msgstr "" -#: core/filters.py:81 +#: engine/core/filters.py:81 msgid "Quantity" msgstr "" -#: core/filters.py:82 core/filters.py:416 core/filters.py:542 -#: core/models.py:322 core/models.py:483 core/models.py:637 +#: engine/core/filters.py:82 engine/core/filters.py:430 +#: engine/core/filters.py:556 engine/core/models.py:321 +#: engine/core/models.py:482 engine/core/models.py:637 msgid "Slug" msgstr "" -#: core/filters.py:83 +#: engine/core/filters.py:83 msgid "Is Digital" msgstr "" -#: core/filters.py:84 +#: engine/core/filters.py:84 msgid "Include sub-categories" msgstr "" -#: core/filters.py:87 +#: engine/core/filters.py:87 msgid "Include personal ordered" msgstr "" -#: core/filters.py:89 core/models.py:641 +#: engine/core/filters.py:89 engine/core/models.py:641 msgid "SKU" msgstr "" -#: core/filters.py:173 +#: engine/core/filters.py:184 msgid "there must be a category_uuid to use include_subcategories flag" msgstr "" -#: core/filters.py:339 +#: engine/core/filters.py:353 msgid "Search (ID, product name or part number)" msgstr "" -#: core/filters.py:342 +#: engine/core/filters.py:356 msgid "Bought after (inclusive)" msgstr "" -#: core/filters.py:343 +#: engine/core/filters.py:357 msgid "Bought before (inclusive)" msgstr "" -#: core/filters.py:346 core/filters.py:393 core/filters.py:600 +#: engine/core/filters.py:360 engine/core/filters.py:407 +#: engine/core/filters.py:614 msgid "User email" msgstr "" -#: core/filters.py:347 core/filters.py:394 core/filters.py:578 -#: core/filters.py:599 +#: engine/core/filters.py:361 engine/core/filters.py:408 +#: engine/core/filters.py:592 engine/core/filters.py:613 msgid "User UUID" msgstr "" -#: core/filters.py:348 +#: engine/core/filters.py:362 msgid "Status" msgstr "" -#: core/filters.py:352 +#: engine/core/filters.py:366 msgid "Human Readable ID" msgstr "" -#: core/filters.py:415 +#: engine/core/filters.py:429 msgid "Parent" msgstr "" -#: core/filters.py:419 +#: engine/core/filters.py:433 msgid "Whole category(has at least 1 product or not)" msgstr "" -#: core/filters.py:423 +#: engine/core/filters.py:437 msgid "Level" msgstr "" -#: core/filters.py:573 +#: engine/core/filters.py:587 msgid "Product UUID" msgstr "" -#: core/graphene/mutations.py:41 +#: engine/core/graphene/mutations.py:41 msgid "key to look for in or set into the cache" msgstr "" -#: core/graphene/mutations.py:42 +#: engine/core/graphene/mutations.py:42 msgid "data to store in cache" msgstr "" -#: core/graphene/mutations.py:45 +#: engine/core/graphene/mutations.py:45 msgid "timeout in seconds to set the data for into the cache" msgstr "" -#: core/graphene/mutations.py:48 +#: engine/core/graphene/mutations.py:48 msgid "cached data" msgstr "" -#: core/graphene/mutations.py:63 +#: engine/core/graphene/mutations.py:63 msgid "camelized JSON data from the requested URL" msgstr "" -#: core/graphene/mutations.py:68 core/views.py:232 +#: engine/core/graphene/mutations.py:68 engine/core/views.py:231 msgid "only URLs starting with http(s):// are allowed" msgstr "" -#: core/graphene/mutations.py:84 +#: engine/core/graphene/mutations.py:84 msgid "add a product to the order" msgstr "" -#: core/graphene/mutations.py:105 core/graphene/mutations.py:132 -#: core/graphene/mutations.py:240 core/graphene/mutations.py:288 +#: engine/core/graphene/mutations.py:105 engine/core/graphene/mutations.py:132 +#: engine/core/graphene/mutations.py:240 engine/core/graphene/mutations.py:288 #, python-brace-format msgid "order {order_uuid} not found" msgstr "" -#: core/graphene/mutations.py:111 core/graphene/mutations.py:160 +#: engine/core/graphene/mutations.py:111 engine/core/graphene/mutations.py:160 msgid "remove a product from the order" msgstr "" -#: core/graphene/mutations.py:138 +#: engine/core/graphene/mutations.py:138 msgid "remove all products from the order" msgstr "" -#: core/graphene/mutations.py:183 +#: engine/core/graphene/mutations.py:183 msgid "buy an order" msgstr "" -#: core/graphene/mutations.py:212 core/graphene/mutations.py:266 +#: engine/core/graphene/mutations.py:212 engine/core/graphene/mutations.py:266 msgid "please provide either order_uuid or order_hr_id - mutually exclusive" msgstr "" -#: core/graphene/mutations.py:237 core/graphene/mutations.py:502 -#: core/graphene/mutations.py:544 core/viewsets.py:704 +#: engine/core/graphene/mutations.py:237 engine/core/graphene/mutations.py:502 +#: engine/core/graphene/mutations.py:544 engine/core/viewsets.py:704 msgid "wrong type came from order.buy() method: {type(instance)!s}" msgstr "" -#: core/graphene/mutations.py:246 +#: engine/core/graphene/mutations.py:246 msgid "perform an action on a list of products in the order" msgstr "" -#: core/graphene/mutations.py:251 +#: engine/core/graphene/mutations.py:251 msgid "remove/add" msgstr "" -#: core/graphene/mutations.py:283 core/graphene/mutations.py:324 +#: engine/core/graphene/mutations.py:283 engine/core/graphene/mutations.py:324 msgid "action must be either add or remove" msgstr "" -#: core/graphene/mutations.py:294 +#: engine/core/graphene/mutations.py:294 msgid "perform an action on a list of products in the wishlist" msgstr "" -#: core/graphene/mutations.py:312 +#: engine/core/graphene/mutations.py:312 msgid "please provide wishlist_uuid value" msgstr "" -#: core/graphene/mutations.py:329 core/graphene/mutations.py:405 -#: core/graphene/mutations.py:433 core/graphene/mutations.py:461 -#: core/graphene/mutations.py:505 +#: engine/core/graphene/mutations.py:329 engine/core/graphene/mutations.py:405 +#: engine/core/graphene/mutations.py:433 engine/core/graphene/mutations.py:461 +#: engine/core/graphene/mutations.py:505 #, python-brace-format msgid "wishlist {wishlist_uuid} not found" msgstr "" -#: core/graphene/mutations.py:383 +#: engine/core/graphene/mutations.py:383 msgid "add a product to the wishlist" msgstr "" -#: core/graphene/mutations.py:411 +#: engine/core/graphene/mutations.py:411 msgid "remove a product from the wishlist" msgstr "" -#: core/graphene/mutations.py:439 +#: engine/core/graphene/mutations.py:439 msgid "remove all products from the wishlist" msgstr "" -#: core/graphene/mutations.py:467 +#: engine/core/graphene/mutations.py:467 msgid "buy all products from the wishlist" msgstr "" -#: core/graphene/mutations.py:511 +#: engine/core/graphene/mutations.py:511 msgid "buy a product" msgstr "" -#: core/graphene/mutations.py:517 +#: engine/core/graphene/mutations.py:517 msgid "" "please send the attributes as the string formatted like attr1=value1," "attr2=value2" msgstr "" -#: core/graphene/mutations.py:550 +#: engine/core/graphene/mutations.py:550 msgid "add or delete a feedback for orderproduct" msgstr "" -#: core/graphene/mutations.py:574 +#: engine/core/graphene/mutations.py:574 msgid "action must be either `add` or `remove`" msgstr "" -#: core/graphene/mutations.py:577 +#: engine/core/graphene/mutations.py:577 #, python-brace-format msgid "order product {order_product_uuid} not found" msgstr "" -#: core/graphene/mutations.py:644 +#: engine/core/graphene/mutations.py:644 msgid "original address string provided by the user" msgstr "" -#: core/graphene/mutations.py:680 core/models.py:930 core/models.py:943 -#: core/models.py:1358 core/models.py:1387 core/models.py:1412 -#: core/viewsets.py:707 +#: engine/core/graphene/mutations.py:680 engine/core/models.py:941 +#: engine/core/models.py:954 engine/core/models.py:1369 +#: engine/core/models.py:1398 engine/core/models.py:1423 +#: engine/core/viewsets.py:707 #, python-brace-format msgid "{name} does not exist: {uuid}" msgstr "" -#: core/graphene/mutations.py:694 +#: engine/core/graphene/mutations.py:694 msgid "limit must be between 1 and 10" msgstr "" -#: core/graphene/mutations.py:743 +#: engine/core/graphene/mutations.py:743 msgid "elasticsearch - works like a charm" msgstr "" -#: core/graphene/object_types.py:82 core/graphene/object_types.py:370 -#: core/graphene/object_types.py:417 core/models.py:754 core/models.py:1225 -#: core/models.py:1823 +#: engine/core/graphene/object_types.py:82 +#: engine/core/graphene/object_types.py:370 +#: engine/core/graphene/object_types.py:417 engine/core/models.py:765 +#: engine/core/models.py:1236 engine/core/models.py:1883 msgid "attributes" msgstr "" -#: core/graphene/object_types.py:95 +#: engine/core/graphene/object_types.py:95 msgid "grouped attributes" msgstr "" -#: core/graphene/object_types.py:102 +#: engine/core/graphene/object_types.py:102 msgid "groups of attributes" msgstr "" -#: core/graphene/object_types.py:116 core/graphene/object_types.py:193 -#: core/graphene/object_types.py:223 core/models.py:426 +#: engine/core/graphene/object_types.py:116 +#: engine/core/graphene/object_types.py:193 +#: engine/core/graphene/object_types.py:223 engine/core/models.py:425 msgid "categories" msgstr "" -#: core/graphene/object_types.py:124 core/models.py:497 +#: engine/core/graphene/object_types.py:124 engine/core/models.py:496 msgid "brands" msgstr "" -#: core/graphene/object_types.py:195 +#: engine/core/graphene/object_types.py:195 msgid "category image url" msgstr "" -#: core/graphene/object_types.py:196 core/graphene/object_types.py:317 -#: core/models.py:284 +#: engine/core/graphene/object_types.py:196 +#: engine/core/graphene/object_types.py:317 engine/core/models.py:283 msgid "markup percentage" msgstr "" -#: core/graphene/object_types.py:199 +#: engine/core/graphene/object_types.py:199 msgid "which attributes and values can be used for filtering this category." msgstr "" -#: core/graphene/object_types.py:203 +#: engine/core/graphene/object_types.py:203 msgid "minimum and maximum prices for products in this category, if available." msgstr "" -#: core/graphene/object_types.py:205 +#: engine/core/graphene/object_types.py:205 msgid "tags for this category" msgstr "" -#: core/graphene/object_types.py:206 +#: engine/core/graphene/object_types.py:206 msgid "products in this category" msgstr "" -#: core/graphene/object_types.py:324 core/models.py:189 +#: engine/core/graphene/object_types.py:324 engine/core/models.py:188 msgid "vendors" msgstr "" -#: core/graphene/object_types.py:328 +#: engine/core/graphene/object_types.py:328 msgid "Latitude (Y coordinate)" msgstr "" -#: core/graphene/object_types.py:329 +#: engine/core/graphene/object_types.py:329 msgid "Longitude (X coordinate)" msgstr "" -#: core/graphene/object_types.py:358 +#: engine/core/graphene/object_types.py:358 msgid "comment" msgstr "" -#: core/graphene/object_types.py:359 core/graphene/object_types.py:483 +#: engine/core/graphene/object_types.py:359 +#: engine/core/graphene/object_types.py:483 msgid "rating value from 1 to 10, inclusive, or 0 if not set." msgstr "" -#: core/graphene/object_types.py:366 +#: engine/core/graphene/object_types.py:366 msgid "represents feedback from a user." msgstr "" -#: core/graphene/object_types.py:371 core/graphene/object_types.py:418 -#: core/models.py:1219 +#: engine/core/graphene/object_types.py:371 +#: engine/core/graphene/object_types.py:418 engine/core/models.py:1230 msgid "notifications" msgstr "" -#: core/graphene/object_types.py:372 +#: engine/core/graphene/object_types.py:372 msgid "download url for this order product if applicable" msgstr "" -#: core/graphene/object_types.py:373 core/models.py:1939 +#: engine/core/graphene/object_types.py:373 engine/core/models.py:1722 msgid "feedback" msgstr "" -#: core/graphene/object_types.py:407 +#: engine/core/graphene/object_types.py:407 msgid "a list of order products in this order" msgstr "" -#: core/graphene/object_types.py:409 core/models.py:1189 +#: engine/core/graphene/object_types.py:409 engine/core/models.py:1200 msgid "billing address" msgstr "" -#: core/graphene/object_types.py:412 +#: engine/core/graphene/object_types.py:412 msgid "" "shipping address for this order, leave blank if same as billing address or " "if not applicable" msgstr "" -#: core/graphene/object_types.py:414 +#: engine/core/graphene/object_types.py:414 msgid "total price of this order" msgstr "" -#: core/graphene/object_types.py:415 +#: engine/core/graphene/object_types.py:415 msgid "total quantity of products in order" msgstr "" -#: core/graphene/object_types.py:416 +#: engine/core/graphene/object_types.py:416 msgid "are all products in the order digital" msgstr "" -#: core/graphene/object_types.py:419 +#: engine/core/graphene/object_types.py:419 msgid "transactions for this order" msgstr "" -#: core/graphene/object_types.py:438 core/models.py:1253 +#: engine/core/graphene/object_types.py:438 engine/core/models.py:1264 msgid "orders" msgstr "" -#: core/graphene/object_types.py:459 +#: engine/core/graphene/object_types.py:459 msgid "image url" msgstr "" -#: core/graphene/object_types.py:466 +#: engine/core/graphene/object_types.py:466 msgid "product's images" msgstr "" -#: core/graphene/object_types.py:473 core/models.py:425 core/models.py:579 +#: engine/core/graphene/object_types.py:473 engine/core/models.py:424 +#: engine/core/models.py:579 msgid "category" msgstr "" -#: core/graphene/object_types.py:475 core/models.py:1940 +#: engine/core/graphene/object_types.py:475 engine/core/models.py:1723 msgid "feedbacks" msgstr "" -#: core/graphene/object_types.py:476 core/models.py:496 core/models.py:588 +#: engine/core/graphene/object_types.py:476 engine/core/models.py:495 +#: engine/core/models.py:588 msgid "brand" msgstr "" -#: core/graphene/object_types.py:477 core/models.py:107 +#: engine/core/graphene/object_types.py:477 engine/core/models.py:106 msgid "attribute groups" msgstr "" -#: core/graphene/object_types.py:478 -#: core/templates/digital_order_created_email.html:111 -#: core/templates/digital_order_delivered_email.html:109 -#: core/templates/shipped_order_created_email.html:109 -#: core/templates/shipped_order_delivered_email.html:109 +#: engine/core/graphene/object_types.py:478 +#: engine/core/templates/digital_order_created_email.html:111 +#: engine/core/templates/digital_order_delivered_email.html:109 +#: engine/core/templates/shipped_order_created_email.html:109 +#: engine/core/templates/shipped_order_delivered_email.html:109 msgid "price" msgstr "" -#: core/graphene/object_types.py:479 -#: core/templates/digital_order_created_email.html:110 -#: core/templates/digital_order_delivered_email.html:108 -#: core/templates/shipped_order_created_email.html:108 -#: core/templates/shipped_order_delivered_email.html:108 +#: engine/core/graphene/object_types.py:479 +#: engine/core/templates/digital_order_created_email.html:110 +#: engine/core/templates/digital_order_delivered_email.html:108 +#: engine/core/templates/shipped_order_created_email.html:108 +#: engine/core/templates/shipped_order_delivered_email.html:108 msgid "quantity" msgstr "" -#: core/graphene/object_types.py:480 +#: engine/core/graphene/object_types.py:480 msgid "number of feedbacks" msgstr "" -#: core/graphene/object_types.py:481 +#: engine/core/graphene/object_types.py:481 msgid "only available for personal orders" msgstr "" -#: core/graphene/object_types.py:507 core/models.py:651 +#: engine/core/graphene/object_types.py:484 +msgid "discount price" +msgstr "" + +#: engine/core/graphene/object_types.py:508 engine/core/models.py:651 msgid "products" msgstr "" -#: core/graphene/object_types.py:607 +#: engine/core/graphene/object_types.py:611 msgid "promocodes" msgstr "" -#: core/graphene/object_types.py:617 +#: engine/core/graphene/object_types.py:621 msgid "products on sale" msgstr "" -#: core/graphene/object_types.py:624 core/models.py:879 +#: engine/core/graphene/object_types.py:628 engine/core/models.py:890 msgid "promotions" msgstr "" -#: core/graphene/object_types.py:628 core/models.py:188 +#: engine/core/graphene/object_types.py:632 engine/core/models.py:187 msgid "vendor" msgstr "" -#: core/graphene/object_types.py:629 core/models.py:650 -#: core/templates/digital_order_created_email.html:109 -#: core/templates/digital_order_delivered_email.html:107 -#: core/templates/shipped_order_created_email.html:107 -#: core/templates/shipped_order_delivered_email.html:107 +#: engine/core/graphene/object_types.py:633 engine/core/models.py:650 +#: 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 +#: engine/core/templates/shipped_order_delivered_email.html:107 msgid "product" msgstr "" -#: core/graphene/object_types.py:640 core/models.py:902 +#: engine/core/graphene/object_types.py:644 engine/core/models.py:913 msgid "wishlisted products" msgstr "" -#: core/graphene/object_types.py:646 core/models.py:919 +#: engine/core/graphene/object_types.py:650 engine/core/models.py:930 msgid "wishlists" msgstr "" -#: core/graphene/object_types.py:650 +#: engine/core/graphene/object_types.py:654 msgid "tagged products" msgstr "" -#: core/graphene/object_types.py:657 core/models.py:225 core/models.py:594 +#: engine/core/graphene/object_types.py:661 engine/core/models.py:224 +#: engine/core/models.py:594 msgid "product tags" msgstr "" -#: core/graphene/object_types.py:661 +#: engine/core/graphene/object_types.py:665 msgid "tagged categories" msgstr "" -#: core/graphene/object_types.py:668 +#: engine/core/graphene/object_types.py:672 msgid "categories tags" msgstr "" -#: core/graphene/object_types.py:672 +#: engine/core/graphene/object_types.py:676 msgid "project name" msgstr "" -#: core/graphene/object_types.py:673 +#: engine/core/graphene/object_types.py:677 msgid "company email" msgstr "" -#: core/graphene/object_types.py:674 +#: engine/core/graphene/object_types.py:678 msgid "company name" msgstr "" -#: core/graphene/object_types.py:675 +#: engine/core/graphene/object_types.py:679 msgid "company address" msgstr "" -#: core/graphene/object_types.py:676 +#: engine/core/graphene/object_types.py:680 msgid "company phone number" msgstr "" -#: core/graphene/object_types.py:677 +#: engine/core/graphene/object_types.py:681 msgid "email from, sometimes it must be used instead of host user value" msgstr "" -#: core/graphene/object_types.py:678 +#: engine/core/graphene/object_types.py:682 msgid "email host user" msgstr "" -#: core/graphene/object_types.py:679 +#: engine/core/graphene/object_types.py:683 msgid "maximum amount for payment" msgstr "" -#: core/graphene/object_types.py:680 +#: engine/core/graphene/object_types.py:684 msgid "minimum amount for payment" msgstr "" -#: core/graphene/object_types.py:681 +#: engine/core/graphene/object_types.py:685 msgid "analytics data" msgstr "" -#: core/graphene/object_types.py:682 +#: engine/core/graphene/object_types.py:686 msgid "advertisement data" msgstr "" -#: core/graphene/object_types.py:685 +#: engine/core/graphene/object_types.py:689 msgid "company configuration" msgstr "" -#: core/graphene/object_types.py:689 +#: engine/core/graphene/object_types.py:693 msgid "language code" msgstr "" -#: core/graphene/object_types.py:690 +#: engine/core/graphene/object_types.py:694 msgid "language name" msgstr "" -#: core/graphene/object_types.py:691 +#: engine/core/graphene/object_types.py:695 msgid "language flag, if exists :)" msgstr "" -#: core/graphene/object_types.py:694 +#: engine/core/graphene/object_types.py:698 msgid "supported languages" msgstr "" -#: core/graphene/object_types.py:725 core/graphene/object_types.py:726 -#: core/graphene/object_types.py:727 +#: engine/core/graphene/object_types.py:729 +#: engine/core/graphene/object_types.py:730 +#: engine/core/graphene/object_types.py:731 msgid "products search results" msgstr "" -#: core/graphene/object_types.py:728 +#: engine/core/graphene/object_types.py:732 msgid "posts search results" msgstr "" -#: core/models.py:76 +#: engine/core/models.py:75 msgid "" "Represents a group of attributes, which can be hierarchical. This class is " "used to manage and organize attribute groups. An attribute group can have a " @@ -1416,23 +1446,23 @@ msgid "" "categorizing and managing attributes more effectively in acomplex system." msgstr "" -#: core/models.py:92 +#: engine/core/models.py:91 msgid "parent of this group" msgstr "" -#: core/models.py:93 +#: engine/core/models.py:92 msgid "parent attribute group" msgstr "" -#: core/models.py:97 core/models.py:98 +#: engine/core/models.py:96 engine/core/models.py:97 msgid "attribute group's name" msgstr "" -#: core/models.py:106 core/models.py:716 +#: engine/core/models.py:105 engine/core/models.py:727 msgid "attribute group" msgstr "" -#: core/models.py:112 +#: engine/core/models.py:111 msgid "" "Represents a vendor entity capable of storing information about external " "vendors and their interaction requirements. The Vendor class is used to " @@ -1443,47 +1473,47 @@ msgid "" "use in systems that interact with third-party vendors." msgstr "" -#: core/models.py:125 +#: engine/core/models.py:124 msgid "stores credentials and endpoints required for vendor communication" msgstr "" -#: core/models.py:126 +#: engine/core/models.py:125 msgid "authentication info" msgstr "" -#: core/models.py:131 +#: engine/core/models.py:130 msgid "define the markup for products retrieved from this vendor" msgstr "" -#: core/models.py:132 +#: engine/core/models.py:131 msgid "vendor markup percentage" msgstr "" -#: core/models.py:136 +#: engine/core/models.py:135 msgid "name of this vendor" msgstr "" -#: core/models.py:137 +#: engine/core/models.py:136 msgid "vendor name" msgstr "" -#: core/models.py:148 +#: engine/core/models.py:147 msgid "response file" msgstr "" -#: core/models.py:149 +#: engine/core/models.py:148 msgid "vendor's last processing response" msgstr "" -#: core/models.py:155 +#: engine/core/models.py:154 msgid "vendor's integration file path" msgstr "" -#: core/models.py:156 +#: engine/core/models.py:155 msgid "integration path" msgstr "" -#: core/models.py:198 +#: engine/core/models.py:197 msgid "" "Represents a product tag used for classifying or identifying products. The " "ProductTag class is designed to uniquely identify and classify products " @@ -1492,42 +1522,42 @@ msgid "" "metadata customization for administrative purposes." msgstr "" -#: core/models.py:210 core/models.py:241 +#: engine/core/models.py:209 engine/core/models.py:240 msgid "internal tag identifier for the product tag" msgstr "" -#: core/models.py:211 core/models.py:242 +#: engine/core/models.py:210 engine/core/models.py:241 msgid "tag name" msgstr "" -#: core/models.py:215 core/models.py:246 +#: engine/core/models.py:214 engine/core/models.py:245 msgid "user-friendly name for the product tag" msgstr "" -#: core/models.py:216 core/models.py:247 +#: engine/core/models.py:215 engine/core/models.py:246 msgid "tag display name" msgstr "" -#: core/models.py:224 +#: engine/core/models.py:223 msgid "product tag" msgstr "" -#: core/models.py:230 +#: engine/core/models.py:229 msgid "" "Represents a category tag used for products. This class models a category " "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 "" -#: core/models.py:255 +#: engine/core/models.py:254 msgid "category tag" msgstr "" -#: core/models.py:256 core/models.py:328 +#: engine/core/models.py:255 engine/core/models.py:327 msgid "category tags" msgstr "" -#: core/models.py:261 +#: engine/core/models.py:260 msgid "" "Represents a category entity to organize and group related items in a " "hierarchical structure. Categories may have hierarchical relationships with " @@ -1540,51 +1570,51 @@ msgid "" "priority." msgstr "" -#: core/models.py:275 +#: engine/core/models.py:274 msgid "upload an image representing this category" msgstr "" -#: core/models.py:278 +#: engine/core/models.py:277 msgid "category image" msgstr "" -#: core/models.py:283 +#: engine/core/models.py:282 msgid "define a markup percentage for products in this category" msgstr "" -#: core/models.py:292 +#: engine/core/models.py:291 msgid "parent of this category to form a hierarchical structure" msgstr "" -#: core/models.py:293 +#: engine/core/models.py:292 msgid "parent category" msgstr "" -#: core/models.py:298 +#: engine/core/models.py:297 msgid "category name" msgstr "" -#: core/models.py:299 +#: engine/core/models.py:298 msgid "provide a name for this category" msgstr "" -#: core/models.py:306 +#: engine/core/models.py:305 msgid "add a detailed description for this category" msgstr "" -#: core/models.py:307 +#: engine/core/models.py:306 msgid "category description" msgstr "" -#: core/models.py:327 +#: engine/core/models.py:326 msgid "tags that help describe or group this category" msgstr "" -#: core/models.py:334 core/models.py:489 +#: engine/core/models.py:333 engine/core/models.py:488 msgid "priority" msgstr "" -#: core/models.py:432 +#: engine/core/models.py:431 msgid "" "Represents a Brand object in the system. This class handles information and " "attributes related to a brand, including its name, logos, description, " @@ -1592,47 +1622,47 @@ msgid "" "organization and representation of brand-related data within the application." msgstr "" -#: core/models.py:442 +#: engine/core/models.py:441 msgid "name of this brand" msgstr "" -#: core/models.py:443 +#: engine/core/models.py:442 msgid "brand name" msgstr "" -#: core/models.py:450 +#: engine/core/models.py:449 msgid "upload a logo representing this brand" msgstr "" -#: core/models.py:452 +#: engine/core/models.py:451 msgid "brand small image" msgstr "" -#: core/models.py:458 +#: engine/core/models.py:457 msgid "upload a big logo representing this brand" msgstr "" -#: core/models.py:460 +#: engine/core/models.py:459 msgid "brand big image" msgstr "" -#: core/models.py:465 +#: engine/core/models.py:464 msgid "add a detailed description of the brand" msgstr "" -#: core/models.py:466 +#: engine/core/models.py:465 msgid "brand description" msgstr "" -#: core/models.py:471 +#: engine/core/models.py:470 msgid "optional categories that this brand is associated with" msgstr "" -#: core/models.py:472 +#: engine/core/models.py:471 msgid "associated categories" msgstr "" -#: core/models.py:502 +#: engine/core/models.py:501 msgid "" "Represents the stock of a product managed in the system. This class provides " "details about the relationship between vendors, products, and their stock " @@ -1642,67 +1672,72 @@ msgid "" "from various vendors." msgstr "" -#: core/models.py:514 +#: engine/core/models.py:513 msgid "the vendor supplying this product stock" msgstr "" -#: core/models.py:515 +#: engine/core/models.py:514 msgid "associated vendor" msgstr "" -#: core/models.py:519 +#: engine/core/models.py:518 msgid "final price to the customer after markups" msgstr "" -#: core/models.py:520 +#: engine/core/models.py:519 msgid "selling price" msgstr "" -#: core/models.py:525 +#: engine/core/models.py:524 msgid "the product associated with this stock entry" msgstr "" -#: core/models.py:526 core/models.py:779 core/models.py:825 core/models.py:1718 +#: engine/core/models.py:525 engine/core/models.py:790 +#: engine/core/models.py:836 engine/core/models.py:1778 msgid "associated product" msgstr "" -#: core/models.py:533 +#: engine/core/models.py:532 msgid "the price paid to the vendor for this product" msgstr "" -#: core/models.py:534 +#: engine/core/models.py:533 msgid "vendor purchase price" msgstr "" -#: core/models.py:538 +#: engine/core/models.py:537 msgid "available quantity of the product in stock" msgstr "" -#: core/models.py:539 +#: engine/core/models.py:538 msgid "quantity in stock" msgstr "" -#: core/models.py:543 +#: engine/core/models.py:542 msgid "vendor-assigned SKU for identifying the product" msgstr "" -#: core/models.py:544 +#: engine/core/models.py:543 msgid "vendor sku" msgstr "" -#: core/models.py:550 +#: engine/core/models.py:549 msgid "digital file associated with this stock if applicable" msgstr "" -#: core/models.py:551 +#: engine/core/models.py:550 msgid "digital file" msgstr "" -#: core/models.py:560 +#: engine/core/models.py:553 +msgid "system attributes" +msgstr "" + +#: engine/core/models.py:560 msgid "stock entries" msgstr "" -#: core/models.py:565 +#: engine/core/models.py:565 msgid "" "Represents a product with attributes such as category, brand, tags, digital " "status, name, description, part number, and slug. Provides related utility " @@ -1714,55 +1749,55 @@ msgid "" "product data and its associated information within an application." msgstr "" -#: core/models.py:578 +#: engine/core/models.py:578 msgid "category this product belongs to" msgstr "" -#: core/models.py:587 +#: engine/core/models.py:587 msgid "optionally associate this product with a brand" msgstr "" -#: core/models.py:593 +#: engine/core/models.py:593 msgid "tags that help describe or group this product" msgstr "" -#: core/models.py:598 +#: engine/core/models.py:598 msgid "indicates whether this product is digitally delivered" msgstr "" -#: core/models.py:599 +#: engine/core/models.py:599 msgid "is product digital" msgstr "" -#: core/models.py:605 +#: engine/core/models.py:605 msgid "provide a clear identifying name for the product" msgstr "" -#: core/models.py:606 +#: engine/core/models.py:606 msgid "product name" msgstr "" -#: core/models.py:612 core/models.py:867 +#: engine/core/models.py:612 engine/core/models.py:878 msgid "add a detailed description of the product" msgstr "" -#: core/models.py:613 +#: engine/core/models.py:613 msgid "product description" msgstr "" -#: core/models.py:620 +#: engine/core/models.py:620 msgid "part number for this product" msgstr "" -#: core/models.py:621 +#: engine/core/models.py:621 msgid "part number" msgstr "" -#: core/models.py:640 +#: engine/core/models.py:640 msgid "stock keeping unit for this product" msgstr "" -#: core/models.py:702 +#: engine/core/models.py:713 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 " @@ -1772,83 +1807,83 @@ msgid "" "for dynamic and flexible data structuring." msgstr "" -#: core/models.py:715 +#: engine/core/models.py:726 msgid "group of this attribute" msgstr "" -#: core/models.py:721 +#: engine/core/models.py:732 msgid "string" msgstr "" -#: core/models.py:722 +#: engine/core/models.py:733 msgid "integer" msgstr "" -#: core/models.py:723 +#: engine/core/models.py:734 msgid "float" msgstr "" -#: core/models.py:724 +#: engine/core/models.py:735 msgid "boolean" msgstr "" -#: core/models.py:725 +#: engine/core/models.py:736 msgid "array" msgstr "" -#: core/models.py:726 +#: engine/core/models.py:737 msgid "object" msgstr "" -#: core/models.py:728 +#: engine/core/models.py:739 msgid "type of the attribute's value" msgstr "" -#: core/models.py:729 +#: engine/core/models.py:740 msgid "value type" msgstr "" -#: core/models.py:734 +#: engine/core/models.py:745 msgid "name of this attribute" msgstr "" -#: core/models.py:735 +#: engine/core/models.py:746 msgid "attribute's name" msgstr "" -#: core/models.py:740 +#: engine/core/models.py:751 msgid "is filterable" msgstr "" -#: core/models.py:741 +#: engine/core/models.py:752 msgid "designates whether this attribute can be used for filtering or not" msgstr "" -#: core/models.py:753 core/models.py:771 -#: core/templates/digital_order_delivered_email.html:134 +#: engine/core/models.py:764 engine/core/models.py:782 +#: engine/core/templates/digital_order_delivered_email.html:134 msgid "attribute" msgstr "" -#: core/models.py:759 +#: engine/core/models.py:770 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 "" -#: core/models.py:770 +#: engine/core/models.py:781 msgid "attribute of this value" msgstr "" -#: core/models.py:778 +#: engine/core/models.py:789 msgid "the specific product associated with this attribute's value" msgstr "" -#: core/models.py:784 +#: engine/core/models.py:795 msgid "the specific value for this attribute" msgstr "" -#: core/models.py:797 +#: engine/core/models.py:808 msgid "" "Represents a product image associated with a product in the system. This " "class is designed to manage images for products, including functionality for " @@ -1857,39 +1892,39 @@ msgid "" "with alternative text for the images." msgstr "" -#: core/models.py:808 +#: engine/core/models.py:819 msgid "provide alternative text for the image for accessibility" msgstr "" -#: core/models.py:809 +#: engine/core/models.py:820 msgid "image alt text" msgstr "" -#: core/models.py:812 +#: engine/core/models.py:823 msgid "upload the image file for this product" msgstr "" -#: core/models.py:813 core/models.py:837 +#: engine/core/models.py:824 engine/core/models.py:848 msgid "product image" msgstr "" -#: core/models.py:818 +#: engine/core/models.py:829 msgid "determines the order in which images are displayed" msgstr "" -#: core/models.py:819 +#: engine/core/models.py:830 msgid "display priority" msgstr "" -#: core/models.py:824 +#: engine/core/models.py:835 msgid "the product that this image represents" msgstr "" -#: core/models.py:838 +#: engine/core/models.py:849 msgid "product images" msgstr "" -#: core/models.py:843 +#: engine/core/models.py:854 msgid "" "Represents a promotional campaign for products with a discount. This class " "is used to define and manage promotional campaigns that offer a percentage-" @@ -1899,39 +1934,39 @@ msgid "" "affected items in the campaign." msgstr "" -#: core/models.py:855 +#: engine/core/models.py:866 msgid "percentage discount for the selected products" msgstr "" -#: core/models.py:856 +#: engine/core/models.py:867 msgid "discount percentage" msgstr "" -#: core/models.py:861 +#: engine/core/models.py:872 msgid "provide a unique name for this promotion" msgstr "" -#: core/models.py:862 +#: engine/core/models.py:873 msgid "promotion name" msgstr "" -#: core/models.py:868 +#: engine/core/models.py:879 msgid "promotion description" msgstr "" -#: core/models.py:873 +#: engine/core/models.py:884 msgid "select which products are included in this promotion" msgstr "" -#: core/models.py:874 +#: engine/core/models.py:885 msgid "included products" msgstr "" -#: core/models.py:878 +#: engine/core/models.py:889 msgid "promotion" msgstr "" -#: core/models.py:889 +#: engine/core/models.py:900 msgid "" "Represents a user's wishlist for storing and managing desired products. The " "class provides functionality to manage a collection of products, supporting " @@ -1939,23 +1974,23 @@ msgid "" "operations for adding and removing multiple products at once." msgstr "" -#: core/models.py:901 +#: engine/core/models.py:912 msgid "products that the user has marked as wanted" msgstr "" -#: core/models.py:909 +#: engine/core/models.py:920 msgid "user who owns this wishlist" msgstr "" -#: core/models.py:910 +#: engine/core/models.py:921 msgid "wishlist owner" msgstr "" -#: core/models.py:918 +#: engine/core/models.py:929 msgid "wishlist" msgstr "" -#: core/models.py:960 +#: engine/core/models.py:971 msgid "" "Represents a documentary record tied to a product. This class is used to " "store information about documentaries related to specific products, " @@ -1965,19 +2000,19 @@ msgid "" "custom features." msgstr "" -#: core/models.py:973 +#: engine/core/models.py:984 msgid "documentary" msgstr "" -#: core/models.py:974 +#: engine/core/models.py:985 msgid "documentaries" msgstr "" -#: core/models.py:984 +#: engine/core/models.py:995 msgid "unresolved" msgstr "" -#: core/models.py:989 +#: engine/core/models.py:1000 msgid "" "Represents an address entity that includes location details and associations " "with a user. Provides functionality for geographic and address data storage, " @@ -1989,59 +2024,59 @@ msgid "" "address with a user, facilitating personalized data handling." msgstr "" -#: core/models.py:1004 +#: engine/core/models.py:1015 msgid "address line for the customer" msgstr "" -#: core/models.py:1005 +#: engine/core/models.py:1016 msgid "address line" msgstr "" -#: core/models.py:1007 +#: engine/core/models.py:1018 msgid "street" msgstr "" -#: core/models.py:1008 +#: engine/core/models.py:1019 msgid "district" msgstr "" -#: core/models.py:1009 +#: engine/core/models.py:1020 msgid "city" msgstr "" -#: core/models.py:1010 +#: engine/core/models.py:1021 msgid "region" msgstr "" -#: core/models.py:1011 +#: engine/core/models.py:1022 msgid "postal code" msgstr "" -#: core/models.py:1012 +#: engine/core/models.py:1023 msgid "country" msgstr "" -#: core/models.py:1019 +#: engine/core/models.py:1030 msgid "geolocation point: (longitude, latitude)" msgstr "" -#: core/models.py:1022 +#: engine/core/models.py:1033 msgid "full JSON response from geocoder for this address" msgstr "" -#: core/models.py:1027 +#: engine/core/models.py:1038 msgid "stored JSON response from the geocoding service" msgstr "" -#: core/models.py:1035 +#: engine/core/models.py:1046 msgid "address" msgstr "" -#: core/models.py:1036 +#: engine/core/models.py:1047 msgid "addresses" msgstr "" -#: core/models.py:1048 +#: engine/core/models.py:1059 msgid "" "Represents a promotional code that can be used for discounts, managing its " "validity, type of discount, and application. The PromoCode class stores " @@ -2051,86 +2086,86 @@ msgid "" "apply the promo code to an order while ensuring constraints are met." msgstr "" -#: core/models.py:1062 +#: engine/core/models.py:1073 msgid "unique code used by a user to redeem a discount" msgstr "" -#: core/models.py:1063 +#: engine/core/models.py:1074 msgid "promo code identifier" msgstr "" -#: core/models.py:1070 +#: engine/core/models.py:1081 msgid "fixed discount amount applied if percent is not used" msgstr "" -#: core/models.py:1071 +#: engine/core/models.py:1082 msgid "fixed discount amount" msgstr "" -#: core/models.py:1077 +#: engine/core/models.py:1088 msgid "percentage discount applied if fixed amount is not used" msgstr "" -#: core/models.py:1078 +#: engine/core/models.py:1089 msgid "percentage discount" msgstr "" -#: core/models.py:1083 +#: engine/core/models.py:1094 msgid "timestamp when the promocode expires" msgstr "" -#: core/models.py:1084 +#: engine/core/models.py:1095 msgid "end validity time" msgstr "" -#: core/models.py:1089 +#: engine/core/models.py:1100 msgid "timestamp from which this promocode is valid" msgstr "" -#: core/models.py:1090 +#: engine/core/models.py:1101 msgid "start validity time" msgstr "" -#: core/models.py:1095 +#: engine/core/models.py:1106 msgid "timestamp when the promocode was used, blank if not used yet" msgstr "" -#: core/models.py:1096 +#: engine/core/models.py:1107 msgid "usage timestamp" msgstr "" -#: core/models.py:1101 +#: engine/core/models.py:1112 msgid "user assigned to this promocode if applicable" msgstr "" -#: core/models.py:1102 +#: engine/core/models.py:1113 msgid "assigned user" msgstr "" -#: core/models.py:1109 +#: engine/core/models.py:1120 msgid "promo code" msgstr "" -#: core/models.py:1110 +#: engine/core/models.py:1121 msgid "promo codes" msgstr "" -#: core/models.py:1125 +#: engine/core/models.py:1136 msgid "" "only one type of discount should be defined (amount or percent), but not " "both or neither." msgstr "" -#: core/models.py:1146 +#: engine/core/models.py:1157 msgid "promocode already used" msgstr "" -#: core/models.py:1162 +#: engine/core/models.py:1173 #, python-brace-format msgid "invalid discount type for promocode {self.uuid}" msgstr "" -#: core/models.py:1171 +#: engine/core/models.py:1182 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 " @@ -2140,144 +2175,178 @@ msgid "" "supports managing the products in the order lifecycle." msgstr "" -#: core/models.py:1188 +#: engine/core/models.py:1199 msgid "the billing address used for this order" msgstr "" -#: core/models.py:1196 +#: engine/core/models.py:1207 msgid "optional promo code applied to this order" msgstr "" -#: core/models.py:1197 +#: engine/core/models.py:1208 msgid "applied promo code" msgstr "" -#: core/models.py:1205 +#: engine/core/models.py:1216 msgid "the shipping address used for this order" msgstr "" -#: core/models.py:1206 +#: engine/core/models.py:1217 msgid "shipping address" msgstr "" -#: core/models.py:1212 +#: engine/core/models.py:1223 msgid "current status of the order in its lifecycle" msgstr "" -#: core/models.py:1213 +#: engine/core/models.py:1224 msgid "order status" msgstr "" -#: core/models.py:1218 core/models.py:1695 +#: engine/core/models.py:1229 engine/core/models.py:1755 msgid "json structure of notifications to display to users" msgstr "" -#: core/models.py:1224 +#: engine/core/models.py:1235 msgid "json representation of order attributes for this order" msgstr "" -#: core/models.py:1230 +#: engine/core/models.py:1241 msgid "the user who placed the order" msgstr "" -#: core/models.py:1231 +#: engine/core/models.py:1242 msgid "user" msgstr "" -#: core/models.py:1237 +#: engine/core/models.py:1248 msgid "the timestamp when the order was finalized" msgstr "" -#: core/models.py:1238 +#: engine/core/models.py:1249 msgid "buy time" msgstr "" -#: core/models.py:1245 +#: engine/core/models.py:1256 msgid "a human-readable identifier for the order" msgstr "" -#: core/models.py:1246 +#: engine/core/models.py:1257 msgid "human readable id" msgstr "" -#: core/models.py:1252 +#: engine/core/models.py:1263 msgid "order" msgstr "" -#: core/models.py:1294 +#: engine/core/models.py:1305 msgid "a user must have only one pending order at a time" msgstr "" -#: core/models.py:1326 +#: engine/core/models.py:1337 msgid "you cannot add products to an order that is not a pending one" msgstr "" -#: core/models.py:1331 +#: engine/core/models.py:1342 msgid "you cannot add inactive products to order" msgstr "" -#: core/models.py:1348 +#: engine/core/models.py:1359 msgid "you cannot add more products than available in stock" msgstr "" -#: core/models.py:1370 core/models.py:1395 core/models.py:1403 +#: engine/core/models.py:1381 engine/core/models.py:1406 +#: engine/core/models.py:1414 msgid "you cannot remove products from an order that is not a pending one" msgstr "" -#: core/models.py:1391 +#: engine/core/models.py:1402 #, python-brace-format msgid "{name} does not exist with query <{query}>" msgstr "" -#: core/models.py:1423 +#: engine/core/models.py:1434 msgid "promocode does not exist" msgstr "" -#: core/models.py:1429 +#: engine/core/models.py:1440 msgid "you can only buy physical products with shipping address specified" msgstr "" -#: core/models.py:1448 +#: engine/core/models.py:1459 msgid "address does not exist" msgstr "" -#: core/models.py:1469 core/models.py:1538 +#: engine/core/models.py:1480 engine/core/models.py:1549 msgid "you can not buy at this moment, please try again in a few minutes" msgstr "" -#: core/models.py:1472 core/models.py:1534 +#: engine/core/models.py:1483 engine/core/models.py:1545 msgid "invalid force value" msgstr "" -#: core/models.py:1478 core/models.py:1541 +#: engine/core/models.py:1489 engine/core/models.py:1552 msgid "you cannot purchase an empty order!" msgstr "" -#: core/models.py:1497 +#: engine/core/models.py:1508 msgid "you cannot buy an order without a user" msgstr "" -#: core/models.py:1511 +#: engine/core/models.py:1522 msgid "a user without a balance cannot buy with balance" msgstr "" -#: core/models.py:1516 +#: engine/core/models.py:1527 msgid "insufficient funds to complete the order" msgstr "" -#: core/models.py:1550 +#: engine/core/models.py:1561 msgid "" "you cannot buy without registration, please provide the following " "information: customer name, customer email, customer phone number" msgstr "" -#: core/models.py:1559 +#: engine/core/models.py:1570 #, python-brace-format msgid "" "invalid payment method: {payment_method} from {available_payment_methods}" msgstr "" -#: core/models.py:1668 +#: engine/core/models.py:1685 +msgid "" +"Manages user feedback for products. This class is designed to capture and " +"store user feedback for specific products that they have purchased. It " +"contains attributes to store user comments, a reference to the related " +"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:1697 +msgid "user-provided comments about their experience with the product" +msgstr "" + +#: engine/core/models.py:1698 +msgid "feedback comments" +msgstr "" + +#: engine/core/models.py:1705 +msgid "references the specific product in an order that this feedback is about" +msgstr "" + +#: engine/core/models.py:1706 +msgid "related order product" +msgstr "" + +#: engine/core/models.py:1711 +msgid "user-assigned rating for the product" +msgstr "" + +#: engine/core/models.py:1712 +msgid "product rating" +msgstr "" + +#: engine/core/models.py:1728 msgid "" "Represents products associated with orders and their attributes. The " "OrderProduct model maintains information about a product that is part of an " @@ -2290,108 +2359,108 @@ msgid "" "Product models and stores a reference to them." msgstr "" -#: core/models.py:1683 +#: engine/core/models.py:1743 msgid "the price paid by the customer for this product at purchase time" msgstr "" -#: core/models.py:1684 +#: engine/core/models.py:1744 msgid "purchase price at order time" msgstr "" -#: core/models.py:1689 +#: engine/core/models.py:1749 msgid "internal comments for admins about this ordered product" msgstr "" -#: core/models.py:1690 +#: engine/core/models.py:1750 msgid "internal comments" msgstr "" -#: core/models.py:1696 +#: engine/core/models.py:1756 msgid "user notifications" msgstr "" -#: core/models.py:1701 +#: engine/core/models.py:1761 msgid "json representation of this item's attributes" msgstr "" -#: core/models.py:1702 +#: engine/core/models.py:1762 msgid "ordered product attributes" msgstr "" -#: core/models.py:1707 +#: engine/core/models.py:1767 msgid "reference to the parent order that contains this product" msgstr "" -#: core/models.py:1708 +#: engine/core/models.py:1768 msgid "parent order" msgstr "" -#: core/models.py:1717 +#: engine/core/models.py:1777 msgid "the specific product associated with this order line" msgstr "" -#: core/models.py:1724 +#: engine/core/models.py:1784 msgid "quantity of this specific product in the order" msgstr "" -#: core/models.py:1725 +#: engine/core/models.py:1785 msgid "product quantity" msgstr "" -#: core/models.py:1732 +#: engine/core/models.py:1792 msgid "current status of this product in the order" msgstr "" -#: core/models.py:1733 +#: engine/core/models.py:1793 msgid "product line status" msgstr "" -#: core/models.py:1798 +#: engine/core/models.py:1858 msgid "order product must have an order" msgstr "" -#: core/models.py:1800 +#: engine/core/models.py:1860 #, python-brace-format msgid "wrong action specified for feedback: {action}" msgstr "" -#: core/models.py:1814 +#: engine/core/models.py:1874 msgid "you cannot feedback an order which is not received" msgstr "" -#: core/models.py:1820 +#: engine/core/models.py:1880 msgid "name" msgstr "" -#: core/models.py:1821 +#: engine/core/models.py:1881 msgid "URL of the integration" msgstr "" -#: core/models.py:1822 +#: engine/core/models.py:1882 msgid "authentication credentials" msgstr "" -#: core/models.py:1844 +#: engine/core/models.py:1904 msgid "you can only have one default CRM provider" msgstr "" -#: core/models.py:1854 +#: engine/core/models.py:1914 msgid "CRM" msgstr "" -#: core/models.py:1855 +#: engine/core/models.py:1915 msgid "CRMs" msgstr "" -#: core/models.py:1867 +#: engine/core/models.py:1927 msgid "order CRM link" msgstr "" -#: core/models.py:1868 +#: engine/core/models.py:1928 msgid "orders CRM links" msgstr "" -#: core/models.py:1873 +#: engine/core/models.py:1933 msgid "" "Represents the downloading functionality for digital assets associated with " "orders. The DigitalAssetDownload class provides the ability to manage and " @@ -2401,94 +2470,57 @@ msgid "" "the asset when the associated order is in a completed status." msgstr "" -#: core/models.py:1887 +#: engine/core/models.py:1947 msgid "download" msgstr "" -#: core/models.py:1888 +#: engine/core/models.py:1948 msgid "downloads" msgstr "" -#: core/models.py:1902 -msgid "" -"Manages user feedback for products. This class is designed to capture and " -"store user feedback for specific products that they have purchased. It " -"contains attributes to store user comments, a reference to the related " -"product in the order, and a user-assigned rating. The class uses database " -"fields to effectively model and manage feedback data." -msgstr "" - -#: core/models.py:1914 -msgid "user-provided comments about their experience with the product" -msgstr "" - -#: core/models.py:1915 -msgid "feedback comments" -msgstr "" - -#: core/models.py:1922 -msgid "references the specific product in an order that this feedback is about" -msgstr "" - -#: core/models.py:1923 -msgid "related order product" -msgstr "" - -#: core/models.py:1928 -msgid "user-assigned rating for the product" -msgstr "" - -#: core/models.py:1929 -msgid "product rating" -msgstr "" - -#: core/serializers/utility.py:89 +#: engine/core/serializers/utility.py:89 msgid "" "you must provide a comment, rating, and order product uuid to add feedback." msgstr "" -#: core/signals.py:73 -msgid "error during promocode creation: {e!s}" -msgstr "" - -#: core/sitemaps.py:25 +#: engine/core/sitemaps.py:25 msgid "Home" msgstr "" -#: core/sitemaps.py:30 +#: engine/core/sitemaps.py:30 msgid "Contact Us" msgstr "" -#: core/sitemaps.py:35 +#: engine/core/sitemaps.py:35 msgid "About Us" msgstr "" -#: core/templates/digital_order_created_email.html:7 -#: core/templates/digital_order_created_email.html:100 -#: core/templates/digital_order_delivered_email.html:6 -#: core/templates/shipped_order_created_email.html:7 -#: core/templates/shipped_order_created_email.html:99 -#: core/templates/shipped_order_delivered_email.html:7 -#: core/templates/shipped_order_delivered_email.html:99 +#: engine/core/templates/digital_order_created_email.html:7 +#: engine/core/templates/digital_order_created_email.html:100 +#: engine/core/templates/digital_order_delivered_email.html:6 +#: engine/core/templates/shipped_order_created_email.html:7 +#: engine/core/templates/shipped_order_created_email.html:99 +#: engine/core/templates/shipped_order_delivered_email.html:7 +#: engine/core/templates/shipped_order_delivered_email.html:99 msgid "order confirmation" msgstr "" -#: core/templates/digital_order_created_email.html:95 -#: core/templates/digital_order_delivered_email.html:94 -#: core/templates/promocode_granted_email.html:94 -#: core/templates/shipped_order_created_email.html:94 -#: core/templates/shipped_order_delivered_email.html:94 +#: engine/core/templates/digital_order_created_email.html:95 +#: engine/core/templates/digital_order_delivered_email.html:94 +#: engine/core/templates/promocode_granted_email.html:94 +#: engine/core/templates/shipped_order_created_email.html:94 +#: engine/core/templates/shipped_order_delivered_email.html:94 msgid "logo" msgstr "" -#: core/templates/digital_order_created_email.html:101 -#: core/templates/shipped_order_created_email.html:100 -#: core/templates/shipped_order_delivered_email.html:100 +#: engine/core/templates/digital_order_created_email.html:101 +#: engine/core/templates/shipped_order_created_email.html:100 +#: engine/core/templates/shipped_order_delivered_email.html:100 #, python-format msgid "hello %(order.user.first_name)s," msgstr "" -#: core/templates/digital_order_created_email.html:102 +#: engine/core/templates/digital_order_created_email.html:102 #, python-format msgid "" "thank you for your order #%(order.pk)s! we are pleased to inform you that\n" @@ -2497,220 +2529,220 @@ msgid "" " order:" msgstr "" -#: core/templates/digital_order_created_email.html:112 -#: core/templates/digital_order_delivered_email.html:110 -#: core/templates/shipped_order_created_email.html:110 -#: core/templates/shipped_order_delivered_email.html:110 +#: engine/core/templates/digital_order_created_email.html:112 +#: engine/core/templates/digital_order_delivered_email.html:110 +#: engine/core/templates/shipped_order_created_email.html:110 +#: engine/core/templates/shipped_order_delivered_email.html:110 msgid "total" msgstr "" -#: core/templates/digital_order_created_email.html:125 -#: core/templates/digital_order_delivered_email.html:157 -#: core/templates/shipped_order_created_email.html:127 -#: core/templates/shipped_order_delivered_email.html:127 +#: engine/core/templates/digital_order_created_email.html:125 +#: engine/core/templates/digital_order_delivered_email.html:157 +#: engine/core/templates/shipped_order_created_email.html:127 +#: engine/core/templates/shipped_order_delivered_email.html:127 msgid "total price" msgstr "" -#: core/templates/digital_order_created_email.html:131 -#: core/templates/shipped_order_created_email.html:140 -#: core/templates/shipped_order_delivered_email.html:140 +#: engine/core/templates/digital_order_created_email.html:131 +#: engine/core/templates/shipped_order_created_email.html:140 +#: engine/core/templates/shipped_order_delivered_email.html:140 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" " %(config.EMAIL_HOST_USER)s." msgstr "" -#: core/templates/digital_order_created_email.html:133 +#: engine/core/templates/digital_order_created_email.html:133 #, python-format msgid "best regards,
the %(config.PROJECT_NAME)s team" msgstr "" -#: core/templates/digital_order_created_email.html:139 -#: core/templates/digital_order_delivered_email.html:171 -#: core/templates/promocode_granted_email.html:114 +#: engine/core/templates/digital_order_created_email.html:139 +#: engine/core/templates/digital_order_delivered_email.html:171 +#: engine/core/templates/promocode_granted_email.html:114 msgid "all rights reserved" msgstr "" -#: core/templates/digital_order_delivered_email.html:99 +#: engine/core/templates/digital_order_delivered_email.html:99 msgid "order delivered" msgstr "" -#: core/templates/digital_order_delivered_email.html:100 -#: core/templates/promocode_granted_email.html:100 +#: engine/core/templates/digital_order_delivered_email.html:100 +#: engine/core/templates/promocode_granted_email.html:100 #, python-format msgid "hello %(user_first_name)s," msgstr "" -#: core/templates/digital_order_delivered_email.html:101 +#: engine/core/templates/digital_order_delivered_email.html:101 #, python-format msgid "" "we have successfully processed your order №%(order_uuid)s! below are the\n" " details of your order:" msgstr "" -#: core/templates/digital_order_delivered_email.html:128 +#: engine/core/templates/digital_order_delivered_email.html:128 msgid "" "additional\n" " information" msgstr "" -#: core/templates/digital_order_delivered_email.html:137 -#: core/templates/json_table_widget.html:6 +#: engine/core/templates/digital_order_delivered_email.html:137 +#: engine/core/templates/json_table_widget.html:6 msgid "value" msgstr "" -#: core/templates/digital_order_delivered_email.html:163 -#: core/templates/promocode_granted_email.html:106 +#: engine/core/templates/digital_order_delivered_email.html:163 +#: engine/core/templates/promocode_granted_email.html:106 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" " %(contact_email)s." msgstr "" -#: core/templates/digital_order_delivered_email.html:165 -#: core/templates/promocode_granted_email.html:108 +#: engine/core/templates/digital_order_delivered_email.html:165 +#: engine/core/templates/promocode_granted_email.html:108 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "" -#: core/templates/json_table_widget.html:5 +#: engine/core/templates/json_table_widget.html:5 msgid "key" msgstr "" -#: core/templates/json_table_widget.html:40 +#: engine/core/templates/json_table_widget.html:40 msgid "Add Row" msgstr "" -#: core/templates/promocode_granted_email.html:6 -#: core/templates/promocode_granted_email.html:99 +#: engine/core/templates/promocode_granted_email.html:6 +#: engine/core/templates/promocode_granted_email.html:99 msgid "promocode granted" msgstr "" -#: core/templates/promocode_granted_email.html:101 +#: engine/core/templates/promocode_granted_email.html:101 msgid "" "Thank you for staying with us! We have granted you with a promocode\n" " for " msgstr "" -#: core/templates/shipped_order_created_email.html:101 -#: core/templates/shipped_order_delivered_email.html:101 +#: 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" " the details of your order:" msgstr "" -#: core/templates/shipped_order_created_email.html:123 -#: core/templates/shipped_order_delivered_email.html:123 +#: engine/core/templates/shipped_order_created_email.html:123 +#: engine/core/templates/shipped_order_delivered_email.html:123 msgid "shipping price" msgstr "" -#: core/templates/shipped_order_created_email.html:133 -#: core/templates/shipped_order_delivered_email.html:133 +#: engine/core/templates/shipped_order_created_email.html:133 +#: engine/core/templates/shipped_order_delivered_email.html:133 msgid "your order will be delivered to the following address:" msgstr "" -#: core/templates/shipped_order_created_email.html:142 -#: core/templates/shipped_order_delivered_email.html:142 +#: engine/core/templates/shipped_order_created_email.html:142 +#: engine/core/templates/shipped_order_delivered_email.html:142 #, python-format msgid "best regards,
The %(config.PROJECT_NAME)s team" msgstr "" -#: core/templates/shipped_order_created_email.html:147 -#: core/templates/shipped_order_delivered_email.html:147 +#: engine/core/templates/shipped_order_created_email.html:147 +#: engine/core/templates/shipped_order_delivered_email.html:147 msgid "" "all rights\n" " reserved" msgstr "" -#: core/utils/caching.py:44 +#: engine/core/utils/caching.py:44 msgid "both data and timeout are required" msgstr "" -#: core/utils/caching.py:46 +#: engine/core/utils/caching.py:46 msgid "invalid timeout value, it must be between 0 and 216000 seconds" msgstr "" -#: core/utils/emailing.py:27 +#: engine/core/utils/emailing.py:27 #, python-brace-format msgid "{config.PROJECT_NAME} | contact us initiated" msgstr "" -#: core/utils/emailing.py:73 +#: engine/core/utils/emailing.py:73 #, python-brace-format msgid "{config.PROJECT_NAME} | order confirmation" msgstr "" -#: core/utils/emailing.py:105 +#: engine/core/utils/emailing.py:105 #, python-brace-format msgid "{config.PROJECT_NAME} | order delivered" msgstr "" -#: core/utils/emailing.py:188 +#: engine/core/utils/emailing.py:188 #, python-brace-format msgid "{config.PROJECT_NAME} | promocode granted" msgstr "" -#: core/utils/messages.py:3 +#: engine/core/utils/messages.py:3 msgid "you do not have permission to perform this action." msgstr "" -#: core/utils/nominatim.py:8 +#: engine/core/utils/nominatim.py:8 msgid "NOMINATIM_URL must be configured." msgstr "" -#: core/validators.py:16 +#: engine/core/validators.py:16 #, python-brace-format msgid "image dimensions should not exceed w{max_width} x h{max_height} pixels" msgstr "" -#: core/views.py:72 +#: engine/core/views.py:71 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 "" -#: core/views.py:87 +#: engine/core/views.py:86 msgid "" "Handles the detailed view response for a sitemap. This function processes " "the request, fetches the appropriate sitemap detail response, and sets the " "Content-Type header for XML." msgstr "" -#: core/views.py:116 +#: engine/core/views.py:115 msgid "" "Returns a list of supported languages and their corresponding information." msgstr "" -#: core/views.py:148 +#: engine/core/views.py:147 msgid "Returns the parameters of the website as a JSON object." msgstr "" -#: core/views.py:167 +#: engine/core/views.py:166 msgid "" "Handles cache operations such as reading and setting cache data with a " "specified key and timeout." msgstr "" -#: core/views.py:194 +#: engine/core/views.py:193 msgid "Handles `contact us` form submissions." msgstr "" -#: core/views.py:215 +#: engine/core/views.py:214 msgid "" "Handles requests for processing and validating URLs from incoming POST " "requests." msgstr "" -#: core/views.py:255 +#: engine/core/views.py:254 msgid "Handles global search queries." msgstr "" -#: core/views.py:270 +#: engine/core/views.py:269 msgid "Handles the logic of buying as a business without registration." msgstr "" -#: core/views.py:306 +#: engine/core/views.py:305 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 " @@ -2718,27 +2750,27 @@ msgid "" "error is raised to indicate the resource is unavailable." msgstr "" -#: core/views.py:316 +#: engine/core/views.py:315 msgid "order_product_uuid is required" msgstr "" -#: core/views.py:322 +#: engine/core/views.py:321 msgid "you can only download the digital asset once" msgstr "" -#: core/views.py:325 +#: engine/core/views.py:324 msgid "the order must be paid before downloading the digital asset" msgstr "" -#: core/views.py:331 +#: engine/core/views.py:330 msgid "the order product does not have a product" msgstr "" -#: core/views.py:369 +#: engine/core/views.py:368 msgid "favicon not found" msgstr "" -#: core/views.py:374 +#: engine/core/views.py:373 msgid "" "Handles requests for the favicon of a website.\n" "This function attempts to serve the favicon file located in the static " @@ -2746,18 +2778,18 @@ msgid "" "error is raised to indicate the resource is unavailable." msgstr "" -#: core/views.py:386 +#: engine/core/views.py:385 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. " "It uses Django's `redirect` function for handling the HTTP redirection." msgstr "" -#: core/views.py:399 +#: engine/core/views.py:398 msgid "Returns current version of the eVibes. " msgstr "" -#: core/viewsets.py:137 +#: engine/core/viewsets.py:137 msgid "" "Defines a viewset for managing Evibes-related operations. The EvibesViewSet " "class inherits from ModelViewSet and provides functionality for handling " @@ -2766,7 +2798,7 @@ msgid "" "and rendering formats." msgstr "" -#: core/viewsets.py:157 +#: engine/core/viewsets.py:157 msgid "" "Represents a viewset for managing AttributeGroup objects. Handles operations " "related to AttributeGroup, including filtering, serialization, and retrieval " @@ -2774,7 +2806,7 @@ msgid "" "standardized way to process requests and responses for AttributeGroup data." msgstr "" -#: core/viewsets.py:176 +#: engine/core/viewsets.py:176 msgid "" "Handles operations related to Attribute objects within the application. " "Provides a set of API endpoints to interact with Attribute data. This class " @@ -2784,7 +2816,7 @@ msgid "" "depending on the request." msgstr "" -#: core/viewsets.py:195 +#: engine/core/viewsets.py:195 msgid "" "A viewset for managing AttributeValue objects. This viewset provides " "functionality for listing, retrieving, creating, updating, and deleting " @@ -2793,7 +2825,7 @@ msgid "" "capabilities are provided through the DjangoFilterBackend." msgstr "" -#: core/viewsets.py:214 +#: engine/core/viewsets.py:214 msgid "" "Manages views for Category-related operations. The CategoryViewSet class is " "responsible for handling operations related to the Category model in the " @@ -2802,7 +2834,7 @@ msgid "" "can access specific data." msgstr "" -#: core/viewsets.py:326 +#: engine/core/viewsets.py:326 msgid "" "Represents a viewset for managing Brand instances. This class provides " "functionality for querying, filtering, and serializing Brand objects. It " @@ -2810,7 +2842,7 @@ msgid "" "endpoints for Brand objects." msgstr "" -#: core/viewsets.py:438 +#: engine/core/viewsets.py:438 msgid "" "Manages operations related to the `Product` model in the system. This class " "provides a viewset for managing products, including their filtering, " @@ -2821,7 +2853,7 @@ msgid "" "product." msgstr "" -#: core/viewsets.py:568 +#: engine/core/viewsets.py:568 msgid "" "Represents a viewset for managing Vendor objects. This viewset allows " "fetching, filtering, and serializing Vendor data. It defines the queryset, " @@ -2830,7 +2862,7 @@ msgid "" "Vendor-related resources through the Django REST framework." msgstr "" -#: core/viewsets.py:588 +#: engine/core/viewsets.py:588 msgid "" "Representation of a view set handling Feedback objects. This class manages " "operations related to Feedback objects, including listing, filtering, and " @@ -2840,7 +2872,7 @@ msgid "" "use of Django's filtering system for querying data." msgstr "" -#: core/viewsets.py:615 +#: engine/core/viewsets.py:615 msgid "" "ViewSet for managing orders and related operations. This class provides " "functionality to retrieve, modify, and manage order objects. It includes " @@ -2851,7 +2883,7 @@ msgid "" "enforces permissions accordingly while interacting with order data." msgstr "" -#: core/viewsets.py:813 +#: engine/core/viewsets.py:813 msgid "" "Provides a viewset for managing OrderProduct entities. This viewset enables " "CRUD operations and custom actions specific to the OrderProduct model. It " @@ -2860,25 +2892,25 @@ msgid "" "feedback on OrderProduct instances" msgstr "" -#: core/viewsets.py:867 +#: engine/core/viewsets.py:867 msgid "Manages operations related to Product images in the application. " msgstr "" -#: core/viewsets.py:880 +#: engine/core/viewsets.py:880 msgid "" "Manages the retrieval and handling of PromoCode instances through various " "API actions." msgstr "" -#: core/viewsets.py:902 +#: engine/core/viewsets.py:902 msgid "Represents a view set for managing promotions. " msgstr "" -#: core/viewsets.py:915 +#: engine/core/viewsets.py:915 msgid "Handles operations related to Stock data in the system." msgstr "" -#: core/viewsets.py:929 +#: engine/core/viewsets.py:929 msgid "" "ViewSet for managing Wishlist operations. The WishlistViewSet provides " "endpoints for interacting with a user's wish list, allowing for the " @@ -2889,7 +2921,7 @@ msgid "" "are granted." msgstr "" -#: core/viewsets.py:1044 +#: engine/core/viewsets.py:1044 msgid "" "This class provides viewset functionality for managing `Address` objects. " "The AddressViewSet class enables CRUD operations, filtering, and custom " @@ -2898,12 +2930,12 @@ msgid "" "on the request context." msgstr "" -#: core/viewsets.py:1111 +#: engine/core/viewsets.py:1111 #, python-brace-format msgid "Geocoding error: {e}" msgstr "" -#: core/viewsets.py:1119 +#: engine/core/viewsets.py:1119 msgid "" "Handles operations related to Product Tags within the application. This " "class provides functionality for retrieving, filtering, and serializing " diff --git a/engine/core/locale/ko_KR/LC_MESSAGES/django.mo b/engine/core/locale/ko_KR/LC_MESSAGES/django.mo new file mode 100644 index 00000000..947eac82 Binary files /dev/null and b/engine/core/locale/ko_KR/LC_MESSAGES/django.mo differ diff --git a/core/locale/ko_KR/LC_MESSAGES/django.po b/engine/core/locale/ko_KR/LC_MESSAGES/django.po similarity index 57% rename from core/locale/ko_KR/LC_MESSAGES/django.po rename to engine/core/locale/ko_KR/LC_MESSAGES/django.po index b962949a..51b14e34 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,176 +13,178 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: core/abstract.py:12 +#: engine/core/abstract.py:12 msgid "unique id" msgstr "고유 ID" -#: core/abstract.py:13 +#: engine/core/abstract.py:13 msgid "unique id is used to surely identify any database object" msgstr "고유 ID는 모든 데이터베이스 개체를 확실하게 식별하는 데 사용됩니다." -#: core/abstract.py:20 +#: engine/core/abstract.py:20 msgid "is active" msgstr "활성 상태" -#: core/abstract.py:21 +#: engine/core/abstract.py:21 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로 설정하면 필요한 권한이 없는 사용자는 이 개체를 볼 수 없습니다." -#: core/abstract.py:23 core/choices.py:18 +#: engine/core/abstract.py:23 engine/core/choices.py:18 msgid "created" msgstr "생성됨" -#: core/abstract.py:23 +#: engine/core/abstract.py:23 msgid "when the object first appeared on the database" msgstr "개체가 데이터베이스에 처음 나타난 시점" -#: core/abstract.py:24 +#: engine/core/abstract.py:24 msgid "modified" msgstr "수정됨" -#: core/abstract.py:24 +#: engine/core/abstract.py:24 msgid "when the object was last modified" msgstr "개체가 마지막으로 편집된 시기" -#: core/admin.py:68 +#: engine/core/admin.py:68 msgid "translations" msgstr "번역" -#: core/admin.py:72 +#: engine/core/admin.py:72 msgid "general" msgstr "일반" -#: core/admin.py:74 +#: engine/core/admin.py:74 msgid "relations" msgstr "관계" -#: core/admin.py:76 +#: engine/core/admin.py:76 msgid "additional info" msgstr "추가 정보" -#: core/admin.py:94 +#: engine/core/admin.py:94 msgid "metadata" msgstr "메타데이터" -#: core/admin.py:101 +#: engine/core/admin.py:101 msgid "timestamps" msgstr "타임스탬프" -#: core/admin.py:116 +#: engine/core/admin.py:116 #, python-format msgid "activate selected %(verbose_name_plural)s" msgstr "선택한 %(verbose_name_plural)s 활성화" -#: core/admin.py:121 +#: engine/core/admin.py:121 msgid "selected items have been activated." msgstr "선택한 아이템이 활성화되었습니다!" -#: core/admin.py:127 +#: engine/core/admin.py:127 #, python-format msgid "deactivate selected %(verbose_name_plural)s" msgstr "선택한 %(verbose_name_plural)s 비활성화하기" -#: core/admin.py:132 +#: engine/core/admin.py:132 msgid "selected items have been deactivated." msgstr "선택한 아이템이 비활성화되었습니다!" -#: core/admin.py:144 core/graphene/object_types.py:582 -#: core/graphene/object_types.py:589 core/models.py:783 core/models.py:791 +#: engine/core/admin.py:144 engine/core/graphene/object_types.py:586 +#: engine/core/graphene/object_types.py:593 engine/core/models.py:794 +#: engine/core/models.py:802 msgid "attribute value" msgstr "속성 값" -#: core/admin.py:145 core/graphene/object_types.py:75 core/models.py:792 +#: engine/core/admin.py:145 engine/core/graphene/object_types.py:75 +#: engine/core/models.py:803 msgid "attribute values" msgstr "속성 값" -#: core/admin.py:156 +#: engine/core/admin.py:156 msgid "image" msgstr "이미지" -#: core/admin.py:157 core/graphene/object_types.py:474 +#: engine/core/admin.py:157 engine/core/graphene/object_types.py:474 msgid "images" msgstr "이미지" -#: core/admin.py:168 core/models.py:559 +#: engine/core/admin.py:169 engine/core/models.py:559 msgid "stock" msgstr "재고" -#: core/admin.py:169 core/graphene/object_types.py:636 +#: engine/core/admin.py:170 engine/core/graphene/object_types.py:640 msgid "stocks" msgstr "주식" -#: core/admin.py:182 core/models.py:1744 +#: engine/core/admin.py:183 engine/core/models.py:1804 msgid "order product" msgstr "제품 주문" -#: core/admin.py:183 core/graphene/object_types.py:389 core/models.py:1745 +#: engine/core/admin.py:184 engine/core/graphene/object_types.py:389 +#: engine/core/models.py:1805 msgid "order products" msgstr "제품 주문" -#: core/admin.py:196 core/admin.py:197 +#: engine/core/admin.py:197 engine/core/admin.py:198 msgid "children" msgstr "어린이" -#: core/admin.py:965 +#: engine/core/admin.py:969 msgid "Config" msgstr "구성" -#: core/apps.py:8 +#: engine/core/apps.py:8 msgid "core" msgstr "핵심" -#: core/choices.py:4 core/choices.py:20 +#: engine/core/choices.py:4 engine/core/choices.py:20 msgid "finished" msgstr "완료" -#: core/choices.py:5 core/choices.py:19 +#: engine/core/choices.py:5 engine/core/choices.py:19 msgid "delivering" msgstr "제공" -#: core/choices.py:6 +#: engine/core/choices.py:6 msgid "delivered" msgstr "배달됨" -#: core/choices.py:7 +#: engine/core/choices.py:7 msgid "canceled" msgstr "취소됨" -#: core/choices.py:8 core/choices.py:16 core/choices.py:24 +#: engine/core/choices.py:8 engine/core/choices.py:16 engine/core/choices.py:24 msgid "failed" msgstr "실패" -#: core/choices.py:9 core/choices.py:15 +#: engine/core/choices.py:9 engine/core/choices.py:15 msgid "pending" msgstr "보류 중" -#: core/choices.py:10 +#: engine/core/choices.py:10 msgid "accepted" msgstr "수락됨" -#: core/choices.py:11 +#: engine/core/choices.py:11 msgid "money returned" msgstr "반환된 금액" -#: core/choices.py:17 +#: engine/core/choices.py:17 msgid "payment" msgstr "결제" -#: core/choices.py:21 +#: engine/core/choices.py:21 msgid "momental" msgstr "순간" -#: core/choices.py:24 +#: engine/core/choices.py:24 msgid "successful" msgstr "성공" -#: core/docs/drf/views.py:17 core/graphene/mutations.py:38 +#: engine/core/docs/drf/views.py:17 engine/core/graphene/mutations.py:38 msgid "cache I/O" msgstr "캐시 I/O" -#: core/docs/drf/views.py:19 +#: engine/core/docs/drf/views.py:19 msgid "" "apply only a key to read permitted data from cache.\n" "apply key, data and timeout with authentication to write data to cache." @@ -190,1263 +192,1318 @@ msgstr "" "캐시에서 허용된 데이터를 읽으려면 키만 적용합니다.\n" "캐시에 데이터를 쓰기 위해 키, 데이터 및 타임아웃을 인증과 함께 적용합니다." -#: core/docs/drf/views.py:32 +#: engine/core/docs/drf/views.py:32 msgid "get a list of supported languages" msgstr "지원되는 언어 목록 보기" -#: core/docs/drf/views.py:41 +#: engine/core/docs/drf/views.py:41 msgid "get application's exposable parameters" msgstr "애플리케이션의 노출 가능한 매개변수 가져오기" -#: core/docs/drf/views.py:48 +#: engine/core/docs/drf/views.py:48 msgid "send a message to the support team" msgstr "지원팀에 메시지 보내기" -#: core/docs/drf/views.py:59 core/graphene/mutations.py:58 +#: engine/core/docs/drf/views.py:59 engine/core/graphene/mutations.py:58 msgid "request a CORSed URL" msgstr "CORSed URL을 요청합니다. https만 허용됩니다." -#: core/docs/drf/views.py:85 +#: engine/core/docs/drf/views.py:85 msgid "global search endpoint to query across project's tables" msgstr "프로젝트의 테이블 전체에서 쿼리할 수 있는 글로벌 검색 엔드포인트" -#: core/docs/drf/views.py:91 +#: engine/core/docs/drf/views.py:91 msgid "purchase an order as a business" msgstr "비즈니스로 주문 구매" -#: core/docs/drf/views.py:98 +#: engine/core/docs/drf/views.py:98 msgid "" "purchase an order as a business, using the provided `products` with " "`product_uuid` and `attributes`." -msgstr "제공된 '제품'과 '제품_uuid' 및 '속성'을 사용하여 비즈니스로서 주문을 구매합니다." +msgstr "" +"제공된 '제품'과 '제품_uuid' 및 '속성'을 사용하여 비즈니스로서 주문을 구매합니" +"다." -#: core/docs/drf/viewsets.py:58 +#: engine/core/docs/drf/viewsets.py:58 msgid "list all attribute groups (simple view)" msgstr "모든 속성 그룹 나열(단순 보기)" -#: core/docs/drf/viewsets.py:62 +#: engine/core/docs/drf/viewsets.py:62 msgid "retrieve a single attribute group (detailed view)" msgstr "단일 속성 그룹 검색(상세 보기)" -#: core/docs/drf/viewsets.py:66 +#: engine/core/docs/drf/viewsets.py:66 msgid "create an attribute group" msgstr "속성 그룹 만들기" -#: core/docs/drf/viewsets.py:70 +#: engine/core/docs/drf/viewsets.py:70 msgid "delete an attribute group" msgstr "속성 그룹 삭제" -#: core/docs/drf/viewsets.py:74 +#: engine/core/docs/drf/viewsets.py:74 msgid "rewrite an existing attribute group saving non-editables" msgstr "편집할 수 없는 항목을 저장하는 기존 속성 그룹 다시 작성하기" -#: core/docs/drf/viewsets.py:78 -msgid "" -"rewrite some fields of an existing attribute group saving non-editables" -msgstr "기존 속성 그룹의 일부 필드를 다시 작성하여 편집할 수 없는 항목을 저장합니다." +#: engine/core/docs/drf/viewsets.py:78 +msgid "rewrite some fields of an existing attribute group saving non-editables" +msgstr "" +"기존 속성 그룹의 일부 필드를 다시 작성하여 편집할 수 없는 항목을 저장합니다." -#: core/docs/drf/viewsets.py:85 +#: engine/core/docs/drf/viewsets.py:85 msgid "list all attributes (simple view)" msgstr "모든 속성 나열(단순 보기)" -#: core/docs/drf/viewsets.py:89 +#: engine/core/docs/drf/viewsets.py:89 msgid "retrieve a single attribute (detailed view)" msgstr "단일 속성 검색(상세 보기)" -#: core/docs/drf/viewsets.py:93 +#: engine/core/docs/drf/viewsets.py:93 msgid "create an attribute" msgstr "속성 만들기" -#: core/docs/drf/viewsets.py:97 +#: engine/core/docs/drf/viewsets.py:97 msgid "delete an attribute" msgstr "속성 삭제" -#: core/docs/drf/viewsets.py:101 +#: engine/core/docs/drf/viewsets.py:101 msgid "rewrite an existing attribute saving non-editables" msgstr "편집할 수 없는 속성을 저장하는 기존 속성 다시 작성하기" -#: core/docs/drf/viewsets.py:105 +#: engine/core/docs/drf/viewsets.py:105 msgid "rewrite some fields of an existing attribute saving non-editables" msgstr "편집할 수 없는 기존 속성의 일부 필드를 다시 작성합니다." -#: core/docs/drf/viewsets.py:112 +#: engine/core/docs/drf/viewsets.py:112 msgid "list all attribute values (simple view)" msgstr "모든 속성 값 나열(단순 보기)" -#: core/docs/drf/viewsets.py:116 +#: engine/core/docs/drf/viewsets.py:116 msgid "retrieve a single attribute value (detailed view)" msgstr "단일 속성 값 검색(상세 보기)" -#: core/docs/drf/viewsets.py:120 +#: engine/core/docs/drf/viewsets.py:120 msgid "create an attribute value" msgstr "속성 값 생성" -#: core/docs/drf/viewsets.py:124 +#: engine/core/docs/drf/viewsets.py:124 msgid "delete an attribute value" msgstr "속성 값 삭제" -#: core/docs/drf/viewsets.py:128 +#: engine/core/docs/drf/viewsets.py:128 msgid "rewrite an existing attribute value saving non-editables" msgstr "편집할 수 없는 기존 속성 값을 저장하여 다시 작성하기" -#: core/docs/drf/viewsets.py:132 -msgid "" -"rewrite some fields of an existing attribute value saving non-editables" -msgstr "기존 속성 값의 일부 필드를 다시 작성하여 편집할 수 없는 항목을 저장합니다." +#: engine/core/docs/drf/viewsets.py:132 +msgid "rewrite some fields of an existing attribute value saving non-editables" +msgstr "" +"기존 속성 값의 일부 필드를 다시 작성하여 편집할 수 없는 항목을 저장합니다." -#: core/docs/drf/viewsets.py:139 core/docs/drf/viewsets.py:140 +#: engine/core/docs/drf/viewsets.py:139 engine/core/docs/drf/viewsets.py:140 msgid "list all categories (simple view)" msgstr "모든 카테고리 나열(간편 보기)" -#: core/docs/drf/viewsets.py:144 core/docs/drf/viewsets.py:145 +#: engine/core/docs/drf/viewsets.py:144 engine/core/docs/drf/viewsets.py:145 msgid "retrieve a single category (detailed view)" msgstr "단일 카테고리 검색(상세 보기)" -#: core/docs/drf/viewsets.py:149 core/docs/drf/viewsets.py:150 -msgid "create a category" -msgstr "카테고리 만들기" - -#: core/docs/drf/viewsets.py:154 core/docs/drf/viewsets.py:155 -msgid "delete a category" -msgstr "카테고리 삭제" - -#: core/docs/drf/viewsets.py:159 core/docs/drf/viewsets.py:160 -msgid "rewrite an existing category saving non-editables" -msgstr "편집할 수 없는 항목을 저장하는 기존 카테고리 다시 작성하기" - -#: core/docs/drf/viewsets.py:164 core/docs/drf/viewsets.py:165 -msgid "rewrite some fields of an existing category saving non-editables" -msgstr "편집할 수 없는 항목을 저장하는 기존 카테고리의 일부 필드 다시 작성하기" - -#: core/docs/drf/viewsets.py:169 core/docs/drf/viewsets.py:501 -#: core/graphene/object_types.py:117 core/graphene/object_types.py:207 -#: core/graphene/object_types.py:482 -msgid "SEO Meta snapshot" -msgstr "SEO 메타 스냅샷" - -#: core/docs/drf/viewsets.py:170 -msgid "returns a snapshot of the category's SEO meta data" -msgstr "카테고리의 SEO 메타 데이터 스냅샷을 반환합니다." - -#: core/docs/drf/viewsets.py:175 +#: engine/core/docs/drf/viewsets.py:150 engine/core/docs/drf/viewsets.py:183 msgid "Category UUID or slug" msgstr "카테고리 UUID 또는 슬러그" -#: core/docs/drf/viewsets.py:188 +#: engine/core/docs/drf/viewsets.py:157 engine/core/docs/drf/viewsets.py:158 +msgid "create a category" +msgstr "카테고리 만들기" + +#: engine/core/docs/drf/viewsets.py:162 engine/core/docs/drf/viewsets.py:163 +msgid "delete a category" +msgstr "카테고리 삭제" + +#: engine/core/docs/drf/viewsets.py:167 engine/core/docs/drf/viewsets.py:168 +msgid "rewrite an existing category saving non-editables" +msgstr "편집할 수 없는 항목을 저장하는 기존 카테고리 다시 작성하기" + +#: engine/core/docs/drf/viewsets.py:172 engine/core/docs/drf/viewsets.py:173 +msgid "rewrite some fields of an existing category saving non-editables" +msgstr "편집할 수 없는 항목을 저장하는 기존 카테고리의 일부 필드 다시 작성하기" + +#: engine/core/docs/drf/viewsets.py:177 engine/core/docs/drf/viewsets.py:517 +#: engine/core/graphene/object_types.py:117 +#: engine/core/graphene/object_types.py:207 +#: engine/core/graphene/object_types.py:482 +msgid "SEO Meta snapshot" +msgstr "SEO 메타 스냅샷" + +#: engine/core/docs/drf/viewsets.py:178 +msgid "returns a snapshot of the category's SEO meta data" +msgstr "카테고리의 SEO 메타 데이터 스냅샷을 반환합니다." + +#: engine/core/docs/drf/viewsets.py:196 msgid "list all orders (simple view)" msgstr "모든 카테고리 나열(간편 보기)" -#: core/docs/drf/viewsets.py:189 +#: engine/core/docs/drf/viewsets.py:197 msgid "for non-staff users, only their own orders are returned." msgstr "직원이 아닌 사용자의 경우 자신의 주문만 반환됩니다." -#: core/docs/drf/viewsets.py:195 +#: engine/core/docs/drf/viewsets.py:203 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)" -#: core/docs/drf/viewsets.py:202 +#: engine/core/docs/drf/viewsets.py:210 msgid "Filter orders with buy_time >= this ISO 8601 datetime" msgstr "buy_time >= 이 ISO 8601 날짜 시간으로 주문 필터링" -#: core/docs/drf/viewsets.py:207 +#: engine/core/docs/drf/viewsets.py:215 msgid "Filter orders with buy_time <= this ISO 8601 datetime" msgstr "buy_time <= 이 ISO 8601 날짜 시간으로 주문 필터링" -#: core/docs/drf/viewsets.py:212 +#: engine/core/docs/drf/viewsets.py:220 msgid "Filter by exact order UUID" msgstr "정확한 주문 UUID로 필터링" -#: core/docs/drf/viewsets.py:217 +#: engine/core/docs/drf/viewsets.py:225 msgid "Filter by exact human-readable order ID" msgstr "사람이 읽을 수 있는 정확한 주문 ID로 필터링" -#: core/docs/drf/viewsets.py:222 +#: engine/core/docs/drf/viewsets.py:230 msgid "Filter by user's email (case-insensitive exact match)" msgstr "사용자 이메일로 필터링(대소문자를 구분하지 않는 일치 검색)" -#: core/docs/drf/viewsets.py:227 +#: engine/core/docs/drf/viewsets.py:235 msgid "Filter by user's UUID" msgstr "사용자의 UUID로 필터링" -#: core/docs/drf/viewsets.py:232 +#: engine/core/docs/drf/viewsets.py:240 msgid "Filter by order status (case-insensitive substring match)" msgstr "주문 상태별 필터링(대소문자를 구분하지 않는 하위 문자열 일치)" -#: core/docs/drf/viewsets.py:238 +#: engine/core/docs/drf/viewsets.py:246 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')." -#: core/docs/drf/viewsets.py:247 +#: engine/core/docs/drf/viewsets.py:255 msgid "retrieve a single order (detailed view)" msgstr "단일 카테고리 검색(상세 보기)" -#: core/docs/drf/viewsets.py:251 +#: engine/core/docs/drf/viewsets.py:260 +msgid "Order UUID or human-readable id" +msgstr "주문 UUID 또는 사람이 읽을 수 있는 ID" + +#: engine/core/docs/drf/viewsets.py:267 msgid "create an order" msgstr "속성 만들기" -#: core/docs/drf/viewsets.py:252 +#: engine/core/docs/drf/viewsets.py:268 msgid "doesn't work for non-staff users." msgstr "직원이 아닌 사용자에게는 작동하지 않습니다." -#: core/docs/drf/viewsets.py:256 +#: engine/core/docs/drf/viewsets.py:272 msgid "delete an order" msgstr "속성 삭제" -#: core/docs/drf/viewsets.py:260 +#: engine/core/docs/drf/viewsets.py:276 msgid "rewrite an existing order saving non-editables" msgstr "편집할 수 없는 항목을 저장하는 기존 카테고리 다시 작성하기" -#: core/docs/drf/viewsets.py:264 +#: engine/core/docs/drf/viewsets.py:280 msgid "rewrite some fields of an existing order saving non-editables" msgstr "편집할 수 없는 항목을 저장하는 기존 카테고리의 일부 필드 다시 작성하기" -#: core/docs/drf/viewsets.py:268 +#: engine/core/docs/drf/viewsets.py:284 msgid "purchase an order" msgstr "주문 시점의 구매 가격" -#: core/docs/drf/viewsets.py:270 +#: engine/core/docs/drf/viewsets.py:286 msgid "" "finalizes the order purchase. if `force_balance` is used, the purchase is " "completed using the user's balance; if `force_payment` is used, a " "transaction is initiated." msgstr "" -"주문 구매를 완료합니다. 강제 잔액`을 사용하면 사용자의 잔액을 사용하여 구매가 완료되고, `강제 결제`를 사용하면 거래가 시작됩니다." +"주문 구매를 완료합니다. 강제 잔액`을 사용하면 사용자의 잔액을 사용하여 구매" +"가 완료되고, `강제 결제`를 사용하면 거래가 시작됩니다." -#: core/docs/drf/viewsets.py:282 core/graphene/mutations.py:335 +#: engine/core/docs/drf/viewsets.py:298 engine/core/graphene/mutations.py:335 msgid "purchase an order without account creation" msgstr "계정 생성 없이 주문 구매" -#: core/docs/drf/viewsets.py:283 +#: engine/core/docs/drf/viewsets.py:299 msgid "finalizes the order purchase for a non-registered user." msgstr "미등록 사용자의 주문 구매를 완료합니다." -#: core/docs/drf/viewsets.py:291 +#: engine/core/docs/drf/viewsets.py:307 msgid "add product to order" msgstr "주문에 제품 추가" -#: core/docs/drf/viewsets.py:292 +#: engine/core/docs/drf/viewsets.py:308 msgid "" "adds a product to an order using the provided `product_uuid` and " "`attributes`." -msgstr "제공된 `product_uuid` 및 `attributes`를 사용하여 주문에 제품을 추가합니다." +msgstr "" +"제공된 `product_uuid` 및 `attributes`를 사용하여 주문에 제품을 추가합니다." -#: core/docs/drf/viewsets.py:297 +#: engine/core/docs/drf/viewsets.py:313 msgid "add a list of products to order, quantities will not count" msgstr "주문할 제품 목록을 추가하면 수량은 계산되지 않습니다." -#: core/docs/drf/viewsets.py:298 +#: engine/core/docs/drf/viewsets.py:314 msgid "" "adds a list of products to an order using the provided `product_uuid` and " "`attributes`." -msgstr "제공된 `product_uuid` 및 `attributes`를 사용하여 주문에 제품 목록을 추가합니다." +msgstr "" +"제공된 `product_uuid` 및 `attributes`를 사용하여 주문에 제품 목록을 추가합니" +"다." -#: core/docs/drf/viewsets.py:303 +#: engine/core/docs/drf/viewsets.py:319 msgid "remove product from order" msgstr "주문에서 제품 제거" -#: core/docs/drf/viewsets.py:304 +#: engine/core/docs/drf/viewsets.py:320 msgid "" "removes a product from an order using the provided `product_uuid` and " "`attributes`." -msgstr "제공된 `product_uuid` 및 `attributes`를 사용하여 주문에서 제품을 제거합니다." +msgstr "" +"제공된 `product_uuid` 및 `attributes`를 사용하여 주문에서 제품을 제거합니다." -#: core/docs/drf/viewsets.py:309 +#: engine/core/docs/drf/viewsets.py:325 msgid "remove product from order, quantities will not count" msgstr "주문에서 제품을 제거하면 수량이 계산되지 않습니다." -#: core/docs/drf/viewsets.py:310 +#: engine/core/docs/drf/viewsets.py:326 msgid "" "removes a list of products from an order using the provided `product_uuid` " "and `attributes`" -msgstr "제공된 `product_uuid` 및 `attributes`를 사용하여 주문에서 제품 목록을 제거합니다." +msgstr "" +"제공된 `product_uuid` 및 `attributes`를 사용하여 주문에서 제품 목록을 제거합" +"니다." -#: core/docs/drf/viewsets.py:318 +#: engine/core/docs/drf/viewsets.py:334 msgid "list all wishlists (simple view)" msgstr "모든 속성 나열(단순 보기)" -#: core/docs/drf/viewsets.py:319 +#: engine/core/docs/drf/viewsets.py:335 msgid "for non-staff users, only their own wishlists are returned." msgstr "직원이 아닌 사용자의 경우 자신의 위시리스트만 반환됩니다." -#: core/docs/drf/viewsets.py:323 +#: engine/core/docs/drf/viewsets.py:339 msgid "retrieve a single wishlist (detailed view)" msgstr "단일 속성 검색(상세 보기)" -#: core/docs/drf/viewsets.py:327 +#: engine/core/docs/drf/viewsets.py:343 msgid "create an wishlist" msgstr "속성 만들기" -#: core/docs/drf/viewsets.py:328 +#: engine/core/docs/drf/viewsets.py:344 msgid "Doesn't work for non-staff users." msgstr "직원이 아닌 사용자에게는 작동하지 않습니다." -#: core/docs/drf/viewsets.py:332 +#: engine/core/docs/drf/viewsets.py:348 msgid "delete an wishlist" msgstr "속성 삭제" -#: core/docs/drf/viewsets.py:336 +#: engine/core/docs/drf/viewsets.py:352 msgid "rewrite an existing wishlist saving non-editables" msgstr "편집할 수 없는 속성을 저장하는 기존 속성 다시 작성하기" -#: core/docs/drf/viewsets.py:340 +#: engine/core/docs/drf/viewsets.py:356 msgid "rewrite some fields of an existing wishlist saving non-editables" msgstr "편집할 수 없는 기존 속성의 일부 필드를 다시 작성합니다." -#: core/docs/drf/viewsets.py:344 +#: engine/core/docs/drf/viewsets.py:360 msgid "add product to wishlist" msgstr "주문에 제품 추가" -#: core/docs/drf/viewsets.py:345 +#: engine/core/docs/drf/viewsets.py:361 msgid "adds a product to an wishlist using the provided `product_uuid`" msgstr "제공된 `product_uuid`를 사용하여 위시리스트에 제품을 추가합니다." -#: core/docs/drf/viewsets.py:350 +#: engine/core/docs/drf/viewsets.py:366 msgid "remove product from wishlist" msgstr "위시리스트에서 제품 제거" -#: core/docs/drf/viewsets.py:351 +#: engine/core/docs/drf/viewsets.py:367 msgid "removes a product from an wishlist using the provided `product_uuid`" msgstr "제공된 `product_uuid`를 사용하여 위시리스트에서 제품을 제거합니다." -#: core/docs/drf/viewsets.py:356 +#: engine/core/docs/drf/viewsets.py:372 msgid "add many products to wishlist" msgstr "위시리스트에 많은 제품 추가" -#: core/docs/drf/viewsets.py:357 +#: engine/core/docs/drf/viewsets.py:373 msgid "adds many products to an wishlist using the provided `product_uuids`" msgstr "제공된 `product_uuids`를 사용하여 위시리스트에 많은 제품을 추가합니다." -#: core/docs/drf/viewsets.py:362 +#: engine/core/docs/drf/viewsets.py:378 msgid "remove many products from wishlist" msgstr "주문에서 제품 제거" -#: core/docs/drf/viewsets.py:363 +#: engine/core/docs/drf/viewsets.py:379 msgid "" "removes many products from an wishlist using the provided `product_uuids`" -msgstr "제공된 `product_uuids`를 사용하여 위시리스트에서 많은 제품을 제거합니다." +msgstr "" +"제공된 `product_uuids`를 사용하여 위시리스트에서 많은 제품을 제거합니다." -#: core/docs/drf/viewsets.py:370 +#: engine/core/docs/drf/viewsets.py:386 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`" -#: core/docs/drf/viewsets.py:386 core/docs/drf/viewsets.py:387 +#: engine/core/docs/drf/viewsets.py:402 engine/core/docs/drf/viewsets.py:403 msgid "list all products (simple view)" msgstr "모든 제품 나열(간편 보기)" -#: core/docs/drf/viewsets.py:392 +#: engine/core/docs/drf/viewsets.py:408 msgid "(exact) Product UUID" msgstr "(정확한) 제품 UUID" -#: core/docs/drf/viewsets.py:399 +#: engine/core/docs/drf/viewsets.py:415 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, 등급, 이름, 슬러그, 생성, 수정, 가격, 랜덤" -#: core/docs/drf/viewsets.py:413 core/docs/drf/viewsets.py:414 +#: engine/core/docs/drf/viewsets.py:429 engine/core/docs/drf/viewsets.py:430 msgid "retrieve a single product (detailed view)" msgstr "단일 제품 검색(상세 보기)" -#: core/docs/drf/viewsets.py:419 core/docs/drf/viewsets.py:443 -#: core/docs/drf/viewsets.py:459 core/docs/drf/viewsets.py:475 -#: core/docs/drf/viewsets.py:491 core/docs/drf/viewsets.py:507 +#: engine/core/docs/drf/viewsets.py:435 engine/core/docs/drf/viewsets.py:459 +#: engine/core/docs/drf/viewsets.py:475 engine/core/docs/drf/viewsets.py:491 +#: engine/core/docs/drf/viewsets.py:507 engine/core/docs/drf/viewsets.py:523 msgid "Product UUID or slug" msgstr "제품 UUID 또는 슬러그" -#: core/docs/drf/viewsets.py:429 core/docs/drf/viewsets.py:430 +#: engine/core/docs/drf/viewsets.py:445 engine/core/docs/drf/viewsets.py:446 msgid "create a product" msgstr "제품 만들기" -#: core/docs/drf/viewsets.py:437 core/docs/drf/viewsets.py:438 +#: engine/core/docs/drf/viewsets.py:453 engine/core/docs/drf/viewsets.py:454 msgid "rewrite an existing product, preserving non-editable fields" msgstr "편집할 수 없는 필드를 유지하면서 기존 제품을 다시 작성합니다." -#: core/docs/drf/viewsets.py:453 core/docs/drf/viewsets.py:454 +#: engine/core/docs/drf/viewsets.py:469 engine/core/docs/drf/viewsets.py:470 msgid "" "update some fields of an existing product, preserving non-editable fields" msgstr "기존 제품의 일부 필드를 업데이트하여 편집할 수 없는 필드는 유지합니다." -#: core/docs/drf/viewsets.py:469 core/docs/drf/viewsets.py:470 +#: engine/core/docs/drf/viewsets.py:485 engine/core/docs/drf/viewsets.py:486 msgid "delete a product" msgstr "제품 삭제" -#: core/docs/drf/viewsets.py:485 core/docs/drf/viewsets.py:486 +#: engine/core/docs/drf/viewsets.py:501 engine/core/docs/drf/viewsets.py:502 msgid "lists all permitted feedbacks for a product" msgstr "제품에 대해 허용된 모든 피드백을 나열합니다." -#: core/docs/drf/viewsets.py:502 +#: engine/core/docs/drf/viewsets.py:518 msgid "returns a snapshot of the product's SEO meta data" msgstr "제품의 SEO 메타 데이터 스냅샷을 반환합니다." -#: core/docs/drf/viewsets.py:520 +#: engine/core/docs/drf/viewsets.py:536 msgid "list all addresses" msgstr "모든 주소 나열" -#: core/docs/drf/viewsets.py:527 +#: engine/core/docs/drf/viewsets.py:543 msgid "retrieve a single address" msgstr "단일 주소 검색" -#: core/docs/drf/viewsets.py:534 +#: engine/core/docs/drf/viewsets.py:550 msgid "create a new address" msgstr "새 주소 만들기" -#: core/docs/drf/viewsets.py:542 +#: engine/core/docs/drf/viewsets.py:558 msgid "delete an address" msgstr "주소 삭제" -#: core/docs/drf/viewsets.py:549 +#: engine/core/docs/drf/viewsets.py:565 msgid "update an entire address" msgstr "전체 주소 업데이트" -#: core/docs/drf/viewsets.py:557 +#: engine/core/docs/drf/viewsets.py:573 msgid "partially update an address" msgstr "주소 부분 업데이트" -#: core/docs/drf/viewsets.py:565 +#: engine/core/docs/drf/viewsets.py:581 msgid "autocomplete address suggestions" msgstr "주소 자동 완성 입력" -#: core/docs/drf/viewsets.py:570 +#: engine/core/docs/drf/viewsets.py:586 msgid "raw data query string, please append with data from geo-IP endpoint" msgstr "원시 데이터 쿼리 문자열, 지오-IP 엔드포인트의 데이터를 추가하세요." -#: core/docs/drf/viewsets.py:576 +#: engine/core/docs/drf/viewsets.py:592 msgid "limit the results amount, 1 < limit < 10, default: 5" msgstr "결과 금액을 제한합니다(1 < 제한 < 10, 기본값: 5)." -#: core/docs/drf/viewsets.py:589 +#: engine/core/docs/drf/viewsets.py:605 msgid "list all feedbacks (simple view)" msgstr "모든 피드백 나열(간편 보기)" -#: core/docs/drf/viewsets.py:593 +#: engine/core/docs/drf/viewsets.py:609 msgid "retrieve a single feedback (detailed view)" msgstr "단일 피드백 검색(상세 보기)" -#: core/docs/drf/viewsets.py:597 +#: engine/core/docs/drf/viewsets.py:613 msgid "create a feedback" msgstr "피드백 만들기" -#: core/docs/drf/viewsets.py:601 +#: engine/core/docs/drf/viewsets.py:617 msgid "delete a feedback" msgstr "피드백 삭제" -#: core/docs/drf/viewsets.py:605 +#: engine/core/docs/drf/viewsets.py:621 msgid "rewrite an existing feedback saving non-editables" msgstr "편집할 수 없는 기존 피드백을 다시 작성합니다." -#: core/docs/drf/viewsets.py:609 +#: engine/core/docs/drf/viewsets.py:625 msgid "rewrite some fields of an existing feedback saving non-editables" -msgstr "기존 피드백의 일부 필드를 다시 작성하여 편집할 수 없는 항목을 저장합니다." +msgstr "" +"기존 피드백의 일부 필드를 다시 작성하여 편집할 수 없는 항목을 저장합니다." -#: core/docs/drf/viewsets.py:616 +#: engine/core/docs/drf/viewsets.py:632 msgid "list all order–product relations (simple view)" msgstr "모든 주문-제품 관계 나열(단순 보기)" -#: core/docs/drf/viewsets.py:623 +#: engine/core/docs/drf/viewsets.py:639 msgid "retrieve a single order–product relation (detailed view)" msgstr "단일 주문-제품 관계 검색(상세 보기)" -#: core/docs/drf/viewsets.py:630 +#: engine/core/docs/drf/viewsets.py:646 msgid "create a new order–product relation" msgstr "새 주문-제품 관계 생성" -#: core/docs/drf/viewsets.py:637 +#: engine/core/docs/drf/viewsets.py:653 msgid "replace an existing order–product relation" msgstr "기존 주문-제품 관계 교체" -#: core/docs/drf/viewsets.py:644 +#: engine/core/docs/drf/viewsets.py:660 msgid "partially update an existing order–product relation" msgstr "기존 주문-제품 관계를 부분적으로 업데이트합니다." -#: core/docs/drf/viewsets.py:651 +#: engine/core/docs/drf/viewsets.py:667 msgid "delete an order–product relation" msgstr "주문-제품 관계 삭제" -#: core/docs/drf/viewsets.py:658 +#: engine/core/docs/drf/viewsets.py:674 msgid "add or remove feedback on an order–product relation" msgstr "주문-제품 관계에 대한 피드백 추가 또는 제거" -#: core/docs/drf/viewsets.py:672 +#: engine/core/docs/drf/viewsets.py:688 msgid "list all brands (simple view)" msgstr "모든 브랜드 나열(간편 보기)" -#: core/docs/drf/viewsets.py:676 +#: engine/core/docs/drf/viewsets.py:692 msgid "retrieve a single brand (detailed view)" msgstr "단일 브랜드 검색(상세 보기)" -#: core/docs/drf/viewsets.py:680 +#: engine/core/docs/drf/viewsets.py:697 engine/core/docs/drf/viewsets.py:725 +msgid "Brand UUID or slug" +msgstr "브랜드 UUID 또는 슬러그" + +#: engine/core/docs/drf/viewsets.py:704 msgid "create a brand" msgstr "브랜드 만들기" -#: core/docs/drf/viewsets.py:684 +#: engine/core/docs/drf/viewsets.py:708 msgid "delete a brand" msgstr "브랜드 삭제" -#: core/docs/drf/viewsets.py:688 +#: engine/core/docs/drf/viewsets.py:712 msgid "rewrite an existing brand saving non-editables" msgstr "편집할 수 없는 기존 브랜드를 저장하여 다시 작성하기" -#: core/docs/drf/viewsets.py:692 +#: engine/core/docs/drf/viewsets.py:716 msgid "rewrite some fields of an existing brand saving non-editables" msgstr "편집할 수 없는 항목을 저장하여 기존 브랜드의 일부 필드 다시 작성하기" -#: core/docs/drf/viewsets.py:696 +#: engine/core/docs/drf/viewsets.py:720 msgid "SEO Meta snapshot for brand" msgstr "브랜드용 SEO 메타 스냅샷" -#: core/docs/drf/viewsets.py:703 +#: engine/core/docs/drf/viewsets.py:735 msgid "list all vendors (simple view)" msgstr "모든 공급업체 목록(간편 보기)" -#: core/docs/drf/viewsets.py:707 +#: engine/core/docs/drf/viewsets.py:739 msgid "retrieve a single vendor (detailed view)" msgstr "단일 공급업체 검색(상세 보기)" -#: core/docs/drf/viewsets.py:711 +#: engine/core/docs/drf/viewsets.py:743 msgid "create a vendor" msgstr "공급업체 만들기" -#: core/docs/drf/viewsets.py:715 +#: engine/core/docs/drf/viewsets.py:747 msgid "delete a vendor" msgstr "공급업체 삭제" -#: core/docs/drf/viewsets.py:719 +#: engine/core/docs/drf/viewsets.py:751 msgid "rewrite an existing vendor saving non-editables" msgstr "편집할 수 없는 기존 벤더를 저장하여 다시 작성하기" -#: core/docs/drf/viewsets.py:723 +#: engine/core/docs/drf/viewsets.py:755 msgid "rewrite some fields of an existing vendor saving non-editables" msgstr "편집할 수 없는 기존 공급업체의 일부 필드 다시 작성" -#: core/docs/drf/viewsets.py:730 +#: engine/core/docs/drf/viewsets.py:762 msgid "list all product images (simple view)" msgstr "모든 제품 이미지 나열(간편 보기)" -#: core/docs/drf/viewsets.py:734 +#: engine/core/docs/drf/viewsets.py:766 msgid "retrieve a single product image (detailed view)" msgstr "단일 제품 이미지 검색(상세 보기)" -#: core/docs/drf/viewsets.py:738 +#: engine/core/docs/drf/viewsets.py:770 msgid "create a product image" msgstr "제품 이미지 만들기" -#: core/docs/drf/viewsets.py:742 +#: engine/core/docs/drf/viewsets.py:774 msgid "delete a product image" msgstr "제품 이미지 삭제" -#: core/docs/drf/viewsets.py:746 +#: engine/core/docs/drf/viewsets.py:778 msgid "rewrite an existing product image saving non-editables" msgstr "편집할 수 없는 기존 제품 이미지 다시 작성하기" -#: core/docs/drf/viewsets.py:750 +#: engine/core/docs/drf/viewsets.py:782 msgid "rewrite some fields of an existing product image saving non-editables" msgstr "편집할 수 없는 기존 제품 이미지의 일부 필드를 다시 작성합니다." -#: core/docs/drf/viewsets.py:757 +#: engine/core/docs/drf/viewsets.py:789 msgid "list all promo codes (simple view)" msgstr "모든 프로모션 코드 목록(간편 보기)" -#: core/docs/drf/viewsets.py:761 +#: engine/core/docs/drf/viewsets.py:793 msgid "retrieve a single promo code (detailed view)" msgstr "단일 프로모션 코드 검색(상세 보기)" -#: core/docs/drf/viewsets.py:765 +#: engine/core/docs/drf/viewsets.py:797 msgid "create a promo code" msgstr "프로모션 코드 생성" -#: core/docs/drf/viewsets.py:769 +#: engine/core/docs/drf/viewsets.py:801 msgid "delete a promo code" msgstr "프로모션 코드 삭제" -#: core/docs/drf/viewsets.py:773 +#: engine/core/docs/drf/viewsets.py:805 msgid "rewrite an existing promo code saving non-editables" msgstr "편집할 수 없는 기존 프로모션 코드 다시 작성하기" -#: core/docs/drf/viewsets.py:777 +#: engine/core/docs/drf/viewsets.py:809 msgid "rewrite some fields of an existing promo code saving non-editables" msgstr "편집할 수 없는 기존 프로모션 코드의 일부 필드를 다시 작성합니다." -#: core/docs/drf/viewsets.py:784 +#: engine/core/docs/drf/viewsets.py:816 msgid "list all promotions (simple view)" msgstr "모든 프로모션 목록(간편 보기)" -#: core/docs/drf/viewsets.py:788 +#: engine/core/docs/drf/viewsets.py:820 msgid "retrieve a single promotion (detailed view)" msgstr "단일 프로모션 검색(상세 보기)" -#: core/docs/drf/viewsets.py:792 +#: engine/core/docs/drf/viewsets.py:824 msgid "create a promotion" msgstr "프로모션 만들기" -#: core/docs/drf/viewsets.py:796 +#: engine/core/docs/drf/viewsets.py:828 msgid "delete a promotion" msgstr "프로모션 삭제" -#: core/docs/drf/viewsets.py:800 +#: engine/core/docs/drf/viewsets.py:832 msgid "rewrite an existing promotion saving non-editables" msgstr "편집할 수 없는 항목을 저장하여 기존 프로모션 다시 작성하기" -#: core/docs/drf/viewsets.py:804 +#: engine/core/docs/drf/viewsets.py:836 msgid "rewrite some fields of an existing promotion saving non-editables" msgstr "편집할 수 없는 항목을 저장하여 기존 프로모션의 일부 필드 다시 작성하기" -#: core/docs/drf/viewsets.py:811 +#: engine/core/docs/drf/viewsets.py:843 msgid "list all stocks (simple view)" msgstr "모든 종목 목록(간편 보기)" -#: core/docs/drf/viewsets.py:815 +#: engine/core/docs/drf/viewsets.py:847 msgid "retrieve a single stock (detailed view)" msgstr "단일 재고 검색(상세 보기)" -#: core/docs/drf/viewsets.py:819 +#: engine/core/docs/drf/viewsets.py:851 msgid "create a stock record" msgstr "재고 기록 만들기" -#: core/docs/drf/viewsets.py:823 +#: engine/core/docs/drf/viewsets.py:855 msgid "delete a stock record" msgstr "재고 기록 삭제" -#: core/docs/drf/viewsets.py:827 +#: engine/core/docs/drf/viewsets.py:859 msgid "rewrite an existing stock record saving non-editables" msgstr "편집할 수 없는 항목을 저장하여 기존 재고 레코드 다시 작성하기" -#: core/docs/drf/viewsets.py:831 +#: engine/core/docs/drf/viewsets.py:863 msgid "rewrite some fields of an existing stock record saving non-editables" msgstr "편집할 수 없는 항목을 저장하는 기존 재고 레코드의 일부 필드 다시 쓰기" -#: core/docs/drf/viewsets.py:838 +#: engine/core/docs/drf/viewsets.py:870 msgid "list all product tags (simple view)" msgstr "모든 제품 태그 나열(간편 보기)" -#: core/docs/drf/viewsets.py:842 +#: engine/core/docs/drf/viewsets.py:874 msgid "retrieve a single product tag (detailed view)" msgstr "단일 제품 태그 검색(상세 보기)" -#: core/docs/drf/viewsets.py:846 +#: engine/core/docs/drf/viewsets.py:878 msgid "create a product tag" msgstr "제품 태그 생성" -#: core/docs/drf/viewsets.py:850 +#: engine/core/docs/drf/viewsets.py:882 msgid "delete a product tag" msgstr "제품 태그 삭제" -#: core/docs/drf/viewsets.py:854 +#: engine/core/docs/drf/viewsets.py:886 msgid "rewrite an existing product tag saving non-editables" msgstr "편집할 수 없는 기존 제품 태그 다시 작성하기" -#: core/docs/drf/viewsets.py:858 +#: engine/core/docs/drf/viewsets.py:890 msgid "rewrite some fields of an existing product tag saving non-editables" msgstr "편집할 수 없는 기존 제품 태그의 일부 필드를 다시 작성합니다." -#: core/elasticsearch/__init__.py:118 core/elasticsearch/__init__.py:550 +#: engine/core/elasticsearch/__init__.py:122 +#: engine/core/elasticsearch/__init__.py:570 msgid "no search term provided." msgstr "검색어가 입력되지 않았습니다." -#: core/filters.py:69 core/filters.py:412 core/filters.py:539 +#: engine/core/filters.py:69 engine/core/filters.py:426 +#: engine/core/filters.py:553 msgid "Search" msgstr "검색" -#: core/filters.py:70 core/filters.py:569 core/filters.py:598 +#: engine/core/filters.py:70 engine/core/filters.py:583 +#: engine/core/filters.py:612 msgid "UUID" msgstr "UUID" -#: core/filters.py:71 core/filters.py:414 core/filters.py:541 +#: engine/core/filters.py:71 engine/core/filters.py:428 +#: engine/core/filters.py:555 msgid "Name" msgstr "이름" -#: core/filters.py:72 core/filters.py:543 +#: engine/core/filters.py:72 engine/core/filters.py:557 msgid "Categories" msgstr "카테고리" -#: core/filters.py:74 +#: engine/core/filters.py:74 msgid "Categories Slugs" msgstr "카테고리 슬러그" -#: core/filters.py:75 core/filters.py:422 +#: engine/core/filters.py:75 engine/core/filters.py:436 msgid "Tags" msgstr "태그" -#: core/filters.py:76 +#: engine/core/filters.py:76 msgid "Min Price" msgstr "최소 가격" -#: core/filters.py:77 +#: engine/core/filters.py:77 msgid "Max Price" msgstr "최대 가격" -#: core/filters.py:78 +#: engine/core/filters.py:78 msgid "Is Active" msgstr "활성 상태" -#: core/filters.py:79 +#: engine/core/filters.py:79 msgid "Brand" msgstr "브랜드" -#: core/filters.py:80 +#: engine/core/filters.py:80 msgid "Attributes" msgstr "속성" -#: core/filters.py:81 +#: engine/core/filters.py:81 msgid "Quantity" msgstr "수량" -#: core/filters.py:82 core/filters.py:416 core/filters.py:542 -#: core/models.py:322 core/models.py:483 core/models.py:637 +#: engine/core/filters.py:82 engine/core/filters.py:430 +#: engine/core/filters.py:556 engine/core/models.py:321 +#: engine/core/models.py:482 engine/core/models.py:637 msgid "Slug" msgstr "슬러그" -#: core/filters.py:83 +#: engine/core/filters.py:83 msgid "Is Digital" msgstr "디지털" -#: core/filters.py:84 +#: engine/core/filters.py:84 msgid "Include sub-categories" msgstr "하위 카테고리 포함" -#: core/filters.py:87 +#: engine/core/filters.py:87 msgid "Include personal ordered" msgstr "개인 주문 제품 포함" -#: core/filters.py:89 core/models.py:641 +#: engine/core/filters.py:89 engine/core/models.py:641 msgid "SKU" msgstr "SKU" -#: core/filters.py:173 +#: engine/core/filters.py:184 msgid "there must be a category_uuid to use include_subcategories flag" -msgstr "include_subcategories 플래그를 사용하려면 category_uuid가 있어야 합니다." +msgstr "" +"include_subcategories 플래그를 사용하려면 category_uuid가 있어야 합니다." -#: core/filters.py:339 +#: engine/core/filters.py:353 msgid "Search (ID, product name or part number)" msgstr "검색(ID, 제품명 또는 부품 번호)" -#: core/filters.py:342 +#: engine/core/filters.py:356 msgid "Bought after (inclusive)" msgstr "구매 후(포함)" -#: core/filters.py:343 +#: engine/core/filters.py:357 msgid "Bought before (inclusive)" msgstr "이전 구매(포함)" -#: core/filters.py:346 core/filters.py:393 core/filters.py:600 +#: engine/core/filters.py:360 engine/core/filters.py:407 +#: engine/core/filters.py:614 msgid "User email" msgstr "사용자 이메일" -#: core/filters.py:347 core/filters.py:394 core/filters.py:578 -#: core/filters.py:599 +#: engine/core/filters.py:361 engine/core/filters.py:408 +#: engine/core/filters.py:592 engine/core/filters.py:613 msgid "User UUID" msgstr "사용자 UUID" -#: core/filters.py:348 +#: engine/core/filters.py:362 msgid "Status" msgstr "상태" -#: core/filters.py:352 +#: engine/core/filters.py:366 msgid "Human Readable ID" msgstr "사람이 읽을 수 있는 ID" -#: core/filters.py:415 +#: engine/core/filters.py:429 msgid "Parent" msgstr "부모" -#: core/filters.py:419 +#: engine/core/filters.py:433 msgid "Whole category(has at least 1 product or not)" msgstr "전체 카테고리(1개 이상의 제품 보유 여부)" -#: core/filters.py:423 +#: engine/core/filters.py:437 msgid "Level" msgstr "레벨" -#: core/filters.py:573 +#: engine/core/filters.py:587 msgid "Product UUID" msgstr "제품 UUID" -#: core/graphene/mutations.py:41 +#: engine/core/graphene/mutations.py:41 msgid "key to look for in or set into the cache" msgstr "캐시에서 찾거나 캐시에 설정할 키" -#: core/graphene/mutations.py:42 +#: engine/core/graphene/mutations.py:42 msgid "data to store in cache" msgstr "캐시에 저장할 데이터" -#: core/graphene/mutations.py:45 +#: engine/core/graphene/mutations.py:45 msgid "timeout in seconds to set the data for into the cache" msgstr "캐시에 저장할 데이터를 설정하는 데 걸리는 시간(초)" -#: core/graphene/mutations.py:48 +#: engine/core/graphene/mutations.py:48 msgid "cached data" msgstr "캐시된 데이터" -#: core/graphene/mutations.py:63 +#: engine/core/graphene/mutations.py:63 msgid "camelized JSON data from the requested URL" msgstr "요청된 URL의 카멜라이즈된 JSON 데이터" -#: core/graphene/mutations.py:68 core/views.py:232 +#: engine/core/graphene/mutations.py:68 engine/core/views.py:231 msgid "only URLs starting with http(s):// are allowed" msgstr "http(s)://로 시작하는 URL만 허용됩니다." -#: core/graphene/mutations.py:84 +#: engine/core/graphene/mutations.py:84 msgid "add a product to the order" msgstr "주문에 제품 추가" -#: core/graphene/mutations.py:105 core/graphene/mutations.py:132 -#: core/graphene/mutations.py:240 core/graphene/mutations.py:288 +#: engine/core/graphene/mutations.py:105 engine/core/graphene/mutations.py:132 +#: engine/core/graphene/mutations.py:240 engine/core/graphene/mutations.py:288 #, python-brace-format msgid "order {order_uuid} not found" msgstr "주문 {order_uuid}을 찾을 수 없습니다!" -#: core/graphene/mutations.py:111 core/graphene/mutations.py:160 +#: engine/core/graphene/mutations.py:111 engine/core/graphene/mutations.py:160 msgid "remove a product from the order" msgstr "주문에서 제품 제거" -#: core/graphene/mutations.py:138 +#: engine/core/graphene/mutations.py:138 msgid "remove all products from the order" msgstr "주문에서 모든 제품 제거" -#: core/graphene/mutations.py:183 +#: engine/core/graphene/mutations.py:183 msgid "buy an order" msgstr "주문 구매" -#: core/graphene/mutations.py:212 core/graphene/mutations.py:266 +#: engine/core/graphene/mutations.py:212 engine/core/graphene/mutations.py:266 msgid "please provide either order_uuid or order_hr_id - mutually exclusive" msgstr "주문_uuid 또는 주문_hr_id 중 하나를 입력하세요 - 상호 배타적입니다!" -#: core/graphene/mutations.py:237 core/graphene/mutations.py:502 -#: core/graphene/mutations.py:544 core/viewsets.py:704 +#: engine/core/graphene/mutations.py:237 engine/core/graphene/mutations.py:502 +#: engine/core/graphene/mutations.py:544 engine/core/viewsets.py:704 msgid "wrong type came from order.buy() method: {type(instance)!s}" msgstr "order.buy() 메서드에서 잘못된 유형이 발생했습니다: {type(instance)!s}" -#: core/graphene/mutations.py:246 +#: engine/core/graphene/mutations.py:246 msgid "perform an action on a list of products in the order" msgstr "제품 목록에 대한 작업을 순서대로 수행합니다." -#: core/graphene/mutations.py:251 +#: engine/core/graphene/mutations.py:251 msgid "remove/add" msgstr "제거/추가" -#: core/graphene/mutations.py:283 core/graphene/mutations.py:324 +#: engine/core/graphene/mutations.py:283 engine/core/graphene/mutations.py:324 msgid "action must be either add or remove" msgstr "작업은 \"추가\" 또는 \"제거\"여야 합니다!" -#: core/graphene/mutations.py:294 +#: engine/core/graphene/mutations.py:294 msgid "perform an action on a list of products in the wishlist" msgstr "위시리스트의 제품 목록에서 작업 수행하기" -#: core/graphene/mutations.py:312 +#: engine/core/graphene/mutations.py:312 msgid "please provide wishlist_uuid value" msgstr "위시리스트_유아이디` 값을 입력하세요." -#: core/graphene/mutations.py:329 core/graphene/mutations.py:405 -#: core/graphene/mutations.py:433 core/graphene/mutations.py:461 -#: core/graphene/mutations.py:505 +#: engine/core/graphene/mutations.py:329 engine/core/graphene/mutations.py:405 +#: engine/core/graphene/mutations.py:433 engine/core/graphene/mutations.py:461 +#: engine/core/graphene/mutations.py:505 #, python-brace-format msgid "wishlist {wishlist_uuid} not found" msgstr "위시리스트 {wishlist_uuid}를 찾을 수 없습니다!" -#: core/graphene/mutations.py:383 +#: engine/core/graphene/mutations.py:383 msgid "add a product to the wishlist" msgstr "주문에 제품 추가" -#: core/graphene/mutations.py:411 +#: engine/core/graphene/mutations.py:411 msgid "remove a product from the wishlist" msgstr "주문에서 제품 제거" -#: core/graphene/mutations.py:439 +#: engine/core/graphene/mutations.py:439 msgid "remove all products from the wishlist" msgstr "주문에서 제품 제거" -#: core/graphene/mutations.py:467 +#: engine/core/graphene/mutations.py:467 msgid "buy all products from the wishlist" msgstr "주문에서 제품 제거" -#: core/graphene/mutations.py:511 +#: engine/core/graphene/mutations.py:511 msgid "buy a product" msgstr "주문 구매" -#: core/graphene/mutations.py:517 +#: engine/core/graphene/mutations.py:517 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와 같은 형식의 문자열로 보내주세요." -#: core/graphene/mutations.py:550 +#: engine/core/graphene/mutations.py:550 msgid "add or delete a feedback for orderproduct" msgstr "주문 제품에 대한 피드백 추가 또는 삭제" -#: core/graphene/mutations.py:574 +#: engine/core/graphene/mutations.py:574 msgid "action must be either `add` or `remove`" msgstr "작업은 '추가' 또는 '제거' 중 하나여야 합니다!" -#: core/graphene/mutations.py:577 +#: engine/core/graphene/mutations.py:577 #, python-brace-format msgid "order product {order_product_uuid} not found" msgstr "주문 제품 {order_product_uuid}을 찾을 수 없습니다!" -#: core/graphene/mutations.py:644 +#: engine/core/graphene/mutations.py:644 msgid "original address string provided by the user" msgstr "사용자가 제공한 원본 주소 문자열" -#: core/graphene/mutations.py:680 core/models.py:930 core/models.py:943 -#: core/models.py:1358 core/models.py:1387 core/models.py:1412 -#: core/viewsets.py:707 +#: engine/core/graphene/mutations.py:680 engine/core/models.py:941 +#: engine/core/models.py:954 engine/core/models.py:1369 +#: engine/core/models.py:1398 engine/core/models.py:1423 +#: engine/core/viewsets.py:707 #, python-brace-format msgid "{name} does not exist: {uuid}" msgstr "{name}가 존재하지 않습니다: {uuid}!" -#: core/graphene/mutations.py:694 +#: engine/core/graphene/mutations.py:694 msgid "limit must be between 1 and 10" msgstr "한도는 1에서 10 사이여야 합니다." -#: core/graphene/mutations.py:743 +#: engine/core/graphene/mutations.py:743 msgid "elasticsearch - works like a charm" msgstr "ElasticSearch - 마법처럼 작동" -#: core/graphene/object_types.py:82 core/graphene/object_types.py:370 -#: core/graphene/object_types.py:417 core/models.py:754 core/models.py:1225 -#: core/models.py:1823 +#: engine/core/graphene/object_types.py:82 +#: engine/core/graphene/object_types.py:370 +#: engine/core/graphene/object_types.py:417 engine/core/models.py:765 +#: engine/core/models.py:1236 engine/core/models.py:1883 msgid "attributes" msgstr "속성" -#: core/graphene/object_types.py:95 +#: engine/core/graphene/object_types.py:95 msgid "grouped attributes" msgstr "그룹화된 속성" -#: core/graphene/object_types.py:102 +#: engine/core/graphene/object_types.py:102 msgid "groups of attributes" msgstr "속성 그룹" -#: core/graphene/object_types.py:116 core/graphene/object_types.py:193 -#: core/graphene/object_types.py:223 core/models.py:426 +#: engine/core/graphene/object_types.py:116 +#: engine/core/graphene/object_types.py:193 +#: engine/core/graphene/object_types.py:223 engine/core/models.py:425 msgid "categories" msgstr "카테고리" -#: core/graphene/object_types.py:124 core/models.py:497 +#: engine/core/graphene/object_types.py:124 engine/core/models.py:496 msgid "brands" msgstr "브랜드" -#: core/graphene/object_types.py:195 +#: engine/core/graphene/object_types.py:195 msgid "category image url" msgstr "카테고리" -#: core/graphene/object_types.py:196 core/graphene/object_types.py:317 -#: core/models.py:284 +#: engine/core/graphene/object_types.py:196 +#: engine/core/graphene/object_types.py:317 engine/core/models.py:283 msgid "markup percentage" msgstr "마크업 퍼센트" -#: core/graphene/object_types.py:199 +#: engine/core/graphene/object_types.py:199 msgid "which attributes and values can be used for filtering this category." msgstr "이 카테고리를 필터링하는 데 사용할 수 있는 속성 및 값입니다." -#: core/graphene/object_types.py:203 -msgid "" -"minimum and maximum prices for products in this category, if available." +#: engine/core/graphene/object_types.py:203 +msgid "minimum and maximum prices for products in this category, if available." msgstr "이 카테고리의 제품에 대한 최소 및 최대 가격(가능한 경우)." -#: core/graphene/object_types.py:205 +#: engine/core/graphene/object_types.py:205 msgid "tags for this category" msgstr "이 카테고리의 태그" -#: core/graphene/object_types.py:206 +#: engine/core/graphene/object_types.py:206 msgid "products in this category" msgstr "이 카테고리의 제품" -#: core/graphene/object_types.py:324 core/models.py:189 +#: engine/core/graphene/object_types.py:324 engine/core/models.py:188 msgid "vendors" msgstr "공급업체" -#: core/graphene/object_types.py:328 +#: engine/core/graphene/object_types.py:328 msgid "Latitude (Y coordinate)" msgstr "위도(Y 좌표)" -#: core/graphene/object_types.py:329 +#: engine/core/graphene/object_types.py:329 msgid "Longitude (X coordinate)" msgstr "경도(X 좌표)" -#: core/graphene/object_types.py:358 +#: engine/core/graphene/object_types.py:358 msgid "comment" msgstr "방법" -#: core/graphene/object_types.py:359 core/graphene/object_types.py:483 +#: engine/core/graphene/object_types.py:359 +#: engine/core/graphene/object_types.py:483 msgid "rating value from 1 to 10, inclusive, or 0 if not set." msgstr "1에서 10까지의 등급 값(포함) 또는 설정하지 않은 경우 0입니다." -#: core/graphene/object_types.py:366 +#: engine/core/graphene/object_types.py:366 msgid "represents feedback from a user." msgstr "사용자의 피드백을 나타냅니다." -#: core/graphene/object_types.py:371 core/graphene/object_types.py:418 -#: core/models.py:1219 +#: engine/core/graphene/object_types.py:371 +#: engine/core/graphene/object_types.py:418 engine/core/models.py:1230 msgid "notifications" msgstr "알림" -#: core/graphene/object_types.py:372 +#: engine/core/graphene/object_types.py:372 msgid "download url for this order product if applicable" msgstr "해당되는 경우 이 주문 제품의 URL 다운로드" -#: core/graphene/object_types.py:373 core/models.py:1939 +#: engine/core/graphene/object_types.py:373 engine/core/models.py:1722 msgid "feedback" msgstr "피드백" -#: core/graphene/object_types.py:407 +#: engine/core/graphene/object_types.py:407 msgid "a list of order products in this order" msgstr "주문 제품 목록은 다음 순서로 표시됩니다." -#: core/graphene/object_types.py:409 core/models.py:1189 +#: engine/core/graphene/object_types.py:409 engine/core/models.py:1200 msgid "billing address" msgstr "청구서 수신 주소" -#: core/graphene/object_types.py:412 +#: engine/core/graphene/object_types.py:412 msgid "" "shipping address for this order, leave blank if same as billing address or " "if not applicable" -msgstr "이 주문의 배송 주소는 청구지 주소와 동일하거나 해당되지 않는 경우 비워 둡니다." +msgstr "" +"이 주문의 배송 주소는 청구지 주소와 동일하거나 해당되지 않는 경우 비워 둡니" +"다." -#: core/graphene/object_types.py:414 +#: engine/core/graphene/object_types.py:414 msgid "total price of this order" msgstr "이 주문의 총 가격" -#: core/graphene/object_types.py:415 +#: engine/core/graphene/object_types.py:415 msgid "total quantity of products in order" msgstr "주문한 제품의 총 수량" -#: core/graphene/object_types.py:416 +#: engine/core/graphene/object_types.py:416 msgid "are all products in the order digital" msgstr "주문에 포함된 모든 제품이 디지털 제품인가요?" -#: core/graphene/object_types.py:419 +#: engine/core/graphene/object_types.py:419 msgid "transactions for this order" msgstr "이 주문에 대한 거래" -#: core/graphene/object_types.py:438 core/models.py:1253 +#: engine/core/graphene/object_types.py:438 engine/core/models.py:1264 msgid "orders" msgstr "주문" -#: core/graphene/object_types.py:459 +#: engine/core/graphene/object_types.py:459 msgid "image url" msgstr "이미지 URL" -#: core/graphene/object_types.py:466 +#: engine/core/graphene/object_types.py:466 msgid "product's images" msgstr "제품 이미지" -#: core/graphene/object_types.py:473 core/models.py:425 core/models.py:579 +#: engine/core/graphene/object_types.py:473 engine/core/models.py:424 +#: engine/core/models.py:579 msgid "category" msgstr "카테고리" -#: core/graphene/object_types.py:475 core/models.py:1940 +#: engine/core/graphene/object_types.py:475 engine/core/models.py:1723 msgid "feedbacks" msgstr "피드백" -#: core/graphene/object_types.py:476 core/models.py:496 core/models.py:588 +#: engine/core/graphene/object_types.py:476 engine/core/models.py:495 +#: engine/core/models.py:588 msgid "brand" msgstr "브랜드" -#: core/graphene/object_types.py:477 core/models.py:107 +#: engine/core/graphene/object_types.py:477 engine/core/models.py:106 msgid "attribute groups" msgstr "속성 그룹" -#: core/graphene/object_types.py:478 -#: core/templates/digital_order_created_email.html:111 -#: core/templates/digital_order_delivered_email.html:109 -#: core/templates/shipped_order_created_email.html:109 -#: core/templates/shipped_order_delivered_email.html:109 +#: engine/core/graphene/object_types.py:478 +#: engine/core/templates/digital_order_created_email.html:111 +#: engine/core/templates/digital_order_delivered_email.html:109 +#: engine/core/templates/shipped_order_created_email.html:109 +#: engine/core/templates/shipped_order_delivered_email.html:109 msgid "price" msgstr "가격" -#: core/graphene/object_types.py:479 -#: core/templates/digital_order_created_email.html:110 -#: core/templates/digital_order_delivered_email.html:108 -#: core/templates/shipped_order_created_email.html:108 -#: core/templates/shipped_order_delivered_email.html:108 +#: engine/core/graphene/object_types.py:479 +#: engine/core/templates/digital_order_created_email.html:110 +#: engine/core/templates/digital_order_delivered_email.html:108 +#: engine/core/templates/shipped_order_created_email.html:108 +#: engine/core/templates/shipped_order_delivered_email.html:108 msgid "quantity" msgstr "수량" -#: core/graphene/object_types.py:480 +#: engine/core/graphene/object_types.py:480 msgid "number of feedbacks" msgstr "피드백 수" -#: core/graphene/object_types.py:481 +#: engine/core/graphene/object_types.py:481 msgid "only available for personal orders" msgstr "개인 주문만 가능한 제품" -#: core/graphene/object_types.py:507 core/models.py:651 +#: engine/core/graphene/object_types.py:484 +msgid "discount price" +msgstr "할인 가격" + +#: engine/core/graphene/object_types.py:508 engine/core/models.py:651 msgid "products" msgstr "제품" -#: core/graphene/object_types.py:607 +#: engine/core/graphene/object_types.py:611 msgid "promocodes" msgstr "프로모션 코드" -#: core/graphene/object_types.py:617 +#: engine/core/graphene/object_types.py:621 msgid "products on sale" msgstr "판매 중인 제품" -#: core/graphene/object_types.py:624 core/models.py:879 +#: engine/core/graphene/object_types.py:628 engine/core/models.py:890 msgid "promotions" msgstr "프로모션" -#: core/graphene/object_types.py:628 core/models.py:188 +#: engine/core/graphene/object_types.py:632 engine/core/models.py:187 msgid "vendor" msgstr "공급업체" -#: core/graphene/object_types.py:629 core/models.py:650 -#: core/templates/digital_order_created_email.html:109 -#: core/templates/digital_order_delivered_email.html:107 -#: core/templates/shipped_order_created_email.html:107 -#: core/templates/shipped_order_delivered_email.html:107 +#: engine/core/graphene/object_types.py:633 engine/core/models.py:650 +#: 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 +#: engine/core/templates/shipped_order_delivered_email.html:107 msgid "product" msgstr "제품" -#: core/graphene/object_types.py:640 core/models.py:902 +#: engine/core/graphene/object_types.py:644 engine/core/models.py:913 msgid "wishlisted products" msgstr "위시리스트 제품" -#: core/graphene/object_types.py:646 core/models.py:919 +#: engine/core/graphene/object_types.py:650 engine/core/models.py:930 msgid "wishlists" msgstr "위시리스트" -#: core/graphene/object_types.py:650 +#: engine/core/graphene/object_types.py:654 msgid "tagged products" msgstr "태그가 지정된 제품" -#: core/graphene/object_types.py:657 core/models.py:225 core/models.py:594 +#: engine/core/graphene/object_types.py:661 engine/core/models.py:224 +#: engine/core/models.py:594 msgid "product tags" msgstr "제품 태그" -#: core/graphene/object_types.py:661 +#: engine/core/graphene/object_types.py:665 msgid "tagged categories" msgstr "태그가 지정된 카테고리" -#: core/graphene/object_types.py:668 +#: engine/core/graphene/object_types.py:672 msgid "categories tags" msgstr "카테고리 태그" -#: core/graphene/object_types.py:672 +#: engine/core/graphene/object_types.py:676 msgid "project name" msgstr "프로젝트 이름" -#: core/graphene/object_types.py:673 +#: engine/core/graphene/object_types.py:677 msgid "company email" msgstr "회사 이메일" -#: core/graphene/object_types.py:674 +#: engine/core/graphene/object_types.py:678 msgid "company name" msgstr "회사 이름" -#: core/graphene/object_types.py:675 +#: engine/core/graphene/object_types.py:679 msgid "company address" msgstr "회사 주소" -#: core/graphene/object_types.py:676 +#: engine/core/graphene/object_types.py:680 msgid "company phone number" msgstr "회사 전화번호" -#: core/graphene/object_types.py:677 +#: engine/core/graphene/object_types.py:681 msgid "email from, sometimes it must be used instead of host user value" -msgstr "'이메일 보낸 사람'을 호스트 사용자 값 대신 사용해야 하는 경우가 있습니다." +msgstr "" +"'이메일 보낸 사람'을 호스트 사용자 값 대신 사용해야 하는 경우가 있습니다." -#: core/graphene/object_types.py:678 +#: engine/core/graphene/object_types.py:682 msgid "email host user" msgstr "이메일 호스트 사용자" -#: core/graphene/object_types.py:679 +#: engine/core/graphene/object_types.py:683 msgid "maximum amount for payment" msgstr "최대 결제 금액" -#: core/graphene/object_types.py:680 +#: engine/core/graphene/object_types.py:684 msgid "minimum amount for payment" msgstr "최소 결제 금액" -#: core/graphene/object_types.py:681 +#: engine/core/graphene/object_types.py:685 msgid "analytics data" msgstr "애널리틱스 데이터" -#: core/graphene/object_types.py:682 +#: engine/core/graphene/object_types.py:686 msgid "advertisement data" msgstr "광고 데이터" -#: core/graphene/object_types.py:685 +#: engine/core/graphene/object_types.py:689 msgid "company configuration" msgstr "구성" -#: core/graphene/object_types.py:689 +#: engine/core/graphene/object_types.py:693 msgid "language code" msgstr "언어 코드" -#: core/graphene/object_types.py:690 +#: engine/core/graphene/object_types.py:694 msgid "language name" msgstr "언어 이름" -#: core/graphene/object_types.py:691 +#: engine/core/graphene/object_types.py:695 msgid "language flag, if exists :)" msgstr "언어 플래그가 있는 경우 :)" -#: core/graphene/object_types.py:694 +#: engine/core/graphene/object_types.py:698 msgid "supported languages" msgstr "지원되는 언어 목록 보기" -#: core/graphene/object_types.py:725 core/graphene/object_types.py:726 -#: core/graphene/object_types.py:727 +#: engine/core/graphene/object_types.py:729 +#: engine/core/graphene/object_types.py:730 +#: engine/core/graphene/object_types.py:731 msgid "products search results" msgstr "제품 검색 결과" -#: core/graphene/object_types.py:728 +#: engine/core/graphene/object_types.py:732 msgid "posts search results" msgstr "제품 검색 결과" -#: core/models.py:76 +#: engine/core/models.py:75 msgid "" "Represents a group of attributes, which can be hierarchical. This class is " "used to manage and organize attribute groups. An attribute group can have a " "parent group, forming a hierarchical structure. This can be useful for " "categorizing and managing attributes more effectively in acomplex system." msgstr "" -"계층적일 수 있는 속성 그룹을 나타냅니다. 이 클래스는 속성 그룹을 관리하고 구성하는 데 사용됩니다. 속성 그룹은 상위 그룹을 가질 수 " -"있으며 계층 구조를 형성할 수 있습니다. 이는 복잡한 시스템에서 속성을 보다 효과적으로 분류하고 관리하는 데 유용할 수 있습니다." +"계층적일 수 있는 속성 그룹을 나타냅니다. 이 클래스는 속성 그룹을 관리하고 구" +"성하는 데 사용됩니다. 속성 그룹은 상위 그룹을 가질 수 있으며 계층 구조를 형성" +"할 수 있습니다. 이는 복잡한 시스템에서 속성을 보다 효과적으로 분류하고 관리하" +"는 데 유용할 수 있습니다." -#: core/models.py:92 +#: engine/core/models.py:91 msgid "parent of this group" msgstr "이 그룹의 부모" -#: core/models.py:93 +#: engine/core/models.py:92 msgid "parent attribute group" msgstr "상위 속성 그룹" -#: core/models.py:97 core/models.py:98 +#: engine/core/models.py:96 engine/core/models.py:97 msgid "attribute group's name" msgstr "속성 그룹의 이름" -#: core/models.py:106 core/models.py:716 +#: engine/core/models.py:105 engine/core/models.py:727 msgid "attribute group" msgstr "속성 그룹" -#: core/models.py:112 +#: engine/core/models.py:111 msgid "" "Represents a vendor entity capable of storing information about external " "vendors and their interaction requirements. The Vendor class is used to " @@ -1456,52 +1513,54 @@ msgid "" "also maintains additional metadata and constraints, making it suitable for " "use in systems that interact with third-party vendors." msgstr "" -"외부 공급업체 및 해당 공급업체의 상호 작용 요구 사항에 대한 정보를 저장할 수 있는 공급업체 엔티티를 나타냅니다. 공급업체 클래스는 " -"외부 공급업체와 관련된 정보를 정의하고 관리하는 데 사용됩니다. 공급업체의 이름, 통신에 필요한 인증 세부 정보, 공급업체에서 검색한 " -"제품에 적용된 마크업 비율을 저장합니다. 또한 이 모델은 추가 메타데이터 및 제약 조건을 유지하므로 타사 공급업체와 상호 작용하는 " -"시스템에서 사용하기에 적합합니다." +"외부 공급업체 및 해당 공급업체의 상호 작용 요구 사항에 대한 정보를 저장할 수 " +"있는 공급업체 엔티티를 나타냅니다. 공급업체 클래스는 외부 공급업체와 관련된 " +"정보를 정의하고 관리하는 데 사용됩니다. 공급업체의 이름, 통신에 필요한 인증 " +"세부 정보, 공급업체에서 검색한 제품에 적용된 마크업 비율을 저장합니다. 또한 " +"이 모델은 추가 메타데이터 및 제약 조건을 유지하므로 타사 공급업체와 상호 작용" +"하는 시스템에서 사용하기에 적합합니다." -#: core/models.py:125 +#: engine/core/models.py:124 msgid "stores credentials and endpoints required for vendor communication" msgstr "공급업체의 API 통신에 필요한 자격 증명과 엔드포인트를 저장합니다." -#: core/models.py:126 +#: engine/core/models.py:125 msgid "authentication info" msgstr "인증 정보" -#: core/models.py:131 +#: engine/core/models.py:130 msgid "define the markup for products retrieved from this vendor" msgstr "이 공급업체에서 검색된 제품에 대한 마크업을 정의합니다." -#: core/models.py:132 +#: engine/core/models.py:131 msgid "vendor markup percentage" msgstr "공급업체 마크업 비율" -#: core/models.py:136 +#: engine/core/models.py:135 msgid "name of this vendor" msgstr "이 공급업체의 이름" -#: core/models.py:137 +#: engine/core/models.py:136 msgid "vendor name" msgstr "공급업체 이름" -#: core/models.py:148 +#: engine/core/models.py:147 msgid "response file" msgstr "응답 파일" -#: core/models.py:149 +#: engine/core/models.py:148 msgid "vendor's last processing response" msgstr "공급업체의 마지막 처리 응답" -#: core/models.py:155 +#: engine/core/models.py:154 msgid "vendor's integration file path" msgstr "공급업체의 통합 파일 경로" -#: core/models.py:156 +#: engine/core/models.py:155 msgid "integration path" msgstr "통합 경로" -#: core/models.py:198 +#: engine/core/models.py:197 msgid "" "Represents a product tag used for classifying or identifying products. The " "ProductTag class is designed to uniquely identify and classify products " @@ -1509,48 +1568,50 @@ msgid "" "display name. It supports operations exported through mixins and provides " "metadata customization for administrative purposes." msgstr "" -"제품을 분류하거나 식별하는 데 사용되는 제품 태그를 나타냅니다. ProductTag 클래스는 내부 태그 식별자와 사용자 친화적인 표시 " -"이름의 조합을 통해 제품을 고유하게 식별하고 분류하도록 설계되었습니다. 믹스인을 통해 내보낸 작업을 지원하며 관리 목적으로 메타데이터 " -"사용자 지정을 제공합니다." +"제품을 분류하거나 식별하는 데 사용되는 제품 태그를 나타냅니다. ProductTag 클" +"래스는 내부 태그 식별자와 사용자 친화적인 표시 이름의 조합을 통해 제품을 고유" +"하게 식별하고 분류하도록 설계되었습니다. 믹스인을 통해 내보낸 작업을 지원하" +"며 관리 목적으로 메타데이터 사용자 지정을 제공합니다." -#: core/models.py:210 core/models.py:241 +#: engine/core/models.py:209 engine/core/models.py:240 msgid "internal tag identifier for the product tag" msgstr "제품 태그의 내부 태그 식별자" -#: core/models.py:211 core/models.py:242 +#: engine/core/models.py:210 engine/core/models.py:241 msgid "tag name" msgstr "태그 이름" -#: core/models.py:215 core/models.py:246 +#: engine/core/models.py:214 engine/core/models.py:245 msgid "user-friendly name for the product tag" msgstr "제품 태그의 사용자 친화적인 이름" -#: core/models.py:216 core/models.py:247 +#: engine/core/models.py:215 engine/core/models.py:246 msgid "tag display name" msgstr "태그 표시 이름" -#: core/models.py:224 +#: engine/core/models.py:223 msgid "product tag" msgstr "제품 태그" -#: core/models.py:230 +#: engine/core/models.py:229 msgid "" "Represents a category tag used for products. This class models a category " "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 "" -"제품에 사용되는 카테고리 태그를 나타냅니다. 이 클래스는 제품을 연결하고 분류하는 데 사용할 수 있는 카테고리 태그를 모델링합니다. 내부" -" 태그 식별자 및 사용자 친화적인 표시 이름에 대한 속성을 포함합니다." +"제품에 사용되는 카테고리 태그를 나타냅니다. 이 클래스는 제품을 연결하고 분류" +"하는 데 사용할 수 있는 카테고리 태그를 모델링합니다. 내부 태그 식별자 및 사용" +"자 친화적인 표시 이름에 대한 속성을 포함합니다." -#: core/models.py:255 +#: engine/core/models.py:254 msgid "category tag" msgstr "카테고리 태그" -#: core/models.py:256 core/models.py:328 +#: engine/core/models.py:255 engine/core/models.py:327 msgid "category tags" msgstr "카테고리 태그" -#: core/models.py:261 +#: engine/core/models.py:260 msgid "" "Represents a category entity to organize and group related items in a " "hierarchical structure. Categories may have hierarchical relationships with " @@ -1562,181 +1623,189 @@ msgid "" "hierarchy of categories, as well as assign attributes like images, tags, or " "priority." msgstr "" -"관련 항목을 계층 구조로 정리하고 그룹화할 카테고리 엔티티를 나타냅니다. 카테고리는 다른 카테고리와 계층적 관계를 가질 수 있으며, " -"상위-하위 관계를 지원합니다. 이 클래스에는 카테고리 관련 기능의 기반이 되는 메타데이터 및 시각적 표현을 위한 필드가 포함되어 " -"있습니다. 이 클래스는 일반적으로 애플리케이션 내에서 제품 카테고리 또는 기타 유사한 그룹을 정의하고 관리하는 데 사용되며, 사용자나 " -"관리자가 카테고리의 이름, 설명 및 계층 구조를 지정하고 이미지, 태그 또는 우선순위와 같은 속성을 할당할 수 있도록 합니다." +"관련 항목을 계층 구조로 정리하고 그룹화할 카테고리 엔티티를 나타냅니다. 카테" +"고리는 다른 카테고리와 계층적 관계를 가질 수 있으며, 상위-하위 관계를 지원합" +"니다. 이 클래스에는 카테고리 관련 기능의 기반이 되는 메타데이터 및 시각적 표" +"현을 위한 필드가 포함되어 있습니다. 이 클래스는 일반적으로 애플리케이션 내에" +"서 제품 카테고리 또는 기타 유사한 그룹을 정의하고 관리하는 데 사용되며, 사용" +"자나 관리자가 카테고리의 이름, 설명 및 계층 구조를 지정하고 이미지, 태그 또" +"는 우선순위와 같은 속성을 할당할 수 있도록 합니다." -#: core/models.py:275 +#: engine/core/models.py:274 msgid "upload an image representing this category" msgstr "이 카테고리를 대표하는 이미지 업로드" -#: core/models.py:278 +#: engine/core/models.py:277 msgid "category image" msgstr "카테고리 이미지" -#: core/models.py:283 +#: engine/core/models.py:282 msgid "define a markup percentage for products in this category" msgstr "이 카테고리의 제품에 대한 마크업 비율을 정의합니다." -#: core/models.py:292 +#: engine/core/models.py:291 msgid "parent of this category to form a hierarchical structure" msgstr "계층 구조를 형성하는 이 카테고리의 상위 카테고리" -#: core/models.py:293 +#: engine/core/models.py:292 msgid "parent category" msgstr "상위 카테고리" -#: core/models.py:298 +#: engine/core/models.py:297 msgid "category name" msgstr "카테고리 이름" -#: core/models.py:299 +#: engine/core/models.py:298 msgid "provide a name for this category" msgstr "이 카테고리의 이름을 입력합니다." -#: core/models.py:306 +#: engine/core/models.py:305 msgid "add a detailed description for this category" msgstr "이 카테고리에 대한 자세한 설명 추가" -#: core/models.py:307 +#: engine/core/models.py:306 msgid "category description" msgstr "카테고리 설명" -#: core/models.py:327 +#: engine/core/models.py:326 msgid "tags that help describe or group this category" msgstr "이 카테고리를 설명하거나 그룹화하는 데 도움이 되는 태그" -#: core/models.py:334 core/models.py:489 +#: engine/core/models.py:333 engine/core/models.py:488 msgid "priority" msgstr "우선순위" -#: core/models.py:432 +#: engine/core/models.py:431 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 "" -"시스템에서 브랜드 객체를 나타냅니다. 이 클래스는 이름, 로고, 설명, 관련 카테고리, 고유 슬러그, 우선순위 등 브랜드와 관련된 정보 " -"및 속성을 처리합니다. 이를 통해 애플리케이션 내에서 브랜드 관련 데이터를 구성하고 표현할 수 있습니다." +"시스템에서 브랜드 객체를 나타냅니다. 이 클래스는 이름, 로고, 설명, 관련 카테" +"고리, 고유 슬러그, 우선순위 등 브랜드와 관련된 정보 및 속성을 처리합니다. 이" +"를 통해 애플리케이션 내에서 브랜드 관련 데이터를 구성하고 표현할 수 있습니다." -#: core/models.py:442 +#: engine/core/models.py:441 msgid "name of this brand" msgstr "이 브랜드 이름" -#: core/models.py:443 +#: engine/core/models.py:442 msgid "brand name" msgstr "브랜드 이름" -#: core/models.py:450 +#: engine/core/models.py:449 msgid "upload a logo representing this brand" msgstr "이 브랜드를 대표하는 로고 업로드" -#: core/models.py:452 +#: engine/core/models.py:451 msgid "brand small image" msgstr "브랜드 작은 이미지" -#: core/models.py:458 +#: engine/core/models.py:457 msgid "upload a big logo representing this brand" msgstr "이 브랜드를 대표하는 큰 로고 업로드" -#: core/models.py:460 +#: engine/core/models.py:459 msgid "brand big image" msgstr "브랜드 빅 이미지" -#: core/models.py:465 +#: engine/core/models.py:464 msgid "add a detailed description of the brand" msgstr "브랜드에 대한 자세한 설명 추가" -#: core/models.py:466 +#: engine/core/models.py:465 msgid "brand description" msgstr "브랜드 설명" -#: core/models.py:471 +#: engine/core/models.py:470 msgid "optional categories that this brand is associated with" msgstr "이 브랜드와 연관된 선택적 카테고리" -#: core/models.py:472 +#: engine/core/models.py:471 msgid "associated categories" msgstr "카테고리" -#: core/models.py:502 +#: engine/core/models.py:501 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 및 디지털 자산과 같은 재고 관" +"련 속성에 대한 세부 정보를 제공합니다. 다양한 공급업체에서 제공하는 제품을 추" +"적하고 평가할 수 있도록 하는 재고 관리 시스템의 일부입니다." -#: core/models.py:514 +#: engine/core/models.py:513 msgid "the vendor supplying this product stock" msgstr "이 제품 재고를 공급하는 공급업체" -#: core/models.py:515 +#: engine/core/models.py:514 msgid "associated vendor" msgstr "관련 공급업체" -#: core/models.py:519 +#: engine/core/models.py:518 msgid "final price to the customer after markups" msgstr "마크업 후 고객에게 제공되는 최종 가격" -#: core/models.py:520 +#: engine/core/models.py:519 msgid "selling price" msgstr "판매 가격" -#: core/models.py:525 +#: engine/core/models.py:524 msgid "the product associated with this stock entry" msgstr "이 주식 항목과 관련된 제품" -#: core/models.py:526 core/models.py:779 core/models.py:825 -#: core/models.py:1718 +#: engine/core/models.py:525 engine/core/models.py:790 +#: engine/core/models.py:836 engine/core/models.py:1778 msgid "associated product" msgstr "관련 제품" -#: core/models.py:533 +#: engine/core/models.py:532 msgid "the price paid to the vendor for this product" msgstr "이 제품에 대해 공급업체에 지불한 가격" -#: core/models.py:534 +#: engine/core/models.py:533 msgid "vendor purchase price" msgstr "공급업체 구매 가격" -#: core/models.py:538 +#: engine/core/models.py:537 msgid "available quantity of the product in stock" msgstr "재고가 있는 제품의 사용 가능한 수량" -#: core/models.py:539 +#: engine/core/models.py:538 msgid "quantity in stock" msgstr "재고 수량" -#: core/models.py:543 +#: engine/core/models.py:542 msgid "vendor-assigned SKU for identifying the product" msgstr "제품 식별을 위해 공급업체에서 할당하는 SKU" -#: core/models.py:544 +#: engine/core/models.py:543 msgid "vendor sku" msgstr "공급업체의 SKU" -#: core/models.py:550 +#: engine/core/models.py:549 msgid "digital file associated with this stock if applicable" msgstr "해당되는 경우 이 주식과 관련된 디지털 파일" -#: core/models.py:551 +#: engine/core/models.py:550 msgid "digital file" msgstr "디지털 파일" -#: core/models.py:560 +#: engine/core/models.py:553 +msgid "system attributes" +msgstr "시스템 속성" + +#: engine/core/models.py:560 msgid "stock entries" msgstr "재고 항목" -#: core/models.py:565 +#: engine/core/models.py:565 msgid "" "Represents a product with attributes such as category, brand, tags, digital " "status, name, description, part number, and slug. Provides related utility " @@ -1747,358 +1816,373 @@ msgid "" "properties to improve performance. It is used to define and manipulate " "product data and its associated information within an application." msgstr "" -"카테고리, 브랜드, 태그, 디지털 상태, 이름, 설명, 부품 번호, 슬러그 등의 속성을 가진 제품을 나타냅니다. 평점, 피드백 수, " -"가격, 수량, 총 주문 수 등을 검색할 수 있는 관련 유틸리티 속성을 제공합니다. 이커머스 또는 재고 관리를 처리하는 시스템에서 " -"사용하도록 설계되었습니다. 이 클래스는 관련 모델(예: 카테고리, 브랜드, 제품 태그)과 상호 작용하고 자주 액세스하는 속성에 대한 " -"캐싱을 관리하여 성능을 개선합니다. 애플리케이션 내에서 제품 데이터 및 관련 정보를 정의하고 조작하는 데 사용됩니다." +"카테고리, 브랜드, 태그, 디지털 상태, 이름, 설명, 부품 번호, 슬러그 등의 속성" +"을 가진 제품을 나타냅니다. 평점, 피드백 수, 가격, 수량, 총 주문 수 등을 검색" +"할 수 있는 관련 유틸리티 속성을 제공합니다. 이커머스 또는 재고 관리를 처리하" +"는 시스템에서 사용하도록 설계되었습니다. 이 클래스는 관련 모델(예: 카테고리, " +"브랜드, 제품 태그)과 상호 작용하고 자주 액세스하는 속성에 대한 캐싱을 관리하" +"여 성능을 개선합니다. 애플리케이션 내에서 제품 데이터 및 관련 정보를 정의하" +"고 조작하는 데 사용됩니다." -#: core/models.py:578 +#: engine/core/models.py:578 msgid "category this product belongs to" msgstr "이 제품이 속한 카테고리" -#: core/models.py:587 +#: engine/core/models.py:587 msgid "optionally associate this product with a brand" msgstr "선택 사항으로 이 제품을 브랜드와 연결" -#: core/models.py:593 +#: engine/core/models.py:593 msgid "tags that help describe or group this product" msgstr "이 제품을 설명하거나 그룹화하는 데 도움이 되는 태그" -#: core/models.py:598 +#: engine/core/models.py:598 msgid "indicates whether this product is digitally delivered" msgstr "이 제품이 디지털 방식으로 배송되는지 여부를 나타냅니다." -#: core/models.py:599 +#: engine/core/models.py:599 msgid "is product digital" msgstr "제품 디지털화 여부" -#: core/models.py:605 +#: engine/core/models.py:605 msgid "provide a clear identifying name for the product" msgstr "제품에 대한 명확한 식별 이름 제공" -#: core/models.py:606 +#: engine/core/models.py:606 msgid "product name" msgstr "제품 이름" -#: core/models.py:612 core/models.py:867 +#: engine/core/models.py:612 engine/core/models.py:878 msgid "add a detailed description of the product" msgstr "제품에 대한 자세한 설명 추가" -#: core/models.py:613 +#: engine/core/models.py:613 msgid "product description" msgstr "제품 설명" -#: core/models.py:620 +#: engine/core/models.py:620 msgid "part number for this product" msgstr "이 제품의 부품 번호" -#: core/models.py:621 +#: engine/core/models.py:621 msgid "part number" msgstr "부품 번호" -#: core/models.py:640 +#: engine/core/models.py:640 msgid "stock keeping unit for this product" msgstr "이 제품의 재고 보관 단위" -#: core/models.py:702 +#: engine/core/models.py:713 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 "" -"시스템의 속성을 나타냅니다. 이 클래스는 다른 엔티티와 연결할 수 있는 사용자 지정 가능한 데이터 조각인 속성을 정의하고 관리하는 데 " -"사용됩니다. 속성에는 연관된 카테고리, 그룹, 값 유형 및 이름이 있습니다. 이 모델은 문자열, 정수, 실수, 부울, 배열, 객체 등 " -"여러 유형의 값을 지원합니다. 이를 통해 동적이고 유연한 데이터 구조화가 가능합니다." +"시스템의 속성을 나타냅니다. 이 클래스는 다른 엔티티와 연결할 수 있는 사용자 " +"지정 가능한 데이터 조각인 속성을 정의하고 관리하는 데 사용됩니다. 속성에는 연" +"관된 카테고리, 그룹, 값 유형 및 이름이 있습니다. 이 모델은 문자열, 정수, 실" +"수, 부울, 배열, 객체 등 여러 유형의 값을 지원합니다. 이를 통해 동적이고 유연" +"한 데이터 구조화가 가능합니다." -#: core/models.py:715 +#: engine/core/models.py:726 msgid "group of this attribute" msgstr "이 속성의 그룹" -#: core/models.py:721 +#: engine/core/models.py:732 msgid "string" msgstr "문자열" -#: core/models.py:722 +#: engine/core/models.py:733 msgid "integer" msgstr "정수" -#: core/models.py:723 +#: engine/core/models.py:734 msgid "float" msgstr "Float" -#: core/models.py:724 +#: engine/core/models.py:735 msgid "boolean" msgstr "부울" -#: core/models.py:725 +#: engine/core/models.py:736 msgid "array" msgstr "배열" -#: core/models.py:726 +#: engine/core/models.py:737 msgid "object" msgstr "개체" -#: core/models.py:728 +#: engine/core/models.py:739 msgid "type of the attribute's value" msgstr "속성 값의 유형" -#: core/models.py:729 +#: engine/core/models.py:740 msgid "value type" msgstr "값 유형" -#: core/models.py:734 +#: engine/core/models.py:745 msgid "name of this attribute" msgstr "이 속성의 이름" -#: core/models.py:735 +#: engine/core/models.py:746 msgid "attribute's name" msgstr "속성 이름" -#: core/models.py:740 +#: engine/core/models.py:751 msgid "is filterable" msgstr "필터링 가능" -#: core/models.py:741 +#: engine/core/models.py:752 msgid "designates whether this attribute can be used for filtering or not" msgstr "는 이 속성을 필터링에 사용할 수 있는지 여부를 지정합니다." -#: core/models.py:753 core/models.py:771 -#: core/templates/digital_order_delivered_email.html:134 +#: engine/core/models.py:764 engine/core/models.py:782 +#: engine/core/templates/digital_order_delivered_email.html:134 msgid "attribute" msgstr "속성" -#: core/models.py:759 +#: engine/core/models.py:770 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 "" -"상품에 연결된 속성의 특정 값을 나타냅니다. '속성'을 고유한 '값'에 연결하여 제품 특성을 더 잘 구성하고 동적으로 표현할 수 " -"있습니다." +"상품에 연결된 속성의 특정 값을 나타냅니다. '속성'을 고유한 '값'에 연결하여 제" +"품 특성을 더 잘 구성하고 동적으로 표현할 수 있습니다." -#: core/models.py:770 +#: engine/core/models.py:781 msgid "attribute of this value" msgstr "이 값의 속성" -#: core/models.py:778 +#: engine/core/models.py:789 msgid "the specific product associated with this attribute's value" msgstr "이 속성 값과 연관된 특정 제품" -#: core/models.py:784 +#: engine/core/models.py:795 msgid "the specific value for this attribute" msgstr "이 속성의 구체적인 값은 다음과 같습니다." -#: core/models.py:797 +#: engine/core/models.py:808 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 "" -"시스템에서 제품과 연관된 제품 이미지를 나타냅니다. 이 클래스는 이미지 파일 업로드, 특정 제품과의 연결, 표시 순서 결정 등의 기능을 " -"포함하여 제품의 이미지를 관리하도록 설계되었습니다. 또한 이미지에 대한 대체 텍스트가 포함된 접근성 기능도 포함되어 있습니다." +"시스템에서 제품과 연관된 제품 이미지를 나타냅니다. 이 클래스는 이미지 파일 업" +"로드, 특정 제품과의 연결, 표시 순서 결정 등의 기능을 포함하여 제품의 이미지" +"를 관리하도록 설계되었습니다. 또한 이미지에 대한 대체 텍스트가 포함된 접근성 " +"기능도 포함되어 있습니다." -#: core/models.py:808 +#: engine/core/models.py:819 msgid "provide alternative text for the image for accessibility" msgstr "접근성을 위해 이미지에 대체 텍스트 제공" -#: core/models.py:809 +#: engine/core/models.py:820 msgid "image alt text" msgstr "이미지 대체 텍스트" -#: core/models.py:812 +#: engine/core/models.py:823 msgid "upload the image file for this product" msgstr "이 제품의 이미지 파일 업로드" -#: core/models.py:813 core/models.py:837 +#: engine/core/models.py:824 engine/core/models.py:848 msgid "product image" msgstr "제품 이미지" -#: core/models.py:818 +#: engine/core/models.py:829 msgid "determines the order in which images are displayed" msgstr "이미지가 표시되는 순서를 결정합니다." -#: core/models.py:819 +#: engine/core/models.py:830 msgid "display priority" msgstr "우선순위 표시" -#: core/models.py:824 +#: engine/core/models.py:835 msgid "the product that this image represents" msgstr "이 이미지가 나타내는 제품" -#: core/models.py:838 +#: engine/core/models.py:849 msgid "product images" msgstr "제품 이미지" -#: core/models.py:843 +#: engine/core/models.py:854 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 "" -"할인이 적용되는 제품에 대한 프로모션 캠페인을 나타냅니다. 이 클래스는 제품에 대해 백분율 기반 할인을 제공하는 프로모션 캠페인을 " -"정의하고 관리하는 데 사용됩니다. 이 클래스에는 할인율 설정, 프로모션에 대한 세부 정보 제공 및 해당 제품에 대한 링크를 위한 속성이 " -"포함되어 있습니다. 제품 카탈로그와 통합되어 캠페인에서 영향을 받는 품목을 결정합니다." +"할인이 적용되는 제품에 대한 프로모션 캠페인을 나타냅니다. 이 클래스는 제품에 " +"대해 백분율 기반 할인을 제공하는 프로모션 캠페인을 정의하고 관리하는 데 사용" +"됩니다. 이 클래스에는 할인율 설정, 프로모션에 대한 세부 정보 제공 및 해당 제" +"품에 대한 링크를 위한 속성이 포함되어 있습니다. 제품 카탈로그와 통합되어 캠페" +"인에서 영향을 받는 품목을 결정합니다." -#: core/models.py:855 +#: engine/core/models.py:866 msgid "percentage discount for the selected products" msgstr "선택한 제품에 대한 할인 비율" -#: core/models.py:856 +#: engine/core/models.py:867 msgid "discount percentage" msgstr "할인 비율" -#: core/models.py:861 +#: engine/core/models.py:872 msgid "provide a unique name for this promotion" msgstr "이 프로모션의 고유한 이름을 입력하세요." -#: core/models.py:862 +#: engine/core/models.py:873 msgid "promotion name" msgstr "프로모션 이름" -#: core/models.py:868 +#: engine/core/models.py:879 msgid "promotion description" msgstr "프로모션 설명" -#: core/models.py:873 +#: engine/core/models.py:884 msgid "select which products are included in this promotion" msgstr "이 프로모션에 포함되는 제품 선택" -#: core/models.py:874 +#: engine/core/models.py:885 msgid "included products" msgstr "포함된 제품" -#: core/models.py:878 +#: engine/core/models.py:889 msgid "promotion" msgstr "프로모션" -#: core/models.py:889 +#: engine/core/models.py:900 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 "" -"원하는 상품을 저장하고 관리하기 위한 사용자의 위시리스트를 나타냅니다. 이 클래스는 제품 컬렉션을 관리하는 기능을 제공하여 제품 추가 및" -" 제거와 같은 작업을 지원할 뿐만 아니라 여러 제품을 한 번에 추가 및 제거하는 작업도 지원합니다." +"원하는 상품을 저장하고 관리하기 위한 사용자의 위시리스트를 나타냅니다. 이 클" +"래스는 제품 컬렉션을 관리하는 기능을 제공하여 제품 추가 및 제거와 같은 작업" +"을 지원할 뿐만 아니라 여러 제품을 한 번에 추가 및 제거하는 작업도 지원합니다." -#: core/models.py:901 +#: engine/core/models.py:912 msgid "products that the user has marked as wanted" msgstr "사용자가 원하는 것으로 표시한 제품" -#: core/models.py:909 +#: engine/core/models.py:920 msgid "user who owns this wishlist" msgstr "이 위시리스트를 소유한 사용자" -#: core/models.py:910 +#: engine/core/models.py:921 msgid "wishlist owner" msgstr "위시리스트의 소유자" -#: core/models.py:918 +#: engine/core/models.py:929 msgid "wishlist" msgstr "위시리스트" -#: core/models.py:960 +#: engine/core/models.py:971 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 "" -"상품에 연결된 다큐멘터리 레코드를 나타냅니다. 이 클래스는 파일 업로드 및 메타데이터를 포함하여 특정 제품과 관련된 다큐멘터리에 대한 " -"정보를 저장하는 데 사용됩니다. 여기에는 다큐멘터리 파일의 파일 유형과 저장 경로를 처리하는 메서드와 프로퍼티가 포함되어 있습니다. 특정" -" 믹스인의 기능을 확장하고 추가 사용자 정의 기능을 제공합니다." +"상품에 연결된 다큐멘터리 레코드를 나타냅니다. 이 클래스는 파일 업로드 및 메타" +"데이터를 포함하여 특정 제품과 관련된 다큐멘터리에 대한 정보를 저장하는 데 사" +"용됩니다. 여기에는 다큐멘터리 파일의 파일 유형과 저장 경로를 처리하는 메서드" +"와 프로퍼티가 포함되어 있습니다. 특정 믹스인의 기능을 확장하고 추가 사용자 정" +"의 기능을 제공합니다." -#: core/models.py:973 +#: engine/core/models.py:984 msgid "documentary" msgstr "다큐멘터리" -#: core/models.py:974 +#: engine/core/models.py:985 msgid "documentaries" msgstr "다큐멘터리" -#: core/models.py:984 +#: engine/core/models.py:995 msgid "unresolved" msgstr "해결되지 않음" -#: core/models.py:989 +#: engine/core/models.py:1000 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 응답을 저장할 수 있습니다. " +"또한 이 클래스를 사용하면 주소를 사용자와 연결하여 개인화된 데이터 처리를 용" +"이하게 할 수 있습니다." -#: core/models.py:1004 +#: engine/core/models.py:1015 msgid "address line for the customer" msgstr "고객 주소 라인" -#: core/models.py:1005 +#: engine/core/models.py:1016 msgid "address line" msgstr "주소 라인" -#: core/models.py:1007 +#: engine/core/models.py:1018 msgid "street" msgstr "거리" -#: core/models.py:1008 +#: engine/core/models.py:1019 msgid "district" msgstr "지구" -#: core/models.py:1009 +#: engine/core/models.py:1020 msgid "city" msgstr "도시" -#: core/models.py:1010 +#: engine/core/models.py:1021 msgid "region" msgstr "지역" -#: core/models.py:1011 +#: engine/core/models.py:1022 msgid "postal code" msgstr "우편 번호" -#: core/models.py:1012 +#: engine/core/models.py:1023 msgid "country" msgstr "국가" -#: core/models.py:1019 +#: engine/core/models.py:1030 msgid "geolocation point: (longitude, latitude)" msgstr "지리적 위치 포인트(경도, 위도)" -#: core/models.py:1022 +#: engine/core/models.py:1033 msgid "full JSON response from geocoder for this address" msgstr "이 주소에 대한 지오코더의 전체 JSON 응답" -#: core/models.py:1027 +#: engine/core/models.py:1038 msgid "stored JSON response from the geocoding service" msgstr "지오코딩 서비스의 저장된 JSON 응답" -#: core/models.py:1035 +#: engine/core/models.py:1046 msgid "address" msgstr "주소" -#: core/models.py:1036 +#: engine/core/models.py:1047 msgid "addresses" msgstr "주소" -#: core/models.py:1048 +#: engine/core/models.py:1059 msgid "" "Represents a promotional code that can be used for discounts, managing its " "validity, type of discount, and application. The PromoCode class stores " @@ -2107,240 +2191,290 @@ 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 "" -"할인에 사용할 수 있는 프로모션 코드를 나타내며, 유효 기간, 할인 유형 및 적용을 관리합니다. 프로모션 코드 클래스는 고유 식별자, " -"할인 속성(금액 또는 백분율), 유효 기간, 관련 사용자(있는 경우), 사용 상태 등 프로모션 코드에 대한 세부 정보를 저장합니다. " -"여기에는 제약 조건이 충족되는지 확인하면서 프로모션 코드의 유효성을 검사하고 주문에 적용하는 기능이 포함되어 있습니다." +"할인에 사용할 수 있는 프로모션 코드를 나타내며, 유효 기간, 할인 유형 및 적용" +"을 관리합니다. 프로모션 코드 클래스는 고유 식별자, 할인 속성(금액 또는 백분" +"율), 유효 기간, 관련 사용자(있는 경우), 사용 상태 등 프로모션 코드에 대한 세" +"부 정보를 저장합니다. 여기에는 제약 조건이 충족되는지 확인하면서 프로모션 코" +"드의 유효성을 검사하고 주문에 적용하는 기능이 포함되어 있습니다." -#: core/models.py:1062 +#: engine/core/models.py:1073 msgid "unique code used by a user to redeem a discount" msgstr "사용자가 할인을 받기 위해 사용하는 고유 코드" -#: core/models.py:1063 +#: engine/core/models.py:1074 msgid "promo code identifier" msgstr "프로모션 코드 식별자" -#: core/models.py:1070 +#: engine/core/models.py:1081 msgid "fixed discount amount applied if percent is not used" msgstr "퍼센트를 사용하지 않을 경우 고정 할인 금액 적용" -#: core/models.py:1071 +#: engine/core/models.py:1082 msgid "fixed discount amount" msgstr "고정 할인 금액" -#: core/models.py:1077 +#: engine/core/models.py:1088 msgid "percentage discount applied if fixed amount is not used" msgstr "고정 금액 미사용 시 적용되는 할인 비율" -#: core/models.py:1078 +#: engine/core/models.py:1089 msgid "percentage discount" msgstr "백분율 할인" -#: core/models.py:1083 +#: engine/core/models.py:1094 msgid "timestamp when the promocode expires" msgstr "프로모션 코드 만료 시 타임스탬프" -#: core/models.py:1084 +#: engine/core/models.py:1095 msgid "end validity time" msgstr "유효 기간 종료 시간" -#: core/models.py:1089 +#: engine/core/models.py:1100 msgid "timestamp from which this promocode is valid" msgstr "이 프로모코드의 타임스탬프가 유효한 시점" -#: core/models.py:1090 +#: engine/core/models.py:1101 msgid "start validity time" msgstr "유효 기간 시작 시간" -#: core/models.py:1095 +#: engine/core/models.py:1106 msgid "timestamp when the promocode was used, blank if not used yet" msgstr "프로모코드가 사용된 타임스탬프, 아직 사용되지 않은 경우 비워둡니다." -#: core/models.py:1096 +#: engine/core/models.py:1107 msgid "usage timestamp" msgstr "사용 타임스탬프" -#: core/models.py:1101 +#: engine/core/models.py:1112 msgid "user assigned to this promocode if applicable" msgstr "해당되는 경우 이 프로모코드에 할당된 사용자" -#: core/models.py:1102 +#: engine/core/models.py:1113 msgid "assigned user" msgstr "할당된 사용자" -#: core/models.py:1109 +#: engine/core/models.py:1120 msgid "promo code" msgstr "프로모션 코드" -#: core/models.py:1110 +#: engine/core/models.py:1121 msgid "promo codes" msgstr "프로모션 코드" -#: core/models.py:1125 +#: engine/core/models.py:1136 msgid "" "only one type of discount should be defined (amount or percent), but not " "both or neither." -msgstr "할인 유형(금액 또는 백분율)은 한 가지 유형만 정의해야 하며, 두 가지 모두 또는 둘 다 정의해서는 안 됩니다." +msgstr "" +"할인 유형(금액 또는 백분율)은 한 가지 유형만 정의해야 하며, 두 가지 모두 또" +"는 둘 다 정의해서는 안 됩니다." -#: core/models.py:1146 +#: engine/core/models.py:1157 msgid "promocode already used" msgstr "프로모코드가 이미 사용되었습니다." -#: core/models.py:1162 +#: engine/core/models.py:1173 #, python-brace-format msgid "invalid discount type for promocode {self.uuid}" msgstr "프로모션 코드 {self.uuid}의 할인 유형이 잘못되었습니다!" -#: core/models.py:1171 +#: engine/core/models.py:1182 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 "" -"사용자가 진행한 주문을 나타냅니다. 이 클래스는 청구 및 배송 정보, 상태, 연결된 사용자, 알림 및 관련 작업과 같은 다양한 속성을 " -"포함하여 애플리케이션 내에서 주문을 모델링합니다. 주문에는 연결된 제품, 프로모션 적용, 주소 설정, 배송 또는 청구 세부 정보 " -"업데이트가 가능합니다. 또한 주문 수명 주기에서 제품을 관리하는 기능도 지원합니다." +"사용자가 진행한 주문을 나타냅니다. 이 클래스는 청구 및 배송 정보, 상태, 연결" +"된 사용자, 알림 및 관련 작업과 같은 다양한 속성을 포함하여 애플리케이션 내에" +"서 주문을 모델링합니다. 주문에는 연결된 제품, 프로모션 적용, 주소 설정, 배송 " +"또는 청구 세부 정보 업데이트가 가능합니다. 또한 주문 수명 주기에서 제품을 관" +"리하는 기능도 지원합니다." -#: core/models.py:1188 +#: engine/core/models.py:1199 msgid "the billing address used for this order" msgstr "이 주문에 사용된 청구 주소" -#: core/models.py:1196 +#: engine/core/models.py:1207 msgid "optional promo code applied to this order" msgstr "이 주문에 적용된 프로모션 코드(선택 사항)" -#: core/models.py:1197 +#: engine/core/models.py:1208 msgid "applied promo code" msgstr "프로모션 코드 적용" -#: core/models.py:1205 +#: engine/core/models.py:1216 msgid "the shipping address used for this order" msgstr "이 주문에 사용된 배송지 주소" -#: core/models.py:1206 +#: engine/core/models.py:1217 msgid "shipping address" msgstr "배송 주소" -#: core/models.py:1212 +#: engine/core/models.py:1223 msgid "current status of the order in its lifecycle" msgstr "라이프사이클 내 주문의 현재 상태" -#: core/models.py:1213 +#: engine/core/models.py:1224 msgid "order status" msgstr "주문 상태" -#: core/models.py:1218 core/models.py:1695 +#: engine/core/models.py:1229 engine/core/models.py:1755 msgid "json structure of notifications to display to users" -msgstr "사용자에게 표시할 알림의 JSON 구조, 관리자 UI에서는 테이블 보기가 사용됩니다." +msgstr "" +"사용자에게 표시할 알림의 JSON 구조, 관리자 UI에서는 테이블 보기가 사용됩니다." -#: core/models.py:1224 +#: engine/core/models.py:1235 msgid "json representation of order attributes for this order" msgstr "이 주문에 대한 주문 속성의 JSON 표현" -#: core/models.py:1230 +#: engine/core/models.py:1241 msgid "the user who placed the order" msgstr "주문한 사용자" -#: core/models.py:1231 +#: engine/core/models.py:1242 msgid "user" msgstr "사용자" -#: core/models.py:1237 +#: engine/core/models.py:1248 msgid "the timestamp when the order was finalized" msgstr "주문이 완료된 타임스탬프" -#: core/models.py:1238 +#: engine/core/models.py:1249 msgid "buy time" msgstr "시간 확보" -#: core/models.py:1245 +#: engine/core/models.py:1256 msgid "a human-readable identifier for the order" msgstr "사람이 읽을 수 있는 주문 식별자" -#: core/models.py:1246 +#: engine/core/models.py:1257 msgid "human readable id" msgstr "사람이 읽을 수 있는 ID" -#: core/models.py:1252 +#: engine/core/models.py:1263 msgid "order" msgstr "주문" -#: core/models.py:1294 +#: engine/core/models.py:1305 msgid "a user must have only one pending order at a time" msgstr "사용자는 한 번에 하나의 대기 주문만 보유해야 합니다!" -#: core/models.py:1326 +#: engine/core/models.py:1337 msgid "you cannot add products to an order that is not a pending one" msgstr "보류 중인 주문이 아닌 주문에는 제품을 추가할 수 없습니다." -#: core/models.py:1331 +#: engine/core/models.py:1342 msgid "you cannot add inactive products to order" msgstr "주문에 비활성 제품을 추가할 수 없습니다." -#: core/models.py:1348 +#: engine/core/models.py:1359 msgid "you cannot add more products than available in stock" msgstr "재고가 있는 제품보다 많은 제품을 추가할 수 없습니다." -#: core/models.py:1370 core/models.py:1395 core/models.py:1403 +#: engine/core/models.py:1381 engine/core/models.py:1406 +#: engine/core/models.py:1414 msgid "you cannot remove products from an order that is not a pending one" msgstr "보류 중인 주문이 아닌 주문에서는 제품을 제거할 수 없습니다." -#: core/models.py:1391 +#: engine/core/models.py:1402 #, python-brace-format msgid "{name} does not exist with query <{query}>" msgstr "쿼리 <{query}>에 {name}가 존재하지 않습니다!" -#: core/models.py:1423 +#: engine/core/models.py:1434 msgid "promocode does not exist" msgstr "프로모코드가 존재하지 않습니다." -#: core/models.py:1429 +#: engine/core/models.py:1440 msgid "you can only buy physical products with shipping address specified" msgstr "배송 주소가 지정된 실제 제품만 구매할 수 있습니다!" -#: core/models.py:1448 +#: engine/core/models.py:1459 msgid "address does not exist" msgstr "주소가 존재하지 않습니다." -#: core/models.py:1469 core/models.py:1538 +#: engine/core/models.py:1480 engine/core/models.py:1549 msgid "you can not buy at this moment, please try again in a few minutes" msgstr "지금은 구매할 수 없습니다. 몇 분 후에 다시 시도해 주세요." -#: core/models.py:1472 core/models.py:1534 +#: engine/core/models.py:1483 engine/core/models.py:1545 msgid "invalid force value" msgstr "잘못된 힘 값" -#: core/models.py:1478 core/models.py:1541 +#: engine/core/models.py:1489 engine/core/models.py:1552 msgid "you cannot purchase an empty order!" msgstr "빈 주문은 구매할 수 없습니다!" -#: core/models.py:1497 +#: engine/core/models.py:1508 msgid "you cannot buy an order without a user" msgstr "사용자 없이는 주문을 구매할 수 없습니다!" -#: core/models.py:1511 +#: engine/core/models.py:1522 msgid "a user without a balance cannot buy with balance" msgstr "잔액이 없는 사용자는 잔액으로 구매할 수 없습니다!" -#: core/models.py:1516 +#: engine/core/models.py:1527 msgid "insufficient funds to complete the order" msgstr "주문을 완료하기에 자금이 부족합니다." -#: core/models.py:1550 +#: engine/core/models.py:1561 msgid "" "you cannot buy without registration, please provide the following " "information: customer name, customer email, customer phone number" -msgstr "등록하지 않으면 구매할 수 없으므로 고객 이름, 고객 이메일, 고객 전화 번호 등의 정보를 제공하세요." +msgstr "" +"등록하지 않으면 구매할 수 없으므로 고객 이름, 고객 이메일, 고객 전화 번호 등" +"의 정보를 제공하세요." -#: core/models.py:1559 +#: engine/core/models.py:1570 #, 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}" +"로!" -#: core/models.py:1668 +#: engine/core/models.py:1685 +msgid "" +"Manages user feedback for products. This class is designed to capture and " +"store user feedback for specific products that they have purchased. It " +"contains attributes to store user comments, a reference to the related " +"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:1697 +msgid "user-provided comments about their experience with the product" +msgstr "제품 사용 경험에 대한 사용자 제공 의견" + +#: engine/core/models.py:1698 +msgid "feedback comments" +msgstr "피드백 댓글" + +#: engine/core/models.py:1705 +msgid "references the specific product in an order that this feedback is about" +msgstr "이 피드백에 대한 순서대로 특정 제품을 참조합니다." + +#: engine/core/models.py:1706 +msgid "related order product" +msgstr "관련 주문 제품" + +#: engine/core/models.py:1711 +msgid "user-assigned rating for the product" +msgstr "제품에 대한 사용자 지정 평점" + +#: engine/core/models.py:1712 +msgid "product rating" +msgstr "제품 평가" + +#: engine/core/models.py:1728 msgid "" "Represents products associated with orders and their attributes. The " "OrderProduct model maintains information about a product that is part of an " @@ -2352,277 +2486,246 @@ msgid "" "download URL for digital products. The model integrates with the Order and " "Product models and stores a reference to them." msgstr "" -"주문과 관련된 제품 및 해당 속성을 나타냅니다. 주문 제품 모델은 구매 가격, 수량, 제품 속성 및 상태 등의 세부 정보를 포함하여 " -"주문의 일부인 제품에 대한 정보를 유지 관리합니다. 사용자 및 관리자에 대한 알림을 관리하고 제품 잔액 반환 또는 피드백 추가와 같은 " -"작업을 처리합니다. 또한 이 모델은 총 가격 계산이나 디지털 제품의 다운로드 URL 생성 등 비즈니스 로직을 지원하는 메서드와 속성을 " -"제공합니다. 이 모델은 주문 및 제품 모델과 통합되며 해당 모델에 대한 참조를 저장합니다." +"주문과 관련된 제품 및 해당 속성을 나타냅니다. 주문 제품 모델은 구매 가격, 수" +"량, 제품 속성 및 상태 등의 세부 정보를 포함하여 주문의 일부인 제품에 대한 정" +"보를 유지 관리합니다. 사용자 및 관리자에 대한 알림을 관리하고 제품 잔액 반환 " +"또는 피드백 추가와 같은 작업을 처리합니다. 또한 이 모델은 총 가격 계산이나 디" +"지털 제품의 다운로드 URL 생성 등 비즈니스 로직을 지원하는 메서드와 속성을 제" +"공합니다. 이 모델은 주문 및 제품 모델과 통합되며 해당 모델에 대한 참조를 저장" +"합니다." -#: core/models.py:1683 +#: engine/core/models.py:1743 msgid "the price paid by the customer for this product at purchase time" msgstr "구매 시점에 고객이 이 제품에 대해 지불한 가격입니다." -#: core/models.py:1684 +#: engine/core/models.py:1744 msgid "purchase price at order time" msgstr "주문 시점의 구매 가격" -#: core/models.py:1689 +#: engine/core/models.py:1749 msgid "internal comments for admins about this ordered product" msgstr "주문한 제품에 대한 관리자용 내부 댓글" -#: core/models.py:1690 +#: engine/core/models.py:1750 msgid "internal comments" msgstr "내부 의견" -#: core/models.py:1696 +#: engine/core/models.py:1756 msgid "user notifications" msgstr "사용자 알림" -#: core/models.py:1701 +#: engine/core/models.py:1761 msgid "json representation of this item's attributes" msgstr "이 항목의 속성에 대한 JSON 표현" -#: core/models.py:1702 +#: engine/core/models.py:1762 msgid "ordered product attributes" msgstr "주문한 제품 속성" -#: core/models.py:1707 +#: engine/core/models.py:1767 msgid "reference to the parent order that contains this product" msgstr "이 제품이 포함된 상위 주문 참조" -#: core/models.py:1708 +#: engine/core/models.py:1768 msgid "parent order" msgstr "상위 주문" -#: core/models.py:1717 +#: engine/core/models.py:1777 msgid "the specific product associated with this order line" msgstr "이 주문 라인과 연결된 특정 제품" -#: core/models.py:1724 +#: engine/core/models.py:1784 msgid "quantity of this specific product in the order" msgstr "이 특정 제품의 주문 수량" -#: core/models.py:1725 +#: engine/core/models.py:1785 msgid "product quantity" msgstr "제품 수량" -#: core/models.py:1732 +#: engine/core/models.py:1792 msgid "current status of this product in the order" msgstr "이 제품의 현재 상태 순서" -#: core/models.py:1733 +#: engine/core/models.py:1793 msgid "product line status" msgstr "제품 라인 상태" -#: core/models.py:1798 +#: engine/core/models.py:1858 msgid "order product must have an order" msgstr "주문제품에는 연결된 주문이 있어야 합니다!" -#: core/models.py:1800 +#: engine/core/models.py:1860 #, python-brace-format msgid "wrong action specified for feedback: {action}" msgstr "피드백에 지정된 작업이 잘못되었습니다: {action}!" -#: core/models.py:1814 +#: engine/core/models.py:1874 msgid "you cannot feedback an order which is not received" msgstr "받지 않은 주문에 대해서는 피드백을 제공할 수 없습니다." -#: core/models.py:1820 +#: engine/core/models.py:1880 msgid "name" msgstr "이름" -#: core/models.py:1821 +#: engine/core/models.py:1881 msgid "URL of the integration" msgstr "통합 URL" -#: core/models.py:1822 +#: engine/core/models.py:1882 msgid "authentication credentials" msgstr "인증 자격 증명" -#: core/models.py:1844 +#: engine/core/models.py:1904 msgid "you can only have one default CRM provider" msgstr "기본 CRM 공급업체는 하나만 사용할 수 있습니다." -#: core/models.py:1854 +#: engine/core/models.py:1914 msgid "CRM" msgstr "CRM" -#: core/models.py:1855 +#: engine/core/models.py:1915 msgid "CRMs" msgstr "CRM" -#: core/models.py:1867 +#: engine/core/models.py:1927 msgid "order CRM link" msgstr "주문의 CRM 링크" -#: core/models.py:1868 +#: engine/core/models.py:1928 msgid "orders CRM links" msgstr "주문의 CRM 링크" -#: core/models.py:1873 +#: engine/core/models.py:1933 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을 생성하는 메서드가 포함되어 있습니다." -#: core/models.py:1887 +#: engine/core/models.py:1947 msgid "download" msgstr "다운로드" -#: core/models.py:1888 +#: engine/core/models.py:1948 msgid "downloads" msgstr "다운로드" -#: core/models.py:1902 -msgid "" -"Manages user feedback for products. This class is designed to capture and " -"store user feedback for specific products that they have purchased. It " -"contains attributes to store user comments, a reference to the related " -"product in the order, and a user-assigned rating. The class uses database " -"fields to effectively model and manage feedback data." -msgstr "" -"제품에 대한 사용자 피드백을 관리합니다. 이 클래스는 사용자가 구매한 특정 제품에 대한 사용자 피드백을 캡처하고 저장하도록 " -"설계되었습니다. 여기에는 사용자 댓글, 주문에서 관련 제품에 대한 참조 및 사용자가 지정한 등급을 저장하는 속성이 포함되어 있습니다. 이" -" 클래스는 데이터베이스 필드를 사용하여 피드백 데이터를 효과적으로 모델링하고 관리합니다." - -#: core/models.py:1914 -msgid "user-provided comments about their experience with the product" -msgstr "제품 사용 경험에 대한 사용자 제공 의견" - -#: core/models.py:1915 -msgid "feedback comments" -msgstr "피드백 댓글" - -#: core/models.py:1922 -msgid "" -"references the specific product in an order that this feedback is about" -msgstr "이 피드백에 대한 순서대로 특정 제품을 참조합니다." - -#: core/models.py:1923 -msgid "related order product" -msgstr "관련 주문 제품" - -#: core/models.py:1928 -msgid "user-assigned rating for the product" -msgstr "제품에 대한 사용자 지정 평점" - -#: core/models.py:1929 -msgid "product rating" -msgstr "제품 평가" - -#: core/serializers/utility.py:89 +#: engine/core/serializers/utility.py:89 msgid "" "you must provide a comment, rating, and order product uuid to add feedback." msgstr "피드백을 추가하려면 댓글, 평점, 주문 제품 고유번호를 제공해야 합니다." -#: core/signals.py:73 -msgid "error during promocode creation: {e!s}" -msgstr "프로모코드 생성 중 오류가 발생했습니다: {e!s}" - -#: core/sitemaps.py:25 +#: engine/core/sitemaps.py:25 msgid "Home" msgstr "홈" -#: core/sitemaps.py:30 +#: engine/core/sitemaps.py:30 msgid "Contact Us" msgstr "문의하기" -#: core/sitemaps.py:35 +#: engine/core/sitemaps.py:35 msgid "About Us" msgstr "회사 소개" -#: core/templates/digital_order_created_email.html:7 -#: core/templates/digital_order_created_email.html:100 -#: core/templates/digital_order_delivered_email.html:6 -#: core/templates/shipped_order_created_email.html:7 -#: core/templates/shipped_order_created_email.html:99 -#: core/templates/shipped_order_delivered_email.html:7 -#: core/templates/shipped_order_delivered_email.html:99 +#: engine/core/templates/digital_order_created_email.html:7 +#: engine/core/templates/digital_order_created_email.html:100 +#: engine/core/templates/digital_order_delivered_email.html:6 +#: engine/core/templates/shipped_order_created_email.html:7 +#: engine/core/templates/shipped_order_created_email.html:99 +#: engine/core/templates/shipped_order_delivered_email.html:7 +#: engine/core/templates/shipped_order_delivered_email.html:99 msgid "order confirmation" msgstr "주문 확인" -#: core/templates/digital_order_created_email.html:95 -#: core/templates/digital_order_delivered_email.html:94 -#: core/templates/promocode_granted_email.html:94 -#: core/templates/shipped_order_created_email.html:94 -#: core/templates/shipped_order_delivered_email.html:94 +#: engine/core/templates/digital_order_created_email.html:95 +#: engine/core/templates/digital_order_delivered_email.html:94 +#: engine/core/templates/promocode_granted_email.html:94 +#: engine/core/templates/shipped_order_created_email.html:94 +#: engine/core/templates/shipped_order_delivered_email.html:94 msgid "logo" msgstr "로고" -#: core/templates/digital_order_created_email.html:101 -#: core/templates/shipped_order_created_email.html:100 -#: core/templates/shipped_order_delivered_email.html:100 +#: engine/core/templates/digital_order_created_email.html:101 +#: engine/core/templates/shipped_order_created_email.html:100 +#: engine/core/templates/shipped_order_delivered_email.html:100 #, python-format msgid "hello %(order.user.first_name)s," msgstr "안녕하세요 %(order.user.first_name)s," -#: core/templates/digital_order_created_email.html:102 +#: engine/core/templates/digital_order_created_email.html:102 #, 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! 주문하신 상품이 입고되었음을 알려드립" +"니다. 주문 세부 정보는 아래와 같습니다:" -#: core/templates/digital_order_created_email.html:112 -#: core/templates/digital_order_delivered_email.html:110 -#: core/templates/shipped_order_created_email.html:110 -#: core/templates/shipped_order_delivered_email.html:110 +#: engine/core/templates/digital_order_created_email.html:112 +#: engine/core/templates/digital_order_delivered_email.html:110 +#: engine/core/templates/shipped_order_created_email.html:110 +#: engine/core/templates/shipped_order_delivered_email.html:110 msgid "total" msgstr "합계" -#: core/templates/digital_order_created_email.html:125 -#: core/templates/digital_order_delivered_email.html:157 -#: core/templates/shipped_order_created_email.html:127 -#: core/templates/shipped_order_delivered_email.html:127 +#: engine/core/templates/digital_order_created_email.html:125 +#: engine/core/templates/digital_order_delivered_email.html:157 +#: engine/core/templates/shipped_order_created_email.html:127 +#: engine/core/templates/shipped_order_delivered_email.html:127 msgid "total price" msgstr "총 가격" -#: core/templates/digital_order_created_email.html:131 -#: core/templates/shipped_order_created_email.html:140 -#: core/templates/shipped_order_delivered_email.html:140 +#: engine/core/templates/digital_order_created_email.html:131 +#: engine/core/templates/shipped_order_created_email.html:140 +#: engine/core/templates/shipped_order_delivered_email.html:140 #, python-format 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로 지원팀에 문의하세요." -#: core/templates/digital_order_created_email.html:133 +#: engine/core/templates/digital_order_created_email.html:133 #, python-format msgid "best regards,
the %(config.PROJECT_NAME)s team" msgstr "감사합니다,
%(config.PROJECT_NAME)s 팀" -#: core/templates/digital_order_created_email.html:139 -#: core/templates/digital_order_delivered_email.html:171 -#: core/templates/promocode_granted_email.html:114 +#: engine/core/templates/digital_order_created_email.html:139 +#: engine/core/templates/digital_order_delivered_email.html:171 +#: engine/core/templates/promocode_granted_email.html:114 msgid "all rights reserved" msgstr "모든 권리 보유" -#: core/templates/digital_order_delivered_email.html:99 +#: engine/core/templates/digital_order_delivered_email.html:99 msgid "order delivered" msgstr "주문 배송" -#: core/templates/digital_order_delivered_email.html:100 -#: core/templates/promocode_granted_email.html:100 +#: engine/core/templates/digital_order_delivered_email.html:100 +#: engine/core/templates/promocode_granted_email.html:100 #, python-format msgid "hello %(user_first_name)s," msgstr "안녕하세요 %(user_first_name)s," -#: core/templates/digital_order_delivered_email.html:101 +#: engine/core/templates/digital_order_delivered_email.html:101 #, python-format 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! 주문 세부 정보는 아래와 같" +"습니다:" -#: core/templates/digital_order_delivered_email.html:128 +#: engine/core/templates/digital_order_delivered_email.html:128 msgid "" "additional\n" " information" @@ -2630,39 +2733,39 @@ msgstr "" "추가\n" " 정보" -#: core/templates/digital_order_delivered_email.html:137 -#: core/templates/json_table_widget.html:6 +#: engine/core/templates/digital_order_delivered_email.html:137 +#: engine/core/templates/json_table_widget.html:6 msgid "value" msgstr "가치" -#: core/templates/digital_order_delivered_email.html:163 -#: core/templates/promocode_granted_email.html:106 +#: engine/core/templates/digital_order_delivered_email.html:163 +#: engine/core/templates/promocode_granted_email.html:106 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" " %(contact_email)s." msgstr "궁금한 점이 있으면 언제든지 %(contact_email)s로 지원팀에 문의하세요." -#: core/templates/digital_order_delivered_email.html:165 -#: core/templates/promocode_granted_email.html:108 +#: engine/core/templates/digital_order_delivered_email.html:165 +#: engine/core/templates/promocode_granted_email.html:108 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "감사합니다,
%(project_name)s 팀" -#: core/templates/json_table_widget.html:5 +#: engine/core/templates/json_table_widget.html:5 msgid "key" msgstr "키" -#: core/templates/json_table_widget.html:40 +#: engine/core/templates/json_table_widget.html:40 msgid "Add Row" msgstr "행 추가" -#: core/templates/promocode_granted_email.html:6 -#: core/templates/promocode_granted_email.html:99 +#: engine/core/templates/promocode_granted_email.html:6 +#: engine/core/templates/promocode_granted_email.html:99 msgid "promocode granted" msgstr "프로모코드 부여" -#: core/templates/promocode_granted_email.html:101 +#: engine/core/templates/promocode_granted_email.html:101 msgid "" "Thank you for staying with us! We have granted you with a promocode\n" " for " @@ -2670,31 +2773,34 @@ msgstr "" "저희와 함께 해주셔서 감사합니다! 프로모션 코드가 부여되었습니다.\n" " 에 대한" -#: core/templates/shipped_order_created_email.html:101 -#: core/templates/shipped_order_delivered_email.html:101 +#: 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 "" +"주문해 주셔서 감사합니다! 구매를 확인하게 되어 기쁩니다. 주문 세부 정보는 아" +"래와 같습니다:" -#: core/templates/shipped_order_created_email.html:123 -#: core/templates/shipped_order_delivered_email.html:123 +#: engine/core/templates/shipped_order_created_email.html:123 +#: engine/core/templates/shipped_order_delivered_email.html:123 msgid "shipping price" msgstr "배송 가격" -#: core/templates/shipped_order_created_email.html:133 -#: core/templates/shipped_order_delivered_email.html:133 +#: engine/core/templates/shipped_order_created_email.html:133 +#: engine/core/templates/shipped_order_delivered_email.html:133 msgid "your order will be delivered to the following address:" msgstr "주문하신 상품은 다음 주소로 배송됩니다:" -#: core/templates/shipped_order_created_email.html:142 -#: core/templates/shipped_order_delivered_email.html:142 +#: engine/core/templates/shipped_order_created_email.html:142 +#: engine/core/templates/shipped_order_delivered_email.html:142 #, python-format msgid "best regards,
The %(config.PROJECT_NAME)s team" msgstr "감사합니다,
%(config.PROJECT_NAME)s 팀" -#: core/templates/shipped_order_created_email.html:147 -#: core/templates/shipped_order_delivered_email.html:147 +#: engine/core/templates/shipped_order_created_email.html:147 +#: engine/core/templates/shipped_order_delivered_email.html:147 msgid "" "all rights\n" " reserved" @@ -2702,146 +2808,160 @@ msgstr "" "모든 권리\n" " 예약됨" -#: core/utils/caching.py:44 +#: engine/core/utils/caching.py:44 msgid "both data and timeout are required" msgstr "데이터와 시간 초과가 모두 필요합니다." -#: core/utils/caching.py:46 +#: engine/core/utils/caching.py:46 msgid "invalid timeout value, it must be between 0 and 216000 seconds" msgstr "잘못된 시간 초과 값, 0~216000초 사이여야 합니다." -#: core/utils/emailing.py:27 +#: engine/core/utils/emailing.py:27 #, python-brace-format msgid "{config.PROJECT_NAME} | contact us initiated" msgstr "{config.PROJECT_NAME} | 문의 시작됨" -#: core/utils/emailing.py:73 +#: engine/core/utils/emailing.py:73 #, python-brace-format msgid "{config.PROJECT_NAME} | order confirmation" msgstr "{config.PROJECT_NAME} | 주문 확인" -#: core/utils/emailing.py:105 +#: engine/core/utils/emailing.py:105 #, python-brace-format msgid "{config.PROJECT_NAME} | order delivered" msgstr "{config.PROJECT_NAME} | 주문 배송됨" -#: core/utils/emailing.py:188 +#: engine/core/utils/emailing.py:188 #, python-brace-format msgid "{config.PROJECT_NAME} | promocode granted" msgstr "{config.PROJECT_NAME} | 프로모코드 부여됨" -#: core/utils/messages.py:3 +#: engine/core/utils/messages.py:3 msgid "you do not have permission to perform this action." msgstr "이 작업을 수행할 수 있는 권한이 없습니다." -#: core/utils/nominatim.py:8 +#: engine/core/utils/nominatim.py:8 msgid "NOMINATIM_URL must be configured." msgstr "NOMINATIM_URL 파라미터를 설정해야 합니다!" -#: core/validators.py:16 +#: engine/core/validators.py:16 #, 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} 픽셀을 초과하지 않아야 합니다!" -#: core/views.py:72 +#: engine/core/views.py:71 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에 적합" +"한 콘텐츠 유형 헤더가 포함되어 있는지 확인합니다." -#: core/views.py:87 +#: engine/core/views.py:86 msgid "" "Handles the detailed view response for a sitemap. This function processes " "the request, fetches the appropriate sitemap detail response, and sets the " "Content-Type header for XML." msgstr "" -"사이트맵에 대한 상세 보기 응답을 처리합니다. 이 함수는 요청을 처리하고 적절한 사이트맵 상세 보기 응답을 가져온 다음 XML의 " -"Content-Type 헤더를 설정합니다." +"사이트맵에 대한 상세 보기 응답을 처리합니다. 이 함수는 요청을 처리하고 적절" +"한 사이트맵 상세 보기 응답을 가져온 다음 XML의 Content-Type 헤더를 설정합니" +"다." -#: core/views.py:116 +#: engine/core/views.py:115 msgid "" "Returns a list of supported languages and their corresponding information." msgstr "지원되는 언어 목록과 해당 정보를 반환합니다." -#: core/views.py:148 +#: engine/core/views.py:147 msgid "Returns the parameters of the website as a JSON object." msgstr "웹사이트의 매개변수를 JSON 객체로 반환합니다." -#: core/views.py:167 +#: engine/core/views.py:166 msgid "" "Handles cache operations such as reading and setting cache data with a " "specified key and timeout." -msgstr "지정된 키와 시간 초과로 캐시 데이터를 읽고 설정하는 등의 캐시 작업을 처리합니다." +msgstr "" +"지정된 키와 시간 초과로 캐시 데이터를 읽고 설정하는 등의 캐시 작업을 처리합니" +"다." -#: core/views.py:194 +#: engine/core/views.py:193 msgid "Handles `contact us` form submissions." msgstr "'문의하기' 양식 제출을 처리합니다." -#: core/views.py:215 +#: engine/core/views.py:214 msgid "" "Handles requests for processing and validating URLs from incoming POST " "requests." msgstr "들어오는 POST 요청의 URL 처리 및 유효성 검사 요청을 처리합니다." -#: core/views.py:255 +#: engine/core/views.py:254 msgid "Handles global search queries." msgstr "글로벌 검색 쿼리를 처리합니다." -#: core/views.py:270 +#: engine/core/views.py:269 msgid "Handles the logic of buying as a business without registration." msgstr "등록하지 않고 비즈니스로 구매하는 로직을 처리합니다." -#: core/views.py:306 +#: engine/core/views.py:305 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 오류가 발생하여 리소스를 사용할 수 " +"없음을 나타냅니다." -#: core/views.py:316 +#: engine/core/views.py:315 msgid "order_product_uuid is required" msgstr "주문_제품_UUID는 필수입니다." -#: core/views.py:322 +#: engine/core/views.py:321 msgid "you can only download the digital asset once" msgstr "디지털 자산은 한 번만 다운로드할 수 있습니다." -#: core/views.py:325 +#: engine/core/views.py:324 msgid "the order must be paid before downloading the digital asset" msgstr "디지털 자산을 다운로드하기 전에 주문을 결제해야 합니다." -#: core/views.py:331 +#: engine/core/views.py:330 msgid "the order product does not have a product" msgstr "주문 제품에 제품이 없습니다." -#: core/views.py:369 +#: engine/core/views.py:368 msgid "favicon not found" msgstr "파비콘을 찾을 수 없습니다." -#: core/views.py:374 +#: engine/core/views.py:373 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 오류가 발생하여 리소스를 사용할 " +"수 없음을 나타냅니다." -#: core/views.py:386 +#: engine/core/views.py:385 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` 함수를 사용합니다." -#: core/views.py:399 +#: engine/core/views.py:398 msgid "Returns current version of the eVibes. " msgstr "현재 버전의 eVibes를 반환합니다." -#: core/viewsets.py:137 +#: engine/core/viewsets.py:137 msgid "" "Defines a viewset for managing Evibes-related operations. The EvibesViewSet " "class inherits from ModelViewSet and provides functionality for handling " @@ -2849,23 +2969,24 @@ msgid "" "serializer classes based on the current action, customizable permissions, " "and rendering formats." msgstr "" -"Evibes 관련 작업을 관리하기 위한 뷰셋을 정의합니다. EvibesViewSet 클래스는 ModelViewSet에서 상속되며 " -"Evibes 엔티티에 대한 액션 및 연산을 처리하는 기능을 제공합니다. 여기에는 현재 작업을 기반으로 하는 동적 직렬화기 클래스, 사용자" -" 지정 가능한 권한 및 렌더링 형식에 대한 지원이 포함됩니다." +"Evibes 관련 작업을 관리하기 위한 뷰셋을 정의합니다. EvibesViewSet 클래스는 " +"ModelViewSet에서 상속되며 Evibes 엔티티에 대한 액션 및 연산을 처리하는 기능" +"을 제공합니다. 여기에는 현재 작업을 기반으로 하는 동적 직렬화기 클래스, 사용" +"자 지정 가능한 권한 및 렌더링 형식에 대한 지원이 포함됩니다." -#: core/viewsets.py:157 +#: engine/core/viewsets.py:157 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 데이터에 대한 요청 및 응답을 처리하는 표준" +"화된 방법을 제공합니다." -#: core/viewsets.py:176 +#: engine/core/viewsets.py:176 msgid "" "Handles operations related to Attribute objects within the application. " "Provides a set of API endpoints to interact with Attribute data. This class " @@ -2874,23 +2995,26 @@ msgid "" "specific fields or retrieving detailed versus simplified information " "depending on the request." msgstr "" -"애플리케이션 내에서 속성 개체와 관련된 작업을 처리합니다. 속성 데이터와 상호 작용할 수 있는 API 엔드포인트 세트를 제공합니다. 이 " -"클래스는 속성 개체의 쿼리, 필터링 및 직렬화를 관리하여 특정 필드별로 필터링하거나 요청에 따라 단순화된 정보와 상세한 정보를 검색하는 " -"등 반환되는 데이터를 동적으로 제어할 수 있도록 합니다." +"애플리케이션 내에서 속성 개체와 관련된 작업을 처리합니다. 속성 데이터와 상호 " +"작용할 수 있는 API 엔드포인트 세트를 제공합니다. 이 클래스는 속성 개체의 쿼" +"리, 필터링 및 직렬화를 관리하여 특정 필드별로 필터링하거나 요청에 따라 단순화" +"된 정보와 상세한 정보를 검색하는 등 반환되는 데이터를 동적으로 제어할 수 있도" +"록 합니다." -#: core/viewsets.py:195 +#: engine/core/viewsets.py:195 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를 통해 제공됩니다." -#: core/viewsets.py:214 +#: engine/core/viewsets.py:214 msgid "" "Manages views for Category-related operations. The CategoryViewSet class is " "responsible for handling operations related to the Category model in the " @@ -2898,21 +3022,23 @@ msgid "" "The viewset also enforces permissions to ensure that only authorized users " "can access specific data." msgstr "" -"카테고리 관련 작업에 대한 보기를 관리합니다. CategoryViewSet 클래스는 시스템에서 카테고리 모델과 관련된 작업을 처리하는 " -"역할을 담당합니다. 카테고리 데이터 검색, 필터링 및 직렬화를 지원합니다. 또한 이 뷰 집합은 권한이 부여된 사용자만 특정 데이터에 " -"액세스할 수 있도록 권한을 적용합니다." +"카테고리 관련 작업에 대한 보기를 관리합니다. CategoryViewSet 클래스는 시스템" +"에서 카테고리 모델과 관련된 작업을 처리하는 역할을 담당합니다. 카테고리 데이" +"터 검색, 필터링 및 직렬화를 지원합니다. 또한 이 뷰 집합은 권한이 부여된 사용" +"자만 특정 데이터에 액세스할 수 있도록 권한을 적용합니다." -#: core/viewsets.py:326 +#: engine/core/viewsets.py:326 msgid "" "Represents a viewset for managing Brand instances. This class provides " "functionality for querying, filtering, and serializing Brand objects. It " "uses Django's ViewSet framework to simplify the implementation of API " "endpoints for Brand objects." msgstr "" -"브랜드 인스턴스를 관리하기 위한 뷰셋을 나타냅니다. 이 클래스는 브랜드 객체를 쿼리, 필터링 및 직렬화하기 위한 기능을 제공합니다. 이 " -"클래스는 장고의 뷰셋 프레임워크를 사용하여 브랜드 객체에 대한 API 엔드포인트의 구현을 간소화합니다." +"브랜드 인스턴스를 관리하기 위한 뷰셋을 나타냅니다. 이 클래스는 브랜드 객체를 " +"쿼리, 필터링 및 직렬화하기 위한 기능을 제공합니다. 이 클래스는 장고의 뷰셋 프" +"레임워크를 사용하여 브랜드 객체에 대한 API 엔드포인트의 구현을 간소화합니다." -#: core/viewsets.py:438 +#: engine/core/viewsets.py:438 msgid "" "Manages operations related to the `Product` model in the system. This class " "provides a viewset for managing products, including their filtering, " @@ -2922,12 +3048,13 @@ msgid "" "product details, applying permissions, and accessing related feedback of a " "product." msgstr "" -"시스템에서 `Product` 모델과 관련된 작업을 관리합니다. 이 클래스는 필터링, 직렬화 및 특정 인스턴스에 대한 작업을 포함하여 " -"제품을 관리하기 위한 뷰셋을 제공합니다. 이 클래스는 공통 기능을 사용하기 위해 `EvibesViewSet`에서 확장되며 RESTful " -"API 작업을 위해 Django REST 프레임워크와 통합됩니다. 제품 세부 정보 검색, 권한 적용, 제품의 관련 피드백에 액세스하는 " -"메서드가 포함되어 있습니다." +"시스템에서 `Product` 모델과 관련된 작업을 관리합니다. 이 클래스는 필터링, 직" +"렬화 및 특정 인스턴스에 대한 작업을 포함하여 제품을 관리하기 위한 뷰셋을 제공" +"합니다. 이 클래스는 공통 기능을 사용하기 위해 `EvibesViewSet`에서 확장되며 " +"RESTful API 작업을 위해 Django REST 프레임워크와 통합됩니다. 제품 세부 정보 " +"검색, 권한 적용, 제품의 관련 피드백에 액세스하는 메서드가 포함되어 있습니다." -#: core/viewsets.py:568 +#: engine/core/viewsets.py:568 msgid "" "Represents a viewset for managing Vendor objects. This viewset allows " "fetching, filtering, and serializing Vendor data. It defines the queryset, " @@ -2935,84 +3062,94 @@ 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 프레임워크를 통해 공급업체 관련 리소스에 대한 간소화된 액세스를 " +"제공하는 것입니다." -#: core/viewsets.py:588 +#: engine/core/viewsets.py:588 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 `EvibesViewSet` and makes " "use of Django's filtering system for querying data." msgstr "" -"피드백 개체를 처리하는 뷰 집합의 표현입니다. 이 클래스는 세부 정보 나열, 필터링 및 검색을 포함하여 피드백 개체에 관련된 작업을 " -"관리합니다. 이 뷰 세트의 목적은 다양한 작업에 대해 서로 다른 직렬화기를 제공하고 접근 가능한 피드백 객체에 대한 권한 기반 처리를 " -"구현하는 것입니다. 이 클래스는 기본 `EvibesViewSet`을 확장하고 데이터 쿼리를 위해 Django의 필터링 시스템을 " -"사용합니다." +"피드백 개체를 처리하는 뷰 집합의 표현입니다. 이 클래스는 세부 정보 나열, 필터" +"링 및 검색을 포함하여 피드백 개체에 관련된 작업을 관리합니다. 이 뷰 세트의 목" +"적은 다양한 작업에 대해 서로 다른 직렬화기를 제공하고 접근 가능한 피드백 객체" +"에 대한 권한 기반 처리를 구현하는 것입니다. 이 클래스는 기본 `EvibesViewSet`" +"을 확장하고 데이터 쿼리를 위해 Django의 필터링 시스템을 사용합니다." -#: core/viewsets.py:615 +#: engine/core/viewsets.py:615 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 "" -"주문 및 관련 작업을 관리하기 위한 뷰셋입니다. 이 클래스는 주문 객체를 검색, 수정, 관리하는 기능을 제공합니다. 여기에는 제품 추가 " -"또는 제거, 등록 및 미등록 사용자에 대한 구매 수행, 현재 인증된 사용자의 보류 중인 주문 검색 등 주문 작업을 처리하기 위한 다양한 " -"엔드포인트가 포함되어 있습니다. 뷰셋은 수행되는 특정 작업에 따라 여러 직렬화기를 사용하며 주문 데이터와 상호 작용하는 동안 그에 따라 " -"권한을 적용합니다." +"주문 및 관련 작업을 관리하기 위한 뷰셋입니다. 이 클래스는 주문 객체를 검색, " +"수정, 관리하는 기능을 제공합니다. 여기에는 제품 추가 또는 제거, 등록 및 미등" +"록 사용자에 대한 구매 수행, 현재 인증된 사용자의 보류 중인 주문 검색 등 주문 " +"작업을 처리하기 위한 다양한 엔드포인트가 포함되어 있습니다. 뷰셋은 수행되는 " +"특정 작업에 따라 여러 직렬화기를 사용하며 주문 데이터와 상호 작용하는 동안 그" +"에 따라 권한을 적용합니다." -#: core/viewsets.py:813 +#: engine/core/viewsets.py:813 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 작업 및 사용자 지정 작업을 수행할 수 있습니다. 여기에" +"는 요청된 작업을 기반으로 필터링, 권한 확인 및 직렬화기 전환이 포함됩니다. 또" +"한 주문 제품 인스턴스에 대한 피드백 처리를 위한 세부 작업도 제공합니다." -#: core/viewsets.py:867 +#: engine/core/viewsets.py:867 msgid "Manages operations related to Product images in the application. " msgstr "애플리케이션에서 제품 이미지와 관련된 작업을 관리합니다." -#: core/viewsets.py:880 +#: engine/core/viewsets.py:880 msgid "" "Manages the retrieval and handling of PromoCode instances through various " "API actions." -msgstr "다양한 API 작업을 통해 프로모션 코드 인스턴스의 검색 및 처리를 관리합니다." +msgstr "" +"다양한 API 작업을 통해 프로모션 코드 인스턴스의 검색 및 처리를 관리합니다." -#: core/viewsets.py:902 +#: engine/core/viewsets.py:902 msgid "Represents a view set for managing promotions. " msgstr "프로모션을 관리하기 위한 보기 세트를 나타냅니다." -#: core/viewsets.py:915 +#: engine/core/viewsets.py:915 msgid "Handles operations related to Stock data in the system." msgstr "시스템에서 주식 데이터와 관련된 작업을 처리합니다." -#: core/viewsets.py:929 +#: engine/core/viewsets.py:929 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 "" -"위시리스트 작업을 관리하기 위한 뷰셋입니다. 위시리스트뷰셋은 사용자의 위시리스트와 상호 작용할 수 있는 엔드포인트를 제공하여 위시리스트 " -"내의 제품을 검색, 수정 및 사용자 지정할 수 있도록 합니다. 이 뷰셋은 위시리스트 제품에 대한 추가, 제거 및 대량 작업과 같은 기능을" -" 용이하게 합니다. 명시적인 권한이 부여되지 않는 한 사용자가 자신의 위시리스트만 관리할 수 있도록 권한 검사가 통합되어 있습니다." +"위시리스트 작업을 관리하기 위한 뷰셋입니다. 위시리스트뷰셋은 사용자의 위시리" +"스트와 상호 작용할 수 있는 엔드포인트를 제공하여 위시리스트 내의 제품을 검" +"색, 수정 및 사용자 지정할 수 있도록 합니다. 이 뷰셋은 위시리스트 제품에 대한 " +"추가, 제거 및 대량 작업과 같은 기능을 용이하게 합니다. 명시적인 권한이 부여되" +"지 않는 한 사용자가 자신의 위시리스트만 관리할 수 있도록 권한 검사가 통합되" +"어 있습니다." -#: core/viewsets.py:1044 +#: engine/core/viewsets.py:1044 msgid "" "This class provides viewset functionality for managing `Address` objects. " "The AddressViewSet class enables CRUD operations, filtering, and custom " @@ -3020,16 +3157,17 @@ msgid "" "different HTTP methods, serializer overrides, and permission handling based " "on the request context." msgstr "" -"이 클래스는 `주소` 객체를 관리하기 위한 뷰셋 기능을 제공합니다. 주소 뷰셋 클래스는 주소 엔티티와 관련된 CRUD 작업, 필터링 및 " -"사용자 정의 작업을 가능하게 합니다. 여기에는 다양한 HTTP 메서드, 직렬화기 재정의, 요청 컨텍스트에 따른 권한 처리를 위한 특수 " -"동작이 포함되어 있습니다." +"이 클래스는 `주소` 객체를 관리하기 위한 뷰셋 기능을 제공합니다. 주소 뷰셋 클" +"래스는 주소 엔티티와 관련된 CRUD 작업, 필터링 및 사용자 정의 작업을 가능하게 " +"합니다. 여기에는 다양한 HTTP 메서드, 직렬화기 재정의, 요청 컨텍스트에 따른 권" +"한 처리를 위한 특수 동작이 포함되어 있습니다." -#: core/viewsets.py:1111 +#: engine/core/viewsets.py:1111 #, python-brace-format msgid "Geocoding error: {e}" msgstr "지오코딩 오류입니다: {e}" -#: core/viewsets.py:1119 +#: engine/core/viewsets.py:1119 msgid "" "Handles operations related to Product Tags within the application. This " "class provides functionality for retrieving, filtering, and serializing " @@ -3037,6 +3175,7 @@ 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 new file mode 100644 index 00000000..e69b8e3d Binary files /dev/null and b/engine/core/locale/nl_NL/LC_MESSAGES/django.mo differ diff --git a/core/locale/nl_NL/LC_MESSAGES/django.po b/engine/core/locale/nl_NL/LC_MESSAGES/django.po similarity index 69% rename from core/locale/nl_NL/LC_MESSAGES/django.po rename to engine/core/locale/nl_NL/LC_MESSAGES/django.po index d607cb10..b9708797 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,211 +13,214 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: core/abstract.py:12 +#: engine/core/abstract.py:12 msgid "unique id" msgstr "Uniek ID" -#: core/abstract.py:13 +#: engine/core/abstract.py:13 msgid "unique id is used to surely identify any database object" msgstr "Unieke ID wordt gebruikt om elk databaseobject te identificeren" -#: core/abstract.py:20 +#: engine/core/abstract.py:20 msgid "is active" msgstr "Is actief" -#: core/abstract.py:21 +#: engine/core/abstract.py:21 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" -#: core/abstract.py:23 core/choices.py:18 +#: engine/core/abstract.py:23 engine/core/choices.py:18 msgid "created" msgstr "Gemaakt" -#: core/abstract.py:23 +#: engine/core/abstract.py:23 msgid "when the object first appeared on the database" msgstr "Wanneer het object voor het eerst in de database verscheen" -#: core/abstract.py:24 +#: engine/core/abstract.py:24 msgid "modified" msgstr "Gewijzigd" -#: core/abstract.py:24 +#: engine/core/abstract.py:24 msgid "when the object was last modified" msgstr "Wanneer het object voor het laatst bewerkt is" -#: core/admin.py:68 +#: engine/core/admin.py:68 msgid "translations" msgstr "Vertalingen" -#: core/admin.py:72 +#: engine/core/admin.py:72 msgid "general" msgstr "Algemeen" -#: core/admin.py:74 +#: engine/core/admin.py:74 msgid "relations" msgstr "Relaties" -#: core/admin.py:76 +#: engine/core/admin.py:76 msgid "additional info" msgstr "extra informatie" -#: core/admin.py:94 +#: engine/core/admin.py:94 msgid "metadata" msgstr "Metagegevens" -#: core/admin.py:101 +#: engine/core/admin.py:101 msgid "timestamps" msgstr "Tijdstempels" -#: core/admin.py:116 +#: engine/core/admin.py:116 #, python-format msgid "activate selected %(verbose_name_plural)s" msgstr "Activeer geselecteerde %(verbose_name_plural)s" -#: core/admin.py:121 +#: engine/core/admin.py:121 msgid "selected items have been activated." msgstr "Geselecteerde items zijn geactiveerd!" -#: core/admin.py:127 +#: engine/core/admin.py:127 #, python-format msgid "deactivate selected %(verbose_name_plural)s" msgstr "Deactiveer geselecteerd %(verbose_name_plural)s" -#: core/admin.py:132 +#: engine/core/admin.py:132 msgid "selected items have been deactivated." msgstr "Geselecteerde items zijn gedeactiveerd!" -#: core/admin.py:144 core/graphene/object_types.py:582 -#: core/graphene/object_types.py:589 core/models.py:783 core/models.py:791 +#: engine/core/admin.py:144 engine/core/graphene/object_types.py:586 +#: engine/core/graphene/object_types.py:593 engine/core/models.py:794 +#: engine/core/models.py:802 msgid "attribute value" msgstr "Attribuut Waarde" -#: core/admin.py:145 core/graphene/object_types.py:75 core/models.py:792 +#: engine/core/admin.py:145 engine/core/graphene/object_types.py:75 +#: engine/core/models.py:803 msgid "attribute values" msgstr "Attribuutwaarden" -#: core/admin.py:156 +#: engine/core/admin.py:156 msgid "image" msgstr "Afbeelding" -#: core/admin.py:157 core/graphene/object_types.py:474 +#: engine/core/admin.py:157 engine/core/graphene/object_types.py:474 msgid "images" msgstr "Afbeeldingen" -#: core/admin.py:168 core/models.py:559 +#: engine/core/admin.py:169 engine/core/models.py:559 msgid "stock" msgstr "Voorraad" -#: core/admin.py:169 core/graphene/object_types.py:636 +#: engine/core/admin.py:170 engine/core/graphene/object_types.py:640 msgid "stocks" msgstr "Aandelen" -#: core/admin.py:182 core/models.py:1744 +#: engine/core/admin.py:183 engine/core/models.py:1804 msgid "order product" msgstr "Product bestellen" -#: core/admin.py:183 core/graphene/object_types.py:389 core/models.py:1745 +#: engine/core/admin.py:184 engine/core/graphene/object_types.py:389 +#: engine/core/models.py:1805 msgid "order products" msgstr "Producten bestellen" -#: core/admin.py:196 core/admin.py:197 +#: engine/core/admin.py:197 engine/core/admin.py:198 msgid "children" msgstr "Kinderen" -#: core/admin.py:965 +#: engine/core/admin.py:969 msgid "Config" msgstr "Config" -#: core/apps.py:8 +#: engine/core/apps.py:8 msgid "core" msgstr "Kern" -#: core/choices.py:4 core/choices.py:20 +#: engine/core/choices.py:4 engine/core/choices.py:20 msgid "finished" msgstr "Afgewerkt" -#: core/choices.py:5 core/choices.py:19 +#: engine/core/choices.py:5 engine/core/choices.py:19 msgid "delivering" msgstr "leveren" -#: core/choices.py:6 +#: engine/core/choices.py:6 msgid "delivered" msgstr "Geleverd" -#: core/choices.py:7 +#: engine/core/choices.py:7 msgid "canceled" msgstr "Geannuleerd" -#: core/choices.py:8 core/choices.py:16 core/choices.py:24 +#: engine/core/choices.py:8 engine/core/choices.py:16 engine/core/choices.py:24 msgid "failed" msgstr "Mislukt" -#: core/choices.py:9 core/choices.py:15 +#: engine/core/choices.py:9 engine/core/choices.py:15 msgid "pending" msgstr "In afwachting van" -#: core/choices.py:10 +#: engine/core/choices.py:10 msgid "accepted" msgstr "Geaccepteerd" -#: core/choices.py:11 +#: engine/core/choices.py:11 msgid "money returned" msgstr "Geld terug" -#: core/choices.py:17 +#: engine/core/choices.py:17 msgid "payment" msgstr "Betaling" -#: core/choices.py:21 +#: engine/core/choices.py:21 msgid "momental" msgstr "Momental" -#: core/choices.py:24 +#: engine/core/choices.py:24 msgid "successful" msgstr "Succesvol" -#: core/docs/drf/views.py:17 core/graphene/mutations.py:38 +#: engine/core/docs/drf/views.py:17 engine/core/graphene/mutations.py:38 msgid "cache I/O" msgstr "Cache I/O" -#: core/docs/drf/views.py:19 +#: engine/core/docs/drf/views.py:19 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 "" "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." -#: core/docs/drf/views.py:32 +#: engine/core/docs/drf/views.py:32 msgid "get a list of supported languages" msgstr "Een lijst met ondersteunde talen opvragen" -#: core/docs/drf/views.py:41 +#: engine/core/docs/drf/views.py:41 msgid "get application's exposable parameters" msgstr "Verkrijg de blootstelbare parameters van de applicatie" -#: core/docs/drf/views.py:48 +#: engine/core/docs/drf/views.py:48 msgid "send a message to the support team" msgstr "Stuur een bericht naar het ondersteuningsteam" -#: core/docs/drf/views.py:59 core/graphene/mutations.py:58 +#: engine/core/docs/drf/views.py:59 engine/core/graphene/mutations.py:58 msgid "request a CORSed URL" msgstr "Vraag een CORSed URL op. Alleen https toegestaan." -#: core/docs/drf/views.py:85 +#: engine/core/docs/drf/views.py:85 msgid "global search endpoint to query across project's tables" msgstr "" "Eindpunt voor globaal zoeken om in alle tabellen van het project te zoeken" -#: core/docs/drf/views.py:91 +#: engine/core/docs/drf/views.py:91 msgid "purchase an order as a business" msgstr "Een bestelling kopen als bedrijf" -#: core/docs/drf/views.py:98 +#: engine/core/docs/drf/views.py:98 msgid "" "purchase an order as a business, using the provided `products` with " "`product_uuid` and `attributes`." @@ -225,221 +228,222 @@ msgstr "" "Koop een bestelling in als een bedrijf, met behulp van de meegeleverde " "`producten` met `product_uuid` en `attributen`." -#: core/docs/drf/viewsets.py:58 +#: engine/core/docs/drf/viewsets.py:58 msgid "list all attribute groups (simple view)" msgstr "Alle attribuutgroepen weergeven (eenvoudige weergave)" -#: core/docs/drf/viewsets.py:62 +#: engine/core/docs/drf/viewsets.py:62 msgid "retrieve a single attribute group (detailed view)" msgstr "Een enkele groep kenmerken ophalen (gedetailleerde weergave)" -#: core/docs/drf/viewsets.py:66 +#: engine/core/docs/drf/viewsets.py:66 msgid "create an attribute group" msgstr "Een attribuutgroep maken" -#: core/docs/drf/viewsets.py:70 +#: engine/core/docs/drf/viewsets.py:70 msgid "delete an attribute group" msgstr "Een attribuutgroep verwijderen" -#: core/docs/drf/viewsets.py:74 +#: engine/core/docs/drf/viewsets.py:74 msgid "rewrite an existing attribute group saving non-editables" msgstr "" "Een bestaande attribuutgroep herschrijven en niet-wijzigbare attributen " "opslaan" -#: core/docs/drf/viewsets.py:78 -msgid "" -"rewrite some fields of an existing attribute group saving non-editables" +#: engine/core/docs/drf/viewsets.py:78 +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" -#: core/docs/drf/viewsets.py:85 +#: engine/core/docs/drf/viewsets.py:85 msgid "list all attributes (simple view)" msgstr "Alle attributen weergeven (eenvoudige weergave)" -#: core/docs/drf/viewsets.py:89 +#: engine/core/docs/drf/viewsets.py:89 msgid "retrieve a single attribute (detailed view)" msgstr "Een enkel kenmerk ophalen (gedetailleerde weergave)" -#: core/docs/drf/viewsets.py:93 +#: engine/core/docs/drf/viewsets.py:93 msgid "create an attribute" msgstr "Een attribuut maken" -#: core/docs/drf/viewsets.py:97 +#: engine/core/docs/drf/viewsets.py:97 msgid "delete an attribute" msgstr "Een attribuut verwijderen" -#: core/docs/drf/viewsets.py:101 +#: engine/core/docs/drf/viewsets.py:101 msgid "rewrite an existing attribute saving non-editables" msgstr "" "Een bestaand attribuut herschrijven en niet-wijzigbare attributen opslaan" -#: core/docs/drf/viewsets.py:105 +#: engine/core/docs/drf/viewsets.py:105 msgid "rewrite some fields of an existing attribute saving non-editables" msgstr "" "Herschrijf sommige velden van een bestaand attribuut door niet-wijzigbare " "velden op te slaan" -#: core/docs/drf/viewsets.py:112 +#: engine/core/docs/drf/viewsets.py:112 msgid "list all attribute values (simple view)" msgstr "Alle attribuutwaarden weergeven (eenvoudige weergave)" -#: core/docs/drf/viewsets.py:116 +#: engine/core/docs/drf/viewsets.py:116 msgid "retrieve a single attribute value (detailed view)" msgstr "Een waarde voor een enkel kenmerk ophalen (gedetailleerde weergave)" -#: core/docs/drf/viewsets.py:120 +#: engine/core/docs/drf/viewsets.py:120 msgid "create an attribute value" msgstr "Een attribuutwaarde maken" -#: core/docs/drf/viewsets.py:124 +#: engine/core/docs/drf/viewsets.py:124 msgid "delete an attribute value" msgstr "Een attribuutwaarde verwijderen" -#: core/docs/drf/viewsets.py:128 +#: engine/core/docs/drf/viewsets.py:128 msgid "rewrite an existing attribute value saving non-editables" msgstr "" "Een bestaande attribuutwaarde herschrijven waarbij niet-wijzigbare " "attributen worden opgeslagen" -#: core/docs/drf/viewsets.py:132 -msgid "" -"rewrite some fields of an existing attribute value saving non-editables" +#: engine/core/docs/drf/viewsets.py:132 +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" -#: core/docs/drf/viewsets.py:139 core/docs/drf/viewsets.py:140 +#: engine/core/docs/drf/viewsets.py:139 engine/core/docs/drf/viewsets.py:140 msgid "list all categories (simple view)" msgstr "Alle categorieën weergeven (eenvoudige weergave)" -#: core/docs/drf/viewsets.py:144 core/docs/drf/viewsets.py:145 +#: engine/core/docs/drf/viewsets.py:144 engine/core/docs/drf/viewsets.py:145 msgid "retrieve a single category (detailed view)" msgstr "Een enkele categorie ophalen (gedetailleerde weergave)" -#: core/docs/drf/viewsets.py:149 core/docs/drf/viewsets.py:150 +#: engine/core/docs/drf/viewsets.py:150 engine/core/docs/drf/viewsets.py:183 +msgid "Category UUID or slug" +msgstr "Categorie UUID of slug" + +#: engine/core/docs/drf/viewsets.py:157 engine/core/docs/drf/viewsets.py:158 msgid "create a category" msgstr "Een categorie maken" -#: core/docs/drf/viewsets.py:154 core/docs/drf/viewsets.py:155 +#: engine/core/docs/drf/viewsets.py:162 engine/core/docs/drf/viewsets.py:163 msgid "delete a category" msgstr "Een categorie verwijderen" -#: core/docs/drf/viewsets.py:159 core/docs/drf/viewsets.py:160 +#: engine/core/docs/drf/viewsets.py:167 engine/core/docs/drf/viewsets.py:168 msgid "rewrite an existing category saving non-editables" msgstr "Een bestaande categorie herschrijven en niet-wijzigbare items opslaan" -#: core/docs/drf/viewsets.py:164 core/docs/drf/viewsets.py:165 +#: engine/core/docs/drf/viewsets.py:172 engine/core/docs/drf/viewsets.py:173 msgid "rewrite some fields of an existing category saving non-editables" msgstr "" "Herschrijf sommige velden van een bestaande categorie door niet-wijzigbare " "velden op te slaan" -#: core/docs/drf/viewsets.py:169 core/docs/drf/viewsets.py:501 -#: core/graphene/object_types.py:117 core/graphene/object_types.py:207 -#: core/graphene/object_types.py:482 +#: engine/core/docs/drf/viewsets.py:177 engine/core/docs/drf/viewsets.py:517 +#: engine/core/graphene/object_types.py:117 +#: engine/core/graphene/object_types.py:207 +#: engine/core/graphene/object_types.py:482 msgid "SEO Meta snapshot" msgstr "SEO Meta momentopname" -#: core/docs/drf/viewsets.py:170 +#: engine/core/docs/drf/viewsets.py:178 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" -#: core/docs/drf/viewsets.py:175 -msgid "Category UUID or slug" -msgstr "Categorie UUID of slug" - -#: core/docs/drf/viewsets.py:188 +#: engine/core/docs/drf/viewsets.py:196 msgid "list all orders (simple view)" msgstr "Alle categorieën weergeven (eenvoudige weergave)" -#: core/docs/drf/viewsets.py:189 +#: engine/core/docs/drf/viewsets.py:197 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." -#: core/docs/drf/viewsets.py:195 +#: engine/core/docs/drf/viewsets.py:203 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" -#: core/docs/drf/viewsets.py:202 +#: engine/core/docs/drf/viewsets.py:210 msgid "Filter orders with buy_time >= this ISO 8601 datetime" msgstr "Filter orders met buy_time >= deze ISO 8601 datetime" -#: core/docs/drf/viewsets.py:207 +#: engine/core/docs/drf/viewsets.py:215 msgid "Filter orders with buy_time <= this ISO 8601 datetime" msgstr "Filter orders met buy_time <= deze ISO 8601 datetime" -#: core/docs/drf/viewsets.py:212 +#: engine/core/docs/drf/viewsets.py:220 msgid "Filter by exact order UUID" msgstr "Filter op exacte volgorde UUID" -#: core/docs/drf/viewsets.py:217 +#: engine/core/docs/drf/viewsets.py:225 msgid "Filter by exact human-readable order ID" msgstr "Filter op exacte, door mensen leesbare bestel-ID" -#: core/docs/drf/viewsets.py:222 +#: engine/core/docs/drf/viewsets.py:230 msgid "Filter by user's email (case-insensitive exact match)" msgstr "" "Filter op e-mail van gebruiker (hoofdlettergevoelige exacte overeenkomst)" -#: core/docs/drf/viewsets.py:227 +#: engine/core/docs/drf/viewsets.py:235 msgid "Filter by user's UUID" msgstr "Filter op UUID van gebruiker" -#: core/docs/drf/viewsets.py:232 +#: engine/core/docs/drf/viewsets.py:240 msgid "Filter by order status (case-insensitive substring match)" msgstr "Filter op bestelstatus (hoofdlettergevoelige substringmatch)" -#: core/docs/drf/viewsets.py:238 +#: engine/core/docs/drf/viewsets.py:246 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')." -#: core/docs/drf/viewsets.py:247 +#: engine/core/docs/drf/viewsets.py:255 msgid "retrieve a single order (detailed view)" msgstr "Een enkele categorie ophalen (gedetailleerde weergave)" -#: core/docs/drf/viewsets.py:251 +#: engine/core/docs/drf/viewsets.py:260 +msgid "Order UUID or human-readable id" +msgstr "Order UUID of menselijk leesbare id" + +#: engine/core/docs/drf/viewsets.py:267 msgid "create an order" msgstr "Een attribuut maken" -#: core/docs/drf/viewsets.py:252 +#: engine/core/docs/drf/viewsets.py:268 msgid "doesn't work for non-staff users." msgstr "Werkt niet voor gebruikers die geen personeel zijn." -#: core/docs/drf/viewsets.py:256 +#: engine/core/docs/drf/viewsets.py:272 msgid "delete an order" msgstr "Een attribuut verwijderen" -#: core/docs/drf/viewsets.py:260 +#: engine/core/docs/drf/viewsets.py:276 msgid "rewrite an existing order saving non-editables" msgstr "Een bestaande categorie herschrijven en niet-wijzigbare items opslaan" -#: core/docs/drf/viewsets.py:264 +#: engine/core/docs/drf/viewsets.py:280 msgid "rewrite some fields of an existing order saving non-editables" msgstr "" "Herschrijf sommige velden van een bestaande categorie door niet-wijzigbare " "velden op te slaan" -#: core/docs/drf/viewsets.py:268 +#: engine/core/docs/drf/viewsets.py:284 msgid "purchase an order" msgstr "Aankoopprijs bij bestelling" -#: core/docs/drf/viewsets.py:270 +#: engine/core/docs/drf/viewsets.py:286 msgid "" "finalizes the order purchase. if `force_balance` is used, the purchase is " "completed using the user's balance; if `force_payment` is used, a " @@ -449,21 +453,20 @@ msgstr "" "wordt de aankoop afgerond met het saldo van de gebruiker; als " "`force_payment` wordt gebruikt, wordt een transactie gestart." -#: core/docs/drf/viewsets.py:282 core/graphene/mutations.py:335 +#: engine/core/docs/drf/viewsets.py:298 engine/core/graphene/mutations.py:335 msgid "purchase an order without account creation" msgstr "een bestelling kopen zonder een account aan te maken" -#: core/docs/drf/viewsets.py:283 +#: engine/core/docs/drf/viewsets.py:299 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." -#: core/docs/drf/viewsets.py:291 +#: engine/core/docs/drf/viewsets.py:307 msgid "add product to order" msgstr "Een product aan de bestelling toevoegen" -#: core/docs/drf/viewsets.py:292 +#: engine/core/docs/drf/viewsets.py:308 msgid "" "adds a product to an order using the provided `product_uuid` and " "`attributes`." @@ -471,13 +474,13 @@ msgstr "" "Voegt een product toe aan een bestelling met de opgegeven `product_uuid` en " "`attributen`." -#: core/docs/drf/viewsets.py:297 +#: engine/core/docs/drf/viewsets.py:313 msgid "add a list of products to order, quantities will not count" msgstr "" "Voeg een lijst met producten toe om te bestellen, hoeveelheden tellen niet " "mee" -#: core/docs/drf/viewsets.py:298 +#: engine/core/docs/drf/viewsets.py:314 msgid "" "adds a list of products to an order using the provided `product_uuid` and " "`attributes`." @@ -485,11 +488,11 @@ msgstr "" "Voegt een lijst met producten toe aan een bestelling met behulp van de " "opgegeven `product_uuid` en `attributen`." -#: core/docs/drf/viewsets.py:303 +#: engine/core/docs/drf/viewsets.py:319 msgid "remove product from order" msgstr "Een product uit de bestelling verwijderen" -#: core/docs/drf/viewsets.py:304 +#: engine/core/docs/drf/viewsets.py:320 msgid "" "removes a product from an order using the provided `product_uuid` and " "`attributes`." @@ -497,11 +500,11 @@ msgstr "" "Verwijdert een product uit een bestelling met behulp van de opgegeven " "`product_uuid` en `attributen`." -#: core/docs/drf/viewsets.py:309 +#: engine/core/docs/drf/viewsets.py:325 msgid "remove product from order, quantities will not count" msgstr "Verwijder een product uit de bestelling, hoeveelheden tellen niet mee" -#: core/docs/drf/viewsets.py:310 +#: engine/core/docs/drf/viewsets.py:326 msgid "" "removes a list of products from an order using the provided `product_uuid` " "and `attributes`" @@ -509,810 +512,835 @@ msgstr "" "Verwijdert een lijst met producten uit een bestelling met behulp van de " "opgegeven `product_uuid` en `attributen`." -#: core/docs/drf/viewsets.py:318 +#: engine/core/docs/drf/viewsets.py:334 msgid "list all wishlists (simple view)" msgstr "Alle attributen weergeven (eenvoudige weergave)" -#: core/docs/drf/viewsets.py:319 +#: engine/core/docs/drf/viewsets.py:335 msgid "for non-staff users, only their own wishlists are returned." msgstr "" "Voor niet-personeelsleden worden alleen hun eigen verlanglijstjes " "geretourneerd." -#: core/docs/drf/viewsets.py:323 +#: engine/core/docs/drf/viewsets.py:339 msgid "retrieve a single wishlist (detailed view)" msgstr "Een enkel kenmerk ophalen (gedetailleerde weergave)" -#: core/docs/drf/viewsets.py:327 +#: engine/core/docs/drf/viewsets.py:343 msgid "create an wishlist" msgstr "Een attribuut maken" -#: core/docs/drf/viewsets.py:328 +#: engine/core/docs/drf/viewsets.py:344 msgid "Doesn't work for non-staff users." msgstr "Werkt niet voor gebruikers die geen personeel zijn." -#: core/docs/drf/viewsets.py:332 +#: engine/core/docs/drf/viewsets.py:348 msgid "delete an wishlist" msgstr "Een attribuut verwijderen" -#: core/docs/drf/viewsets.py:336 +#: engine/core/docs/drf/viewsets.py:352 msgid "rewrite an existing wishlist saving non-editables" msgstr "" "Een bestaand attribuut herschrijven en niet-wijzigbare attributen opslaan" -#: core/docs/drf/viewsets.py:340 +#: engine/core/docs/drf/viewsets.py:356 msgid "rewrite some fields of an existing wishlist saving non-editables" msgstr "" "Herschrijf sommige velden van een bestaand attribuut door niet-wijzigbare " "velden op te slaan" -#: core/docs/drf/viewsets.py:344 +#: engine/core/docs/drf/viewsets.py:360 msgid "add product to wishlist" msgstr "Een product aan de bestelling toevoegen" -#: core/docs/drf/viewsets.py:345 +#: engine/core/docs/drf/viewsets.py:361 msgid "adds a product to an wishlist using the provided `product_uuid`" msgstr "" "Voegt een product toe aan een verlanglijstje met behulp van de opgegeven " "`product_uuid`." -#: core/docs/drf/viewsets.py:350 +#: engine/core/docs/drf/viewsets.py:366 msgid "remove product from wishlist" msgstr "Een product uit het verlanglijstje verwijderen" -#: core/docs/drf/viewsets.py:351 +#: engine/core/docs/drf/viewsets.py:367 msgid "removes a product from an wishlist using the provided `product_uuid`" msgstr "" "Verwijdert een product van een verlanglijstje met behulp van de opgegeven " "`product_uuid`." -#: core/docs/drf/viewsets.py:356 +#: engine/core/docs/drf/viewsets.py:372 msgid "add many products to wishlist" msgstr "Veel producten toevoegen aan het verlanglijstje" -#: core/docs/drf/viewsets.py:357 +#: engine/core/docs/drf/viewsets.py:373 msgid "adds many products to an wishlist using the provided `product_uuids`" msgstr "" "Voegt veel producten toe aan een verlanglijstje met behulp van de opgegeven " "`product_uuids`." -#: core/docs/drf/viewsets.py:362 +#: engine/core/docs/drf/viewsets.py:378 msgid "remove many products from wishlist" msgstr "Een product uit de bestelling verwijderen" -#: core/docs/drf/viewsets.py:363 +#: engine/core/docs/drf/viewsets.py:379 msgid "" "removes many products from an wishlist using the provided `product_uuids`" msgstr "" "Verwijdert een groot aantal producten uit een verlanglijstje met behulp van " "de opgegeven `product_uuids`." -#: core/docs/drf/viewsets.py:370 +#: engine/core/docs/drf/viewsets.py:386 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`." -#: core/docs/drf/viewsets.py:386 core/docs/drf/viewsets.py:387 +#: engine/core/docs/drf/viewsets.py:402 engine/core/docs/drf/viewsets.py:403 msgid "list all products (simple view)" msgstr "Alle producten weergeven (eenvoudige weergave)" -#: core/docs/drf/viewsets.py:392 +#: engine/core/docs/drf/viewsets.py:408 msgid "(exact) Product UUID" msgstr "(exacte) UUID van product" -#: core/docs/drf/viewsets.py:399 +#: engine/core/docs/drf/viewsets.py:415 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" -#: core/docs/drf/viewsets.py:413 core/docs/drf/viewsets.py:414 +#: engine/core/docs/drf/viewsets.py:429 engine/core/docs/drf/viewsets.py:430 msgid "retrieve a single product (detailed view)" msgstr "Een enkel product ophalen (gedetailleerde weergave)" -#: core/docs/drf/viewsets.py:419 core/docs/drf/viewsets.py:443 -#: core/docs/drf/viewsets.py:459 core/docs/drf/viewsets.py:475 -#: core/docs/drf/viewsets.py:491 core/docs/drf/viewsets.py:507 +#: engine/core/docs/drf/viewsets.py:435 engine/core/docs/drf/viewsets.py:459 +#: engine/core/docs/drf/viewsets.py:475 engine/core/docs/drf/viewsets.py:491 +#: engine/core/docs/drf/viewsets.py:507 engine/core/docs/drf/viewsets.py:523 msgid "Product UUID or slug" msgstr "Product UUID of Slug" -#: core/docs/drf/viewsets.py:429 core/docs/drf/viewsets.py:430 +#: engine/core/docs/drf/viewsets.py:445 engine/core/docs/drf/viewsets.py:446 msgid "create a product" msgstr "Een product maken" -#: core/docs/drf/viewsets.py:437 core/docs/drf/viewsets.py:438 +#: engine/core/docs/drf/viewsets.py:453 engine/core/docs/drf/viewsets.py:454 msgid "rewrite an existing product, preserving non-editable fields" msgstr "" "Een bestaand product herschrijven met behoud van niet-wijzigbare velden" -#: core/docs/drf/viewsets.py:453 core/docs/drf/viewsets.py:454 +#: engine/core/docs/drf/viewsets.py:469 engine/core/docs/drf/viewsets.py:470 msgid "" "update some fields of an existing product, preserving non-editable fields" msgstr "" "Enkele velden van een bestaand product bijwerken, met behoud van niet-" "wijzigbare velden" -#: core/docs/drf/viewsets.py:469 core/docs/drf/viewsets.py:470 +#: engine/core/docs/drf/viewsets.py:485 engine/core/docs/drf/viewsets.py:486 msgid "delete a product" msgstr "Een product verwijderen" -#: core/docs/drf/viewsets.py:485 core/docs/drf/viewsets.py:486 +#: engine/core/docs/drf/viewsets.py:501 engine/core/docs/drf/viewsets.py:502 msgid "lists all permitted feedbacks for a product" msgstr "somt alle toegestane feedbacks voor een product op" -#: core/docs/drf/viewsets.py:502 +#: engine/core/docs/drf/viewsets.py:518 msgid "returns a snapshot of the product's SEO meta data" msgstr "" "Geeft als resultaat een momentopname van de SEO-metagegevens van het product" -#: core/docs/drf/viewsets.py:520 +#: engine/core/docs/drf/viewsets.py:536 msgid "list all addresses" msgstr "Vermeld alle adressen" -#: core/docs/drf/viewsets.py:527 +#: engine/core/docs/drf/viewsets.py:543 msgid "retrieve a single address" msgstr "Een enkel adres ophalen" -#: core/docs/drf/viewsets.py:534 +#: engine/core/docs/drf/viewsets.py:550 msgid "create a new address" msgstr "Een nieuw adres maken" -#: core/docs/drf/viewsets.py:542 +#: engine/core/docs/drf/viewsets.py:558 msgid "delete an address" msgstr "Een adres verwijderen" -#: core/docs/drf/viewsets.py:549 +#: engine/core/docs/drf/viewsets.py:565 msgid "update an entire address" msgstr "Een heel adres bijwerken" -#: core/docs/drf/viewsets.py:557 +#: engine/core/docs/drf/viewsets.py:573 msgid "partially update an address" msgstr "Een adres gedeeltelijk bijwerken" -#: core/docs/drf/viewsets.py:565 +#: engine/core/docs/drf/viewsets.py:581 msgid "autocomplete address suggestions" msgstr "Automatische adresinvoer" -#: core/docs/drf/viewsets.py:570 +#: engine/core/docs/drf/viewsets.py:586 msgid "raw data query string, please append with data from geo-IP endpoint" msgstr "" "Ruwe gegevensquerystring, gelieve aan te vullen met gegevens van geo-IP " "eindpunt" -#: core/docs/drf/viewsets.py:576 +#: engine/core/docs/drf/viewsets.py:592 msgid "limit the results amount, 1 < limit < 10, default: 5" msgstr "beperkt de hoeveelheid resultaten, 1 < limiet < 10, standaard: 5" -#: core/docs/drf/viewsets.py:589 +#: engine/core/docs/drf/viewsets.py:605 msgid "list all feedbacks (simple view)" msgstr "alle feedbacks weergeven (eenvoudige weergave)" -#: core/docs/drf/viewsets.py:593 +#: engine/core/docs/drf/viewsets.py:609 msgid "retrieve a single feedback (detailed view)" msgstr "een enkele feedback ophalen (gedetailleerde weergave)" -#: core/docs/drf/viewsets.py:597 +#: engine/core/docs/drf/viewsets.py:613 msgid "create a feedback" msgstr "een feedback creëren" -#: core/docs/drf/viewsets.py:601 +#: engine/core/docs/drf/viewsets.py:617 msgid "delete a feedback" msgstr "een feedback verwijderen" -#: core/docs/drf/viewsets.py:605 +#: engine/core/docs/drf/viewsets.py:621 msgid "rewrite an existing feedback saving non-editables" msgstr "" "een bestaande feedback herschrijven waarbij niet-wijzigbare gegevens worden " "opgeslagen" -#: core/docs/drf/viewsets.py:609 +#: engine/core/docs/drf/viewsets.py:625 msgid "rewrite some fields of an existing feedback saving non-editables" msgstr "" "Herschrijf sommige velden van een bestaande categorie door niet-wijzigbare " "velden op te slaan" -#: core/docs/drf/viewsets.py:616 +#: engine/core/docs/drf/viewsets.py:632 msgid "list all order–product relations (simple view)" msgstr "alle order-productrelaties weergeven (eenvoudige weergave)" -#: core/docs/drf/viewsets.py:623 +#: engine/core/docs/drf/viewsets.py:639 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)" -#: core/docs/drf/viewsets.py:630 +#: engine/core/docs/drf/viewsets.py:646 msgid "create a new order–product relation" msgstr "een nieuwe bestelling-product relatie maken" -#: core/docs/drf/viewsets.py:637 +#: engine/core/docs/drf/viewsets.py:653 msgid "replace an existing order–product relation" msgstr "een bestaande order-productrelatie vervangen" -#: core/docs/drf/viewsets.py:644 +#: engine/core/docs/drf/viewsets.py:660 msgid "partially update an existing order–product relation" msgstr "een bestaande order-productrelatie gedeeltelijk bijwerken" -#: core/docs/drf/viewsets.py:651 +#: engine/core/docs/drf/viewsets.py:667 msgid "delete an order–product relation" msgstr "een order-productrelatie verwijderen" -#: core/docs/drf/viewsets.py:658 +#: engine/core/docs/drf/viewsets.py:674 msgid "add or remove feedback on an order–product relation" msgstr "feedback toevoegen of verwijderen op een order-productrelatie" -#: core/docs/drf/viewsets.py:672 +#: engine/core/docs/drf/viewsets.py:688 msgid "list all brands (simple view)" msgstr "Alle merken weergeven (eenvoudige weergave)" -#: core/docs/drf/viewsets.py:676 +#: engine/core/docs/drf/viewsets.py:692 msgid "retrieve a single brand (detailed view)" msgstr "Een enkel merk ophalen (gedetailleerde weergave)" -#: core/docs/drf/viewsets.py:680 +#: engine/core/docs/drf/viewsets.py:697 engine/core/docs/drf/viewsets.py:725 +msgid "Brand UUID or slug" +msgstr "Merk UUID of slug" + +#: engine/core/docs/drf/viewsets.py:704 msgid "create a brand" msgstr "Een merk creëren" -#: core/docs/drf/viewsets.py:684 +#: engine/core/docs/drf/viewsets.py:708 msgid "delete a brand" msgstr "Een merk verwijderen" -#: core/docs/drf/viewsets.py:688 +#: engine/core/docs/drf/viewsets.py:712 msgid "rewrite an existing brand saving non-editables" msgstr "Een bestaand merk herschrijven door niet-editables op te slaan" -#: core/docs/drf/viewsets.py:692 +#: engine/core/docs/drf/viewsets.py:716 msgid "rewrite some fields of an existing brand saving non-editables" msgstr "" "Herschrijf sommige velden van een bestaande categorie door niet-wijzigbare " "velden op te slaan" -#: core/docs/drf/viewsets.py:696 +#: engine/core/docs/drf/viewsets.py:720 msgid "SEO Meta snapshot for brand" msgstr "SEO Meta snapshot voor merk" -#: core/docs/drf/viewsets.py:703 +#: engine/core/docs/drf/viewsets.py:735 msgid "list all vendors (simple view)" msgstr "Alle leveranciers weergeven (eenvoudige weergave)" -#: core/docs/drf/viewsets.py:707 +#: engine/core/docs/drf/viewsets.py:739 msgid "retrieve a single vendor (detailed view)" msgstr "Een enkele leverancier ophalen (gedetailleerde weergave)" -#: core/docs/drf/viewsets.py:711 +#: engine/core/docs/drf/viewsets.py:743 msgid "create a vendor" msgstr "Een leverancier maken" -#: core/docs/drf/viewsets.py:715 +#: engine/core/docs/drf/viewsets.py:747 msgid "delete a vendor" msgstr "Een verkoper verwijderen" -#: core/docs/drf/viewsets.py:719 +#: engine/core/docs/drf/viewsets.py:751 msgid "rewrite an existing vendor saving non-editables" msgstr "" "Een bestaande verkoper herschrijven en niet-wijzigbare gegevens opslaan" -#: core/docs/drf/viewsets.py:723 +#: engine/core/docs/drf/viewsets.py:755 msgid "rewrite some fields of an existing vendor saving non-editables" msgstr "" "Herschrijf sommige velden van een bestaande categorie door niet-wijzigbare " "velden op te slaan" -#: core/docs/drf/viewsets.py:730 +#: engine/core/docs/drf/viewsets.py:762 msgid "list all product images (simple view)" msgstr "Alle productafbeeldingen weergeven (eenvoudige weergave)" -#: core/docs/drf/viewsets.py:734 +#: engine/core/docs/drf/viewsets.py:766 msgid "retrieve a single product image (detailed view)" msgstr "Een enkele productafbeelding ophalen (gedetailleerde weergave)" -#: core/docs/drf/viewsets.py:738 +#: engine/core/docs/drf/viewsets.py:770 msgid "create a product image" msgstr "Een productafbeelding maken" -#: core/docs/drf/viewsets.py:742 +#: engine/core/docs/drf/viewsets.py:774 msgid "delete a product image" msgstr "Een productafbeelding verwijderen" -#: core/docs/drf/viewsets.py:746 +#: engine/core/docs/drf/viewsets.py:778 msgid "rewrite an existing product image saving non-editables" msgstr "" "Een bestaande productafbeelding herschrijven waarbij niet-wijzigbare " "gegevens worden opgeslagen" -#: core/docs/drf/viewsets.py:750 +#: engine/core/docs/drf/viewsets.py:782 msgid "rewrite some fields of an existing product image saving non-editables" msgstr "" "Herschrijf sommige velden van een bestaande categorie door niet-wijzigbare " "velden op te slaan" -#: core/docs/drf/viewsets.py:757 +#: engine/core/docs/drf/viewsets.py:789 msgid "list all promo codes (simple view)" msgstr "Alle promotiecodes weergeven (eenvoudige weergave)" -#: core/docs/drf/viewsets.py:761 +#: engine/core/docs/drf/viewsets.py:793 msgid "retrieve a single promo code (detailed view)" msgstr "Een enkele promotiecode ophalen (gedetailleerde weergave)" -#: core/docs/drf/viewsets.py:765 +#: engine/core/docs/drf/viewsets.py:797 msgid "create a promo code" msgstr "Een promotiecode maken" -#: core/docs/drf/viewsets.py:769 +#: engine/core/docs/drf/viewsets.py:801 msgid "delete a promo code" msgstr "Een promotiecode verwijderen" -#: core/docs/drf/viewsets.py:773 +#: engine/core/docs/drf/viewsets.py:805 msgid "rewrite an existing promo code saving non-editables" msgstr "Een bestaande promocode herschrijven die niet-wijzigbaar is" -#: core/docs/drf/viewsets.py:777 +#: engine/core/docs/drf/viewsets.py:809 msgid "rewrite some fields of an existing promo code saving non-editables" msgstr "" "Herschrijf sommige velden van een bestaande categorie door niet-wijzigbare " "velden op te slaan" -#: core/docs/drf/viewsets.py:784 +#: engine/core/docs/drf/viewsets.py:816 msgid "list all promotions (simple view)" msgstr "Alle promoties weergeven (eenvoudige weergave)" -#: core/docs/drf/viewsets.py:788 +#: engine/core/docs/drf/viewsets.py:820 msgid "retrieve a single promotion (detailed view)" msgstr "Een enkele promotie ophalen (gedetailleerde weergave)" -#: core/docs/drf/viewsets.py:792 +#: engine/core/docs/drf/viewsets.py:824 msgid "create a promotion" msgstr "Maak een promotie" -#: core/docs/drf/viewsets.py:796 +#: engine/core/docs/drf/viewsets.py:828 msgid "delete a promotion" msgstr "Een promotie verwijderen" -#: core/docs/drf/viewsets.py:800 +#: engine/core/docs/drf/viewsets.py:832 msgid "rewrite an existing promotion saving non-editables" msgstr "" "Een bestaande promotie herschrijven waarbij niet-wijzigbare gegevens worden " "opgeslagen" -#: core/docs/drf/viewsets.py:804 +#: engine/core/docs/drf/viewsets.py:836 msgid "rewrite some fields of an existing promotion saving non-editables" msgstr "" "Herschrijf sommige velden van een bestaande categorie door niet-wijzigbare " "velden op te slaan" -#: core/docs/drf/viewsets.py:811 +#: engine/core/docs/drf/viewsets.py:843 msgid "list all stocks (simple view)" msgstr "Alle aandelen weergeven (eenvoudige weergave)" -#: core/docs/drf/viewsets.py:815 +#: engine/core/docs/drf/viewsets.py:847 msgid "retrieve a single stock (detailed view)" msgstr "Een enkele voorraad ophalen (gedetailleerde weergave)" -#: core/docs/drf/viewsets.py:819 +#: engine/core/docs/drf/viewsets.py:851 msgid "create a stock record" msgstr "Een voorraadrecord maken" -#: core/docs/drf/viewsets.py:823 +#: engine/core/docs/drf/viewsets.py:855 msgid "delete a stock record" msgstr "Een voorraadrecord verwijderen" -#: core/docs/drf/viewsets.py:827 +#: engine/core/docs/drf/viewsets.py:859 msgid "rewrite an existing stock record saving non-editables" msgstr "" "Een bestaand voorraadrecord herschrijven waarbij niet-wijzigbare gegevens " "worden opgeslagen" -#: core/docs/drf/viewsets.py:831 +#: engine/core/docs/drf/viewsets.py:863 msgid "rewrite some fields of an existing stock record saving non-editables" msgstr "" "Herschrijf sommige velden van een bestaande categorie door niet-wijzigbare " "velden op te slaan" -#: core/docs/drf/viewsets.py:838 +#: engine/core/docs/drf/viewsets.py:870 msgid "list all product tags (simple view)" msgstr "Alle producttags weergeven (eenvoudige weergave)" -#: core/docs/drf/viewsets.py:842 +#: engine/core/docs/drf/viewsets.py:874 msgid "retrieve a single product tag (detailed view)" msgstr "Een enkele producttag ophalen (gedetailleerde weergave)" -#: core/docs/drf/viewsets.py:846 +#: engine/core/docs/drf/viewsets.py:878 msgid "create a product tag" msgstr "Een producttag maken" -#: core/docs/drf/viewsets.py:850 +#: engine/core/docs/drf/viewsets.py:882 msgid "delete a product tag" msgstr "Een producttag verwijderen" -#: core/docs/drf/viewsets.py:854 +#: engine/core/docs/drf/viewsets.py:886 msgid "rewrite an existing product tag saving non-editables" msgstr "Een bestaande producttag herschrijven en niet-wijzigbare tags opslaan" -#: core/docs/drf/viewsets.py:858 +#: engine/core/docs/drf/viewsets.py:890 msgid "rewrite some fields of an existing product tag saving non-editables" msgstr "" "Herschrijf sommige velden van een bestaande categorie door niet-wijzigbare " "velden op te slaan" -#: core/elasticsearch/__init__.py:118 core/elasticsearch/__init__.py:550 +#: engine/core/elasticsearch/__init__.py:122 +#: engine/core/elasticsearch/__init__.py:570 msgid "no search term provided." msgstr "Geen zoekterm opgegeven." -#: core/filters.py:69 core/filters.py:412 core/filters.py:539 +#: engine/core/filters.py:69 engine/core/filters.py:426 +#: engine/core/filters.py:553 msgid "Search" msgstr "Zoek op" -#: core/filters.py:70 core/filters.py:569 core/filters.py:598 +#: engine/core/filters.py:70 engine/core/filters.py:583 +#: engine/core/filters.py:612 msgid "UUID" msgstr "UUID" -#: core/filters.py:71 core/filters.py:414 core/filters.py:541 +#: engine/core/filters.py:71 engine/core/filters.py:428 +#: engine/core/filters.py:555 msgid "Name" msgstr "Naam" -#: core/filters.py:72 core/filters.py:543 +#: engine/core/filters.py:72 engine/core/filters.py:557 msgid "Categories" msgstr "Categorieën" -#: core/filters.py:74 +#: engine/core/filters.py:74 msgid "Categories Slugs" msgstr "Categorieën Naaktslakken" -#: core/filters.py:75 core/filters.py:422 +#: engine/core/filters.py:75 engine/core/filters.py:436 msgid "Tags" msgstr "Tags" -#: core/filters.py:76 +#: engine/core/filters.py:76 msgid "Min Price" msgstr "Min Prijs" -#: core/filters.py:77 +#: engine/core/filters.py:77 msgid "Max Price" msgstr "Maximale prijs" -#: core/filters.py:78 +#: engine/core/filters.py:78 msgid "Is Active" msgstr "Is actief" -#: core/filters.py:79 +#: engine/core/filters.py:79 msgid "Brand" msgstr "Merk" -#: core/filters.py:80 +#: engine/core/filters.py:80 msgid "Attributes" msgstr "Attributen" -#: core/filters.py:81 +#: engine/core/filters.py:81 msgid "Quantity" msgstr "Hoeveelheid" -#: core/filters.py:82 core/filters.py:416 core/filters.py:542 -#: core/models.py:322 core/models.py:483 core/models.py:637 +#: engine/core/filters.py:82 engine/core/filters.py:430 +#: engine/core/filters.py:556 engine/core/models.py:321 +#: engine/core/models.py:482 engine/core/models.py:637 msgid "Slug" msgstr "Slak" -#: core/filters.py:83 +#: engine/core/filters.py:83 msgid "Is Digital" msgstr "Is digitaal" -#: core/filters.py:84 +#: engine/core/filters.py:84 msgid "Include sub-categories" msgstr "Subcategorieën opnemen" -#: core/filters.py:87 +#: engine/core/filters.py:87 msgid "Include personal ordered" msgstr "Inclusief persoonlijk bestelde producten" -#: core/filters.py:89 core/models.py:641 +#: engine/core/filters.py:89 engine/core/models.py:641 msgid "SKU" msgstr "SKU" -#: core/filters.py:173 +#: engine/core/filters.py:184 msgid "there must be a category_uuid to use include_subcategories flag" msgstr "" "Er moet een categorie_uuid zijn om include_subcategories vlag te gebruiken" -#: core/filters.py:339 +#: engine/core/filters.py:353 msgid "Search (ID, product name or part number)" msgstr "Zoeken (ID, productnaam of onderdeelnummer)" -#: core/filters.py:342 +#: engine/core/filters.py:356 msgid "Bought after (inclusive)" msgstr "Gekocht na (inclusief)" -#: core/filters.py:343 +#: engine/core/filters.py:357 msgid "Bought before (inclusive)" msgstr "Eerder gekocht (inclusief)" -#: core/filters.py:346 core/filters.py:393 core/filters.py:600 +#: engine/core/filters.py:360 engine/core/filters.py:407 +#: engine/core/filters.py:614 msgid "User email" msgstr "E-mail gebruiker" -#: core/filters.py:347 core/filters.py:394 core/filters.py:578 -#: core/filters.py:599 +#: engine/core/filters.py:361 engine/core/filters.py:408 +#: engine/core/filters.py:592 engine/core/filters.py:613 msgid "User UUID" msgstr "Gebruiker UUID" -#: core/filters.py:348 +#: engine/core/filters.py:362 msgid "Status" msgstr "Status" -#: core/filters.py:352 +#: engine/core/filters.py:366 msgid "Human Readable ID" msgstr "Menselijk leesbare ID" -#: core/filters.py:415 +#: engine/core/filters.py:429 msgid "Parent" msgstr "Ouder" -#: core/filters.py:419 +#: engine/core/filters.py:433 msgid "Whole category(has at least 1 product or not)" msgstr "Hele categorie (heeft minstens 1 product of niet)" -#: core/filters.py:423 +#: engine/core/filters.py:437 msgid "Level" msgstr "Niveau" -#: core/filters.py:573 +#: engine/core/filters.py:587 msgid "Product UUID" msgstr "Product UUID" -#: core/graphene/mutations.py:41 +#: engine/core/graphene/mutations.py:41 msgid "key to look for in or set into the cache" msgstr "Sleutel om te zoeken of te plaatsen in de cache" -#: core/graphene/mutations.py:42 +#: engine/core/graphene/mutations.py:42 msgid "data to store in cache" msgstr "Gegevens om op te slaan in de cache" -#: core/graphene/mutations.py:45 +#: engine/core/graphene/mutations.py:45 msgid "timeout in seconds to set the data for into the cache" msgstr "Time-out in seconden om de gegevens in de cache te plaatsen" -#: core/graphene/mutations.py:48 +#: engine/core/graphene/mutations.py:48 msgid "cached data" msgstr "Gecachte gegevens" -#: core/graphene/mutations.py:63 +#: engine/core/graphene/mutations.py:63 msgid "camelized JSON data from the requested URL" msgstr "Camelized JSON-gegevens van de opgevraagde URL" -#: core/graphene/mutations.py:68 core/views.py:232 +#: engine/core/graphene/mutations.py:68 engine/core/views.py:231 msgid "only URLs starting with http(s):// are allowed" msgstr "Alleen URL's die beginnen met http(s):// zijn toegestaan" -#: core/graphene/mutations.py:84 +#: engine/core/graphene/mutations.py:84 msgid "add a product to the order" msgstr "Een product aan de bestelling toevoegen" -#: core/graphene/mutations.py:105 core/graphene/mutations.py:132 -#: core/graphene/mutations.py:240 core/graphene/mutations.py:288 +#: engine/core/graphene/mutations.py:105 engine/core/graphene/mutations.py:132 +#: engine/core/graphene/mutations.py:240 engine/core/graphene/mutations.py:288 #, python-brace-format msgid "order {order_uuid} not found" msgstr "Bestelling {order_uuid} niet gevonden!" -#: core/graphene/mutations.py:111 core/graphene/mutations.py:160 +#: engine/core/graphene/mutations.py:111 engine/core/graphene/mutations.py:160 msgid "remove a product from the order" msgstr "Een product uit de bestelling verwijderen" -#: core/graphene/mutations.py:138 +#: engine/core/graphene/mutations.py:138 msgid "remove all products from the order" msgstr "Alle producten uit de bestelling verwijderen" -#: core/graphene/mutations.py:183 +#: engine/core/graphene/mutations.py:183 msgid "buy an order" msgstr "Een bestelling kopen" -#: core/graphene/mutations.py:212 core/graphene/mutations.py:266 +#: engine/core/graphene/mutations.py:212 engine/core/graphene/mutations.py:266 msgid "please provide either order_uuid or order_hr_id - mutually exclusive" msgstr "Geef order_uuid of order_hr_id - wederzijds exclusief!" -#: core/graphene/mutations.py:237 core/graphene/mutations.py:502 -#: core/graphene/mutations.py:544 core/viewsets.py:704 +#: engine/core/graphene/mutations.py:237 engine/core/graphene/mutations.py:502 +#: engine/core/graphene/mutations.py:544 engine/core/viewsets.py:704 msgid "wrong type came from order.buy() method: {type(instance)!s}" msgstr "Verkeerd type kwam uit order.buy() methode: {type(instance)!s}" -#: core/graphene/mutations.py:246 +#: engine/core/graphene/mutations.py:246 msgid "perform an action on a list of products in the order" msgstr "Een actie uitvoeren op een lijst met producten in de bestelling" -#: core/graphene/mutations.py:251 +#: engine/core/graphene/mutations.py:251 msgid "remove/add" msgstr "Verwijderen/toevoegen" -#: core/graphene/mutations.py:283 core/graphene/mutations.py:324 +#: engine/core/graphene/mutations.py:283 engine/core/graphene/mutations.py:324 msgid "action must be either add or remove" msgstr "De actie moet \"toevoegen\" of \"verwijderen\" zijn!" -#: core/graphene/mutations.py:294 +#: engine/core/graphene/mutations.py:294 msgid "perform an action on a list of products in the wishlist" msgstr "Een actie uitvoeren op een lijst met producten in het verlanglijstje" -#: core/graphene/mutations.py:312 +#: engine/core/graphene/mutations.py:312 msgid "please provide wishlist_uuid value" msgstr "Geef de waarde `wishlist_uuid` op." -#: core/graphene/mutations.py:329 core/graphene/mutations.py:405 -#: core/graphene/mutations.py:433 core/graphene/mutations.py:461 -#: core/graphene/mutations.py:505 +#: engine/core/graphene/mutations.py:329 engine/core/graphene/mutations.py:405 +#: engine/core/graphene/mutations.py:433 engine/core/graphene/mutations.py:461 +#: engine/core/graphene/mutations.py:505 #, python-brace-format msgid "wishlist {wishlist_uuid} not found" msgstr "wens {wishlist_uuid} niet gevonden!" -#: core/graphene/mutations.py:383 +#: engine/core/graphene/mutations.py:383 msgid "add a product to the wishlist" msgstr "Een product aan de bestelling toevoegen" -#: core/graphene/mutations.py:411 +#: engine/core/graphene/mutations.py:411 msgid "remove a product from the wishlist" msgstr "Een product uit de bestelling verwijderen" -#: core/graphene/mutations.py:439 +#: engine/core/graphene/mutations.py:439 msgid "remove all products from the wishlist" msgstr "Een product uit de bestelling verwijderen" -#: core/graphene/mutations.py:467 +#: engine/core/graphene/mutations.py:467 msgid "buy all products from the wishlist" msgstr "Een product uit de bestelling verwijderen" -#: core/graphene/mutations.py:511 +#: engine/core/graphene/mutations.py:511 msgid "buy a product" msgstr "Een bestelling kopen" -#: core/graphene/mutations.py:517 +#: engine/core/graphene/mutations.py:517 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" -#: core/graphene/mutations.py:550 +#: engine/core/graphene/mutations.py:550 msgid "add or delete a feedback for orderproduct" msgstr "Feedback toevoegen of verwijderen voor het orderproduct" -#: core/graphene/mutations.py:574 +#: engine/core/graphene/mutations.py:574 msgid "action must be either `add` or `remove`" msgstr "De actie moet `toevoegen` of `verwijderen` zijn!" -#: core/graphene/mutations.py:577 +#: engine/core/graphene/mutations.py:577 #, python-brace-format msgid "order product {order_product_uuid} not found" msgstr "Orderproduct {order_product_uuid} niet gevonden!" -#: core/graphene/mutations.py:644 +#: engine/core/graphene/mutations.py:644 msgid "original address string provided by the user" msgstr "Originele adresstring geleverd door de gebruiker" -#: core/graphene/mutations.py:680 core/models.py:930 core/models.py:943 -#: core/models.py:1358 core/models.py:1387 core/models.py:1412 -#: core/viewsets.py:707 +#: engine/core/graphene/mutations.py:680 engine/core/models.py:941 +#: engine/core/models.py:954 engine/core/models.py:1369 +#: engine/core/models.py:1398 engine/core/models.py:1423 +#: engine/core/viewsets.py:707 #, python-brace-format msgid "{name} does not exist: {uuid}" msgstr "{name} bestaat niet: {uuid}!" -#: core/graphene/mutations.py:694 +#: engine/core/graphene/mutations.py:694 msgid "limit must be between 1 and 10" msgstr "Limiet moet tussen 1 en 10 liggen" -#: core/graphene/mutations.py:743 +#: engine/core/graphene/mutations.py:743 msgid "elasticsearch - works like a charm" msgstr "ElasticSearch - werkt als een charme" -#: core/graphene/object_types.py:82 core/graphene/object_types.py:370 -#: core/graphene/object_types.py:417 core/models.py:754 core/models.py:1225 -#: core/models.py:1823 +#: engine/core/graphene/object_types.py:82 +#: engine/core/graphene/object_types.py:370 +#: engine/core/graphene/object_types.py:417 engine/core/models.py:765 +#: engine/core/models.py:1236 engine/core/models.py:1883 msgid "attributes" msgstr "Attributen" -#: core/graphene/object_types.py:95 +#: engine/core/graphene/object_types.py:95 msgid "grouped attributes" msgstr "Gegroepeerde kenmerken" -#: core/graphene/object_types.py:102 +#: engine/core/graphene/object_types.py:102 msgid "groups of attributes" msgstr "Groepen van kenmerken" -#: core/graphene/object_types.py:116 core/graphene/object_types.py:193 -#: core/graphene/object_types.py:223 core/models.py:426 +#: engine/core/graphene/object_types.py:116 +#: engine/core/graphene/object_types.py:193 +#: engine/core/graphene/object_types.py:223 engine/core/models.py:425 msgid "categories" msgstr "Categorieën" -#: core/graphene/object_types.py:124 core/models.py:497 +#: engine/core/graphene/object_types.py:124 engine/core/models.py:496 msgid "brands" msgstr "Merken" -#: core/graphene/object_types.py:195 +#: engine/core/graphene/object_types.py:195 msgid "category image url" msgstr "Categorieën" -#: core/graphene/object_types.py:196 core/graphene/object_types.py:317 -#: core/models.py:284 +#: engine/core/graphene/object_types.py:196 +#: engine/core/graphene/object_types.py:317 engine/core/models.py:283 msgid "markup percentage" msgstr "Opwaarderingspercentage" -#: core/graphene/object_types.py:199 +#: engine/core/graphene/object_types.py:199 msgid "which attributes and values can be used for filtering this category." msgstr "" "Welke attributen en waarden kunnen worden gebruikt om deze categorie te " "filteren." -#: core/graphene/object_types.py:203 -msgid "" -"minimum and maximum prices for products in this category, if available." +#: engine/core/graphene/object_types.py:203 +msgid "minimum and maximum prices for products in this category, if available." msgstr "" "Minimale en maximale prijzen voor producten in deze categorie, indien " "beschikbaar." -#: core/graphene/object_types.py:205 +#: engine/core/graphene/object_types.py:205 msgid "tags for this category" msgstr "Tags voor deze categorie" -#: core/graphene/object_types.py:206 +#: engine/core/graphene/object_types.py:206 msgid "products in this category" msgstr "Producten in deze categorie" -#: core/graphene/object_types.py:324 core/models.py:189 +#: engine/core/graphene/object_types.py:324 engine/core/models.py:188 msgid "vendors" msgstr "Verkopers" -#: core/graphene/object_types.py:328 +#: engine/core/graphene/object_types.py:328 msgid "Latitude (Y coordinate)" msgstr "Breedtegraad (Y-coördinaat)" -#: core/graphene/object_types.py:329 +#: engine/core/graphene/object_types.py:329 msgid "Longitude (X coordinate)" msgstr "Lengtegraad (X-coördinaat)" -#: core/graphene/object_types.py:358 +#: engine/core/graphene/object_types.py:358 msgid "comment" msgstr "Hoe" -#: core/graphene/object_types.py:359 core/graphene/object_types.py:483 +#: engine/core/graphene/object_types.py:359 +#: engine/core/graphene/object_types.py:483 msgid "rating value from 1 to 10, inclusive, or 0 if not set." msgstr "Waarderingswaarde van 1 tot en met 10, of 0 indien niet ingesteld." -#: core/graphene/object_types.py:366 +#: engine/core/graphene/object_types.py:366 msgid "represents feedback from a user." msgstr "Vertegenwoordigt feedback van een gebruiker." -#: core/graphene/object_types.py:371 core/graphene/object_types.py:418 -#: core/models.py:1219 +#: engine/core/graphene/object_types.py:371 +#: engine/core/graphene/object_types.py:418 engine/core/models.py:1230 msgid "notifications" msgstr "Meldingen" -#: core/graphene/object_types.py:372 +#: engine/core/graphene/object_types.py:372 msgid "download url for this order product if applicable" msgstr "Download url voor dit bestelproduct indien van toepassing" -#: core/graphene/object_types.py:373 core/models.py:1939 +#: engine/core/graphene/object_types.py:373 engine/core/models.py:1722 msgid "feedback" msgstr "Feedback" -#: core/graphene/object_types.py:407 +#: engine/core/graphene/object_types.py:407 msgid "a list of order products in this order" msgstr "Een lijst met bestelde producten in deze bestelling" -#: core/graphene/object_types.py:409 core/models.py:1189 +#: engine/core/graphene/object_types.py:409 engine/core/models.py:1200 msgid "billing address" msgstr "Factuuradres" -#: core/graphene/object_types.py:412 +#: engine/core/graphene/object_types.py:412 msgid "" "shipping address for this order, leave blank if same as billing address or " "if not applicable" @@ -1320,202 +1348,210 @@ msgstr "" "Verzendadres voor deze bestelling, leeg laten als dit hetzelfde is als het " "factuuradres of als dit niet van toepassing is" -#: core/graphene/object_types.py:414 +#: engine/core/graphene/object_types.py:414 msgid "total price of this order" msgstr "Totale prijs van deze bestelling" -#: core/graphene/object_types.py:415 +#: engine/core/graphene/object_types.py:415 msgid "total quantity of products in order" msgstr "Totale hoeveelheid producten in bestelling" -#: core/graphene/object_types.py:416 +#: engine/core/graphene/object_types.py:416 msgid "are all products in the order digital" msgstr "Zijn alle producten in de bestelling digitaal" -#: core/graphene/object_types.py:419 +#: engine/core/graphene/object_types.py:419 msgid "transactions for this order" msgstr "Transacties voor deze bestelling" -#: core/graphene/object_types.py:438 core/models.py:1253 +#: engine/core/graphene/object_types.py:438 engine/core/models.py:1264 msgid "orders" msgstr "Bestellingen" -#: core/graphene/object_types.py:459 +#: engine/core/graphene/object_types.py:459 msgid "image url" msgstr "Afbeelding URL" -#: core/graphene/object_types.py:466 +#: engine/core/graphene/object_types.py:466 msgid "product's images" msgstr "Afbeeldingen van het product" -#: core/graphene/object_types.py:473 core/models.py:425 core/models.py:579 +#: engine/core/graphene/object_types.py:473 engine/core/models.py:424 +#: engine/core/models.py:579 msgid "category" msgstr "Categorie" -#: core/graphene/object_types.py:475 core/models.py:1940 +#: engine/core/graphene/object_types.py:475 engine/core/models.py:1723 msgid "feedbacks" msgstr "Reacties" -#: core/graphene/object_types.py:476 core/models.py:496 core/models.py:588 +#: engine/core/graphene/object_types.py:476 engine/core/models.py:495 +#: engine/core/models.py:588 msgid "brand" msgstr "Merk" -#: core/graphene/object_types.py:477 core/models.py:107 +#: engine/core/graphene/object_types.py:477 engine/core/models.py:106 msgid "attribute groups" msgstr "Attribuutgroepen" -#: core/graphene/object_types.py:478 -#: core/templates/digital_order_created_email.html:111 -#: core/templates/digital_order_delivered_email.html:109 -#: core/templates/shipped_order_created_email.html:109 -#: core/templates/shipped_order_delivered_email.html:109 +#: engine/core/graphene/object_types.py:478 +#: engine/core/templates/digital_order_created_email.html:111 +#: engine/core/templates/digital_order_delivered_email.html:109 +#: engine/core/templates/shipped_order_created_email.html:109 +#: engine/core/templates/shipped_order_delivered_email.html:109 msgid "price" msgstr "Prijs" -#: core/graphene/object_types.py:479 -#: core/templates/digital_order_created_email.html:110 -#: core/templates/digital_order_delivered_email.html:108 -#: core/templates/shipped_order_created_email.html:108 -#: core/templates/shipped_order_delivered_email.html:108 +#: engine/core/graphene/object_types.py:479 +#: engine/core/templates/digital_order_created_email.html:110 +#: engine/core/templates/digital_order_delivered_email.html:108 +#: engine/core/templates/shipped_order_created_email.html:108 +#: engine/core/templates/shipped_order_delivered_email.html:108 msgid "quantity" msgstr "Hoeveelheid" -#: core/graphene/object_types.py:480 +#: engine/core/graphene/object_types.py:480 msgid "number of feedbacks" msgstr "Aantal terugkoppelingen" -#: core/graphene/object_types.py:481 +#: engine/core/graphene/object_types.py:481 msgid "only available for personal orders" msgstr "Producten alleen beschikbaar voor persoonlijke bestellingen" -#: core/graphene/object_types.py:507 core/models.py:651 +#: engine/core/graphene/object_types.py:484 +msgid "discount price" +msgstr "Korting" + +#: engine/core/graphene/object_types.py:508 engine/core/models.py:651 msgid "products" msgstr "Producten" -#: core/graphene/object_types.py:607 +#: engine/core/graphene/object_types.py:611 msgid "promocodes" msgstr "Promocodes" -#: core/graphene/object_types.py:617 +#: engine/core/graphene/object_types.py:621 msgid "products on sale" msgstr "Producten te koop" -#: core/graphene/object_types.py:624 core/models.py:879 +#: engine/core/graphene/object_types.py:628 engine/core/models.py:890 msgid "promotions" msgstr "Promoties" -#: core/graphene/object_types.py:628 core/models.py:188 +#: engine/core/graphene/object_types.py:632 engine/core/models.py:187 msgid "vendor" msgstr "Verkoper" -#: core/graphene/object_types.py:629 core/models.py:650 -#: core/templates/digital_order_created_email.html:109 -#: core/templates/digital_order_delivered_email.html:107 -#: core/templates/shipped_order_created_email.html:107 -#: core/templates/shipped_order_delivered_email.html:107 +#: engine/core/graphene/object_types.py:633 engine/core/models.py:650 +#: 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 +#: engine/core/templates/shipped_order_delivered_email.html:107 msgid "product" msgstr "Product" -#: core/graphene/object_types.py:640 core/models.py:902 +#: engine/core/graphene/object_types.py:644 engine/core/models.py:913 msgid "wishlisted products" msgstr "Gewenste producten" -#: core/graphene/object_types.py:646 core/models.py:919 +#: engine/core/graphene/object_types.py:650 engine/core/models.py:930 msgid "wishlists" msgstr "Verlanglijst" -#: core/graphene/object_types.py:650 +#: engine/core/graphene/object_types.py:654 msgid "tagged products" msgstr "Getagde producten" -#: core/graphene/object_types.py:657 core/models.py:225 core/models.py:594 +#: engine/core/graphene/object_types.py:661 engine/core/models.py:224 +#: engine/core/models.py:594 msgid "product tags" msgstr "Product tags" -#: core/graphene/object_types.py:661 +#: engine/core/graphene/object_types.py:665 msgid "tagged categories" msgstr "Getagde categorieën" -#: core/graphene/object_types.py:668 +#: engine/core/graphene/object_types.py:672 msgid "categories tags" msgstr "Categorieën' tags" -#: core/graphene/object_types.py:672 +#: engine/core/graphene/object_types.py:676 msgid "project name" msgstr "Naam project" -#: core/graphene/object_types.py:673 +#: engine/core/graphene/object_types.py:677 msgid "company email" msgstr "Bedrijf E-mail" -#: core/graphene/object_types.py:674 +#: engine/core/graphene/object_types.py:678 msgid "company name" msgstr "Bedrijfsnaam" -#: core/graphene/object_types.py:675 +#: engine/core/graphene/object_types.py:679 msgid "company address" msgstr "Adres" -#: core/graphene/object_types.py:676 +#: engine/core/graphene/object_types.py:680 msgid "company phone number" msgstr "Telefoonnummer bedrijf" -#: core/graphene/object_types.py:677 +#: engine/core/graphene/object_types.py:681 msgid "email from, sometimes it must be used instead of host user value" msgstr "" "e-mail van', soms moet deze worden gebruikt in plaats van de " "hostgebruikerswaarde" -#: core/graphene/object_types.py:678 +#: engine/core/graphene/object_types.py:682 msgid "email host user" msgstr "Gebruiker e-mail hosten" -#: core/graphene/object_types.py:679 +#: engine/core/graphene/object_types.py:683 msgid "maximum amount for payment" msgstr "Maximumbedrag voor betaling" -#: core/graphene/object_types.py:680 +#: engine/core/graphene/object_types.py:684 msgid "minimum amount for payment" msgstr "Minimumbedrag voor betaling" -#: core/graphene/object_types.py:681 +#: engine/core/graphene/object_types.py:685 msgid "analytics data" msgstr "Analytics-gegevens" -#: core/graphene/object_types.py:682 +#: engine/core/graphene/object_types.py:686 msgid "advertisement data" msgstr "Advertentiegegevens" -#: core/graphene/object_types.py:685 +#: engine/core/graphene/object_types.py:689 msgid "company configuration" msgstr "Configuratie" -#: core/graphene/object_types.py:689 +#: engine/core/graphene/object_types.py:693 msgid "language code" msgstr "Taalcode" -#: core/graphene/object_types.py:690 +#: engine/core/graphene/object_types.py:694 msgid "language name" msgstr "Naam van de taal" -#: core/graphene/object_types.py:691 +#: engine/core/graphene/object_types.py:695 msgid "language flag, if exists :)" msgstr "Taalvlag, indien aanwezig :)" -#: core/graphene/object_types.py:694 +#: engine/core/graphene/object_types.py:698 msgid "supported languages" msgstr "Een lijst met ondersteunde talen opvragen" -#: core/graphene/object_types.py:725 core/graphene/object_types.py:726 -#: core/graphene/object_types.py:727 +#: engine/core/graphene/object_types.py:729 +#: engine/core/graphene/object_types.py:730 +#: engine/core/graphene/object_types.py:731 msgid "products search results" msgstr "Producten zoekresultaten" -#: core/graphene/object_types.py:728 +#: engine/core/graphene/object_types.py:732 msgid "posts search results" msgstr "Zoekresultaten" -#: core/models.py:76 +#: engine/core/models.py:75 msgid "" "Represents a group of attributes, which can be hierarchical. This class is " "used to manage and organize attribute groups. An attribute group can have a " @@ -1525,26 +1561,26 @@ 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." -#: core/models.py:92 +#: engine/core/models.py:91 msgid "parent of this group" msgstr "Ouder van deze groep" -#: core/models.py:93 +#: engine/core/models.py:92 msgid "parent attribute group" msgstr "Ouderattribuutgroep" -#: core/models.py:97 core/models.py:98 +#: engine/core/models.py:96 engine/core/models.py:97 msgid "attribute group's name" msgstr "Naam attribuutgroep" -#: core/models.py:106 core/models.py:716 +#: engine/core/models.py:105 engine/core/models.py:727 msgid "attribute group" msgstr "Attribuutgroep" -#: core/models.py:112 +#: engine/core/models.py:111 msgid "" "Represents a vendor entity capable of storing information about external " "vendors and their interaction requirements. The Vendor class is used to " @@ -1554,8 +1590,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 " @@ -1563,50 +1599,50 @@ msgstr "" "metadata en beperkingen, waardoor het geschikt is voor gebruik in systemen " "die communiceren met externe verkopers." -#: core/models.py:125 +#: engine/core/models.py:124 msgid "stores credentials and endpoints required for vendor communication" msgstr "" "Slaat referenties en eindpunten op die vereist zijn voor API-communicatie " "van de verkoper" -#: core/models.py:126 +#: engine/core/models.py:125 msgid "authentication info" msgstr "Authenticatie-info" -#: core/models.py:131 +#: engine/core/models.py:130 msgid "define the markup for products retrieved from this vendor" msgstr "" "Definieer de opmaak voor producten die zijn opgehaald bij deze leverancier" -#: core/models.py:132 +#: engine/core/models.py:131 msgid "vendor markup percentage" msgstr "Verkoper winstpercentage" -#: core/models.py:136 +#: engine/core/models.py:135 msgid "name of this vendor" msgstr "Naam van deze verkoper" -#: core/models.py:137 +#: engine/core/models.py:136 msgid "vendor name" msgstr "Naam verkoper" -#: core/models.py:148 +#: engine/core/models.py:147 msgid "response file" msgstr "responsbestand" -#: core/models.py:149 +#: engine/core/models.py:148 msgid "vendor's last processing response" msgstr "laatste verwerkingsreactie van verkoper" -#: core/models.py:155 +#: engine/core/models.py:154 msgid "vendor's integration file path" msgstr "Pad integratiebestand verkoper" -#: core/models.py:156 +#: engine/core/models.py:155 msgid "integration path" msgstr "Integratie pad" -#: core/models.py:198 +#: engine/core/models.py:197 msgid "" "Represents a product tag used for classifying or identifying products. The " "ProductTag class is designed to uniquely identify and classify products " @@ -1616,32 +1652,32 @@ 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." -#: core/models.py:210 core/models.py:241 +#: engine/core/models.py:209 engine/core/models.py:240 msgid "internal tag identifier for the product tag" msgstr "Interne tagidentifier voor de producttag" -#: core/models.py:211 core/models.py:242 +#: engine/core/models.py:210 engine/core/models.py:241 msgid "tag name" msgstr "Tag naam" -#: core/models.py:215 core/models.py:246 +#: engine/core/models.py:214 engine/core/models.py:245 msgid "user-friendly name for the product tag" msgstr "Gebruiksvriendelijke naam voor de producttag" -#: core/models.py:216 core/models.py:247 +#: engine/core/models.py:215 engine/core/models.py:246 msgid "tag display name" msgstr "Tag weergavenaam" -#: core/models.py:224 +#: engine/core/models.py:223 msgid "product tag" msgstr "Productlabel" -#: core/models.py:230 +#: engine/core/models.py:229 msgid "" "Represents a category tag used for products. This class models a category " "tag that can be used to associate and classify products. It includes " @@ -1652,15 +1688,15 @@ msgstr "" "associëren en te classificeren. Ze bevat attributen voor een interne " "tagidentifier en een gebruiksvriendelijke weergavenaam." -#: core/models.py:255 +#: engine/core/models.py:254 msgid "category tag" msgstr "categorie tag" -#: core/models.py:256 core/models.py:328 +#: engine/core/models.py:255 engine/core/models.py:327 msgid "category tags" msgstr "categorie tags" -#: core/models.py:261 +#: engine/core/models.py:260 msgid "" "Represents a category entity to organize and group related items in a " "hierarchical structure. Categories may have hierarchical relationships with " @@ -1675,65 +1711,64 @@ 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." -#: core/models.py:275 +#: engine/core/models.py:274 msgid "upload an image representing this category" msgstr "Upload een afbeelding die deze categorie vertegenwoordigt" -#: core/models.py:278 +#: engine/core/models.py:277 msgid "category image" msgstr "Categorie afbeelding" -#: core/models.py:283 +#: engine/core/models.py:282 msgid "define a markup percentage for products in this category" msgstr "Definieer een toeslagpercentage voor producten in deze categorie" -#: core/models.py:292 +#: engine/core/models.py:291 msgid "parent of this category to form a hierarchical structure" msgstr "Ouder van deze categorie om een hiërarchische structuur te vormen" -#: core/models.py:293 +#: engine/core/models.py:292 msgid "parent category" msgstr "Oudercategorie" -#: core/models.py:298 +#: engine/core/models.py:297 msgid "category name" msgstr "Naam categorie" -#: core/models.py:299 +#: engine/core/models.py:298 msgid "provide a name for this category" msgstr "Geef deze categorie een naam" -#: core/models.py:306 +#: engine/core/models.py:305 msgid "add a detailed description for this category" msgstr "Voeg een gedetailleerde beschrijving toe voor deze categorie" -#: core/models.py:307 +#: engine/core/models.py:306 msgid "category description" msgstr "Categorie beschrijving" -#: core/models.py:327 +#: engine/core/models.py:326 msgid "tags that help describe or group this category" msgstr "tags die deze categorie helpen beschrijven of groeperen" -#: core/models.py:334 core/models.py:489 +#: engine/core/models.py:333 engine/core/models.py:488 msgid "priority" msgstr "Prioriteit" -#: core/models.py:432 +#: engine/core/models.py:431 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, " @@ -1741,50 +1776,50 @@ msgstr "" "prioriteitsvolgorde. Hiermee kunnen merkgerelateerde gegevens worden " "georganiseerd en weergegeven in de applicatie." -#: core/models.py:442 +#: engine/core/models.py:441 msgid "name of this brand" msgstr "Naam van dit merk" -#: core/models.py:443 +#: engine/core/models.py:442 msgid "brand name" msgstr "Merknaam" -#: core/models.py:450 +#: engine/core/models.py:449 msgid "upload a logo representing this brand" msgstr "Upload een logo dat dit merk vertegenwoordigt" -#: core/models.py:452 +#: engine/core/models.py:451 msgid "brand small image" msgstr "Klein merkimago" -#: core/models.py:458 +#: engine/core/models.py:457 msgid "upload a big logo representing this brand" msgstr "Upload een groot logo dat dit merk vertegenwoordigt" -#: core/models.py:460 +#: engine/core/models.py:459 msgid "brand big image" msgstr "Groot merkimago" -#: core/models.py:465 +#: engine/core/models.py:464 msgid "add a detailed description of the brand" msgstr "Een gedetailleerde beschrijving van het merk toevoegen" -#: core/models.py:466 +#: engine/core/models.py:465 msgid "brand description" msgstr "Merknaam" -#: core/models.py:471 +#: engine/core/models.py:470 msgid "optional categories that this brand is associated with" msgstr "Optionele categorieën waarmee dit merk wordt geassocieerd" -#: core/models.py:472 +#: engine/core/models.py:471 msgid "associated categories" msgstr "Categorieën" -#: core/models.py:502 +#: engine/core/models.py:501 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 " @@ -1798,68 +1833,72 @@ msgstr "" "evalueren van beschikbare producten van verschillende leveranciers mogelijk " "te maken." -#: core/models.py:514 +#: engine/core/models.py:513 msgid "the vendor supplying this product stock" msgstr "De verkoper die dit product levert" -#: core/models.py:515 +#: engine/core/models.py:514 msgid "associated vendor" msgstr "Geassocieerde verkoper" -#: core/models.py:519 +#: engine/core/models.py:518 msgid "final price to the customer after markups" msgstr "Eindprijs voor de klant na winstmarges" -#: core/models.py:520 +#: engine/core/models.py:519 msgid "selling price" msgstr "Verkoopprijs" -#: core/models.py:525 +#: engine/core/models.py:524 msgid "the product associated with this stock entry" msgstr "Het product dat bij deze voorraadvermelding hoort" -#: core/models.py:526 core/models.py:779 core/models.py:825 -#: core/models.py:1718 +#: engine/core/models.py:525 engine/core/models.py:790 +#: engine/core/models.py:836 engine/core/models.py:1778 msgid "associated product" msgstr "Bijbehorend product" -#: core/models.py:533 +#: engine/core/models.py:532 msgid "the price paid to the vendor for this product" msgstr "De prijs die voor dit product aan de verkoper is betaald" -#: core/models.py:534 +#: engine/core/models.py:533 msgid "vendor purchase price" msgstr "Aankoopprijs verkoper" -#: core/models.py:538 +#: engine/core/models.py:537 msgid "available quantity of the product in stock" msgstr "Beschikbare hoeveelheid van het product in voorraad" -#: core/models.py:539 +#: engine/core/models.py:538 msgid "quantity in stock" msgstr "Hoeveelheid op voorraad" -#: core/models.py:543 +#: engine/core/models.py:542 msgid "vendor-assigned SKU for identifying the product" msgstr "Door de verkoper toegewezen SKU om het product te identificeren" -#: core/models.py:544 +#: engine/core/models.py:543 msgid "vendor sku" msgstr "Verkoper SKU" -#: core/models.py:550 +#: engine/core/models.py:549 msgid "digital file associated with this stock if applicable" msgstr "Digitaal bestand gekoppeld aan deze voorraad indien van toepassing" -#: core/models.py:551 +#: engine/core/models.py:550 msgid "digital file" msgstr "Digitaal bestand" -#: core/models.py:560 +#: engine/core/models.py:553 +msgid "system attributes" +msgstr "Systeemeigenschappen" + +#: engine/core/models.py:560 msgid "stock entries" msgstr "Voorraadboekingen" -#: core/models.py:565 +#: engine/core/models.py:565 msgid "" "Represents a product with attributes such as category, brand, tags, digital " "status, name, description, part number, and slug. Provides related utility " @@ -1880,158 +1919,158 @@ msgstr "" "verbeteren. Het wordt gebruikt om productgegevens en de bijbehorende " "informatie te definiëren en te manipuleren binnen een applicatie." -#: core/models.py:578 +#: engine/core/models.py:578 msgid "category this product belongs to" msgstr "Categorie waartoe dit product behoort" -#: core/models.py:587 +#: engine/core/models.py:587 msgid "optionally associate this product with a brand" msgstr "Dit product optioneel koppelen aan een merk" -#: core/models.py:593 +#: engine/core/models.py:593 msgid "tags that help describe or group this product" msgstr "Tags die dit product helpen beschrijven of groeperen" -#: core/models.py:598 +#: engine/core/models.py:598 msgid "indicates whether this product is digitally delivered" msgstr "Geeft aan of dit product digitaal wordt geleverd" -#: core/models.py:599 +#: engine/core/models.py:599 msgid "is product digital" msgstr "Is product digitaal" -#: core/models.py:605 +#: engine/core/models.py:605 msgid "provide a clear identifying name for the product" msgstr "Zorg voor een duidelijke identificerende naam voor het product" -#: core/models.py:606 +#: engine/core/models.py:606 msgid "product name" msgstr "Naam product" -#: core/models.py:612 core/models.py:867 +#: engine/core/models.py:612 engine/core/models.py:878 msgid "add a detailed description of the product" msgstr "Voeg een gedetailleerde beschrijving van het product toe" -#: core/models.py:613 +#: engine/core/models.py:613 msgid "product description" msgstr "Productbeschrijving" -#: core/models.py:620 +#: engine/core/models.py:620 msgid "part number for this product" msgstr "Onderdeelnummer voor dit product" -#: core/models.py:621 +#: engine/core/models.py:621 msgid "part number" msgstr "Onderdeelnummer" -#: core/models.py:640 +#: engine/core/models.py:640 msgid "stock keeping unit for this product" msgstr "Voorraadhoudende eenheid voor dit product" -#: core/models.py:702 +#: engine/core/models.py:713 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." -#: core/models.py:715 +#: engine/core/models.py:726 msgid "group of this attribute" msgstr "Groep van dit kenmerk" -#: core/models.py:721 +#: engine/core/models.py:732 msgid "string" msgstr "String" -#: core/models.py:722 +#: engine/core/models.py:733 msgid "integer" msgstr "Integer" -#: core/models.py:723 +#: engine/core/models.py:734 msgid "float" msgstr "Vlotter" -#: core/models.py:724 +#: engine/core/models.py:735 msgid "boolean" msgstr "Booleaans" -#: core/models.py:725 +#: engine/core/models.py:736 msgid "array" msgstr "Array" -#: core/models.py:726 +#: engine/core/models.py:737 msgid "object" msgstr "Object" -#: core/models.py:728 +#: engine/core/models.py:739 msgid "type of the attribute's value" msgstr "Type waarde van het kenmerk" -#: core/models.py:729 +#: engine/core/models.py:740 msgid "value type" msgstr "Waardetype" -#: core/models.py:734 +#: engine/core/models.py:745 msgid "name of this attribute" msgstr "Naam van dit kenmerk" -#: core/models.py:735 +#: engine/core/models.py:746 msgid "attribute's name" msgstr "Naam attribuut" -#: core/models.py:740 +#: engine/core/models.py:751 msgid "is filterable" msgstr "kan worden gefilterd" -#: core/models.py:741 +#: engine/core/models.py:752 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." -#: core/models.py:753 core/models.py:771 -#: core/templates/digital_order_delivered_email.html:134 +#: engine/core/models.py:764 engine/core/models.py:782 +#: engine/core/templates/digital_order_delivered_email.html:134 msgid "attribute" msgstr "Attribuut" -#: core/models.py:759 +#: engine/core/models.py:770 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." -#: core/models.py:770 +#: engine/core/models.py:781 msgid "attribute of this value" msgstr "Attribuut van deze waarde" -#: core/models.py:778 +#: engine/core/models.py:789 msgid "the specific product associated with this attribute's value" msgstr "Het specifieke product geassocieerd met de waarde van dit kenmerk" -#: core/models.py:784 +#: engine/core/models.py:795 msgid "the specific value for this attribute" msgstr "De specifieke waarde voor dit kenmerk" -#: core/models.py:797 +#: engine/core/models.py:808 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 "" @@ -2042,46 +2081,46 @@ msgstr "" "weergavevolgorde te bepalen. Het bevat ook een toegankelijkheidsfunctie met " "alternatieve tekst voor de afbeeldingen." -#: core/models.py:808 +#: engine/core/models.py:819 msgid "provide alternative text for the image for accessibility" msgstr "Geef alternatieve tekst voor de afbeelding voor toegankelijkheid" -#: core/models.py:809 +#: engine/core/models.py:820 msgid "image alt text" msgstr "Alt-tekst afbeelding" -#: core/models.py:812 +#: engine/core/models.py:823 msgid "upload the image file for this product" msgstr "Upload het afbeeldingsbestand voor dit product" -#: core/models.py:813 core/models.py:837 +#: engine/core/models.py:824 engine/core/models.py:848 msgid "product image" msgstr "Product afbeelding" -#: core/models.py:818 +#: engine/core/models.py:829 msgid "determines the order in which images are displayed" msgstr "Bepaalt de volgorde waarin afbeeldingen worden weergegeven" -#: core/models.py:819 +#: engine/core/models.py:830 msgid "display priority" msgstr "Prioriteit weergeven" -#: core/models.py:824 +#: engine/core/models.py:835 msgid "the product that this image represents" msgstr "Het product dat deze afbeelding vertegenwoordigt" -#: core/models.py:838 +#: engine/core/models.py:849 msgid "product images" msgstr "Product afbeeldingen" -#: core/models.py:843 +#: engine/core/models.py:854 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 " @@ -2091,39 +2130,39 @@ msgstr "" "integreert met de productcatalogus om de betreffende artikelen in de " "campagne te bepalen." -#: core/models.py:855 +#: engine/core/models.py:866 msgid "percentage discount for the selected products" msgstr "Kortingspercentage voor de geselecteerde producten" -#: core/models.py:856 +#: engine/core/models.py:867 msgid "discount percentage" msgstr "Kortingspercentage" -#: core/models.py:861 +#: engine/core/models.py:872 msgid "provide a unique name for this promotion" msgstr "Geef deze promotie een unieke naam" -#: core/models.py:862 +#: engine/core/models.py:873 msgid "promotion name" msgstr "Naam promotie" -#: core/models.py:868 +#: engine/core/models.py:879 msgid "promotion description" msgstr "Promotie beschrijving" -#: core/models.py:873 +#: engine/core/models.py:884 msgid "select which products are included in this promotion" msgstr "Selecteer welke producten onder deze promotie vallen" -#: core/models.py:874 +#: engine/core/models.py:885 msgid "included products" msgstr "Meegeleverde producten" -#: core/models.py:878 +#: engine/core/models.py:889 msgid "promotion" msgstr "Promotie" -#: core/models.py:889 +#: engine/core/models.py:900 msgid "" "Represents a user's wishlist for storing and managing desired products. The " "class provides functionality to manage a collection of products, supporting " @@ -2136,30 +2175,30 @@ msgstr "" "toevoegen en verwijderen van producten, maar ook bewerkingen voor het " "toevoegen en verwijderen van meerdere producten tegelijk." -#: core/models.py:901 +#: engine/core/models.py:912 msgid "products that the user has marked as wanted" msgstr "Producten die de gebruiker als gewenst heeft gemarkeerd" -#: core/models.py:909 +#: engine/core/models.py:920 msgid "user who owns this wishlist" msgstr "Gebruiker die eigenaar is van deze verlanglijst" -#: core/models.py:910 +#: engine/core/models.py:921 msgid "wishlist owner" msgstr "Eigenaar verlanglijstje" -#: core/models.py:918 +#: engine/core/models.py:929 msgid "wishlist" msgstr "Verlanglijst" -#: core/models.py:960 +#: engine/core/models.py:971 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 " @@ -2169,92 +2208,92 @@ msgstr "" "Het breidt functionaliteit uit van specifieke mixins en biedt extra " "aangepaste functies." -#: core/models.py:973 +#: engine/core/models.py:984 msgid "documentary" msgstr "Documentaire" -#: core/models.py:974 +#: engine/core/models.py:985 msgid "documentaries" msgstr "Documentaires" -#: core/models.py:984 +#: engine/core/models.py:995 msgid "unresolved" msgstr "Onopgelost" -#: core/models.py:989 +#: engine/core/models.py:1000 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." -#: core/models.py:1004 +#: engine/core/models.py:1015 msgid "address line for the customer" msgstr "Adresregel voor de klant" -#: core/models.py:1005 +#: engine/core/models.py:1016 msgid "address line" msgstr "Adresregel" -#: core/models.py:1007 +#: engine/core/models.py:1018 msgid "street" msgstr "Straat" -#: core/models.py:1008 +#: engine/core/models.py:1019 msgid "district" msgstr "District" -#: core/models.py:1009 +#: engine/core/models.py:1020 msgid "city" msgstr "Stad" -#: core/models.py:1010 +#: engine/core/models.py:1021 msgid "region" msgstr "Regio" -#: core/models.py:1011 +#: engine/core/models.py:1022 msgid "postal code" msgstr "Postcode" -#: core/models.py:1012 +#: engine/core/models.py:1023 msgid "country" msgstr "Land" -#: core/models.py:1019 +#: engine/core/models.py:1030 msgid "geolocation point: (longitude, latitude)" msgstr "Geolocatie Punt (lengtegraad, breedtegraad)" -#: core/models.py:1022 +#: engine/core/models.py:1033 msgid "full JSON response from geocoder for this address" msgstr "Volledig JSON-antwoord van geocoder voor dit adres" -#: core/models.py:1027 +#: engine/core/models.py:1038 msgid "stored JSON response from the geocoding service" msgstr "Opgeslagen JSON-antwoord van de geocoderingsservice" -#: core/models.py:1035 +#: engine/core/models.py:1046 msgid "address" msgstr "Adres" -#: core/models.py:1036 +#: engine/core/models.py:1047 msgid "addresses" msgstr "Adressen" -#: core/models.py:1048 +#: engine/core/models.py:1059 msgid "" "Represents a promotional code that can be used for discounts, managing its " "validity, type of discount, and application. The PromoCode class stores " @@ -2272,98 +2311,97 @@ msgstr "" "te valideren en toe te passen op een bestelling, waarbij ervoor wordt " "gezorgd dat aan de beperkingen wordt voldaan." -#: core/models.py:1062 +#: engine/core/models.py:1073 msgid "unique code used by a user to redeem a discount" msgstr "Unieke code die een gebruiker gebruikt om een korting te verzilveren" -#: core/models.py:1063 +#: engine/core/models.py:1074 msgid "promo code identifier" msgstr "Promo code identificatie" -#: core/models.py:1070 +#: engine/core/models.py:1081 msgid "fixed discount amount applied if percent is not used" msgstr "" "Vast kortingsbedrag dat wordt toegepast als percentage niet wordt gebruikt" -#: core/models.py:1071 +#: engine/core/models.py:1082 msgid "fixed discount amount" msgstr "Vast kortingsbedrag" -#: core/models.py:1077 +#: engine/core/models.py:1088 msgid "percentage discount applied if fixed amount is not used" msgstr "" "Kortingspercentage dat wordt toegepast als het vaste bedrag niet wordt " "gebruikt" -#: core/models.py:1078 +#: engine/core/models.py:1089 msgid "percentage discount" msgstr "Kortingspercentage" -#: core/models.py:1083 +#: engine/core/models.py:1094 msgid "timestamp when the promocode expires" msgstr "Tijdstempel wanneer de promocode verloopt" -#: core/models.py:1084 +#: engine/core/models.py:1095 msgid "end validity time" msgstr "Geldigheidsduur einde" -#: core/models.py:1089 +#: engine/core/models.py:1100 msgid "timestamp from which this promocode is valid" msgstr "Tijdstempel vanaf wanneer deze promocode geldig is" -#: core/models.py:1090 +#: engine/core/models.py:1101 msgid "start validity time" msgstr "Begin geldigheidsduur" -#: core/models.py:1095 +#: engine/core/models.py:1106 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" -#: core/models.py:1096 +#: engine/core/models.py:1107 msgid "usage timestamp" msgstr "Gebruik tijdstempel" -#: core/models.py:1101 +#: engine/core/models.py:1112 msgid "user assigned to this promocode if applicable" msgstr "Gebruiker toegewezen aan deze promocode indien van toepassing" -#: core/models.py:1102 +#: engine/core/models.py:1113 msgid "assigned user" msgstr "Toegewezen gebruiker" -#: core/models.py:1109 +#: engine/core/models.py:1120 msgid "promo code" msgstr "Kortingscode" -#: core/models.py:1110 +#: engine/core/models.py:1121 msgid "promo codes" msgstr "Actiecodes" -#: core/models.py:1125 +#: engine/core/models.py:1136 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." -#: core/models.py:1146 +#: engine/core/models.py:1157 msgid "promocode already used" msgstr "Promocode is al gebruikt" -#: core/models.py:1162 +#: engine/core/models.py:1173 #, python-brace-format msgid "invalid discount type for promocode {self.uuid}" msgstr "Ongeldig kortingstype voor promocode {self.uuid}!" -#: core/models.py:1171 +#: engine/core/models.py:1182 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 "" @@ -2376,141 +2414,142 @@ msgstr "" "bijgewerkt. De functionaliteit ondersteunt ook het beheer van de producten " "in de levenscyclus van de bestelling." -#: core/models.py:1188 +#: engine/core/models.py:1199 msgid "the billing address used for this order" msgstr "Het factuuradres dat voor deze bestelling is gebruikt" -#: core/models.py:1196 +#: engine/core/models.py:1207 msgid "optional promo code applied to this order" msgstr "Optionele promotiecode toegepast op deze bestelling" -#: core/models.py:1197 +#: engine/core/models.py:1208 msgid "applied promo code" msgstr "Kortingscode toegepast" -#: core/models.py:1205 +#: engine/core/models.py:1216 msgid "the shipping address used for this order" msgstr "Het verzendadres dat voor deze bestelling is gebruikt" -#: core/models.py:1206 +#: engine/core/models.py:1217 msgid "shipping address" msgstr "Verzendadres" -#: core/models.py:1212 +#: engine/core/models.py:1223 msgid "current status of the order in its lifecycle" msgstr "Huidige status van de order in zijn levenscyclus" -#: core/models.py:1213 +#: engine/core/models.py:1224 msgid "order status" msgstr "Bestelstatus" -#: core/models.py:1218 core/models.py:1695 +#: engine/core/models.py:1229 engine/core/models.py:1755 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" -#: core/models.py:1224 +#: engine/core/models.py:1235 msgid "json representation of order attributes for this order" msgstr "JSON-weergave van bestelattributen voor deze bestelling" -#: core/models.py:1230 +#: engine/core/models.py:1241 msgid "the user who placed the order" msgstr "De gebruiker die de bestelling heeft geplaatst" -#: core/models.py:1231 +#: engine/core/models.py:1242 msgid "user" msgstr "Gebruiker" -#: core/models.py:1237 +#: engine/core/models.py:1248 msgid "the timestamp when the order was finalized" msgstr "De tijdstempel waarop de bestelling is afgerond" -#: core/models.py:1238 +#: engine/core/models.py:1249 msgid "buy time" msgstr "Tijd kopen" -#: core/models.py:1245 +#: engine/core/models.py:1256 msgid "a human-readable identifier for the order" msgstr "Een menselijk leesbare identificatiecode voor de bestelling" -#: core/models.py:1246 +#: engine/core/models.py:1257 msgid "human readable id" msgstr "menselijk leesbare ID" -#: core/models.py:1252 +#: engine/core/models.py:1263 msgid "order" msgstr "Bestel" -#: core/models.py:1294 +#: engine/core/models.py:1305 msgid "a user must have only one pending order at a time" msgstr "Een gebruiker mag maar één lopende order tegelijk hebben!" -#: core/models.py:1326 +#: engine/core/models.py:1337 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." -#: core/models.py:1331 +#: engine/core/models.py:1342 msgid "you cannot add inactive products to order" msgstr "U kunt geen inactieve producten toevoegen aan uw bestelling" -#: core/models.py:1348 +#: engine/core/models.py:1359 msgid "you cannot add more products than available in stock" msgstr "Je kunt niet meer producten toevoegen dan er op voorraad zijn" -#: core/models.py:1370 core/models.py:1395 core/models.py:1403 +#: engine/core/models.py:1381 engine/core/models.py:1406 +#: engine/core/models.py:1414 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." -#: core/models.py:1391 +#: engine/core/models.py:1402 #, python-brace-format msgid "{name} does not exist with query <{query}>" msgstr "{name} bestaat niet met query <{query}>!" -#: core/models.py:1423 +#: engine/core/models.py:1434 msgid "promocode does not exist" msgstr "Promocode bestaat niet" -#: core/models.py:1429 +#: engine/core/models.py:1440 msgid "you can only buy physical products with shipping address specified" msgstr "Je kunt alleen fysieke producten kopen met opgegeven verzendadres!" -#: core/models.py:1448 +#: engine/core/models.py:1459 msgid "address does not exist" msgstr "Adres bestaat niet" -#: core/models.py:1469 core/models.py:1538 +#: engine/core/models.py:1480 engine/core/models.py:1549 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." -#: core/models.py:1472 core/models.py:1534 +#: engine/core/models.py:1483 engine/core/models.py:1545 msgid "invalid force value" msgstr "Ongeldige krachtwaarde" -#: core/models.py:1478 core/models.py:1541 +#: engine/core/models.py:1489 engine/core/models.py:1552 msgid "you cannot purchase an empty order!" msgstr "Je kunt geen lege bestelling kopen!" -#: core/models.py:1497 +#: engine/core/models.py:1508 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." -#: core/models.py:1511 +#: engine/core/models.py:1522 msgid "a user without a balance cannot buy with balance" msgstr "Een gebruiker zonder saldo kan niet kopen met saldo!" -#: core/models.py:1516 +#: engine/core/models.py:1527 msgid "insufficient funds to complete the order" msgstr "Onvoldoende fondsen om de bestelling te voltooien" -#: core/models.py:1550 +#: engine/core/models.py:1561 msgid "" "you cannot buy without registration, please provide the following " "information: customer name, customer email, customer phone number" @@ -2518,15 +2557,56 @@ msgstr "" "u niet kunt kopen zonder registratie, geef dan de volgende informatie: " "klantnaam, e-mail klant, telefoonnummer klant" -#: core/models.py:1559 +#: engine/core/models.py:1570 #, 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}!" -#: core/models.py:1668 +#: engine/core/models.py:1685 +msgid "" +"Manages user feedback for products. This class is designed to capture and " +"store user feedback for specific products that they have purchased. It " +"contains attributes to store user comments, a reference to the related " +"product in the order, and a user-assigned rating. The class uses database " +"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 " +"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:1697 +msgid "user-provided comments about their experience with the product" +msgstr "Opmerkingen van gebruikers over hun ervaring met het product" + +#: engine/core/models.py:1698 +msgid "feedback comments" +msgstr "Reacties" + +#: engine/core/models.py:1705 +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:1706 +msgid "related order product" +msgstr "Gerelateerd product bestellen" + +#: engine/core/models.py:1711 +msgid "user-assigned rating for the product" +msgstr "Door de gebruiker toegekende waardering voor het product" + +#: engine/core/models.py:1712 +msgid "product rating" +msgstr "Productbeoordeling" + +#: engine/core/models.py:1728 msgid "" "Represents products associated with orders and their attributes. The " "OrderProduct model maintains information about a product that is part of an " @@ -2546,120 +2626,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." -#: core/models.py:1683 +#: engine/core/models.py:1743 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" -#: core/models.py:1684 +#: engine/core/models.py:1744 msgid "purchase price at order time" msgstr "Aankoopprijs bij bestelling" -#: core/models.py:1689 +#: engine/core/models.py:1749 msgid "internal comments for admins about this ordered product" msgstr "Interne opmerkingen voor beheerders over dit bestelde product" -#: core/models.py:1690 +#: engine/core/models.py:1750 msgid "internal comments" msgstr "Interne opmerkingen" -#: core/models.py:1696 +#: engine/core/models.py:1756 msgid "user notifications" msgstr "Meldingen van gebruikers" -#: core/models.py:1701 +#: engine/core/models.py:1761 msgid "json representation of this item's attributes" msgstr "JSON weergave van de attributen van dit item" -#: core/models.py:1702 +#: engine/core/models.py:1762 msgid "ordered product attributes" msgstr "Geordende producteigenschappen" -#: core/models.py:1707 +#: engine/core/models.py:1767 msgid "reference to the parent order that contains this product" msgstr "Verwijzing naar de bovenliggende bestelling die dit product bevat" -#: core/models.py:1708 +#: engine/core/models.py:1768 msgid "parent order" msgstr "Ouderlijk bevel" -#: core/models.py:1717 +#: engine/core/models.py:1777 msgid "the specific product associated with this order line" msgstr "Het specifieke product dat bij deze bestelregel hoort" -#: core/models.py:1724 +#: engine/core/models.py:1784 msgid "quantity of this specific product in the order" msgstr "Hoeveelheid van dit specifieke product in de bestelling" -#: core/models.py:1725 +#: engine/core/models.py:1785 msgid "product quantity" msgstr "Hoeveelheid product" -#: core/models.py:1732 +#: engine/core/models.py:1792 msgid "current status of this product in the order" msgstr "Huidige status van dit product in de bestelling" -#: core/models.py:1733 +#: engine/core/models.py:1793 msgid "product line status" msgstr "Status productlijn" -#: core/models.py:1798 +#: engine/core/models.py:1858 msgid "order product must have an order" msgstr "Orderproduct moet een bijbehorende order hebben!" -#: core/models.py:1800 +#: engine/core/models.py:1860 #, python-brace-format msgid "wrong action specified for feedback: {action}" msgstr "Verkeerde actie opgegeven voor feedback: {action}!" -#: core/models.py:1814 +#: engine/core/models.py:1874 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." -#: core/models.py:1820 +#: engine/core/models.py:1880 msgid "name" msgstr "Naam" -#: core/models.py:1821 +#: engine/core/models.py:1881 msgid "URL of the integration" msgstr "URL van de integratie" -#: core/models.py:1822 +#: engine/core/models.py:1882 msgid "authentication credentials" msgstr "Authenticatiegegevens" -#: core/models.py:1844 +#: engine/core/models.py:1904 msgid "you can only have one default CRM provider" msgstr "Je kunt maar één standaard CRM-provider hebben" -#: core/models.py:1854 +#: engine/core/models.py:1914 msgid "CRM" msgstr "CRM" -#: core/models.py:1855 +#: engine/core/models.py:1915 msgid "CRMs" msgstr "CRM's" -#: core/models.py:1867 +#: engine/core/models.py:1927 msgid "order CRM link" msgstr "CRM link van bestelling" -#: core/models.py:1868 +#: engine/core/models.py:1928 msgid "orders CRM links" msgstr "CRM-koppelingen voor bestellingen" -#: core/models.py:1873 +#: engine/core/models.py:1933 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 " @@ -2669,133 +2749,87 @@ msgstr "" "om een URL te genereren voor het downloaden van de activa wanneer de " "bijbehorende order een voltooide status heeft." -#: core/models.py:1887 +#: engine/core/models.py:1947 msgid "download" msgstr "Downloaden" -#: core/models.py:1888 +#: engine/core/models.py:1948 msgid "downloads" msgstr "Downloads" -#: core/models.py:1902 -msgid "" -"Manages user feedback for products. This class is designed to capture and " -"store user feedback for specific products that they have purchased. It " -"contains attributes to store user comments, a reference to the related " -"product in the order, and a user-assigned rating. The class uses database " -"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 " -"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." - -#: core/models.py:1914 -msgid "user-provided comments about their experience with the product" -msgstr "Opmerkingen van gebruikers over hun ervaring met het product" - -#: core/models.py:1915 -msgid "feedback comments" -msgstr "Reacties" - -#: core/models.py:1922 -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" - -#: core/models.py:1923 -msgid "related order product" -msgstr "Gerelateerd product bestellen" - -#: core/models.py:1928 -msgid "user-assigned rating for the product" -msgstr "Door de gebruiker toegekende waardering voor het product" - -#: core/models.py:1929 -msgid "product rating" -msgstr "Productbeoordeling" - -#: core/serializers/utility.py:89 +#: engine/core/serializers/utility.py:89 msgid "" "you must provide a comment, rating, and order product uuid to add feedback." msgstr "" "Om feedback toe te voegen, moet je een opmerking, beoordeling en " "productidentificatie opgeven." -#: core/signals.py:73 -msgid "error during promocode creation: {e!s}" -msgstr "Fout tijdens aanmaken promocode: {e!s}" - -#: core/sitemaps.py:25 +#: engine/core/sitemaps.py:25 msgid "Home" msgstr "Home" -#: core/sitemaps.py:30 +#: engine/core/sitemaps.py:30 msgid "Contact Us" msgstr "Neem contact met ons op" -#: core/sitemaps.py:35 +#: engine/core/sitemaps.py:35 msgid "About Us" msgstr "Over ons" -#: core/templates/digital_order_created_email.html:7 -#: core/templates/digital_order_created_email.html:100 -#: core/templates/digital_order_delivered_email.html:6 -#: core/templates/shipped_order_created_email.html:7 -#: core/templates/shipped_order_created_email.html:99 -#: core/templates/shipped_order_delivered_email.html:7 -#: core/templates/shipped_order_delivered_email.html:99 +#: engine/core/templates/digital_order_created_email.html:7 +#: engine/core/templates/digital_order_created_email.html:100 +#: engine/core/templates/digital_order_delivered_email.html:6 +#: engine/core/templates/shipped_order_created_email.html:7 +#: engine/core/templates/shipped_order_created_email.html:99 +#: engine/core/templates/shipped_order_delivered_email.html:7 +#: engine/core/templates/shipped_order_delivered_email.html:99 msgid "order confirmation" msgstr "Orderbevestiging" -#: core/templates/digital_order_created_email.html:95 -#: core/templates/digital_order_delivered_email.html:94 -#: core/templates/promocode_granted_email.html:94 -#: core/templates/shipped_order_created_email.html:94 -#: core/templates/shipped_order_delivered_email.html:94 +#: engine/core/templates/digital_order_created_email.html:95 +#: engine/core/templates/digital_order_delivered_email.html:94 +#: engine/core/templates/promocode_granted_email.html:94 +#: engine/core/templates/shipped_order_created_email.html:94 +#: engine/core/templates/shipped_order_delivered_email.html:94 msgid "logo" msgstr "Logo" -#: core/templates/digital_order_created_email.html:101 -#: core/templates/shipped_order_created_email.html:100 -#: core/templates/shipped_order_delivered_email.html:100 +#: engine/core/templates/digital_order_created_email.html:101 +#: engine/core/templates/shipped_order_created_email.html:100 +#: engine/core/templates/shipped_order_delivered_email.html:100 #, python-format msgid "hello %(order.user.first_name)s," msgstr "Hallo %(order.user.first_name)s," -#: core/templates/digital_order_created_email.html:102 +#: engine/core/templates/digital_order_created_email.html:102 #, 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 " "informeren dat we uw bestelling in behandeling hebben genomen. Hieronder " "vindt u de gegevens van uw bestelling:" -#: core/templates/digital_order_created_email.html:112 -#: core/templates/digital_order_delivered_email.html:110 -#: core/templates/shipped_order_created_email.html:110 -#: core/templates/shipped_order_delivered_email.html:110 +#: engine/core/templates/digital_order_created_email.html:112 +#: engine/core/templates/digital_order_delivered_email.html:110 +#: engine/core/templates/shipped_order_created_email.html:110 +#: engine/core/templates/shipped_order_delivered_email.html:110 msgid "total" msgstr "Totaal" -#: core/templates/digital_order_created_email.html:125 -#: core/templates/digital_order_delivered_email.html:157 -#: core/templates/shipped_order_created_email.html:127 -#: core/templates/shipped_order_delivered_email.html:127 +#: engine/core/templates/digital_order_created_email.html:125 +#: engine/core/templates/digital_order_delivered_email.html:157 +#: engine/core/templates/shipped_order_created_email.html:127 +#: engine/core/templates/shipped_order_delivered_email.html:127 msgid "total price" msgstr "Totale prijs" -#: core/templates/digital_order_created_email.html:131 -#: core/templates/shipped_order_created_email.html:140 -#: core/templates/shipped_order_delivered_email.html:140 +#: engine/core/templates/digital_order_created_email.html:131 +#: engine/core/templates/shipped_order_created_email.html:140 +#: engine/core/templates/shipped_order_delivered_email.html:140 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" @@ -2804,28 +2838,28 @@ msgstr "" "Als je vragen hebt, neem dan gerust contact op met onze ondersteuning op " "%(config.EMAIL_HOST_USER)s." -#: core/templates/digital_order_created_email.html:133 +#: engine/core/templates/digital_order_created_email.html:133 #, python-format msgid "best regards,
the %(config.PROJECT_NAME)s team" msgstr "Vriendelijke groeten,
het %(config.PROJECT_NAME)s team" -#: core/templates/digital_order_created_email.html:139 -#: core/templates/digital_order_delivered_email.html:171 -#: core/templates/promocode_granted_email.html:114 +#: engine/core/templates/digital_order_created_email.html:139 +#: engine/core/templates/digital_order_delivered_email.html:171 +#: engine/core/templates/promocode_granted_email.html:114 msgid "all rights reserved" msgstr "Alle rechten voorbehouden" -#: core/templates/digital_order_delivered_email.html:99 +#: engine/core/templates/digital_order_delivered_email.html:99 msgid "order delivered" msgstr "Bestelling geleverd" -#: core/templates/digital_order_delivered_email.html:100 -#: core/templates/promocode_granted_email.html:100 +#: engine/core/templates/digital_order_delivered_email.html:100 +#: engine/core/templates/promocode_granted_email.html:100 #, python-format msgid "hello %(user_first_name)s," msgstr "Hallo %(user_first_name)s," -#: core/templates/digital_order_delivered_email.html:101 +#: engine/core/templates/digital_order_delivered_email.html:101 #, python-format msgid "" "we have successfully processed your order №%(order_uuid)s! below are the\n" @@ -2834,7 +2868,7 @@ msgstr "" "We hebben uw bestelling succesvol verwerkt №%(order_uuid)s! Hieronder vindt " "u de details van uw bestelling:" -#: core/templates/digital_order_delivered_email.html:128 +#: engine/core/templates/digital_order_delivered_email.html:128 msgid "" "additional\n" " information" @@ -2842,13 +2876,13 @@ msgstr "" "aanvullende\n" " informatie" -#: core/templates/digital_order_delivered_email.html:137 -#: core/templates/json_table_widget.html:6 +#: engine/core/templates/digital_order_delivered_email.html:137 +#: engine/core/templates/json_table_widget.html:6 msgid "value" msgstr "Waarde" -#: core/templates/digital_order_delivered_email.html:163 -#: core/templates/promocode_granted_email.html:106 +#: engine/core/templates/digital_order_delivered_email.html:163 +#: engine/core/templates/promocode_granted_email.html:106 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" @@ -2857,26 +2891,26 @@ msgstr "" "Als je vragen hebt, kun je contact opnemen met onze klantenservice op " "%(contact_email)s." -#: core/templates/digital_order_delivered_email.html:165 -#: core/templates/promocode_granted_email.html:108 +#: engine/core/templates/digital_order_delivered_email.html:165 +#: engine/core/templates/promocode_granted_email.html:108 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "Vriendelijke groeten,
het %(project_name)s team" -#: core/templates/json_table_widget.html:5 +#: engine/core/templates/json_table_widget.html:5 msgid "key" msgstr "Sleutel" -#: core/templates/json_table_widget.html:40 +#: engine/core/templates/json_table_widget.html:40 msgid "Add Row" msgstr "Rij toevoegen" -#: core/templates/promocode_granted_email.html:6 -#: core/templates/promocode_granted_email.html:99 +#: engine/core/templates/promocode_granted_email.html:6 +#: engine/core/templates/promocode_granted_email.html:99 msgid "promocode granted" msgstr "Promocode toegekend" -#: core/templates/promocode_granted_email.html:101 +#: engine/core/templates/promocode_granted_email.html:101 msgid "" "Thank you for staying with us! We have granted you with a promocode\n" " for " @@ -2884,33 +2918,34 @@ msgstr "" "Bedankt dat je bij ons bent gebleven! We hebben u een promocode\n" " voor" -#: core/templates/shipped_order_created_email.html:101 -#: core/templates/shipped_order_delivered_email.html:101 +#: 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. " "Hieronder vindt u de gegevens van uw bestelling:" -#: core/templates/shipped_order_created_email.html:123 -#: core/templates/shipped_order_delivered_email.html:123 +#: engine/core/templates/shipped_order_created_email.html:123 +#: engine/core/templates/shipped_order_delivered_email.html:123 msgid "shipping price" msgstr "Verzendprijs" -#: core/templates/shipped_order_created_email.html:133 -#: core/templates/shipped_order_delivered_email.html:133 +#: engine/core/templates/shipped_order_created_email.html:133 +#: engine/core/templates/shipped_order_delivered_email.html:133 msgid "your order will be delivered to the following address:" msgstr "Je bestelling wordt afgeleverd op het volgende adres:" -#: core/templates/shipped_order_created_email.html:142 -#: core/templates/shipped_order_delivered_email.html:142 +#: engine/core/templates/shipped_order_created_email.html:142 +#: engine/core/templates/shipped_order_delivered_email.html:142 #, python-format msgid "best regards,
The %(config.PROJECT_NAME)s team" msgstr "Vriendelijke groeten,
Het %(config.PROJECT_NAME)s team" -#: core/templates/shipped_order_created_email.html:147 -#: core/templates/shipped_order_delivered_email.html:147 +#: engine/core/templates/shipped_order_created_email.html:147 +#: engine/core/templates/shipped_order_delivered_email.html:147 msgid "" "all rights\n" " reserved" @@ -2918,51 +2953,50 @@ msgstr "" "alle rechten\n" " voorbehouden" -#: core/utils/caching.py:44 +#: engine/core/utils/caching.py:44 msgid "both data and timeout are required" msgstr "Zowel gegevens als time-out zijn vereist" -#: core/utils/caching.py:46 +#: engine/core/utils/caching.py:46 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" -#: core/utils/emailing.py:27 +#: engine/core/utils/emailing.py:27 #, python-brace-format msgid "{config.PROJECT_NAME} | contact us initiated" msgstr "{config.PROJECT_NAME} | neem contact met ons op" -#: core/utils/emailing.py:73 +#: engine/core/utils/emailing.py:73 #, python-brace-format msgid "{config.PROJECT_NAME} | order confirmation" msgstr "{config.PROJECT_NAME} | Orderbevestiging" -#: core/utils/emailing.py:105 +#: engine/core/utils/emailing.py:105 #, python-brace-format msgid "{config.PROJECT_NAME} | order delivered" msgstr "{config.PROJECT_NAME} | Bestelling afgeleverd" -#: core/utils/emailing.py:188 +#: engine/core/utils/emailing.py:188 #, python-brace-format msgid "{config.PROJECT_NAME} | promocode granted" msgstr "{config.PROJECT_NAME} | promocode toegekend" -#: core/utils/messages.py:3 +#: engine/core/utils/messages.py:3 msgid "you do not have permission to perform this action." msgstr "U hebt geen toestemming om deze actie uit te voeren." -#: core/utils/nominatim.py:8 +#: engine/core/utils/nominatim.py:8 msgid "NOMINATIM_URL must be configured." msgstr "De parameter NOMINATIM_URL moet worden geconfigureerd!" -#: core/validators.py:16 +#: engine/core/validators.py:16 #, python-brace-format msgid "image dimensions should not exceed w{max_width} x h{max_height} pixels" msgstr "" "Afbeeldingsafmetingen mogen niet groter zijn dan w{max_width} x " "h{max_height} pixels" -#: core/views.py:72 +#: engine/core/views.py:71 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." @@ -2971,7 +3005,7 @@ msgstr "" "terug. Het zorgt ervoor dat het antwoord de juiste inhoudstype header voor " "XML bevat." -#: core/views.py:87 +#: engine/core/views.py:86 msgid "" "Handles the detailed view response for a sitemap. This function processes " "the request, fetches the appropriate sitemap detail response, and sets the " @@ -2981,85 +3015,96 @@ msgstr "" "verwerkt het verzoek, haalt het juiste sitemap detail antwoord op en stelt " "de Content-Type header in voor XML." -#: core/views.py:116 +#: engine/core/views.py:115 msgid "" "Returns a list of supported languages and their corresponding information." msgstr "Geeft een lijst met ondersteunde talen en de bijbehorende informatie." -#: core/views.py:148 +#: engine/core/views.py:147 msgid "Returns the parameters of the website as a JSON object." msgstr "Retourneert de parameters van de website als een JSON-object." -#: core/views.py:167 +#: engine/core/views.py:166 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." -#: core/views.py:194 +#: engine/core/views.py:193 msgid "Handles `contact us` form submissions." msgstr "Handelt `contact met ons` formulier inzendingen af." -#: core/views.py:215 +#: engine/core/views.py:214 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." -#: core/views.py:255 +#: engine/core/views.py:254 msgid "Handles global search queries." msgstr "Handelt globale zoekopdrachten af." -#: core/views.py:270 +#: engine/core/views.py:269 msgid "Handles the logic of buying as a business without registration." msgstr "Behandelt de logica van kopen als bedrijf zonder registratie." -#: core/views.py:306 +#: engine/core/views.py:305 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." -#: core/views.py:316 +#: engine/core/views.py:315 msgid "order_product_uuid is required" msgstr "order_product_uuid is vereist" -#: core/views.py:322 +#: engine/core/views.py:321 msgid "you can only download the digital asset once" msgstr "U kunt het digitale goed maar één keer downloaden" -#: core/views.py:325 +#: engine/core/views.py:324 msgid "the order must be paid before downloading the digital asset" msgstr "" "de bestelling moet worden betaald voordat het digitale actief kan worden " "gedownload" -#: core/views.py:331 +#: engine/core/views.py:330 msgid "the order product does not have a product" msgstr "Het bestelde product heeft geen product" -#: core/views.py:369 +#: engine/core/views.py:368 msgid "favicon not found" msgstr "favicon niet gevonden" -#: core/views.py:374 +#: engine/core/views.py:373 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." -#: core/views.py:386 +#: engine/core/views.py:385 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 " @@ -3067,11 +3112,11 @@ msgstr "" "Django admin-interface. Het gebruikt Django's `redirect` functie voor het " "afhandelen van de HTTP-omleiding." -#: core/views.py:399 +#: engine/core/views.py:398 msgid "Returns current version of the eVibes. " msgstr "Geeft als resultaat de huidige versie van eVibes." -#: core/viewsets.py:137 +#: engine/core/viewsets.py:137 msgid "" "Defines a viewset for managing Evibes-related operations. The EvibesViewSet " "class inherits from ModelViewSet and provides functionality for handling " @@ -3079,19 +3124,18 @@ msgid "" "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 Evibes-gerelateerde handelingen. " +"De klasse EvibesViewSet erft van ModelViewSet en biedt functionaliteit voor " +"het afhandelen van acties en bewerkingen op Evibes-entiteiten. Het omvat " "ondersteuning voor dynamische serializer klassen op basis van de huidige " "actie, aanpasbare machtigingen, en rendering formaten." -#: core/viewsets.py:157 +#: engine/core/viewsets.py:157 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, " @@ -3099,7 +3143,7 @@ msgstr "" "laag van de applicatie en biedt een gestandaardiseerde manier om verzoeken " "en reacties voor AttributeGroup-gegevens te verwerken." -#: core/viewsets.py:176 +#: engine/core/viewsets.py:176 msgid "" "Handles operations related to Attribute objects within the application. " "Provides a set of API endpoints to interact with Attribute data. This class " @@ -3112,25 +3156,24 @@ 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." -#: core/viewsets.py:195 +#: engine/core/viewsets.py:195 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." -#: core/viewsets.py:214 +#: engine/core/viewsets.py:214 msgid "" "Manages views for Category-related operations. The CategoryViewSet class is " "responsible for handling operations related to the Category model in the " @@ -3142,10 +3185,10 @@ 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." -#: core/viewsets.py:326 +#: engine/core/viewsets.py:326 msgid "" "Represents a viewset for managing Brand instances. This class provides " "functionality for querying, filtering, and serializing Brand objects. It " @@ -3157,7 +3200,7 @@ msgstr "" "Merk objecten. Het gebruikt Django's ViewSet framework om de implementatie " "van API endpoints voor Merk objecten te vereenvoudigen." -#: core/viewsets.py:438 +#: engine/core/viewsets.py:438 msgid "" "Manages operations related to the `Product` model in the system. This class " "provides a viewset for managing products, including their filtering, " @@ -3176,7 +3219,7 @@ msgstr "" "machtigingen en het verkrijgen van toegang tot gerelateerde feedback over " "een product." -#: core/viewsets.py:568 +#: engine/core/viewsets.py:568 msgid "" "Represents a viewset for managing Vendor objects. This viewset allows " "fetching, filtering, and serializing Vendor data. It defines the queryset, " @@ -3187,17 +3230,17 @@ 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." -#: core/viewsets.py:588 +#: engine/core/viewsets.py:588 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 `EvibesViewSet` and makes " "use of Django's filtering system for querying data." msgstr "" "Weergave van een weergaveset die Feedback-objecten afhandelt. Deze klasse " @@ -3208,14 +3251,14 @@ msgstr "" "implementeren. Het breidt de basis `EvibesViewSet` uit en maakt gebruik van " "Django's filtersysteem voor het opvragen van gegevens." -#: core/viewsets.py:615 +#: engine/core/viewsets.py:615 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 " @@ -3228,49 +3271,49 @@ msgstr "" "gebaseerd op de specifieke actie die wordt uitgevoerd en dwingt " "dienovereenkomstig permissies af tijdens de interactie met ordergegevens." -#: core/viewsets.py:813 +#: engine/core/viewsets.py:813 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" -#: core/viewsets.py:867 +#: engine/core/viewsets.py:867 msgid "Manages operations related to Product images in the application. " msgstr "" "Beheert bewerkingen met betrekking tot productafbeeldingen in de applicatie." -#: core/viewsets.py:880 +#: engine/core/viewsets.py:880 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." -#: core/viewsets.py:902 +#: engine/core/viewsets.py:902 msgid "Represents a view set for managing promotions. " msgstr "Vertegenwoordigt een view set voor het beheren van promoties." -#: core/viewsets.py:915 +#: engine/core/viewsets.py:915 msgid "Handles operations related to Stock data in the system." msgstr "" "Verwerkt bewerkingen met betrekking tot voorraadgegevens in het systeem." -#: core/viewsets.py:929 +#: engine/core/viewsets.py:929 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." @@ -3284,7 +3327,7 @@ msgstr "" "verlanglijstjes kunnen beheren, tenzij er expliciete toestemmingen zijn " "verleend." -#: core/viewsets.py:1044 +#: engine/core/viewsets.py:1044 msgid "" "This class provides viewset functionality for managing `Address` objects. " "The AddressViewSet class enables CRUD operations, filtering, and custom " @@ -3292,18 +3335,18 @@ 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." -#: core/viewsets.py:1111 +#: engine/core/viewsets.py:1111 #, python-brace-format msgid "Geocoding error: {e}" msgstr "Fout bij geocodering: {e}" -#: core/viewsets.py:1119 +#: engine/core/viewsets.py:1119 msgid "" "Handles operations related to Product Tags within the application. This " "class provides functionality for retrieving, filtering, and serializing " @@ -3312,8 +3355,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 new file mode 100644 index 00000000..474606dc Binary files /dev/null and b/engine/core/locale/no_NO/LC_MESSAGES/django.mo differ diff --git a/core/locale/no_NO/LC_MESSAGES/django.po b/engine/core/locale/no_NO/LC_MESSAGES/django.po similarity index 67% rename from core/locale/no_NO/LC_MESSAGES/django.po rename to engine/core/locale/no_NO/LC_MESSAGES/django.po index 93df3238..9ca32bd8 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,211 +13,214 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: core/abstract.py:12 +#: engine/core/abstract.py:12 msgid "unique id" msgstr "Unik ID" -#: core/abstract.py:13 +#: engine/core/abstract.py:13 msgid "unique id is used to surely identify any database object" msgstr "" "Unik ID brukes til å identifisere alle databaseobjekter på en sikker måte" -#: core/abstract.py:20 +#: engine/core/abstract.py:20 msgid "is active" msgstr "Er aktiv" -#: core/abstract.py:21 +#: engine/core/abstract.py:21 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" -#: core/abstract.py:23 core/choices.py:18 +#: engine/core/abstract.py:23 engine/core/choices.py:18 msgid "created" msgstr "Opprettet" -#: core/abstract.py:23 +#: engine/core/abstract.py:23 msgid "when the object first appeared on the database" msgstr "Når objektet først dukket opp i databasen" -#: core/abstract.py:24 +#: engine/core/abstract.py:24 msgid "modified" msgstr "Modifisert" -#: core/abstract.py:24 +#: engine/core/abstract.py:24 msgid "when the object was last modified" msgstr "Når objektet sist ble redigert" -#: core/admin.py:68 +#: engine/core/admin.py:68 msgid "translations" msgstr "Oversettelser" -#: core/admin.py:72 +#: engine/core/admin.py:72 msgid "general" msgstr "Generelt" -#: core/admin.py:74 +#: engine/core/admin.py:74 msgid "relations" msgstr "Relasjoner" -#: core/admin.py:76 +#: engine/core/admin.py:76 msgid "additional info" msgstr "ytterligere informasjon" -#: core/admin.py:94 +#: engine/core/admin.py:94 msgid "metadata" msgstr "Metadata" -#: core/admin.py:101 +#: engine/core/admin.py:101 msgid "timestamps" msgstr "Tidsstempler" -#: core/admin.py:116 +#: engine/core/admin.py:116 #, python-format msgid "activate selected %(verbose_name_plural)s" msgstr "Aktiver valgt %(verbose_name_plural)s" -#: core/admin.py:121 +#: engine/core/admin.py:121 msgid "selected items have been activated." msgstr "Utvalgte elementer har blitt aktivert!" -#: core/admin.py:127 +#: engine/core/admin.py:127 #, python-format msgid "deactivate selected %(verbose_name_plural)s" msgstr "Deaktiver valgt %(verbose_name_plural)s" -#: core/admin.py:132 +#: engine/core/admin.py:132 msgid "selected items have been deactivated." msgstr "Utvalgte elementer har blitt deaktivert!" -#: core/admin.py:144 core/graphene/object_types.py:582 -#: core/graphene/object_types.py:589 core/models.py:783 core/models.py:791 +#: engine/core/admin.py:144 engine/core/graphene/object_types.py:586 +#: engine/core/graphene/object_types.py:593 engine/core/models.py:794 +#: engine/core/models.py:802 msgid "attribute value" msgstr "Attributtverdi" -#: core/admin.py:145 core/graphene/object_types.py:75 core/models.py:792 +#: engine/core/admin.py:145 engine/core/graphene/object_types.py:75 +#: engine/core/models.py:803 msgid "attribute values" msgstr "Attributtverdier" -#: core/admin.py:156 +#: engine/core/admin.py:156 msgid "image" msgstr "Bilde" -#: core/admin.py:157 core/graphene/object_types.py:474 +#: engine/core/admin.py:157 engine/core/graphene/object_types.py:474 msgid "images" msgstr "Bilder" -#: core/admin.py:168 core/models.py:559 +#: engine/core/admin.py:169 engine/core/models.py:559 msgid "stock" msgstr "Lager" -#: core/admin.py:169 core/graphene/object_types.py:636 +#: engine/core/admin.py:170 engine/core/graphene/object_types.py:640 msgid "stocks" msgstr "Aksjer" -#: core/admin.py:182 core/models.py:1744 +#: engine/core/admin.py:183 engine/core/models.py:1804 msgid "order product" msgstr "Bestill produkt" -#: core/admin.py:183 core/graphene/object_types.py:389 core/models.py:1745 +#: engine/core/admin.py:184 engine/core/graphene/object_types.py:389 +#: engine/core/models.py:1805 msgid "order products" msgstr "Bestill produkter" -#: core/admin.py:196 core/admin.py:197 +#: engine/core/admin.py:197 engine/core/admin.py:198 msgid "children" msgstr "Barn" -#: core/admin.py:965 +#: engine/core/admin.py:969 msgid "Config" msgstr "Konfigurer" -#: core/apps.py:8 +#: engine/core/apps.py:8 msgid "core" msgstr "Kjerne" -#: core/choices.py:4 core/choices.py:20 +#: engine/core/choices.py:4 engine/core/choices.py:20 msgid "finished" msgstr "Ferdig" -#: core/choices.py:5 core/choices.py:19 +#: engine/core/choices.py:5 engine/core/choices.py:19 msgid "delivering" msgstr "Leverer" -#: core/choices.py:6 +#: engine/core/choices.py:6 msgid "delivered" msgstr "Leveres" -#: core/choices.py:7 +#: engine/core/choices.py:7 msgid "canceled" msgstr "Avlyst" -#: core/choices.py:8 core/choices.py:16 core/choices.py:24 +#: engine/core/choices.py:8 engine/core/choices.py:16 engine/core/choices.py:24 msgid "failed" msgstr "Mislyktes" -#: core/choices.py:9 core/choices.py:15 +#: engine/core/choices.py:9 engine/core/choices.py:15 msgid "pending" msgstr "Avventer" -#: core/choices.py:10 +#: engine/core/choices.py:10 msgid "accepted" msgstr "Godkjent" -#: core/choices.py:11 +#: engine/core/choices.py:11 msgid "money returned" msgstr "Penger returnert" -#: core/choices.py:17 +#: engine/core/choices.py:17 msgid "payment" msgstr "Betaling" -#: core/choices.py:21 +#: engine/core/choices.py:21 msgid "momental" msgstr "Momental" -#: core/choices.py:24 +#: engine/core/choices.py:24 msgid "successful" msgstr "Vellykket" -#: core/docs/drf/views.py:17 core/graphene/mutations.py:38 +#: engine/core/docs/drf/views.py:17 engine/core/graphene/mutations.py:38 msgid "cache I/O" msgstr "Cache I/O" -#: core/docs/drf/views.py:19 +#: engine/core/docs/drf/views.py:19 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 "" "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." -#: core/docs/drf/views.py:32 +#: engine/core/docs/drf/views.py:32 msgid "get a list of supported languages" msgstr "Få en liste over språk som støttes" -#: core/docs/drf/views.py:41 +#: engine/core/docs/drf/views.py:41 msgid "get application's exposable parameters" msgstr "Hent applikasjonens eksponerbare parametere" -#: core/docs/drf/views.py:48 +#: engine/core/docs/drf/views.py:48 msgid "send a message to the support team" msgstr "Send en melding til supportteamet" -#: core/docs/drf/views.py:59 core/graphene/mutations.py:58 +#: engine/core/docs/drf/views.py:59 engine/core/graphene/mutations.py:58 msgid "request a CORSed URL" msgstr "Be om en CORSed URL. Bare https er tillatt." -#: core/docs/drf/views.py:85 +#: engine/core/docs/drf/views.py:85 msgid "global search endpoint to query across project's tables" msgstr "Globalt søkeendepunkt for å søke på tvers av prosjektets tabeller" -#: core/docs/drf/views.py:91 +#: engine/core/docs/drf/views.py:91 msgid "purchase an order as a business" msgstr "Kjøp en ordre som en bedrift" -#: core/docs/drf/views.py:98 +#: engine/core/docs/drf/views.py:98 msgid "" "purchase an order as a business, using the provided `products` with " "`product_uuid` and `attributes`." @@ -225,216 +228,219 @@ msgstr "" "Kjøp en ordre som en bedrift, ved hjelp av de angitte `produktene` med " "`product_uuid` og `attributter`." -#: core/docs/drf/viewsets.py:58 +#: engine/core/docs/drf/viewsets.py:58 msgid "list all attribute groups (simple view)" msgstr "Liste over alle attributtgrupper (enkel visning)" -#: core/docs/drf/viewsets.py:62 +#: engine/core/docs/drf/viewsets.py:62 msgid "retrieve a single attribute group (detailed view)" msgstr "Hent en enkelt attributtgruppe (detaljert visning)" -#: core/docs/drf/viewsets.py:66 +#: engine/core/docs/drf/viewsets.py:66 msgid "create an attribute group" msgstr "Opprett en attributtgruppe" -#: core/docs/drf/viewsets.py:70 +#: engine/core/docs/drf/viewsets.py:70 msgid "delete an attribute group" msgstr "Slett en attributtgruppe" -#: core/docs/drf/viewsets.py:74 +#: engine/core/docs/drf/viewsets.py:74 msgid "rewrite an existing attribute group saving non-editables" msgstr "" "Skriv om en eksisterende attributtgruppe for å lagre ikke-redigerbare " "attributter" -#: core/docs/drf/viewsets.py:78 -msgid "" -"rewrite some fields of an existing attribute group saving non-editables" +#: engine/core/docs/drf/viewsets.py:78 +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" -#: core/docs/drf/viewsets.py:85 +#: engine/core/docs/drf/viewsets.py:85 msgid "list all attributes (simple view)" msgstr "Liste over alle attributter (enkel visning)" -#: core/docs/drf/viewsets.py:89 +#: engine/core/docs/drf/viewsets.py:89 msgid "retrieve a single attribute (detailed view)" msgstr "Hent et enkelt attributt (detaljert visning)" -#: core/docs/drf/viewsets.py:93 +#: engine/core/docs/drf/viewsets.py:93 msgid "create an attribute" msgstr "Opprett et attributt" -#: core/docs/drf/viewsets.py:97 +#: engine/core/docs/drf/viewsets.py:97 msgid "delete an attribute" msgstr "Slett et attributt" -#: core/docs/drf/viewsets.py:101 +#: engine/core/docs/drf/viewsets.py:101 msgid "rewrite an existing attribute saving non-editables" msgstr "" "Skriv om et eksisterende attributt for å lagre ikke-redigerbare attributter" -#: core/docs/drf/viewsets.py:105 +#: engine/core/docs/drf/viewsets.py:105 msgid "rewrite some fields of an existing attribute saving non-editables" msgstr "" "Skriv om noen av feltene i et eksisterende attributt for å lagre ikke-" "redigerbare felt" -#: core/docs/drf/viewsets.py:112 +#: engine/core/docs/drf/viewsets.py:112 msgid "list all attribute values (simple view)" msgstr "Liste over alle attributtverdier (enkel visning)" -#: core/docs/drf/viewsets.py:116 +#: engine/core/docs/drf/viewsets.py:116 msgid "retrieve a single attribute value (detailed view)" msgstr "Hent en enkelt attributtverdi (detaljert visning)" -#: core/docs/drf/viewsets.py:120 +#: engine/core/docs/drf/viewsets.py:120 msgid "create an attribute value" msgstr "Opprett en attributtverdi" -#: core/docs/drf/viewsets.py:124 +#: engine/core/docs/drf/viewsets.py:124 msgid "delete an attribute value" msgstr "Slett en attributtverdi" -#: core/docs/drf/viewsets.py:128 +#: engine/core/docs/drf/viewsets.py:128 msgid "rewrite an existing attribute value saving non-editables" msgstr "" "Omskrive en eksisterende attributtverdi for å lagre ikke-redigerbare " "attributter" -#: core/docs/drf/viewsets.py:132 -msgid "" -"rewrite some fields of an existing attribute value saving non-editables" +#: engine/core/docs/drf/viewsets.py:132 +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" -#: core/docs/drf/viewsets.py:139 core/docs/drf/viewsets.py:140 +#: engine/core/docs/drf/viewsets.py:139 engine/core/docs/drf/viewsets.py:140 msgid "list all categories (simple view)" msgstr "Liste over alle kategorier (enkel visning)" -#: core/docs/drf/viewsets.py:144 core/docs/drf/viewsets.py:145 +#: engine/core/docs/drf/viewsets.py:144 engine/core/docs/drf/viewsets.py:145 msgid "retrieve a single category (detailed view)" msgstr "Hent en enkelt kategori (detaljert visning)" -#: core/docs/drf/viewsets.py:149 core/docs/drf/viewsets.py:150 +#: engine/core/docs/drf/viewsets.py:150 engine/core/docs/drf/viewsets.py:183 +msgid "Category UUID or slug" +msgstr "Kategori UUID eller slug" + +#: engine/core/docs/drf/viewsets.py:157 engine/core/docs/drf/viewsets.py:158 msgid "create a category" msgstr "Opprett en kategori" -#: core/docs/drf/viewsets.py:154 core/docs/drf/viewsets.py:155 +#: engine/core/docs/drf/viewsets.py:162 engine/core/docs/drf/viewsets.py:163 msgid "delete a category" msgstr "Slett en kategori" -#: core/docs/drf/viewsets.py:159 core/docs/drf/viewsets.py:160 +#: engine/core/docs/drf/viewsets.py:167 engine/core/docs/drf/viewsets.py:168 msgid "rewrite an existing category saving non-editables" msgstr "Skriv om en eksisterende kategori som lagrer ikke-redigerbare filer" -#: core/docs/drf/viewsets.py:164 core/docs/drf/viewsets.py:165 +#: engine/core/docs/drf/viewsets.py:172 engine/core/docs/drf/viewsets.py:173 msgid "rewrite some fields of an existing category saving non-editables" msgstr "" "Skriv om noen av feltene i en eksisterende kategori for å lagre ikke-" "redigerbare" -#: core/docs/drf/viewsets.py:169 core/docs/drf/viewsets.py:501 -#: core/graphene/object_types.py:117 core/graphene/object_types.py:207 -#: core/graphene/object_types.py:482 +#: engine/core/docs/drf/viewsets.py:177 engine/core/docs/drf/viewsets.py:517 +#: engine/core/graphene/object_types.py:117 +#: engine/core/graphene/object_types.py:207 +#: engine/core/graphene/object_types.py:482 msgid "SEO Meta snapshot" msgstr "SEO Meta-øyeblikksbilde" -#: core/docs/drf/viewsets.py:170 +#: engine/core/docs/drf/viewsets.py:178 msgid "returns a snapshot of the category's SEO meta data" msgstr "Returnerer et øyeblikksbilde av kategoriens SEO-metadata" -#: core/docs/drf/viewsets.py:175 -msgid "Category UUID or slug" -msgstr "Kategori UUID eller slug" - -#: core/docs/drf/viewsets.py:188 +#: engine/core/docs/drf/viewsets.py:196 msgid "list all orders (simple view)" msgstr "Liste over alle kategorier (enkel visning)" -#: core/docs/drf/viewsets.py:189 +#: engine/core/docs/drf/viewsets.py:197 msgid "for non-staff users, only their own orders are returned." msgstr "For ikke-ansatte brukere returneres bare deres egne bestillinger." -#: core/docs/drf/viewsets.py:195 +#: engine/core/docs/drf/viewsets.py:203 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" -#: core/docs/drf/viewsets.py:202 +#: engine/core/docs/drf/viewsets.py:210 msgid "Filter orders with buy_time >= this ISO 8601 datetime" msgstr "Filtrer ordrer med buy_time >= denne ISO 8601-datoen" -#: core/docs/drf/viewsets.py:207 +#: engine/core/docs/drf/viewsets.py:215 msgid "Filter orders with buy_time <= this ISO 8601 datetime" msgstr "Filtrer bestillinger med buy_time <= denne ISO 8601-datoen" -#: core/docs/drf/viewsets.py:212 +#: engine/core/docs/drf/viewsets.py:220 msgid "Filter by exact order UUID" msgstr "Filtrer etter nøyaktig ordre UUID" -#: core/docs/drf/viewsets.py:217 +#: engine/core/docs/drf/viewsets.py:225 msgid "Filter by exact human-readable order ID" msgstr "Filtrer etter nøyaktig bestillings-ID som kan leses av mennesker" -#: core/docs/drf/viewsets.py:222 +#: engine/core/docs/drf/viewsets.py:230 msgid "Filter by user's email (case-insensitive exact match)" msgstr "Filtrer etter brukerens e-post (store og små bokstaver er ufølsomme)" -#: core/docs/drf/viewsets.py:227 +#: engine/core/docs/drf/viewsets.py:235 msgid "Filter by user's UUID" msgstr "Filtrer etter brukerens UUID" -#: core/docs/drf/viewsets.py:232 +#: engine/core/docs/drf/viewsets.py:240 msgid "Filter by order status (case-insensitive substring match)" msgstr "Filtrer etter ordrestatus (skiller mellom store og små bokstaver)" -#: core/docs/drf/viewsets.py:238 +#: engine/core/docs/drf/viewsets.py:246 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')." -#: core/docs/drf/viewsets.py:247 +#: engine/core/docs/drf/viewsets.py:255 msgid "retrieve a single order (detailed view)" msgstr "Hent en enkelt kategori (detaljert visning)" -#: core/docs/drf/viewsets.py:251 +#: engine/core/docs/drf/viewsets.py:260 +msgid "Order UUID or human-readable id" +msgstr "Bestill UUID eller menneskelig lesbar id" + +#: engine/core/docs/drf/viewsets.py:267 msgid "create an order" msgstr "Opprett et attributt" -#: core/docs/drf/viewsets.py:252 +#: engine/core/docs/drf/viewsets.py:268 msgid "doesn't work for non-staff users." msgstr "Fungerer ikke for brukere som ikke er ansatte." -#: core/docs/drf/viewsets.py:256 +#: engine/core/docs/drf/viewsets.py:272 msgid "delete an order" msgstr "Slett et attributt" -#: core/docs/drf/viewsets.py:260 +#: engine/core/docs/drf/viewsets.py:276 msgid "rewrite an existing order saving non-editables" msgstr "Skriv om en eksisterende kategori som lagrer ikke-redigerbare filer" -#: core/docs/drf/viewsets.py:264 +#: engine/core/docs/drf/viewsets.py:280 msgid "rewrite some fields of an existing order saving non-editables" msgstr "" "Skriv om noen av feltene i en eksisterende kategori for å lagre ikke-" "redigerbare" -#: core/docs/drf/viewsets.py:268 +#: engine/core/docs/drf/viewsets.py:284 msgid "purchase an order" msgstr "Innkjøpspris på bestillingstidspunktet" -#: core/docs/drf/viewsets.py:270 +#: engine/core/docs/drf/viewsets.py:286 msgid "" "finalizes the order purchase. if `force_balance` is used, the purchase is " "completed using the user's balance; if `force_payment` is used, a " @@ -444,32 +450,32 @@ msgstr "" "hjelp av brukerens saldo; hvis `force_payment` brukes, iverksettes en " "transaksjon." -#: core/docs/drf/viewsets.py:282 core/graphene/mutations.py:335 +#: engine/core/docs/drf/viewsets.py:298 engine/core/graphene/mutations.py:335 msgid "purchase an order without account creation" msgstr "kjøpe en ordre uten å opprette konto" -#: core/docs/drf/viewsets.py:283 +#: engine/core/docs/drf/viewsets.py:299 msgid "finalizes the order purchase for a non-registered user." msgstr "fullfører bestillingen for en ikke-registrert bruker." -#: core/docs/drf/viewsets.py:291 +#: engine/core/docs/drf/viewsets.py:307 msgid "add product to order" msgstr "Legg til et produkt i bestillingen" -#: core/docs/drf/viewsets.py:292 +#: engine/core/docs/drf/viewsets.py:308 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`." -#: core/docs/drf/viewsets.py:297 +#: engine/core/docs/drf/viewsets.py:313 msgid "add a list of products to order, quantities will not count" msgstr "" "Legg til en liste over produkter som skal bestilles, antall vil ikke telle" -#: core/docs/drf/viewsets.py:298 +#: engine/core/docs/drf/viewsets.py:314 msgid "" "adds a list of products to an order using the provided `product_uuid` and " "`attributes`." @@ -477,11 +483,11 @@ msgstr "" "Legger til en liste med produkter i en bestilling ved hjelp av de angitte " "`product_uuid` og `attributtene`." -#: core/docs/drf/viewsets.py:303 +#: engine/core/docs/drf/viewsets.py:319 msgid "remove product from order" msgstr "Fjern et produkt fra bestillingen" -#: core/docs/drf/viewsets.py:304 +#: engine/core/docs/drf/viewsets.py:320 msgid "" "removes a product from an order using the provided `product_uuid` and " "`attributes`." @@ -489,11 +495,11 @@ msgstr "" "Fjerner et produkt fra en bestilling ved hjelp av de angitte `product_uuid` " "og `attributtene`." -#: core/docs/drf/viewsets.py:309 +#: engine/core/docs/drf/viewsets.py:325 msgid "remove product from order, quantities will not count" msgstr "Fjern et produkt fra bestillingen, antall vil ikke telle med" -#: core/docs/drf/viewsets.py:310 +#: engine/core/docs/drf/viewsets.py:326 msgid "" "removes a list of products from an order using the provided `product_uuid` " "and `attributes`" @@ -501,803 +507,826 @@ msgstr "" "Fjerner en liste med produkter fra en bestilling ved hjelp av de angitte " "`product_uuid` og `attributtene`." -#: core/docs/drf/viewsets.py:318 +#: engine/core/docs/drf/viewsets.py:334 msgid "list all wishlists (simple view)" msgstr "Liste over alle attributter (enkel visning)" -#: core/docs/drf/viewsets.py:319 +#: engine/core/docs/drf/viewsets.py:335 msgid "for non-staff users, only their own wishlists are returned." msgstr "" "For brukere som ikke er ansatte, returneres bare deres egne ønskelister." -#: core/docs/drf/viewsets.py:323 +#: engine/core/docs/drf/viewsets.py:339 msgid "retrieve a single wishlist (detailed view)" msgstr "Hent et enkelt attributt (detaljert visning)" -#: core/docs/drf/viewsets.py:327 +#: engine/core/docs/drf/viewsets.py:343 msgid "create an wishlist" msgstr "Opprett et attributt" -#: core/docs/drf/viewsets.py:328 +#: engine/core/docs/drf/viewsets.py:344 msgid "Doesn't work for non-staff users." msgstr "Fungerer ikke for brukere som ikke er ansatte." -#: core/docs/drf/viewsets.py:332 +#: engine/core/docs/drf/viewsets.py:348 msgid "delete an wishlist" msgstr "Slett et attributt" -#: core/docs/drf/viewsets.py:336 +#: engine/core/docs/drf/viewsets.py:352 msgid "rewrite an existing wishlist saving non-editables" msgstr "" "Skriv om et eksisterende attributt for å lagre ikke-redigerbare attributter" -#: core/docs/drf/viewsets.py:340 +#: engine/core/docs/drf/viewsets.py:356 msgid "rewrite some fields of an existing wishlist saving non-editables" msgstr "" "Skriv om noen av feltene i et eksisterende attributt for å lagre ikke-" "redigerbare felt" -#: core/docs/drf/viewsets.py:344 +#: engine/core/docs/drf/viewsets.py:360 msgid "add product to wishlist" msgstr "Legg til et produkt i bestillingen" -#: core/docs/drf/viewsets.py:345 +#: engine/core/docs/drf/viewsets.py:361 msgid "adds a product to an wishlist using the provided `product_uuid`" msgstr "" "Legger til et produkt på en ønskeliste ved hjelp av den angitte " "`product_uuid`." -#: core/docs/drf/viewsets.py:350 +#: engine/core/docs/drf/viewsets.py:366 msgid "remove product from wishlist" msgstr "Fjern et produkt fra ønskelisten" -#: core/docs/drf/viewsets.py:351 +#: engine/core/docs/drf/viewsets.py:367 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`." -#: core/docs/drf/viewsets.py:356 +#: engine/core/docs/drf/viewsets.py:372 msgid "add many products to wishlist" msgstr "Legg til mange produkter på ønskelisten" -#: core/docs/drf/viewsets.py:357 +#: engine/core/docs/drf/viewsets.py:373 msgid "adds many products to an wishlist using the provided `product_uuids`" msgstr "" "Legger til mange produkter på en ønskeliste ved hjelp av de angitte " "`product_uuids`." -#: core/docs/drf/viewsets.py:362 +#: engine/core/docs/drf/viewsets.py:378 msgid "remove many products from wishlist" msgstr "Fjern et produkt fra bestillingen" -#: core/docs/drf/viewsets.py:363 +#: engine/core/docs/drf/viewsets.py:379 msgid "" "removes many products from an wishlist using the provided `product_uuids`" msgstr "" "Fjerner mange produkter fra en ønskeliste ved hjelp av de angitte " "`product_uuids`." -#: core/docs/drf/viewsets.py:370 +#: engine/core/docs/drf/viewsets.py:386 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`" -#: core/docs/drf/viewsets.py:386 core/docs/drf/viewsets.py:387 +#: engine/core/docs/drf/viewsets.py:402 engine/core/docs/drf/viewsets.py:403 msgid "list all products (simple view)" msgstr "Liste over alle produkter (enkel visning)" -#: core/docs/drf/viewsets.py:392 +#: engine/core/docs/drf/viewsets.py:408 msgid "(exact) Product UUID" msgstr "(nøyaktig) Produkt UUID" -#: core/docs/drf/viewsets.py:399 +#: engine/core/docs/drf/viewsets.py:415 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" -#: core/docs/drf/viewsets.py:413 core/docs/drf/viewsets.py:414 +#: engine/core/docs/drf/viewsets.py:429 engine/core/docs/drf/viewsets.py:430 msgid "retrieve a single product (detailed view)" msgstr "Hent et enkelt produkt (detaljert visning)" -#: core/docs/drf/viewsets.py:419 core/docs/drf/viewsets.py:443 -#: core/docs/drf/viewsets.py:459 core/docs/drf/viewsets.py:475 -#: core/docs/drf/viewsets.py:491 core/docs/drf/viewsets.py:507 +#: engine/core/docs/drf/viewsets.py:435 engine/core/docs/drf/viewsets.py:459 +#: engine/core/docs/drf/viewsets.py:475 engine/core/docs/drf/viewsets.py:491 +#: engine/core/docs/drf/viewsets.py:507 engine/core/docs/drf/viewsets.py:523 msgid "Product UUID or slug" msgstr "Produkt UUID eller Slug" -#: core/docs/drf/viewsets.py:429 core/docs/drf/viewsets.py:430 +#: engine/core/docs/drf/viewsets.py:445 engine/core/docs/drf/viewsets.py:446 msgid "create a product" msgstr "Opprett et produkt" -#: core/docs/drf/viewsets.py:437 core/docs/drf/viewsets.py:438 +#: engine/core/docs/drf/viewsets.py:453 engine/core/docs/drf/viewsets.py:454 msgid "rewrite an existing product, preserving non-editable fields" msgstr "Skriv om et eksisterende produkt, og behold ikke-redigerbare felt" -#: core/docs/drf/viewsets.py:453 core/docs/drf/viewsets.py:454 +#: engine/core/docs/drf/viewsets.py:469 engine/core/docs/drf/viewsets.py:470 msgid "" "update some fields of an existing product, preserving non-editable fields" msgstr "" "Oppdater noen av feltene i et eksisterende produkt, men behold feltene som " "ikke kan redigeres" -#: core/docs/drf/viewsets.py:469 core/docs/drf/viewsets.py:470 +#: engine/core/docs/drf/viewsets.py:485 engine/core/docs/drf/viewsets.py:486 msgid "delete a product" msgstr "Slett et produkt" -#: core/docs/drf/viewsets.py:485 core/docs/drf/viewsets.py:486 +#: engine/core/docs/drf/viewsets.py:501 engine/core/docs/drf/viewsets.py:502 msgid "lists all permitted feedbacks for a product" msgstr "viser alle tillatte tilbakemeldinger for et produkt" -#: core/docs/drf/viewsets.py:502 +#: engine/core/docs/drf/viewsets.py:518 msgid "returns a snapshot of the product's SEO meta data" msgstr "Returnerer et øyeblikksbilde av produktets SEO-metadata" -#: core/docs/drf/viewsets.py:520 +#: engine/core/docs/drf/viewsets.py:536 msgid "list all addresses" msgstr "Liste over alle adresser" -#: core/docs/drf/viewsets.py:527 +#: engine/core/docs/drf/viewsets.py:543 msgid "retrieve a single address" msgstr "Hent en enkelt adresse" -#: core/docs/drf/viewsets.py:534 +#: engine/core/docs/drf/viewsets.py:550 msgid "create a new address" msgstr "Opprett en ny adresse" -#: core/docs/drf/viewsets.py:542 +#: engine/core/docs/drf/viewsets.py:558 msgid "delete an address" msgstr "Slett en adresse" -#: core/docs/drf/viewsets.py:549 +#: engine/core/docs/drf/viewsets.py:565 msgid "update an entire address" msgstr "Oppdater en hel adresse" -#: core/docs/drf/viewsets.py:557 +#: engine/core/docs/drf/viewsets.py:573 msgid "partially update an address" msgstr "Delvis oppdatering av en adresse" -#: core/docs/drf/viewsets.py:565 +#: engine/core/docs/drf/viewsets.py:581 msgid "autocomplete address suggestions" msgstr "Autofullfør adresseinndata" -#: core/docs/drf/viewsets.py:570 +#: engine/core/docs/drf/viewsets.py:586 msgid "raw data query string, please append with data from geo-IP endpoint" msgstr "" "Spørringsstreng for rådata, vennligst legg til data fra geo-IP-sluttpunkt" -#: core/docs/drf/viewsets.py:576 +#: engine/core/docs/drf/viewsets.py:592 msgid "limit the results amount, 1 < limit < 10, default: 5" msgstr "begrenser resultatmengden, 1 < grense < 10, standard: 5" -#: core/docs/drf/viewsets.py:589 +#: engine/core/docs/drf/viewsets.py:605 msgid "list all feedbacks (simple view)" msgstr "liste opp alle tilbakemeldinger (enkel visning)" -#: core/docs/drf/viewsets.py:593 +#: engine/core/docs/drf/viewsets.py:609 msgid "retrieve a single feedback (detailed view)" msgstr "hente en enkelt tilbakemelding (detaljert visning)" -#: core/docs/drf/viewsets.py:597 +#: engine/core/docs/drf/viewsets.py:613 msgid "create a feedback" msgstr "skape en tilbakemelding" -#: core/docs/drf/viewsets.py:601 +#: engine/core/docs/drf/viewsets.py:617 msgid "delete a feedback" msgstr "slette en tilbakemelding" -#: core/docs/drf/viewsets.py:605 +#: engine/core/docs/drf/viewsets.py:621 msgid "rewrite an existing feedback saving non-editables" msgstr "" "omskrive en eksisterende tilbakemelding som lagrer ikke-redigerbare filer" -#: core/docs/drf/viewsets.py:609 +#: engine/core/docs/drf/viewsets.py:625 msgid "rewrite some fields of an existing feedback saving non-editables" msgstr "" "omskrive noen felter i en eksisterende tilbakemelding og lagre ikke-" "redigerbare" -#: core/docs/drf/viewsets.py:616 +#: engine/core/docs/drf/viewsets.py:632 msgid "list all order–product relations (simple view)" msgstr "liste opp alle ordre-produkt-relasjoner (enkel visning)" -#: core/docs/drf/viewsets.py:623 +#: engine/core/docs/drf/viewsets.py:639 msgid "retrieve a single order–product relation (detailed view)" msgstr "hente en enkelt ordre-produkt-relasjon (detaljert visning)" -#: core/docs/drf/viewsets.py:630 +#: engine/core/docs/drf/viewsets.py:646 msgid "create a new order–product relation" msgstr "opprette en ny ordre-produkt-relasjon" -#: core/docs/drf/viewsets.py:637 +#: engine/core/docs/drf/viewsets.py:653 msgid "replace an existing order–product relation" msgstr "erstatte en eksisterende ordre-produkt-relasjon" -#: core/docs/drf/viewsets.py:644 +#: engine/core/docs/drf/viewsets.py:660 msgid "partially update an existing order–product relation" msgstr "delvis oppdatere en eksisterende ordre-produkt-relasjon" -#: core/docs/drf/viewsets.py:651 +#: engine/core/docs/drf/viewsets.py:667 msgid "delete an order–product relation" msgstr "slette en ordre-produkt-relasjon" -#: core/docs/drf/viewsets.py:658 +#: engine/core/docs/drf/viewsets.py:674 msgid "add or remove feedback on an order–product relation" msgstr "legge til eller fjerne tilbakemeldinger på en ordre-produkt-relasjon" -#: core/docs/drf/viewsets.py:672 +#: engine/core/docs/drf/viewsets.py:688 msgid "list all brands (simple view)" msgstr "Liste over alle merker (enkel visning)" -#: core/docs/drf/viewsets.py:676 +#: engine/core/docs/drf/viewsets.py:692 msgid "retrieve a single brand (detailed view)" msgstr "Hent ett enkelt merke (detaljert visning)" -#: core/docs/drf/viewsets.py:680 +#: engine/core/docs/drf/viewsets.py:697 engine/core/docs/drf/viewsets.py:725 +msgid "Brand UUID or slug" +msgstr "Merkevare UUID eller slug" + +#: engine/core/docs/drf/viewsets.py:704 msgid "create a brand" msgstr "Skap en merkevare" -#: core/docs/drf/viewsets.py:684 +#: engine/core/docs/drf/viewsets.py:708 msgid "delete a brand" msgstr "Slett et merke" -#: core/docs/drf/viewsets.py:688 +#: engine/core/docs/drf/viewsets.py:712 msgid "rewrite an existing brand saving non-editables" msgstr "" "Skriv om en eksisterende merkevare som sparer ikke-redigerbare produkter" -#: core/docs/drf/viewsets.py:692 +#: engine/core/docs/drf/viewsets.py:716 msgid "rewrite some fields of an existing brand saving non-editables" msgstr "" "Skriv om noen av feltene i en eksisterende kategori for å lagre ikke-" "redigerbare" -#: core/docs/drf/viewsets.py:696 +#: engine/core/docs/drf/viewsets.py:720 msgid "SEO Meta snapshot for brand" msgstr "SEO Meta-øyeblikksbilde for merkevare" -#: core/docs/drf/viewsets.py:703 +#: engine/core/docs/drf/viewsets.py:735 msgid "list all vendors (simple view)" msgstr "Liste over alle leverandører (enkel visning)" -#: core/docs/drf/viewsets.py:707 +#: engine/core/docs/drf/viewsets.py:739 msgid "retrieve a single vendor (detailed view)" msgstr "Hent en enkelt leverandør (detaljert visning)" -#: core/docs/drf/viewsets.py:711 +#: engine/core/docs/drf/viewsets.py:743 msgid "create a vendor" msgstr "Opprett en leverandør" -#: core/docs/drf/viewsets.py:715 +#: engine/core/docs/drf/viewsets.py:747 msgid "delete a vendor" msgstr "Slett en leverandør" -#: core/docs/drf/viewsets.py:719 +#: engine/core/docs/drf/viewsets.py:751 msgid "rewrite an existing vendor saving non-editables" msgstr "Skriv om en eksisterende leverandør som lagrer ikke-redigerbare filer" -#: core/docs/drf/viewsets.py:723 +#: engine/core/docs/drf/viewsets.py:755 msgid "rewrite some fields of an existing vendor saving non-editables" msgstr "" "Skriv om noen av feltene i en eksisterende kategori for å lagre ikke-" "redigerbare" -#: core/docs/drf/viewsets.py:730 +#: engine/core/docs/drf/viewsets.py:762 msgid "list all product images (simple view)" msgstr "Liste over alle produktbilder (enkel visning)" -#: core/docs/drf/viewsets.py:734 +#: engine/core/docs/drf/viewsets.py:766 msgid "retrieve a single product image (detailed view)" msgstr "Hent et enkelt produktbilde (detaljert visning)" -#: core/docs/drf/viewsets.py:738 +#: engine/core/docs/drf/viewsets.py:770 msgid "create a product image" msgstr "Lag et produktbilde" -#: core/docs/drf/viewsets.py:742 +#: engine/core/docs/drf/viewsets.py:774 msgid "delete a product image" msgstr "Slett et produktbilde" -#: core/docs/drf/viewsets.py:746 +#: engine/core/docs/drf/viewsets.py:778 msgid "rewrite an existing product image saving non-editables" msgstr "" "Skriv om et eksisterende produktbilde og lagre ikke-redigerbare elementer" -#: core/docs/drf/viewsets.py:750 +#: engine/core/docs/drf/viewsets.py:782 msgid "rewrite some fields of an existing product image saving non-editables" msgstr "" "Skriv om noen av feltene i en eksisterende kategori for å lagre ikke-" "redigerbare" -#: core/docs/drf/viewsets.py:757 +#: engine/core/docs/drf/viewsets.py:789 msgid "list all promo codes (simple view)" msgstr "Liste over alle kampanjekoder (enkel visning)" -#: core/docs/drf/viewsets.py:761 +#: engine/core/docs/drf/viewsets.py:793 msgid "retrieve a single promo code (detailed view)" msgstr "Hent en enkelt kampanjekode (detaljert visning)" -#: core/docs/drf/viewsets.py:765 +#: engine/core/docs/drf/viewsets.py:797 msgid "create a promo code" msgstr "Opprett en kampanjekode" -#: core/docs/drf/viewsets.py:769 +#: engine/core/docs/drf/viewsets.py:801 msgid "delete a promo code" msgstr "Slett en kampanjekode" -#: core/docs/drf/viewsets.py:773 +#: engine/core/docs/drf/viewsets.py:805 msgid "rewrite an existing promo code saving non-editables" msgstr "" "Skriv om en eksisterende kampanjekode for å lagre ikke-redigerbare koder" -#: core/docs/drf/viewsets.py:777 +#: engine/core/docs/drf/viewsets.py:809 msgid "rewrite some fields of an existing promo code saving non-editables" msgstr "" "Skriv om noen av feltene i en eksisterende kategori for å lagre ikke-" "redigerbare" -#: core/docs/drf/viewsets.py:784 +#: engine/core/docs/drf/viewsets.py:816 msgid "list all promotions (simple view)" msgstr "Liste over alle kampanjer (enkel visning)" -#: core/docs/drf/viewsets.py:788 +#: engine/core/docs/drf/viewsets.py:820 msgid "retrieve a single promotion (detailed view)" msgstr "Hent en enkelt kampanje (detaljert visning)" -#: core/docs/drf/viewsets.py:792 +#: engine/core/docs/drf/viewsets.py:824 msgid "create a promotion" msgstr "Opprett en kampanje" -#: core/docs/drf/viewsets.py:796 +#: engine/core/docs/drf/viewsets.py:828 msgid "delete a promotion" msgstr "Slett en kampanje" -#: core/docs/drf/viewsets.py:800 +#: engine/core/docs/drf/viewsets.py:832 msgid "rewrite an existing promotion saving non-editables" msgstr "" "Skriv om en eksisterende kampanje for å lagre ikke-redigerbare elementer" -#: core/docs/drf/viewsets.py:804 +#: engine/core/docs/drf/viewsets.py:836 msgid "rewrite some fields of an existing promotion saving non-editables" msgstr "" "Skriv om noen av feltene i en eksisterende kategori for å lagre ikke-" "redigerbare" -#: core/docs/drf/viewsets.py:811 +#: engine/core/docs/drf/viewsets.py:843 msgid "list all stocks (simple view)" msgstr "Liste over alle aksjer (enkel visning)" -#: core/docs/drf/viewsets.py:815 +#: engine/core/docs/drf/viewsets.py:847 msgid "retrieve a single stock (detailed view)" msgstr "Hent en enkelt aksje (detaljert visning)" -#: core/docs/drf/viewsets.py:819 +#: engine/core/docs/drf/viewsets.py:851 msgid "create a stock record" msgstr "Opprett en lagerpost" -#: core/docs/drf/viewsets.py:823 +#: engine/core/docs/drf/viewsets.py:855 msgid "delete a stock record" msgstr "Slett en lagerpost" -#: core/docs/drf/viewsets.py:827 +#: engine/core/docs/drf/viewsets.py:859 msgid "rewrite an existing stock record saving non-editables" msgstr "Skriv om en eksisterende lagerpost og lagre ikke-redigerbare varer" -#: core/docs/drf/viewsets.py:831 +#: engine/core/docs/drf/viewsets.py:863 msgid "rewrite some fields of an existing stock record saving non-editables" msgstr "" "Skriv om noen av feltene i en eksisterende kategori for å lagre ikke-" "redigerbare" -#: core/docs/drf/viewsets.py:838 +#: engine/core/docs/drf/viewsets.py:870 msgid "list all product tags (simple view)" msgstr "Liste over alle produkttagger (enkel visning)" -#: core/docs/drf/viewsets.py:842 +#: engine/core/docs/drf/viewsets.py:874 msgid "retrieve a single product tag (detailed view)" msgstr "Hent en enkelt produkttagg (detaljert visning)" -#: core/docs/drf/viewsets.py:846 +#: engine/core/docs/drf/viewsets.py:878 msgid "create a product tag" msgstr "Opprett en produkttagg" -#: core/docs/drf/viewsets.py:850 +#: engine/core/docs/drf/viewsets.py:882 msgid "delete a product tag" msgstr "Slett en produkttagg" -#: core/docs/drf/viewsets.py:854 +#: engine/core/docs/drf/viewsets.py:886 msgid "rewrite an existing product tag saving non-editables" msgstr "" "Skriv om en eksisterende produkttagg for å lagre ikke-redigerbare produkter" -#: core/docs/drf/viewsets.py:858 +#: engine/core/docs/drf/viewsets.py:890 msgid "rewrite some fields of an existing product tag saving non-editables" msgstr "" "Skriv om noen av feltene i en eksisterende kategori for å lagre ikke-" "redigerbare" -#: core/elasticsearch/__init__.py:118 core/elasticsearch/__init__.py:550 +#: engine/core/elasticsearch/__init__.py:122 +#: engine/core/elasticsearch/__init__.py:570 msgid "no search term provided." msgstr "Ingen søkeord oppgitt." -#: core/filters.py:69 core/filters.py:412 core/filters.py:539 +#: engine/core/filters.py:69 engine/core/filters.py:426 +#: engine/core/filters.py:553 msgid "Search" msgstr "Søk" -#: core/filters.py:70 core/filters.py:569 core/filters.py:598 +#: engine/core/filters.py:70 engine/core/filters.py:583 +#: engine/core/filters.py:612 msgid "UUID" msgstr "UUID" -#: core/filters.py:71 core/filters.py:414 core/filters.py:541 +#: engine/core/filters.py:71 engine/core/filters.py:428 +#: engine/core/filters.py:555 msgid "Name" msgstr "Navn" -#: core/filters.py:72 core/filters.py:543 +#: engine/core/filters.py:72 engine/core/filters.py:557 msgid "Categories" msgstr "Kategorier" -#: core/filters.py:74 +#: engine/core/filters.py:74 msgid "Categories Slugs" msgstr "Kategorier Snegler" -#: core/filters.py:75 core/filters.py:422 +#: engine/core/filters.py:75 engine/core/filters.py:436 msgid "Tags" msgstr "Tagger" -#: core/filters.py:76 +#: engine/core/filters.py:76 msgid "Min Price" msgstr "Min pris" -#: core/filters.py:77 +#: engine/core/filters.py:77 msgid "Max Price" msgstr "Maks pris" -#: core/filters.py:78 +#: engine/core/filters.py:78 msgid "Is Active" msgstr "Er aktiv" -#: core/filters.py:79 +#: engine/core/filters.py:79 msgid "Brand" msgstr "Merkevare" -#: core/filters.py:80 +#: engine/core/filters.py:80 msgid "Attributes" msgstr "Egenskaper" -#: core/filters.py:81 +#: engine/core/filters.py:81 msgid "Quantity" msgstr "Antall" -#: core/filters.py:82 core/filters.py:416 core/filters.py:542 -#: core/models.py:322 core/models.py:483 core/models.py:637 +#: engine/core/filters.py:82 engine/core/filters.py:430 +#: engine/core/filters.py:556 engine/core/models.py:321 +#: engine/core/models.py:482 engine/core/models.py:637 msgid "Slug" msgstr "Snegl" -#: core/filters.py:83 +#: engine/core/filters.py:83 msgid "Is Digital" msgstr "Er Digital" -#: core/filters.py:84 +#: engine/core/filters.py:84 msgid "Include sub-categories" msgstr "Inkluder underkategorier" -#: core/filters.py:87 +#: engine/core/filters.py:87 msgid "Include personal ordered" msgstr "Inkluder personlig bestilte produkter" -#: core/filters.py:89 core/models.py:641 +#: engine/core/filters.py:89 engine/core/models.py:641 msgid "SKU" msgstr "SKU" -#: core/filters.py:173 +#: engine/core/filters.py:184 msgid "there must be a category_uuid to use include_subcategories flag" msgstr "" "Det må finnes en category_uuid for å bruke include_subcategories-flagget" -#: core/filters.py:339 +#: engine/core/filters.py:353 msgid "Search (ID, product name or part number)" msgstr "Søk (ID, produktnavn eller delenummer)" -#: core/filters.py:342 +#: engine/core/filters.py:356 msgid "Bought after (inclusive)" msgstr "Kjøpt etter (inklusive)" -#: core/filters.py:343 +#: engine/core/filters.py:357 msgid "Bought before (inclusive)" msgstr "Kjøpt før (inkludert)" -#: core/filters.py:346 core/filters.py:393 core/filters.py:600 +#: engine/core/filters.py:360 engine/core/filters.py:407 +#: engine/core/filters.py:614 msgid "User email" msgstr "Brukerens e-post" -#: core/filters.py:347 core/filters.py:394 core/filters.py:578 -#: core/filters.py:599 +#: engine/core/filters.py:361 engine/core/filters.py:408 +#: engine/core/filters.py:592 engine/core/filters.py:613 msgid "User UUID" msgstr "Bruker UUID" -#: core/filters.py:348 +#: engine/core/filters.py:362 msgid "Status" msgstr "Status" -#: core/filters.py:352 +#: engine/core/filters.py:366 msgid "Human Readable ID" msgstr "Menneskelig lesbar ID" -#: core/filters.py:415 +#: engine/core/filters.py:429 msgid "Parent" msgstr "Foreldre" -#: core/filters.py:419 +#: engine/core/filters.py:433 msgid "Whole category(has at least 1 product or not)" msgstr "Hele kategorien (har minst 1 produkt eller ikke)" -#: core/filters.py:423 +#: engine/core/filters.py:437 msgid "Level" msgstr "Nivå" -#: core/filters.py:573 +#: engine/core/filters.py:587 msgid "Product UUID" msgstr "Produkt UUID" -#: core/graphene/mutations.py:41 +#: engine/core/graphene/mutations.py:41 msgid "key to look for in or set into the cache" msgstr "Nøkkel å lete etter i eller legge inn i hurtigbufferen" -#: core/graphene/mutations.py:42 +#: engine/core/graphene/mutations.py:42 msgid "data to store in cache" msgstr "Data som skal lagres i hurtigbufferen" -#: core/graphene/mutations.py:45 +#: engine/core/graphene/mutations.py:45 msgid "timeout in seconds to set the data for into the cache" msgstr "Tidsavbrudd i sekunder for å legge inn data i hurtigbufferen" -#: core/graphene/mutations.py:48 +#: engine/core/graphene/mutations.py:48 msgid "cached data" msgstr "Bufret data" -#: core/graphene/mutations.py:63 +#: engine/core/graphene/mutations.py:63 msgid "camelized JSON data from the requested URL" msgstr "Camelized JSON-data fra den forespurte URL-en" -#: core/graphene/mutations.py:68 core/views.py:232 +#: engine/core/graphene/mutations.py:68 engine/core/views.py:231 msgid "only URLs starting with http(s):// are allowed" msgstr "Bare nettadresser som begynner med http(s):// er tillatt" -#: core/graphene/mutations.py:84 +#: engine/core/graphene/mutations.py:84 msgid "add a product to the order" msgstr "Legg til et produkt i bestillingen" -#: core/graphene/mutations.py:105 core/graphene/mutations.py:132 -#: core/graphene/mutations.py:240 core/graphene/mutations.py:288 +#: engine/core/graphene/mutations.py:105 engine/core/graphene/mutations.py:132 +#: engine/core/graphene/mutations.py:240 engine/core/graphene/mutations.py:288 #, python-brace-format msgid "order {order_uuid} not found" msgstr "Ordre {order_uuid} ikke funnet!" -#: core/graphene/mutations.py:111 core/graphene/mutations.py:160 +#: engine/core/graphene/mutations.py:111 engine/core/graphene/mutations.py:160 msgid "remove a product from the order" msgstr "Fjern et produkt fra bestillingen" -#: core/graphene/mutations.py:138 +#: engine/core/graphene/mutations.py:138 msgid "remove all products from the order" msgstr "Fjern alle produktene fra bestillingen" -#: core/graphene/mutations.py:183 +#: engine/core/graphene/mutations.py:183 msgid "buy an order" msgstr "Kjøp en ordre" -#: core/graphene/mutations.py:212 core/graphene/mutations.py:266 +#: engine/core/graphene/mutations.py:212 engine/core/graphene/mutations.py:266 msgid "please provide either order_uuid or order_hr_id - mutually exclusive" msgstr "" "Vennligst oppgi enten order_uuid eller order_hr_id - gjensidig utelukkende!" -#: core/graphene/mutations.py:237 core/graphene/mutations.py:502 -#: core/graphene/mutations.py:544 core/viewsets.py:704 +#: engine/core/graphene/mutations.py:237 engine/core/graphene/mutations.py:502 +#: engine/core/graphene/mutations.py:544 engine/core/viewsets.py:704 msgid "wrong type came from order.buy() method: {type(instance)!s}" msgstr "Feil type kom fra order.buy()-metoden: {type(instance)!s}" -#: core/graphene/mutations.py:246 +#: engine/core/graphene/mutations.py:246 msgid "perform an action on a list of products in the order" msgstr "Utfør en handling på en liste over produkter i bestillingen" -#: core/graphene/mutations.py:251 +#: engine/core/graphene/mutations.py:251 msgid "remove/add" msgstr "Fjern/legg til" -#: core/graphene/mutations.py:283 core/graphene/mutations.py:324 +#: engine/core/graphene/mutations.py:283 engine/core/graphene/mutations.py:324 msgid "action must be either add or remove" msgstr "Handlingen må enten være \"legg til\" eller \"fjern\"!" -#: core/graphene/mutations.py:294 +#: engine/core/graphene/mutations.py:294 msgid "perform an action on a list of products in the wishlist" msgstr "Utføre en handling på en liste over produkter i ønskelisten" -#: core/graphene/mutations.py:312 +#: engine/core/graphene/mutations.py:312 msgid "please provide wishlist_uuid value" msgstr "Vennligst oppgi verdien `wishlist_uuid`." -#: core/graphene/mutations.py:329 core/graphene/mutations.py:405 -#: core/graphene/mutations.py:433 core/graphene/mutations.py:461 -#: core/graphene/mutations.py:505 +#: engine/core/graphene/mutations.py:329 engine/core/graphene/mutations.py:405 +#: engine/core/graphene/mutations.py:433 engine/core/graphene/mutations.py:461 +#: engine/core/graphene/mutations.py:505 #, python-brace-format msgid "wishlist {wishlist_uuid} not found" msgstr "Ønskeliste {wishlist_uuid} ikke funnet!" -#: core/graphene/mutations.py:383 +#: engine/core/graphene/mutations.py:383 msgid "add a product to the wishlist" msgstr "Legg til et produkt i bestillingen" -#: core/graphene/mutations.py:411 +#: engine/core/graphene/mutations.py:411 msgid "remove a product from the wishlist" msgstr "Fjern et produkt fra bestillingen" -#: core/graphene/mutations.py:439 +#: engine/core/graphene/mutations.py:439 msgid "remove all products from the wishlist" msgstr "Fjern et produkt fra bestillingen" -#: core/graphene/mutations.py:467 +#: engine/core/graphene/mutations.py:467 msgid "buy all products from the wishlist" msgstr "Fjern et produkt fra bestillingen" -#: core/graphene/mutations.py:511 +#: engine/core/graphene/mutations.py:511 msgid "buy a product" msgstr "Kjøp en ordre" -#: core/graphene/mutations.py:517 +#: engine/core/graphene/mutations.py:517 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" -#: core/graphene/mutations.py:550 +#: engine/core/graphene/mutations.py:550 msgid "add or delete a feedback for orderproduct" msgstr "Legg til eller slett en tilbakemelding for ordreproduktet" -#: core/graphene/mutations.py:574 +#: engine/core/graphene/mutations.py:574 msgid "action must be either `add` or `remove`" msgstr "Handlingen må være enten `add` eller `remove`!" -#: core/graphene/mutations.py:577 +#: engine/core/graphene/mutations.py:577 #, python-brace-format msgid "order product {order_product_uuid} not found" msgstr "Bestill produkt {order_product_uuid} ikke funnet!" -#: core/graphene/mutations.py:644 +#: engine/core/graphene/mutations.py:644 msgid "original address string provided by the user" msgstr "Opprinnelig adressestreng oppgitt av brukeren" -#: core/graphene/mutations.py:680 core/models.py:930 core/models.py:943 -#: core/models.py:1358 core/models.py:1387 core/models.py:1412 -#: core/viewsets.py:707 +#: engine/core/graphene/mutations.py:680 engine/core/models.py:941 +#: engine/core/models.py:954 engine/core/models.py:1369 +#: engine/core/models.py:1398 engine/core/models.py:1423 +#: engine/core/viewsets.py:707 #, python-brace-format msgid "{name} does not exist: {uuid}" msgstr "{name} eksisterer ikke: {uuid}!" -#: core/graphene/mutations.py:694 +#: engine/core/graphene/mutations.py:694 msgid "limit must be between 1 and 10" msgstr "Grensen må være mellom 1 og 10" -#: core/graphene/mutations.py:743 +#: engine/core/graphene/mutations.py:743 msgid "elasticsearch - works like a charm" msgstr "ElasticSearch - fungerer som en drøm" -#: core/graphene/object_types.py:82 core/graphene/object_types.py:370 -#: core/graphene/object_types.py:417 core/models.py:754 core/models.py:1225 -#: core/models.py:1823 +#: engine/core/graphene/object_types.py:82 +#: engine/core/graphene/object_types.py:370 +#: engine/core/graphene/object_types.py:417 engine/core/models.py:765 +#: engine/core/models.py:1236 engine/core/models.py:1883 msgid "attributes" msgstr "Egenskaper" -#: core/graphene/object_types.py:95 +#: engine/core/graphene/object_types.py:95 msgid "grouped attributes" msgstr "Grupperte attributter" -#: core/graphene/object_types.py:102 +#: engine/core/graphene/object_types.py:102 msgid "groups of attributes" msgstr "Grupper av attributter" -#: core/graphene/object_types.py:116 core/graphene/object_types.py:193 -#: core/graphene/object_types.py:223 core/models.py:426 +#: engine/core/graphene/object_types.py:116 +#: engine/core/graphene/object_types.py:193 +#: engine/core/graphene/object_types.py:223 engine/core/models.py:425 msgid "categories" msgstr "Kategorier" -#: core/graphene/object_types.py:124 core/models.py:497 +#: engine/core/graphene/object_types.py:124 engine/core/models.py:496 msgid "brands" msgstr "Merkevarer" -#: core/graphene/object_types.py:195 +#: engine/core/graphene/object_types.py:195 msgid "category image url" msgstr "Kategorier" -#: core/graphene/object_types.py:196 core/graphene/object_types.py:317 -#: core/models.py:284 +#: engine/core/graphene/object_types.py:196 +#: engine/core/graphene/object_types.py:317 engine/core/models.py:283 msgid "markup percentage" msgstr "Påslag i prosent" -#: core/graphene/object_types.py:199 +#: engine/core/graphene/object_types.py:199 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." -#: core/graphene/object_types.py:203 -msgid "" -"minimum and maximum prices for products in this category, if available." +#: engine/core/graphene/object_types.py:203 +msgid "minimum and maximum prices for products in this category, if available." msgstr "" "Minimums- og maksimumspriser for produkter i denne kategorien, hvis " "tilgjengelig." -#: core/graphene/object_types.py:205 +#: engine/core/graphene/object_types.py:205 msgid "tags for this category" msgstr "Tagger for denne kategorien" -#: core/graphene/object_types.py:206 +#: engine/core/graphene/object_types.py:206 msgid "products in this category" msgstr "Produkter i denne kategorien" -#: core/graphene/object_types.py:324 core/models.py:189 +#: engine/core/graphene/object_types.py:324 engine/core/models.py:188 msgid "vendors" msgstr "Leverandører" -#: core/graphene/object_types.py:328 +#: engine/core/graphene/object_types.py:328 msgid "Latitude (Y coordinate)" msgstr "Breddegrad (Y-koordinat)" -#: core/graphene/object_types.py:329 +#: engine/core/graphene/object_types.py:329 msgid "Longitude (X coordinate)" msgstr "Lengdegrad (X-koordinat)" -#: core/graphene/object_types.py:358 +#: engine/core/graphene/object_types.py:358 msgid "comment" msgstr "Hvordan" -#: core/graphene/object_types.py:359 core/graphene/object_types.py:483 +#: engine/core/graphene/object_types.py:359 +#: engine/core/graphene/object_types.py:483 msgid "rating value from 1 to 10, inclusive, or 0 if not set." msgstr "Vurderingsverdi fra 1 til og med 10, eller 0 hvis den ikke er angitt." -#: core/graphene/object_types.py:366 +#: engine/core/graphene/object_types.py:366 msgid "represents feedback from a user." msgstr "Representerer tilbakemeldinger fra en bruker." -#: core/graphene/object_types.py:371 core/graphene/object_types.py:418 -#: core/models.py:1219 +#: engine/core/graphene/object_types.py:371 +#: engine/core/graphene/object_types.py:418 engine/core/models.py:1230 msgid "notifications" msgstr "Varsler" -#: core/graphene/object_types.py:372 +#: engine/core/graphene/object_types.py:372 msgid "download url for this order product if applicable" msgstr "Last ned url for dette bestillingsproduktet, hvis aktuelt" -#: core/graphene/object_types.py:373 core/models.py:1939 +#: engine/core/graphene/object_types.py:373 engine/core/models.py:1722 msgid "feedback" msgstr "Tilbakemeldinger" -#: core/graphene/object_types.py:407 +#: engine/core/graphene/object_types.py:407 msgid "a list of order products in this order" msgstr "En liste over bestillingsprodukter i denne rekkefølgen" -#: core/graphene/object_types.py:409 core/models.py:1189 +#: engine/core/graphene/object_types.py:409 engine/core/models.py:1200 msgid "billing address" msgstr "Faktureringsadresse" -#: core/graphene/object_types.py:412 +#: engine/core/graphene/object_types.py:412 msgid "" "shipping address for this order, leave blank if same as billing address or " "if not applicable" @@ -1305,229 +1334,238 @@ msgstr "" "Leveringsadresse for denne bestillingen, la den stå tom hvis den er den " "samme som faktureringsadressen eller hvis den ikke er relevant" -#: core/graphene/object_types.py:414 +#: engine/core/graphene/object_types.py:414 msgid "total price of this order" msgstr "Totalpris for denne bestillingen" -#: core/graphene/object_types.py:415 +#: engine/core/graphene/object_types.py:415 msgid "total quantity of products in order" msgstr "Totalt antall produkter i bestillingen" -#: core/graphene/object_types.py:416 +#: engine/core/graphene/object_types.py:416 msgid "are all products in the order digital" msgstr "Er alle produktene i bestillingen digitale" -#: core/graphene/object_types.py:419 +#: engine/core/graphene/object_types.py:419 msgid "transactions for this order" msgstr "Transaksjoner for denne bestillingen" -#: core/graphene/object_types.py:438 core/models.py:1253 +#: engine/core/graphene/object_types.py:438 engine/core/models.py:1264 msgid "orders" msgstr "Bestillinger" -#: core/graphene/object_types.py:459 +#: engine/core/graphene/object_types.py:459 msgid "image url" msgstr "Bilde-URL" -#: core/graphene/object_types.py:466 +#: engine/core/graphene/object_types.py:466 msgid "product's images" msgstr "Bilder av produktet" -#: core/graphene/object_types.py:473 core/models.py:425 core/models.py:579 +#: engine/core/graphene/object_types.py:473 engine/core/models.py:424 +#: engine/core/models.py:579 msgid "category" msgstr "Kategori" -#: core/graphene/object_types.py:475 core/models.py:1940 +#: engine/core/graphene/object_types.py:475 engine/core/models.py:1723 msgid "feedbacks" msgstr "Tilbakemeldinger" -#: core/graphene/object_types.py:476 core/models.py:496 core/models.py:588 +#: engine/core/graphene/object_types.py:476 engine/core/models.py:495 +#: engine/core/models.py:588 msgid "brand" msgstr "Merkevare" -#: core/graphene/object_types.py:477 core/models.py:107 +#: engine/core/graphene/object_types.py:477 engine/core/models.py:106 msgid "attribute groups" msgstr "Attributtgrupper" -#: core/graphene/object_types.py:478 -#: core/templates/digital_order_created_email.html:111 -#: core/templates/digital_order_delivered_email.html:109 -#: core/templates/shipped_order_created_email.html:109 -#: core/templates/shipped_order_delivered_email.html:109 +#: engine/core/graphene/object_types.py:478 +#: engine/core/templates/digital_order_created_email.html:111 +#: engine/core/templates/digital_order_delivered_email.html:109 +#: engine/core/templates/shipped_order_created_email.html:109 +#: engine/core/templates/shipped_order_delivered_email.html:109 msgid "price" msgstr "Pris" -#: core/graphene/object_types.py:479 -#: core/templates/digital_order_created_email.html:110 -#: core/templates/digital_order_delivered_email.html:108 -#: core/templates/shipped_order_created_email.html:108 -#: core/templates/shipped_order_delivered_email.html:108 +#: engine/core/graphene/object_types.py:479 +#: engine/core/templates/digital_order_created_email.html:110 +#: engine/core/templates/digital_order_delivered_email.html:108 +#: engine/core/templates/shipped_order_created_email.html:108 +#: engine/core/templates/shipped_order_delivered_email.html:108 msgid "quantity" msgstr "Antall" -#: core/graphene/object_types.py:480 +#: engine/core/graphene/object_types.py:480 msgid "number of feedbacks" msgstr "Antall tilbakemeldinger" -#: core/graphene/object_types.py:481 +#: engine/core/graphene/object_types.py:481 msgid "only available for personal orders" msgstr "Produkter kun tilgjengelig for personlige bestillinger" -#: core/graphene/object_types.py:507 core/models.py:651 +#: engine/core/graphene/object_types.py:484 +msgid "discount price" +msgstr "Rabattert pris" + +#: engine/core/graphene/object_types.py:508 engine/core/models.py:651 msgid "products" msgstr "Produkter" -#: core/graphene/object_types.py:607 +#: engine/core/graphene/object_types.py:611 msgid "promocodes" msgstr "Promokoder" -#: core/graphene/object_types.py:617 +#: engine/core/graphene/object_types.py:621 msgid "products on sale" msgstr "Produkter på salg" -#: core/graphene/object_types.py:624 core/models.py:879 +#: engine/core/graphene/object_types.py:628 engine/core/models.py:890 msgid "promotions" msgstr "Kampanjer" -#: core/graphene/object_types.py:628 core/models.py:188 +#: engine/core/graphene/object_types.py:632 engine/core/models.py:187 msgid "vendor" msgstr "Leverandør" -#: core/graphene/object_types.py:629 core/models.py:650 -#: core/templates/digital_order_created_email.html:109 -#: core/templates/digital_order_delivered_email.html:107 -#: core/templates/shipped_order_created_email.html:107 -#: core/templates/shipped_order_delivered_email.html:107 +#: engine/core/graphene/object_types.py:633 engine/core/models.py:650 +#: 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 +#: engine/core/templates/shipped_order_delivered_email.html:107 msgid "product" msgstr "Produkt" -#: core/graphene/object_types.py:640 core/models.py:902 +#: engine/core/graphene/object_types.py:644 engine/core/models.py:913 msgid "wishlisted products" msgstr "Produkter på ønskelisten" -#: core/graphene/object_types.py:646 core/models.py:919 +#: engine/core/graphene/object_types.py:650 engine/core/models.py:930 msgid "wishlists" msgstr "Ønskelister" -#: core/graphene/object_types.py:650 +#: engine/core/graphene/object_types.py:654 msgid "tagged products" msgstr "Merkede produkter" -#: core/graphene/object_types.py:657 core/models.py:225 core/models.py:594 +#: engine/core/graphene/object_types.py:661 engine/core/models.py:224 +#: engine/core/models.py:594 msgid "product tags" msgstr "Produktmerker" -#: core/graphene/object_types.py:661 +#: engine/core/graphene/object_types.py:665 msgid "tagged categories" msgstr "Merkede kategorier" -#: core/graphene/object_types.py:668 +#: engine/core/graphene/object_types.py:672 msgid "categories tags" msgstr "Kategorier' tagger" -#: core/graphene/object_types.py:672 +#: engine/core/graphene/object_types.py:676 msgid "project name" msgstr "Prosjektets navn" -#: core/graphene/object_types.py:673 +#: engine/core/graphene/object_types.py:677 msgid "company email" msgstr "Selskapets e-post" -#: core/graphene/object_types.py:674 +#: engine/core/graphene/object_types.py:678 msgid "company name" msgstr "Selskapets navn" -#: core/graphene/object_types.py:675 +#: engine/core/graphene/object_types.py:679 msgid "company address" msgstr "Selskapets adresse" -#: core/graphene/object_types.py:676 +#: engine/core/graphene/object_types.py:680 msgid "company phone number" msgstr "Telefonnummer til selskapet" -#: core/graphene/object_types.py:677 +#: engine/core/graphene/object_types.py:681 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" -#: core/graphene/object_types.py:678 +#: engine/core/graphene/object_types.py:682 msgid "email host user" msgstr "E-post vert bruker" -#: core/graphene/object_types.py:679 +#: engine/core/graphene/object_types.py:683 msgid "maximum amount for payment" msgstr "Maksimalt beløp for betaling" -#: core/graphene/object_types.py:680 +#: engine/core/graphene/object_types.py:684 msgid "minimum amount for payment" msgstr "Minimumsbeløp for betaling" -#: core/graphene/object_types.py:681 +#: engine/core/graphene/object_types.py:685 msgid "analytics data" msgstr "Analysedata" -#: core/graphene/object_types.py:682 +#: engine/core/graphene/object_types.py:686 msgid "advertisement data" msgstr "Annonsedata" -#: core/graphene/object_types.py:685 +#: engine/core/graphene/object_types.py:689 msgid "company configuration" msgstr "Konfigurasjon" -#: core/graphene/object_types.py:689 +#: engine/core/graphene/object_types.py:693 msgid "language code" msgstr "Språkkode" -#: core/graphene/object_types.py:690 +#: engine/core/graphene/object_types.py:694 msgid "language name" msgstr "Navn på språk" -#: core/graphene/object_types.py:691 +#: engine/core/graphene/object_types.py:695 msgid "language flag, if exists :)" msgstr "Språkflagg, hvis det finnes :)" -#: core/graphene/object_types.py:694 +#: engine/core/graphene/object_types.py:698 msgid "supported languages" msgstr "Få en liste over språk som støttes" -#: core/graphene/object_types.py:725 core/graphene/object_types.py:726 -#: core/graphene/object_types.py:727 +#: engine/core/graphene/object_types.py:729 +#: engine/core/graphene/object_types.py:730 +#: engine/core/graphene/object_types.py:731 msgid "products search results" msgstr "Søkeresultater for produkter" -#: core/graphene/object_types.py:728 +#: engine/core/graphene/object_types.py:732 msgid "posts search results" msgstr "Søkeresultater for produkter" -#: core/models.py:76 +#: engine/core/models.py:75 msgid "" "Represents a group of attributes, which can be hierarchical. This class is " "used to manage and organize attribute groups. An attribute group can have a " "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." -#: core/models.py:92 +#: engine/core/models.py:91 msgid "parent of this group" msgstr "Foreldre til denne gruppen" -#: core/models.py:93 +#: engine/core/models.py:92 msgid "parent attribute group" msgstr "Overordnet attributtgruppe" -#: core/models.py:97 core/models.py:98 +#: engine/core/models.py:96 engine/core/models.py:97 msgid "attribute group's name" msgstr "Attributtgruppens navn" -#: core/models.py:106 core/models.py:716 +#: engine/core/models.py:105 engine/core/models.py:727 msgid "attribute group" msgstr "Attributtgruppe" -#: core/models.py:112 +#: engine/core/models.py:111 msgid "" "Represents a vendor entity capable of storing information about external " "vendors and their interaction requirements. The Vendor class is used to " @@ -1538,57 +1576,57 @@ 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 " "som gjør den egnet for bruk i systemer som samhandler med " "tredjepartsleverandører." -#: core/models.py:125 +#: engine/core/models.py:124 msgid "stores credentials and endpoints required for vendor communication" msgstr "" "Lagrer legitimasjon og endepunkter som kreves for leverandørens API-" "kommunikasjon" -#: core/models.py:126 +#: engine/core/models.py:125 msgid "authentication info" msgstr "Autentiseringsinformasjon" -#: core/models.py:131 +#: engine/core/models.py:130 msgid "define the markup for products retrieved from this vendor" msgstr "Definer påslag for produkter som hentes fra denne leverandøren" -#: core/models.py:132 +#: engine/core/models.py:131 msgid "vendor markup percentage" msgstr "Leverandørens påslagsprosent" -#: core/models.py:136 +#: engine/core/models.py:135 msgid "name of this vendor" msgstr "Navn på denne leverandøren" -#: core/models.py:137 +#: engine/core/models.py:136 msgid "vendor name" msgstr "Leverandørens navn" -#: core/models.py:148 +#: engine/core/models.py:147 msgid "response file" msgstr "svarfil" -#: core/models.py:149 +#: engine/core/models.py:148 msgid "vendor's last processing response" msgstr "leverandørens siste behandlingssvar" -#: core/models.py:155 +#: engine/core/models.py:154 msgid "vendor's integration file path" msgstr "Leverandørens integrasjonsfilbane" -#: core/models.py:156 +#: engine/core/models.py:155 msgid "integration path" msgstr "Integreringsvei" -#: core/models.py:198 +#: engine/core/models.py:197 msgid "" "Represents a product tag used for classifying or identifying products. The " "ProductTag class is designed to uniquely identify and classify products " @@ -1597,33 +1635,33 @@ 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." -#: core/models.py:210 core/models.py:241 +#: engine/core/models.py:209 engine/core/models.py:240 msgid "internal tag identifier for the product tag" msgstr "Intern tagg-identifikator for produkttaggen" -#: core/models.py:211 core/models.py:242 +#: engine/core/models.py:210 engine/core/models.py:241 msgid "tag name" msgstr "Tagg navn" -#: core/models.py:215 core/models.py:246 +#: engine/core/models.py:214 engine/core/models.py:245 msgid "user-friendly name for the product tag" msgstr "Brukervennlig navn for produkttaggen" -#: core/models.py:216 core/models.py:247 +#: engine/core/models.py:215 engine/core/models.py:246 msgid "tag display name" msgstr "Visningsnavn for taggen" -#: core/models.py:224 +#: engine/core/models.py:223 msgid "product tag" msgstr "Produktmerke" -#: core/models.py:230 +#: engine/core/models.py:229 msgid "" "Represents a category tag used for products. This class models a category " "tag that can be used to associate and classify products. It includes " @@ -1631,18 +1669,18 @@ 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." -#: core/models.py:255 +#: engine/core/models.py:254 msgid "category tag" msgstr "kategorimerke" -#: core/models.py:256 core/models.py:328 +#: engine/core/models.py:255 engine/core/models.py:327 msgid "category tags" msgstr "kategorikoder" -#: core/models.py:261 +#: engine/core/models.py:260 msgid "" "Represents a category entity to organize and group related items in a " "hierarchical structure. Categories may have hierarchical relationships with " @@ -1655,8 +1693,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 " @@ -1664,57 +1702,56 @@ msgstr "" "spesifisere navn, beskrivelse og hierarki for kategoriene, samt tildele " "attributter som bilder, tagger eller prioritet." -#: core/models.py:275 +#: engine/core/models.py:274 msgid "upload an image representing this category" msgstr "Last opp et bilde som representerer denne kategorien" -#: core/models.py:278 +#: engine/core/models.py:277 msgid "category image" msgstr "Kategori bilde" -#: core/models.py:283 +#: engine/core/models.py:282 msgid "define a markup percentage for products in this category" msgstr "Definer en påslagsprosent for produkter i denne kategorien" -#: core/models.py:292 +#: engine/core/models.py:291 msgid "parent of this category to form a hierarchical structure" msgstr "Overordnet til denne kategorien for å danne en hierarkisk struktur" -#: core/models.py:293 +#: engine/core/models.py:292 msgid "parent category" msgstr "Overordnet kategori" -#: core/models.py:298 +#: engine/core/models.py:297 msgid "category name" msgstr "Navn på kategori" -#: core/models.py:299 +#: engine/core/models.py:298 msgid "provide a name for this category" msgstr "Oppgi et navn for denne kategorien" -#: core/models.py:306 +#: engine/core/models.py:305 msgid "add a detailed description for this category" msgstr "Legg til en detaljert beskrivelse for denne kategorien" -#: core/models.py:307 +#: engine/core/models.py:306 msgid "category description" msgstr "Beskrivelse av kategori" -#: core/models.py:327 +#: engine/core/models.py:326 msgid "tags that help describe or group this category" msgstr "tagger som bidrar til å beskrive eller gruppere denne kategorien" -#: core/models.py:334 core/models.py:489 +#: engine/core/models.py:333 engine/core/models.py:488 msgid "priority" msgstr "Prioritet" -#: core/models.py:432 +#: engine/core/models.py:431 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, " @@ -1722,124 +1759,128 @@ msgstr "" "prioriteringsrekkefølge. Den gjør det mulig å organisere og representere " "merkerelaterte data i applikasjonen." -#: core/models.py:442 +#: engine/core/models.py:441 msgid "name of this brand" msgstr "Navnet på dette merket" -#: core/models.py:443 +#: engine/core/models.py:442 msgid "brand name" msgstr "Merkenavn" -#: core/models.py:450 +#: engine/core/models.py:449 msgid "upload a logo representing this brand" msgstr "Last opp en logo som representerer dette varemerket" -#: core/models.py:452 +#: engine/core/models.py:451 msgid "brand small image" msgstr "Merkevare lite image" -#: core/models.py:458 +#: engine/core/models.py:457 msgid "upload a big logo representing this brand" msgstr "Last opp en stor logo som representerer dette varemerket" -#: core/models.py:460 +#: engine/core/models.py:459 msgid "brand big image" msgstr "Merkevare med stort image" -#: core/models.py:465 +#: engine/core/models.py:464 msgid "add a detailed description of the brand" msgstr "Legg til en detaljert beskrivelse av merket" -#: core/models.py:466 +#: engine/core/models.py:465 msgid "brand description" msgstr "Varemerkebeskrivelse" -#: core/models.py:471 +#: engine/core/models.py:470 msgid "optional categories that this brand is associated with" msgstr "Valgfrie kategorier som dette merket er assosiert med" -#: core/models.py:472 +#: engine/core/models.py:471 msgid "associated categories" msgstr "Kategorier" -#: core/models.py:502 +#: engine/core/models.py:501 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." -#: core/models.py:514 +#: engine/core/models.py:513 msgid "the vendor supplying this product stock" msgstr "Leverandøren som leverer dette produktet lagerfører" -#: core/models.py:515 +#: engine/core/models.py:514 msgid "associated vendor" msgstr "Tilknyttet leverandør" -#: core/models.py:519 +#: engine/core/models.py:518 msgid "final price to the customer after markups" msgstr "Sluttpris til kunden etter påslag" -#: core/models.py:520 +#: engine/core/models.py:519 msgid "selling price" msgstr "Salgspris" -#: core/models.py:525 +#: engine/core/models.py:524 msgid "the product associated with this stock entry" msgstr "Produktet som er knyttet til denne lagerposten" -#: core/models.py:526 core/models.py:779 core/models.py:825 -#: core/models.py:1718 +#: engine/core/models.py:525 engine/core/models.py:790 +#: engine/core/models.py:836 engine/core/models.py:1778 msgid "associated product" msgstr "Tilhørende produkt" -#: core/models.py:533 +#: engine/core/models.py:532 msgid "the price paid to the vendor for this product" msgstr "Prisen som er betalt til leverandøren for dette produktet" -#: core/models.py:534 +#: engine/core/models.py:533 msgid "vendor purchase price" msgstr "Leverandørens innkjøpspris" -#: core/models.py:538 +#: engine/core/models.py:537 msgid "available quantity of the product in stock" msgstr "Tilgjengelig mengde av produktet på lager" -#: core/models.py:539 +#: engine/core/models.py:538 msgid "quantity in stock" msgstr "Antall på lager" -#: core/models.py:543 +#: engine/core/models.py:542 msgid "vendor-assigned SKU for identifying the product" msgstr "Leverandørens SKU for identifisering av produktet" -#: core/models.py:544 +#: engine/core/models.py:543 msgid "vendor sku" msgstr "Leverandørens SKU" -#: core/models.py:550 +#: engine/core/models.py:549 msgid "digital file associated with this stock if applicable" msgstr "Digital fil knyttet til denne aksjen, hvis aktuelt" -#: core/models.py:551 +#: engine/core/models.py:550 msgid "digital file" msgstr "Digital fil" -#: core/models.py:560 +#: engine/core/models.py:553 +msgid "system attributes" +msgstr "Systemattributter" + +#: engine/core/models.py:560 msgid "stock entries" msgstr "Lageroppføringer" -#: core/models.py:565 +#: engine/core/models.py:565 msgid "" "Represents a product with attributes such as category, brand, tags, digital " "status, name, description, part number, and slug. Provides related utility " @@ -1860,61 +1901,61 @@ msgstr "" "ytelsen. Den brukes til å definere og manipulere produktdata og tilhørende " "informasjon i en applikasjon." -#: core/models.py:578 +#: engine/core/models.py:578 msgid "category this product belongs to" msgstr "Kategori dette produktet tilhører" -#: core/models.py:587 +#: engine/core/models.py:587 msgid "optionally associate this product with a brand" msgstr "Du kan eventuelt knytte dette produktet til et varemerke" -#: core/models.py:593 +#: engine/core/models.py:593 msgid "tags that help describe or group this product" msgstr "Tagger som bidrar til å beskrive eller gruppere dette produktet" -#: core/models.py:598 +#: engine/core/models.py:598 msgid "indicates whether this product is digitally delivered" msgstr "Angir om dette produktet leveres digitalt" -#: core/models.py:599 +#: engine/core/models.py:599 msgid "is product digital" msgstr "Er produktet digitalt" -#: core/models.py:605 +#: engine/core/models.py:605 msgid "provide a clear identifying name for the product" msgstr "Gi produktet et tydelig navn som identifiserer det" -#: core/models.py:606 +#: engine/core/models.py:606 msgid "product name" msgstr "Produktnavn" -#: core/models.py:612 core/models.py:867 +#: engine/core/models.py:612 engine/core/models.py:878 msgid "add a detailed description of the product" msgstr "Legg til en detaljert beskrivelse av produktet" -#: core/models.py:613 +#: engine/core/models.py:613 msgid "product description" msgstr "Produktbeskrivelse" -#: core/models.py:620 +#: engine/core/models.py:620 msgid "part number for this product" msgstr "Delenummer for dette produktet" -#: core/models.py:621 +#: engine/core/models.py:621 msgid "part number" msgstr "Delenummer" -#: core/models.py:640 +#: engine/core/models.py:640 msgid "stock keeping unit for this product" msgstr "Lagerholdsenhet for dette produktet" -#: core/models.py:702 +#: engine/core/models.py:713 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 " @@ -1924,311 +1965,310 @@ msgstr "" "float, boolsk, matrise og objekt. Dette gir mulighet for dynamisk og " "fleksibel datastrukturering." -#: core/models.py:715 +#: engine/core/models.py:726 msgid "group of this attribute" msgstr "Gruppe av dette attributtet" -#: core/models.py:721 +#: engine/core/models.py:732 msgid "string" msgstr "Streng" -#: core/models.py:722 +#: engine/core/models.py:733 msgid "integer" msgstr "Heltall" -#: core/models.py:723 +#: engine/core/models.py:734 msgid "float" msgstr "Flyter" -#: core/models.py:724 +#: engine/core/models.py:735 msgid "boolean" msgstr "Boolsk" -#: core/models.py:725 +#: engine/core/models.py:736 msgid "array" msgstr "Array" -#: core/models.py:726 +#: engine/core/models.py:737 msgid "object" msgstr "Objekt" -#: core/models.py:728 +#: engine/core/models.py:739 msgid "type of the attribute's value" msgstr "Type av attributtets verdi" -#: core/models.py:729 +#: engine/core/models.py:740 msgid "value type" msgstr "Verditype" -#: core/models.py:734 +#: engine/core/models.py:745 msgid "name of this attribute" msgstr "Navn på dette attributtet" -#: core/models.py:735 +#: engine/core/models.py:746 msgid "attribute's name" msgstr "Attributtets navn" -#: core/models.py:740 +#: engine/core/models.py:751 msgid "is filterable" msgstr "er filtrerbar" -#: core/models.py:741 +#: engine/core/models.py:752 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." -#: core/models.py:753 core/models.py:771 -#: core/templates/digital_order_delivered_email.html:134 +#: engine/core/models.py:764 engine/core/models.py:782 +#: engine/core/templates/digital_order_delivered_email.html:134 msgid "attribute" msgstr "Attributt" -#: core/models.py:759 +#: engine/core/models.py:770 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." -#: core/models.py:770 +#: engine/core/models.py:781 msgid "attribute of this value" msgstr "Attributt for denne verdien" -#: core/models.py:778 +#: engine/core/models.py:789 msgid "the specific product associated with this attribute's value" msgstr "Det spesifikke produktet som er knyttet til dette attributtets verdi" -#: core/models.py:784 +#: engine/core/models.py:795 msgid "the specific value for this attribute" msgstr "Den spesifikke verdien for dette attributtet" -#: core/models.py:797 +#: engine/core/models.py:808 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." -#: core/models.py:808 +#: engine/core/models.py:819 msgid "provide alternative text for the image for accessibility" msgstr "Gi alternativ tekst til bildet for tilgjengelighet" -#: core/models.py:809 +#: engine/core/models.py:820 msgid "image alt text" msgstr "Alt-tekst til bilder" -#: core/models.py:812 +#: engine/core/models.py:823 msgid "upload the image file for this product" msgstr "Last opp bildefilen for dette produktet" -#: core/models.py:813 core/models.py:837 +#: engine/core/models.py:824 engine/core/models.py:848 msgid "product image" msgstr "Produktbilde" -#: core/models.py:818 +#: engine/core/models.py:829 msgid "determines the order in which images are displayed" msgstr "Bestemmer rekkefølgen bildene skal vises i" -#: core/models.py:819 +#: engine/core/models.py:830 msgid "display priority" msgstr "Prioritet på skjermen" -#: core/models.py:824 +#: engine/core/models.py:835 msgid "the product that this image represents" msgstr "Produktet som dette bildet representerer" -#: core/models.py:838 +#: engine/core/models.py:849 msgid "product images" msgstr "Produktbilder" -#: core/models.py:843 +#: engine/core/models.py:854 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." -#: core/models.py:855 +#: engine/core/models.py:866 msgid "percentage discount for the selected products" msgstr "Prosentvis rabatt for de valgte produktene" -#: core/models.py:856 +#: engine/core/models.py:867 msgid "discount percentage" msgstr "Rabattprosent" -#: core/models.py:861 +#: engine/core/models.py:872 msgid "provide a unique name for this promotion" msgstr "Oppgi et unikt navn for denne kampanjen" -#: core/models.py:862 +#: engine/core/models.py:873 msgid "promotion name" msgstr "Navn på kampanjen" -#: core/models.py:868 +#: engine/core/models.py:879 msgid "promotion description" msgstr "Beskrivelse av kampanjen" -#: core/models.py:873 +#: engine/core/models.py:884 msgid "select which products are included in this promotion" msgstr "Velg hvilke produkter som er inkludert i denne kampanjen" -#: core/models.py:874 +#: engine/core/models.py:885 msgid "included products" msgstr "Inkluderte produkter" -#: core/models.py:878 +#: engine/core/models.py:889 msgid "promotion" msgstr "Markedsføring" -#: core/models.py:889 +#: engine/core/models.py:900 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." -#: core/models.py:901 +#: engine/core/models.py:912 msgid "products that the user has marked as wanted" msgstr "Produkter som brukeren har merket som ønsket" -#: core/models.py:909 +#: engine/core/models.py:920 msgid "user who owns this wishlist" msgstr "Bruker som eier denne ønskelisten" -#: core/models.py:910 +#: engine/core/models.py:921 msgid "wishlist owner" msgstr "Ønskelistens eier" -#: core/models.py:918 +#: engine/core/models.py:929 msgid "wishlist" msgstr "Ønskeliste" -#: core/models.py:960 +#: engine/core/models.py:971 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." -#: core/models.py:973 +#: engine/core/models.py:984 msgid "documentary" msgstr "Dokumentarfilm" -#: core/models.py:974 +#: engine/core/models.py:985 msgid "documentaries" msgstr "Dokumentarfilmer" -#: core/models.py:984 +#: engine/core/models.py:995 msgid "unresolved" msgstr "Uavklart" -#: core/models.py:989 +#: engine/core/models.py:1000 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." -#: core/models.py:1004 +#: engine/core/models.py:1015 msgid "address line for the customer" msgstr "Adresselinje for kunden" -#: core/models.py:1005 +#: engine/core/models.py:1016 msgid "address line" msgstr "Adresselinje" -#: core/models.py:1007 +#: engine/core/models.py:1018 msgid "street" msgstr "Gate" -#: core/models.py:1008 +#: engine/core/models.py:1019 msgid "district" msgstr "Distrikt" -#: core/models.py:1009 +#: engine/core/models.py:1020 msgid "city" msgstr "By" -#: core/models.py:1010 +#: engine/core/models.py:1021 msgid "region" msgstr "Region" -#: core/models.py:1011 +#: engine/core/models.py:1022 msgid "postal code" msgstr "Postnummer" -#: core/models.py:1012 +#: engine/core/models.py:1023 msgid "country" msgstr "Land" -#: core/models.py:1019 +#: engine/core/models.py:1030 msgid "geolocation point: (longitude, latitude)" msgstr "Geolokaliseringspunkt(lengdegrad, breddegrad)" -#: core/models.py:1022 +#: engine/core/models.py:1033 msgid "full JSON response from geocoder for this address" msgstr "Fullstendig JSON-svar fra geokoderen for denne adressen" -#: core/models.py:1027 +#: engine/core/models.py:1038 msgid "stored JSON response from the geocoding service" msgstr "Lagret JSON-svar fra geokodingstjenesten" -#: core/models.py:1035 +#: engine/core/models.py:1046 msgid "address" msgstr "Adresse" -#: core/models.py:1036 +#: engine/core/models.py:1047 msgid "addresses" msgstr "Adresser" -#: core/models.py:1048 +#: engine/core/models.py:1059 msgid "" "Represents a promotional code that can be used for discounts, managing its " "validity, type of discount, and application. The PromoCode class stores " @@ -2239,79 +2279,78 @@ 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." -#: core/models.py:1062 +#: engine/core/models.py:1073 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" -#: core/models.py:1063 +#: engine/core/models.py:1074 msgid "promo code identifier" msgstr "Kampanjekode-identifikator" -#: core/models.py:1070 +#: engine/core/models.py:1081 msgid "fixed discount amount applied if percent is not used" msgstr "Fast rabattbeløp som brukes hvis prosent ikke brukes" -#: core/models.py:1071 +#: engine/core/models.py:1082 msgid "fixed discount amount" msgstr "Fast rabattbeløp" -#: core/models.py:1077 +#: engine/core/models.py:1088 msgid "percentage discount applied if fixed amount is not used" msgstr "Prosentvis rabatt hvis fast beløp ikke brukes" -#: core/models.py:1078 +#: engine/core/models.py:1089 msgid "percentage discount" msgstr "Prosentvis rabatt" -#: core/models.py:1083 +#: engine/core/models.py:1094 msgid "timestamp when the promocode expires" msgstr "Tidsstempel for når kampanjekoden utløper" -#: core/models.py:1084 +#: engine/core/models.py:1095 msgid "end validity time" msgstr "Slutt gyldighetstid" -#: core/models.py:1089 +#: engine/core/models.py:1100 msgid "timestamp from which this promocode is valid" msgstr "Tidsstempel som denne kampanjekoden er gyldig fra" -#: core/models.py:1090 +#: engine/core/models.py:1101 msgid "start validity time" msgstr "Start gyldighetstid" -#: core/models.py:1095 +#: engine/core/models.py:1106 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å" -#: core/models.py:1096 +#: engine/core/models.py:1107 msgid "usage timestamp" msgstr "Tidsstempel for bruk" -#: core/models.py:1101 +#: engine/core/models.py:1112 msgid "user assigned to this promocode if applicable" msgstr "Bruker som er tilordnet denne kampanjekoden, hvis aktuelt" -#: core/models.py:1102 +#: engine/core/models.py:1113 msgid "assigned user" msgstr "Tilordnet bruker" -#: core/models.py:1109 +#: engine/core/models.py:1120 msgid "promo code" msgstr "Kampanjekode" -#: core/models.py:1110 +#: engine/core/models.py:1121 msgid "promo codes" msgstr "Kampanjekoder" -#: core/models.py:1125 +#: engine/core/models.py:1136 msgid "" "only one type of discount should be defined (amount or percent), but not " "both or neither." @@ -2319,166 +2358,167 @@ msgstr "" "Bare én type rabatt skal defineres (beløp eller prosent), men ikke begge " "eller ingen av delene." -#: core/models.py:1146 +#: engine/core/models.py:1157 msgid "promocode already used" msgstr "Promokoden har allerede blitt brukt" -#: core/models.py:1162 +#: engine/core/models.py:1173 #, python-brace-format msgid "invalid discount type for promocode {self.uuid}" msgstr "Ugyldig rabattype for kampanjekode {self.uuid}!" -#: core/models.py:1171 +#: engine/core/models.py:1182 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." -#: core/models.py:1188 +#: engine/core/models.py:1199 msgid "the billing address used for this order" msgstr "Faktureringsadressen som brukes for denne bestillingen" -#: core/models.py:1196 +#: engine/core/models.py:1207 msgid "optional promo code applied to this order" msgstr "Valgfri kampanjekode brukt på denne bestillingen" -#: core/models.py:1197 +#: engine/core/models.py:1208 msgid "applied promo code" msgstr "Anvendt kampanjekode" -#: core/models.py:1205 +#: engine/core/models.py:1216 msgid "the shipping address used for this order" msgstr "Leveringsadressen som brukes for denne bestillingen" -#: core/models.py:1206 +#: engine/core/models.py:1217 msgid "shipping address" msgstr "Leveringsadresse" -#: core/models.py:1212 +#: engine/core/models.py:1223 msgid "current status of the order in its lifecycle" msgstr "Ordrens nåværende status i livssyklusen" -#: core/models.py:1213 +#: engine/core/models.py:1224 msgid "order status" msgstr "Order status" -#: core/models.py:1218 core/models.py:1695 +#: engine/core/models.py:1229 engine/core/models.py:1755 msgid "json structure of notifications to display to users" msgstr "" "JSON-struktur for varsler som skal vises til brukere, i admin-grensesnittet " "brukes tabellvisningen" -#: core/models.py:1224 +#: engine/core/models.py:1235 msgid "json representation of order attributes for this order" msgstr "JSON-representasjon av ordreattributter for denne ordren" -#: core/models.py:1230 +#: engine/core/models.py:1241 msgid "the user who placed the order" msgstr "Brukeren som har lagt inn bestillingen" -#: core/models.py:1231 +#: engine/core/models.py:1242 msgid "user" msgstr "Bruker" -#: core/models.py:1237 +#: engine/core/models.py:1248 msgid "the timestamp when the order was finalized" msgstr "Tidsstempel for når bestillingen ble fullført" -#: core/models.py:1238 +#: engine/core/models.py:1249 msgid "buy time" msgstr "Kjøp tid" -#: core/models.py:1245 +#: engine/core/models.py:1256 msgid "a human-readable identifier for the order" msgstr "En menneskelig lesbar identifikator for bestillingen" -#: core/models.py:1246 +#: engine/core/models.py:1257 msgid "human readable id" msgstr "ID som kan leses av mennesker" -#: core/models.py:1252 +#: engine/core/models.py:1263 msgid "order" msgstr "Bestilling" -#: core/models.py:1294 +#: engine/core/models.py:1305 msgid "a user must have only one pending order at a time" msgstr "En bruker kan bare ha én ventende ordre om gangen!" -#: core/models.py:1326 +#: engine/core/models.py:1337 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" -#: core/models.py:1331 +#: engine/core/models.py:1342 msgid "you cannot add inactive products to order" msgstr "Du kan ikke legge til inaktive produkter i bestillingen" -#: core/models.py:1348 +#: engine/core/models.py:1359 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" -#: core/models.py:1370 core/models.py:1395 core/models.py:1403 +#: engine/core/models.py:1381 engine/core/models.py:1406 +#: engine/core/models.py:1414 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" -#: core/models.py:1391 +#: engine/core/models.py:1402 #, python-brace-format msgid "{name} does not exist with query <{query}>" msgstr "{name} finnes ikke med spørring <{query}>!" -#: core/models.py:1423 +#: engine/core/models.py:1434 msgid "promocode does not exist" msgstr "Promokoden finnes ikke" -#: core/models.py:1429 +#: engine/core/models.py:1440 msgid "you can only buy physical products with shipping address specified" msgstr "Du kan bare kjøpe fysiske produkter med oppgitt leveringsadresse!" -#: core/models.py:1448 +#: engine/core/models.py:1459 msgid "address does not exist" msgstr "Adressen eksisterer ikke" -#: core/models.py:1469 core/models.py:1538 +#: engine/core/models.py:1480 engine/core/models.py:1549 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." -#: core/models.py:1472 core/models.py:1534 +#: engine/core/models.py:1483 engine/core/models.py:1545 msgid "invalid force value" msgstr "Ugyldig kraftverdi" -#: core/models.py:1478 core/models.py:1541 +#: engine/core/models.py:1489 engine/core/models.py:1552 msgid "you cannot purchase an empty order!" msgstr "Du kan ikke kjøpe en tom ordre!" -#: core/models.py:1497 +#: engine/core/models.py:1508 msgid "you cannot buy an order without a user" msgstr "Du kan ikke kjøpe en ordre uten en bruker!" -#: core/models.py:1511 +#: engine/core/models.py:1522 msgid "a user without a balance cannot buy with balance" msgstr "En bruker uten saldo kan ikke kjøpe med saldo!" -#: core/models.py:1516 +#: engine/core/models.py:1527 msgid "insufficient funds to complete the order" msgstr "Utilstrekkelige midler til å fullføre bestillingen" -#: core/models.py:1550 +#: engine/core/models.py:1561 msgid "" "you cannot buy without registration, please provide the following " "information: customer name, customer email, customer phone number" @@ -2486,14 +2526,55 @@ msgstr "" "du kan ikke kjøpe uten registrering, vennligst oppgi følgende informasjon: " "kundenavn, kundens e-postadresse, kundens telefonnummer" -#: core/models.py:1559 +#: engine/core/models.py:1570 #, python-brace-format msgid "" "invalid payment method: {payment_method} from {available_payment_methods}" msgstr "" "Ugyldig betalingsmetode: {payment_method} fra {available_payment_methods}!" -#: core/models.py:1668 +#: engine/core/models.py:1685 +msgid "" +"Manages user feedback for products. This class is designed to capture and " +"store user feedback for specific products that they have purchased. It " +"contains attributes to store user comments, a reference to the related " +"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 " +"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:1697 +msgid "user-provided comments about their experience with the product" +msgstr "Brukerkommentarer om deres erfaringer med produktet" + +#: engine/core/models.py:1698 +msgid "feedback comments" +msgstr "Tilbakemeldinger og kommentarer" + +#: engine/core/models.py:1705 +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" + +#: engine/core/models.py:1706 +msgid "related order product" +msgstr "Relatert bestillingsprodukt" + +#: engine/core/models.py:1711 +msgid "user-assigned rating for the product" +msgstr "Brukertildelt vurdering for produktet" + +#: engine/core/models.py:1712 +msgid "product rating" +msgstr "Produktvurdering" + +#: engine/core/models.py:1728 msgid "" "Represents products associated with orders and their attributes. The " "OrderProduct model maintains information about a product that is part of an " @@ -2516,251 +2597,206 @@ msgstr "" "Modellen integreres med Order- og Product-modellene og lagrer en referanse " "til disse." -#: core/models.py:1683 +#: engine/core/models.py:1743 msgid "the price paid by the customer for this product at purchase time" msgstr "Prisen kunden betalte for dette produktet på kjøpstidspunktet" -#: core/models.py:1684 +#: engine/core/models.py:1744 msgid "purchase price at order time" msgstr "Innkjøpspris på bestillingstidspunktet" -#: core/models.py:1689 +#: engine/core/models.py:1749 msgid "internal comments for admins about this ordered product" msgstr "Interne kommentarer for administratorer om dette bestilte produktet" -#: core/models.py:1690 +#: engine/core/models.py:1750 msgid "internal comments" msgstr "Interne kommentarer" -#: core/models.py:1696 +#: engine/core/models.py:1756 msgid "user notifications" msgstr "Brukervarsler" -#: core/models.py:1701 +#: engine/core/models.py:1761 msgid "json representation of this item's attributes" msgstr "JSON-representasjon av dette elementets attributter" -#: core/models.py:1702 +#: engine/core/models.py:1762 msgid "ordered product attributes" msgstr "Bestilte produktegenskaper" -#: core/models.py:1707 +#: engine/core/models.py:1767 msgid "reference to the parent order that contains this product" msgstr "" "Referanse til den overordnede bestillingen som inneholder dette produktet" -#: core/models.py:1708 +#: engine/core/models.py:1768 msgid "parent order" msgstr "Overordnet ordre" -#: core/models.py:1717 +#: engine/core/models.py:1777 msgid "the specific product associated with this order line" msgstr "Det spesifikke produktet som er knyttet til denne ordrelinjen" -#: core/models.py:1724 +#: engine/core/models.py:1784 msgid "quantity of this specific product in the order" msgstr "Antall av dette spesifikke produktet i bestillingen" -#: core/models.py:1725 +#: engine/core/models.py:1785 msgid "product quantity" msgstr "Produktmengde" -#: core/models.py:1732 +#: engine/core/models.py:1792 msgid "current status of this product in the order" msgstr "Nåværende status for dette produktet i bestillingen" -#: core/models.py:1733 +#: engine/core/models.py:1793 msgid "product line status" msgstr "Status for produktlinjen" -#: core/models.py:1798 +#: engine/core/models.py:1858 msgid "order product must have an order" msgstr "Orderproduct må ha en tilknyttet ordre!" -#: core/models.py:1800 +#: engine/core/models.py:1860 #, python-brace-format msgid "wrong action specified for feedback: {action}" msgstr "Feil handling angitt for tilbakemelding: {action}!" -#: core/models.py:1814 +#: engine/core/models.py:1874 msgid "you cannot feedback an order which is not received" msgstr "du kan ikke gi tilbakemelding på en bestilling som ikke er mottatt" -#: core/models.py:1820 +#: engine/core/models.py:1880 msgid "name" msgstr "Navn" -#: core/models.py:1821 +#: engine/core/models.py:1881 msgid "URL of the integration" msgstr "URL-adressen til integrasjonen" -#: core/models.py:1822 +#: engine/core/models.py:1882 msgid "authentication credentials" msgstr "Legitimasjon for autentisering" -#: core/models.py:1844 +#: engine/core/models.py:1904 msgid "you can only have one default CRM provider" msgstr "Du kan bare ha én standard CRM-leverandør" -#: core/models.py:1854 +#: engine/core/models.py:1914 msgid "CRM" msgstr "CRM" -#: core/models.py:1855 +#: engine/core/models.py:1915 msgid "CRMs" msgstr "CRM" -#: core/models.py:1867 +#: engine/core/models.py:1927 msgid "order CRM link" msgstr "Ordre CRM-kobling" -#: core/models.py:1868 +#: engine/core/models.py:1928 msgid "orders CRM links" msgstr "CRM-koblinger for bestillinger" -#: core/models.py:1873 +#: engine/core/models.py:1933 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." -#: core/models.py:1887 +#: engine/core/models.py:1947 msgid "download" msgstr "Last ned" -#: core/models.py:1888 +#: engine/core/models.py:1948 msgid "downloads" msgstr "Nedlastinger" -#: core/models.py:1902 -msgid "" -"Manages user feedback for products. This class is designed to capture and " -"store user feedback for specific products that they have purchased. It " -"contains attributes to store user comments, a reference to the related " -"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 " -"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." - -#: core/models.py:1914 -msgid "user-provided comments about their experience with the product" -msgstr "Brukerkommentarer om deres erfaringer med produktet" - -#: core/models.py:1915 -msgid "feedback comments" -msgstr "Tilbakemeldinger og kommentarer" - -#: core/models.py:1922 -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" - -#: core/models.py:1923 -msgid "related order product" -msgstr "Relatert bestillingsprodukt" - -#: core/models.py:1928 -msgid "user-assigned rating for the product" -msgstr "Brukertildelt vurdering for produktet" - -#: core/models.py:1929 -msgid "product rating" -msgstr "Produktvurdering" - -#: core/serializers/utility.py:89 +#: engine/core/serializers/utility.py:89 msgid "" "you must provide a comment, rating, and order product uuid to add feedback." msgstr "" "du må oppgi en kommentar, vurdering og bestille produkt-uid for å legge til " "tilbakemelding." -#: core/signals.py:73 -msgid "error during promocode creation: {e!s}" -msgstr "Feil under opprettelse av promokode: {e!s}" - -#: core/sitemaps.py:25 +#: engine/core/sitemaps.py:25 msgid "Home" msgstr "Hjem" -#: core/sitemaps.py:30 +#: engine/core/sitemaps.py:30 msgid "Contact Us" msgstr "Kontakt oss" -#: core/sitemaps.py:35 +#: engine/core/sitemaps.py:35 msgid "About Us" msgstr "Om oss" -#: core/templates/digital_order_created_email.html:7 -#: core/templates/digital_order_created_email.html:100 -#: core/templates/digital_order_delivered_email.html:6 -#: core/templates/shipped_order_created_email.html:7 -#: core/templates/shipped_order_created_email.html:99 -#: core/templates/shipped_order_delivered_email.html:7 -#: core/templates/shipped_order_delivered_email.html:99 +#: engine/core/templates/digital_order_created_email.html:7 +#: engine/core/templates/digital_order_created_email.html:100 +#: engine/core/templates/digital_order_delivered_email.html:6 +#: engine/core/templates/shipped_order_created_email.html:7 +#: engine/core/templates/shipped_order_created_email.html:99 +#: engine/core/templates/shipped_order_delivered_email.html:7 +#: engine/core/templates/shipped_order_delivered_email.html:99 msgid "order confirmation" msgstr "Ordrebekreftelse" -#: core/templates/digital_order_created_email.html:95 -#: core/templates/digital_order_delivered_email.html:94 -#: core/templates/promocode_granted_email.html:94 -#: core/templates/shipped_order_created_email.html:94 -#: core/templates/shipped_order_delivered_email.html:94 +#: engine/core/templates/digital_order_created_email.html:95 +#: engine/core/templates/digital_order_delivered_email.html:94 +#: engine/core/templates/promocode_granted_email.html:94 +#: engine/core/templates/shipped_order_created_email.html:94 +#: engine/core/templates/shipped_order_delivered_email.html:94 msgid "logo" msgstr "Logo" -#: core/templates/digital_order_created_email.html:101 -#: core/templates/shipped_order_created_email.html:100 -#: core/templates/shipped_order_delivered_email.html:100 +#: engine/core/templates/digital_order_created_email.html:101 +#: engine/core/templates/shipped_order_created_email.html:100 +#: engine/core/templates/shipped_order_delivered_email.html:100 #, python-format msgid "hello %(order.user.first_name)s," msgstr "Hallo %(order.user.first_name)s," -#: core/templates/digital_order_created_email.html:102 +#: engine/core/templates/digital_order_created_email.html:102 #, 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:" -#: core/templates/digital_order_created_email.html:112 -#: core/templates/digital_order_delivered_email.html:110 -#: core/templates/shipped_order_created_email.html:110 -#: core/templates/shipped_order_delivered_email.html:110 +#: engine/core/templates/digital_order_created_email.html:112 +#: engine/core/templates/digital_order_delivered_email.html:110 +#: engine/core/templates/shipped_order_created_email.html:110 +#: engine/core/templates/shipped_order_delivered_email.html:110 msgid "total" msgstr "Totalt" -#: core/templates/digital_order_created_email.html:125 -#: core/templates/digital_order_delivered_email.html:157 -#: core/templates/shipped_order_created_email.html:127 -#: core/templates/shipped_order_delivered_email.html:127 +#: engine/core/templates/digital_order_created_email.html:125 +#: engine/core/templates/digital_order_delivered_email.html:157 +#: engine/core/templates/shipped_order_created_email.html:127 +#: engine/core/templates/shipped_order_delivered_email.html:127 msgid "total price" msgstr "Totalpris" -#: core/templates/digital_order_created_email.html:131 -#: core/templates/shipped_order_created_email.html:140 -#: core/templates/shipped_order_delivered_email.html:140 +#: engine/core/templates/digital_order_created_email.html:131 +#: engine/core/templates/shipped_order_created_email.html:140 +#: engine/core/templates/shipped_order_delivered_email.html:140 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" @@ -2769,28 +2805,28 @@ msgstr "" "Hvis du har spørsmål, er du velkommen til å kontakte vår support på " "%(config.EMAIL_HOST_USER)s." -#: core/templates/digital_order_created_email.html:133 +#: engine/core/templates/digital_order_created_email.html:133 #, python-format msgid "best regards,
the %(config.PROJECT_NAME)s team" msgstr "Med vennlig hilsen,
teamet %(config.PROJECT_NAME)s" -#: core/templates/digital_order_created_email.html:139 -#: core/templates/digital_order_delivered_email.html:171 -#: core/templates/promocode_granted_email.html:114 +#: engine/core/templates/digital_order_created_email.html:139 +#: engine/core/templates/digital_order_delivered_email.html:171 +#: engine/core/templates/promocode_granted_email.html:114 msgid "all rights reserved" msgstr "Alle rettigheter forbeholdt" -#: core/templates/digital_order_delivered_email.html:99 +#: engine/core/templates/digital_order_delivered_email.html:99 msgid "order delivered" msgstr "Bestilling levert" -#: core/templates/digital_order_delivered_email.html:100 -#: core/templates/promocode_granted_email.html:100 +#: engine/core/templates/digital_order_delivered_email.html:100 +#: engine/core/templates/promocode_granted_email.html:100 #, python-format msgid "hello %(user_first_name)s," msgstr "Hallo %(user_first_name)s," -#: core/templates/digital_order_delivered_email.html:101 +#: engine/core/templates/digital_order_delivered_email.html:101 #, python-format msgid "" "we have successfully processed your order №%(order_uuid)s! below are the\n" @@ -2799,7 +2835,7 @@ msgstr "" "Vi har behandlet bestillingen din №%(order_uuid)s! Nedenfor er detaljene i " "bestillingen din:" -#: core/templates/digital_order_delivered_email.html:128 +#: engine/core/templates/digital_order_delivered_email.html:128 msgid "" "additional\n" " information" @@ -2807,13 +2843,13 @@ msgstr "" "ytterligere\n" " informasjon" -#: core/templates/digital_order_delivered_email.html:137 -#: core/templates/json_table_widget.html:6 +#: engine/core/templates/digital_order_delivered_email.html:137 +#: engine/core/templates/json_table_widget.html:6 msgid "value" msgstr "Verdi" -#: core/templates/digital_order_delivered_email.html:163 -#: core/templates/promocode_granted_email.html:106 +#: engine/core/templates/digital_order_delivered_email.html:163 +#: engine/core/templates/promocode_granted_email.html:106 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" @@ -2822,26 +2858,26 @@ msgstr "" "Hvis du har spørsmål, er du velkommen til å kontakte vår support på " "%(contact_email)s." -#: core/templates/digital_order_delivered_email.html:165 -#: core/templates/promocode_granted_email.html:108 +#: engine/core/templates/digital_order_delivered_email.html:165 +#: engine/core/templates/promocode_granted_email.html:108 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "Med vennlig hilsen,
teamet %(project_name)s" -#: core/templates/json_table_widget.html:5 +#: engine/core/templates/json_table_widget.html:5 msgid "key" msgstr "Nøkkel" -#: core/templates/json_table_widget.html:40 +#: engine/core/templates/json_table_widget.html:40 msgid "Add Row" msgstr "Legg til rad" -#: core/templates/promocode_granted_email.html:6 -#: core/templates/promocode_granted_email.html:99 +#: engine/core/templates/promocode_granted_email.html:6 +#: engine/core/templates/promocode_granted_email.html:99 msgid "promocode granted" msgstr "Promokode innvilget" -#: core/templates/promocode_granted_email.html:101 +#: engine/core/templates/promocode_granted_email.html:101 msgid "" "Thank you for staying with us! We have granted you with a promocode\n" " for " @@ -2849,33 +2885,34 @@ msgstr "" "Takk for at du bor hos oss! Vi har gitt deg en promokode\n" " for" -#: core/templates/shipped_order_created_email.html:101 -#: core/templates/shipped_order_delivered_email.html:101 +#: 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. " "Nedenfor er detaljene for bestillingen din:" -#: core/templates/shipped_order_created_email.html:123 -#: core/templates/shipped_order_delivered_email.html:123 +#: engine/core/templates/shipped_order_created_email.html:123 +#: engine/core/templates/shipped_order_delivered_email.html:123 msgid "shipping price" msgstr "Fraktpris" -#: core/templates/shipped_order_created_email.html:133 -#: core/templates/shipped_order_delivered_email.html:133 +#: engine/core/templates/shipped_order_created_email.html:133 +#: engine/core/templates/shipped_order_delivered_email.html:133 msgid "your order will be delivered to the following address:" msgstr "Bestillingen din vil bli levert til følgende adresse:" -#: core/templates/shipped_order_created_email.html:142 -#: core/templates/shipped_order_delivered_email.html:142 +#: engine/core/templates/shipped_order_created_email.html:142 +#: engine/core/templates/shipped_order_delivered_email.html:142 #, python-format msgid "best regards,
The %(config.PROJECT_NAME)s team" msgstr "Med vennlig hilsen, %(config.PROJECT_NAME)s-teamet" -#: core/templates/shipped_order_created_email.html:147 -#: core/templates/shipped_order_delivered_email.html:147 +#: engine/core/templates/shipped_order_created_email.html:147 +#: engine/core/templates/shipped_order_delivered_email.html:147 msgid "" "all rights\n" " reserved" @@ -2883,57 +2920,57 @@ msgstr "" "Alle rettigheter\n" " forbeholdt" -#: core/utils/caching.py:44 +#: engine/core/utils/caching.py:44 msgid "both data and timeout are required" msgstr "Både data og tidsavbrudd er påkrevd" -#: core/utils/caching.py:46 +#: engine/core/utils/caching.py:46 msgid "invalid timeout value, it must be between 0 and 216000 seconds" msgstr "Ugyldig tidsavbruddsverdi, den må være mellom 0 og 216000 sekunder" -#: core/utils/emailing.py:27 +#: engine/core/utils/emailing.py:27 #, python-brace-format msgid "{config.PROJECT_NAME} | contact us initiated" msgstr "{config.PROJECT_NAME} | kontakt oss initiert" -#: core/utils/emailing.py:73 +#: engine/core/utils/emailing.py:73 #, python-brace-format msgid "{config.PROJECT_NAME} | order confirmation" msgstr "{config.PROJECT_NAME} | Ordrebekreftelse" -#: core/utils/emailing.py:105 +#: engine/core/utils/emailing.py:105 #, python-brace-format msgid "{config.PROJECT_NAME} | order delivered" msgstr "{config.PROJECT_NAME} | Bestilling levert" -#: core/utils/emailing.py:188 +#: engine/core/utils/emailing.py:188 #, python-brace-format msgid "{config.PROJECT_NAME} | promocode granted" msgstr "{config.PROJECT_NAME} | promokode gitt" -#: core/utils/messages.py:3 +#: engine/core/utils/messages.py:3 msgid "you do not have permission to perform this action." msgstr "Du har ikke tillatelse til å utføre denne handlingen." -#: core/utils/nominatim.py:8 +#: engine/core/utils/nominatim.py:8 msgid "NOMINATIM_URL must be configured." msgstr "Parameteren NOMINATIM_URL må være konfigurert!" -#: core/validators.py:16 +#: engine/core/validators.py:16 #, python-brace-format msgid "image dimensions should not exceed w{max_width} x h{max_height} pixels" msgstr "" "Bildedimensjonene bør ikke overstige b{max_width} x h{max_height} piksler!" -#: core/views.py:72 +#: engine/core/views.py:71 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." -#: core/views.py:87 +#: engine/core/views.py:86 msgid "" "Handles the detailed view response for a sitemap. This function processes " "the request, fetches the appropriate sitemap detail response, and sets the " @@ -2943,17 +2980,17 @@ msgstr "" "behandler forespørselen, henter det aktuelle detaljsvaret for områdekartet " "og angir overskriften Content-Type for XML." -#: core/views.py:116 +#: engine/core/views.py:115 msgid "" "Returns a list of supported languages and their corresponding information." msgstr "" "Returnerer en liste over språk som støttes, med tilhørende informasjon." -#: core/views.py:148 +#: engine/core/views.py:147 msgid "Returns the parameters of the website as a JSON object." msgstr "Returnerer nettstedets parametere som et JSON-objekt." -#: core/views.py:167 +#: engine/core/views.py:166 msgid "" "Handles cache operations such as reading and setting cache data with a " "specified key and timeout." @@ -2961,66 +2998,75 @@ msgstr "" "Håndterer cache-operasjoner som lesing og innstilling av cachedata med en " "spesifisert nøkkel og tidsavbrudd." -#: core/views.py:194 +#: engine/core/views.py:193 msgid "Handles `contact us` form submissions." msgstr "Håndterer innsendinger av `kontakt oss`-skjemaer." -#: core/views.py:215 +#: engine/core/views.py:214 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." -#: core/views.py:255 +#: engine/core/views.py:254 msgid "Handles global search queries." msgstr "Håndterer globale søk." -#: core/views.py:270 +#: engine/core/views.py:269 msgid "Handles the logic of buying as a business without registration." msgstr "Håndterer logikken med å kjøpe som en bedrift uten registrering." -#: core/views.py:306 +#: engine/core/views.py:305 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." -#: core/views.py:316 +#: engine/core/views.py:315 msgid "order_product_uuid is required" msgstr "order_product_uuid er påkrevd" -#: core/views.py:322 +#: engine/core/views.py:321 msgid "you can only download the digital asset once" msgstr "Du kan bare laste ned den digitale ressursen én gang" -#: core/views.py:325 +#: engine/core/views.py:324 msgid "the order must be paid before downloading the digital asset" msgstr "bestillingen må betales før nedlasting av den digitale ressursen" -#: core/views.py:331 +#: engine/core/views.py:330 msgid "the order product does not have a product" msgstr "Ordreproduktet har ikke et produkt" -#: core/views.py:369 +#: engine/core/views.py:368 msgid "favicon not found" msgstr "favicon ble ikke funnet" -#: core/views.py:374 +#: engine/core/views.py:373 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." -#: core/views.py:386 +#: engine/core/views.py:385 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 " @@ -3028,11 +3074,11 @@ msgstr "" "administrasjonsgrensesnittet. Den bruker Djangos `redirect`-funksjon for å " "håndtere HTTP-omdirigeringen." -#: core/views.py:399 +#: engine/core/views.py:398 msgid "Returns current version of the eVibes. " msgstr "Returnerer gjeldende versjon av eVibes." -#: core/viewsets.py:137 +#: engine/core/viewsets.py:137 msgid "" "Defines a viewset for managing Evibes-related operations. The EvibesViewSet " "class inherits from ModelViewSet and provides functionality for handling " @@ -3046,13 +3092,12 @@ msgstr "" "støtte for dynamiske serialiseringsklasser basert på den aktuelle " "handlingen, tilpassbare tillatelser og gjengivelsesformater." -#: core/viewsets.py:157 +#: engine/core/viewsets.py:157 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, " @@ -3060,7 +3105,7 @@ msgstr "" "API-lag og gir en standardisert måte å behandle forespørsler og svar for " "AttributeGroup-data på." -#: core/viewsets.py:176 +#: engine/core/viewsets.py:176 msgid "" "Handles operations related to Attribute objects within the application. " "Provides a set of API endpoints to interact with Attribute data. This class " @@ -3069,20 +3114,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." -#: core/viewsets.py:195 +#: engine/core/viewsets.py:195 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, " @@ -3090,7 +3135,7 @@ msgstr "" "Framework's viewset-mekanismer og bruker passende serialisatorer for ulike " "handlinger. Filtreringsmuligheter tilbys gjennom DjangoFilterBackend." -#: core/viewsets.py:214 +#: engine/core/viewsets.py:214 msgid "" "Manages views for Category-related operations. The CategoryViewSet class is " "responsible for handling operations related to the Category model in the " @@ -3104,7 +3149,7 @@ msgstr "" "kategoridata. Visningssettet håndhever også tillatelser for å sikre at bare " "autoriserte brukere har tilgang til bestemte data." -#: core/viewsets.py:326 +#: engine/core/viewsets.py:326 msgid "" "Represents a viewset for managing Brand instances. This class provides " "functionality for querying, filtering, and serializing Brand objects. It " @@ -3116,7 +3161,7 @@ msgstr "" "Brand-objekter. Den bruker Djangos ViewSet-rammeverk for å forenkle " "implementeringen av API-sluttpunkter for Brand-objekter." -#: core/viewsets.py:438 +#: engine/core/viewsets.py:438 msgid "" "Manages operations related to the `Product` model in the system. This class " "provides a viewset for managing products, including their filtering, " @@ -3131,10 +3176,10 @@ msgstr "" "filtrering, serialisering og operasjoner på spesifikke forekomster. Den " "utvides fra `EvibesViewSet` 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." -#: core/viewsets.py:568 +#: engine/core/viewsets.py:568 msgid "" "Represents a viewset for managing Vendor objects. This viewset allows " "fetching, filtering, and serializing Vendor data. It defines the queryset, " @@ -3144,18 +3189,18 @@ 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." -#: core/viewsets.py:588 +#: engine/core/viewsets.py:588 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 `EvibesViewSet` and makes " "use of Django's filtering system for querying data." msgstr "" "Representasjon av et visningssett som håndterer Feedback-objekter. Denne " @@ -3166,14 +3211,14 @@ msgstr "" "tilbakemeldingsobjekter. Den utvider basisklassen `EvibesViewSet` og bruker " "Djangos filtreringssystem for å spørre etter data." -#: core/viewsets.py:615 +#: engine/core/viewsets.py:615 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 " @@ -3182,50 +3227,50 @@ 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." -#: core/viewsets.py:813 +#: engine/core/viewsets.py:813 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" -#: core/viewsets.py:867 +#: engine/core/viewsets.py:867 msgid "Manages operations related to Product images in the application. " msgstr "Administrerer operasjoner knyttet til produktbilder i applikasjonen." -#: core/viewsets.py:880 +#: engine/core/viewsets.py:880 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." -#: core/viewsets.py:902 +#: engine/core/viewsets.py:902 msgid "Represents a view set for managing promotions. " msgstr "Representerer et visningssett for håndtering av kampanjer." -#: core/viewsets.py:915 +#: engine/core/viewsets.py:915 msgid "Handles operations related to Stock data in the system." msgstr "Håndterer operasjoner knyttet til lagerdata i systemet." -#: core/viewsets.py:929 +#: engine/core/viewsets.py:929 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." @@ -3235,10 +3280,10 @@ 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." -#: core/viewsets.py:1044 +#: engine/core/viewsets.py:1044 msgid "" "This class provides viewset functionality for managing `Address` objects. " "The AddressViewSet class enables CRUD operations, filtering, and custom " @@ -3246,18 +3291,18 @@ 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." -#: core/viewsets.py:1111 +#: engine/core/viewsets.py:1111 #, python-brace-format msgid "Geocoding error: {e}" msgstr "Feil i geokoding: {e}" -#: core/viewsets.py:1119 +#: engine/core/viewsets.py:1119 msgid "" "Handles operations related to Product Tags within the application. This " "class provides functionality for retrieving, filtering, and serializing " diff --git a/engine/core/locale/pl_PL/LC_MESSAGES/django.mo b/engine/core/locale/pl_PL/LC_MESSAGES/django.mo new file mode 100644 index 00000000..5c1ce718 Binary files /dev/null and b/engine/core/locale/pl_PL/LC_MESSAGES/django.mo differ diff --git a/core/locale/pl_PL/LC_MESSAGES/django.po b/engine/core/locale/pl_PL/LC_MESSAGES/django.po similarity index 69% rename from core/locale/pl_PL/LC_MESSAGES/django.po rename to engine/core/locale/pl_PL/LC_MESSAGES/django.po index 95ac8961..37a122ab 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,212 +13,215 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: core/abstract.py:12 +#: engine/core/abstract.py:12 msgid "unique id" msgstr "Unikalny identyfikator" -#: core/abstract.py:13 +#: engine/core/abstract.py:13 msgid "unique id is used to surely identify any database object" msgstr "" "Unikalny identyfikator służy do jednoznacznej identyfikacji dowolnego " "obiektu bazy danych" -#: core/abstract.py:20 +#: engine/core/abstract.py:20 msgid "is active" msgstr "Jest aktywny" -#: core/abstract.py:21 +#: engine/core/abstract.py:21 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ń." -#: core/abstract.py:23 core/choices.py:18 +#: engine/core/abstract.py:23 engine/core/choices.py:18 msgid "created" msgstr "Utworzony" -#: core/abstract.py:23 +#: engine/core/abstract.py:23 msgid "when the object first appeared on the database" msgstr "Kiedy obiekt po raz pierwszy pojawił się w bazie danych" -#: core/abstract.py:24 +#: engine/core/abstract.py:24 msgid "modified" msgstr "Zmodyfikowany" -#: core/abstract.py:24 +#: engine/core/abstract.py:24 msgid "when the object was last modified" msgstr "Kiedy obiekt był ostatnio edytowany" -#: core/admin.py:68 +#: engine/core/admin.py:68 msgid "translations" msgstr "Tłumaczenia" -#: core/admin.py:72 +#: engine/core/admin.py:72 msgid "general" msgstr "Ogólne" -#: core/admin.py:74 +#: engine/core/admin.py:74 msgid "relations" msgstr "Relacje" -#: core/admin.py:76 +#: engine/core/admin.py:76 msgid "additional info" msgstr "dodatkowe informacje" -#: core/admin.py:94 +#: engine/core/admin.py:94 msgid "metadata" msgstr "Metadane" -#: core/admin.py:101 +#: engine/core/admin.py:101 msgid "timestamps" msgstr "Znaczniki czasu" -#: core/admin.py:116 +#: engine/core/admin.py:116 #, python-format msgid "activate selected %(verbose_name_plural)s" msgstr "Aktywuj wybrane %(verbose_name_plural)s" -#: core/admin.py:121 +#: engine/core/admin.py:121 msgid "selected items have been activated." msgstr "Wybrane elementy zostały aktywowane!" -#: core/admin.py:127 +#: engine/core/admin.py:127 #, python-format msgid "deactivate selected %(verbose_name_plural)s" msgstr "Dezaktywacja wybranego %(verbose_name_plural)s" -#: core/admin.py:132 +#: engine/core/admin.py:132 msgid "selected items have been deactivated." msgstr "Wybrane elementy zostały dezaktywowane!" -#: core/admin.py:144 core/graphene/object_types.py:582 -#: core/graphene/object_types.py:589 core/models.py:783 core/models.py:791 +#: engine/core/admin.py:144 engine/core/graphene/object_types.py:586 +#: engine/core/graphene/object_types.py:593 engine/core/models.py:794 +#: engine/core/models.py:802 msgid "attribute value" msgstr "Wartość atrybutu" -#: core/admin.py:145 core/graphene/object_types.py:75 core/models.py:792 +#: engine/core/admin.py:145 engine/core/graphene/object_types.py:75 +#: engine/core/models.py:803 msgid "attribute values" msgstr "Wartości atrybutów" -#: core/admin.py:156 +#: engine/core/admin.py:156 msgid "image" msgstr "Obraz" -#: core/admin.py:157 core/graphene/object_types.py:474 +#: engine/core/admin.py:157 engine/core/graphene/object_types.py:474 msgid "images" msgstr "Obrazy" -#: core/admin.py:168 core/models.py:559 +#: engine/core/admin.py:169 engine/core/models.py:559 msgid "stock" msgstr "Stan magazynowy" -#: core/admin.py:169 core/graphene/object_types.py:636 +#: engine/core/admin.py:170 engine/core/graphene/object_types.py:640 msgid "stocks" msgstr "Akcje" -#: core/admin.py:182 core/models.py:1744 +#: engine/core/admin.py:183 engine/core/models.py:1804 msgid "order product" msgstr "Zamów produkt" -#: core/admin.py:183 core/graphene/object_types.py:389 core/models.py:1745 +#: engine/core/admin.py:184 engine/core/graphene/object_types.py:389 +#: engine/core/models.py:1805 msgid "order products" msgstr "Zamawianie produktów" -#: core/admin.py:196 core/admin.py:197 +#: engine/core/admin.py:197 engine/core/admin.py:198 msgid "children" msgstr "Dzieci" -#: core/admin.py:965 +#: engine/core/admin.py:969 msgid "Config" msgstr "Konfiguracja" -#: core/apps.py:8 +#: engine/core/apps.py:8 msgid "core" msgstr "Rdzeń" -#: core/choices.py:4 core/choices.py:20 +#: engine/core/choices.py:4 engine/core/choices.py:20 msgid "finished" msgstr "Zakończony" -#: core/choices.py:5 core/choices.py:19 +#: engine/core/choices.py:5 engine/core/choices.py:19 msgid "delivering" msgstr "Dostarczanie" -#: core/choices.py:6 +#: engine/core/choices.py:6 msgid "delivered" msgstr "Dostarczone" -#: core/choices.py:7 +#: engine/core/choices.py:7 msgid "canceled" msgstr "Anulowane" -#: core/choices.py:8 core/choices.py:16 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ę" -#: core/choices.py:9 core/choices.py:15 +#: engine/core/choices.py:9 engine/core/choices.py:15 msgid "pending" msgstr "W toku" -#: core/choices.py:10 +#: engine/core/choices.py:10 msgid "accepted" msgstr "Przyjęte" -#: core/choices.py:11 +#: engine/core/choices.py:11 msgid "money returned" msgstr "Zwrócone pieniądze" -#: core/choices.py:17 +#: engine/core/choices.py:17 msgid "payment" msgstr "Płatność" -#: core/choices.py:21 +#: engine/core/choices.py:21 msgid "momental" msgstr "Momental" -#: core/choices.py:24 +#: engine/core/choices.py:24 msgid "successful" msgstr "Udany" -#: core/docs/drf/views.py:17 core/graphene/mutations.py:38 +#: engine/core/docs/drf/views.py:17 engine/core/graphene/mutations.py:38 msgid "cache I/O" msgstr "Pamięć podręczna we/wy" -#: core/docs/drf/views.py:19 +#: engine/core/docs/drf/views.py:19 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 "" "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." -#: core/docs/drf/views.py:32 +#: engine/core/docs/drf/views.py:32 msgid "get a list of supported languages" msgstr "Pobierz listę obsługiwanych języków" -#: core/docs/drf/views.py:41 +#: engine/core/docs/drf/views.py:41 msgid "get application's exposable parameters" msgstr "Uzyskaj dostępne parametry aplikacji" -#: core/docs/drf/views.py:48 +#: engine/core/docs/drf/views.py:48 msgid "send a message to the support team" msgstr "Wyślij wiadomość do zespołu wsparcia" -#: core/docs/drf/views.py:59 core/graphene/mutations.py:58 +#: engine/core/docs/drf/views.py:59 engine/core/graphene/mutations.py:58 msgid "request a CORSed URL" msgstr "Żądanie adresu URL CORSed. Dozwolony jest tylko protokół https." -#: core/docs/drf/views.py:85 +#: engine/core/docs/drf/views.py:85 msgid "global search endpoint to query across project's tables" msgstr "Globalny punkt końcowy wyszukiwania do zapytań w tabelach projektu" -#: core/docs/drf/views.py:91 +#: engine/core/docs/drf/views.py:91 msgid "purchase an order as a business" msgstr "Zakup zamówienia jako firma" -#: core/docs/drf/views.py:98 +#: engine/core/docs/drf/views.py:98 msgid "" "purchase an order as a business, using the provided `products` with " "`product_uuid` and `attributes`." @@ -226,224 +229,227 @@ msgstr "" "Kup zamówienie jako firma, używając dostarczonych `products` z " "`product_uuid` i `attributes`." -#: core/docs/drf/viewsets.py:58 +#: engine/core/docs/drf/viewsets.py:58 msgid "list all attribute groups (simple view)" msgstr "Lista wszystkich grup atrybutów (widok prosty)" -#: core/docs/drf/viewsets.py:62 +#: engine/core/docs/drf/viewsets.py:62 msgid "retrieve a single attribute group (detailed view)" msgstr "Pobieranie pojedynczej grupy atrybutów (widok szczegółowy)" -#: core/docs/drf/viewsets.py:66 +#: engine/core/docs/drf/viewsets.py:66 msgid "create an attribute group" msgstr "Tworzenie grupy atrybutów" -#: core/docs/drf/viewsets.py:70 +#: engine/core/docs/drf/viewsets.py:70 msgid "delete an attribute group" msgstr "Usuwanie grupy atrybutów" -#: core/docs/drf/viewsets.py:74 +#: engine/core/docs/drf/viewsets.py:74 msgid "rewrite an existing attribute group saving non-editables" msgstr "" "Przepisanie istniejącej grupy atrybutów z zachowaniem atrybutów " "nieedytowalnych" -#: core/docs/drf/viewsets.py:78 -msgid "" -"rewrite some fields of an existing attribute group saving non-editables" +#: engine/core/docs/drf/viewsets.py:78 +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" -#: core/docs/drf/viewsets.py:85 +#: engine/core/docs/drf/viewsets.py:85 msgid "list all attributes (simple view)" msgstr "Lista wszystkich atrybutów (widok prosty)" -#: core/docs/drf/viewsets.py:89 +#: engine/core/docs/drf/viewsets.py:89 msgid "retrieve a single attribute (detailed view)" msgstr "Pobieranie pojedynczego atrybutu (widok szczegółowy)" -#: core/docs/drf/viewsets.py:93 +#: engine/core/docs/drf/viewsets.py:93 msgid "create an attribute" msgstr "Utwórz atrybut" -#: core/docs/drf/viewsets.py:97 +#: engine/core/docs/drf/viewsets.py:97 msgid "delete an attribute" msgstr "Usuwanie atrybutu" -#: core/docs/drf/viewsets.py:101 +#: engine/core/docs/drf/viewsets.py:101 msgid "rewrite an existing attribute saving non-editables" msgstr "" "Przepisanie istniejącego atrybutu z zachowaniem atrybutów nieedytowalnych" -#: core/docs/drf/viewsets.py:105 +#: engine/core/docs/drf/viewsets.py:105 msgid "rewrite some fields of an existing attribute saving non-editables" msgstr "" "Przepisanie niektórych pól istniejącego atrybutu z zachowaniem atrybutów " "nieedytowalnych" -#: core/docs/drf/viewsets.py:112 +#: engine/core/docs/drf/viewsets.py:112 msgid "list all attribute values (simple view)" msgstr "Lista wszystkich wartości atrybutów (widok prosty)" -#: core/docs/drf/viewsets.py:116 +#: engine/core/docs/drf/viewsets.py:116 msgid "retrieve a single attribute value (detailed view)" msgstr "Pobieranie wartości pojedynczego atrybutu (widok szczegółowy)" -#: core/docs/drf/viewsets.py:120 +#: engine/core/docs/drf/viewsets.py:120 msgid "create an attribute value" msgstr "Tworzenie wartości atrybutu" -#: core/docs/drf/viewsets.py:124 +#: engine/core/docs/drf/viewsets.py:124 msgid "delete an attribute value" msgstr "Usuwanie wartości atrybutu" -#: core/docs/drf/viewsets.py:128 +#: engine/core/docs/drf/viewsets.py:128 msgid "rewrite an existing attribute value saving non-editables" msgstr "" "Przepisanie istniejącej wartości atrybutu z zachowaniem atrybutów " "nieedytowalnych" -#: core/docs/drf/viewsets.py:132 -msgid "" -"rewrite some fields of an existing attribute value saving non-editables" +#: engine/core/docs/drf/viewsets.py:132 +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" -#: core/docs/drf/viewsets.py:139 core/docs/drf/viewsets.py:140 +#: engine/core/docs/drf/viewsets.py:139 engine/core/docs/drf/viewsets.py:140 msgid "list all categories (simple view)" msgstr "Lista wszystkich kategorii (widok prosty)" -#: core/docs/drf/viewsets.py:144 core/docs/drf/viewsets.py:145 +#: engine/core/docs/drf/viewsets.py:144 engine/core/docs/drf/viewsets.py:145 msgid "retrieve a single category (detailed view)" msgstr "Pobieranie pojedynczej kategorii (widok szczegółowy)" -#: core/docs/drf/viewsets.py:149 core/docs/drf/viewsets.py:150 +#: engine/core/docs/drf/viewsets.py:150 engine/core/docs/drf/viewsets.py:183 +msgid "Category UUID or slug" +msgstr "Identyfikator UUID kategorii lub slug" + +#: engine/core/docs/drf/viewsets.py:157 engine/core/docs/drf/viewsets.py:158 msgid "create a category" msgstr "Utwórz kategorię" -#: core/docs/drf/viewsets.py:154 core/docs/drf/viewsets.py:155 +#: engine/core/docs/drf/viewsets.py:162 engine/core/docs/drf/viewsets.py:163 msgid "delete a category" msgstr "Usuwanie kategorii" -#: core/docs/drf/viewsets.py:159 core/docs/drf/viewsets.py:160 +#: engine/core/docs/drf/viewsets.py:167 engine/core/docs/drf/viewsets.py:168 msgid "rewrite an existing category saving non-editables" msgstr "Przepisz istniejącą kategorię, zapisując nieedytowalne elementy" -#: core/docs/drf/viewsets.py:164 core/docs/drf/viewsets.py:165 +#: engine/core/docs/drf/viewsets.py:172 engine/core/docs/drf/viewsets.py:173 msgid "rewrite some fields of an existing category saving non-editables" msgstr "" "Przepisz niektóre pola istniejącej kategorii, zapisując elementy " "nieedytowalne" -#: core/docs/drf/viewsets.py:169 core/docs/drf/viewsets.py:501 -#: core/graphene/object_types.py:117 core/graphene/object_types.py:207 -#: core/graphene/object_types.py:482 +#: engine/core/docs/drf/viewsets.py:177 engine/core/docs/drf/viewsets.py:517 +#: engine/core/graphene/object_types.py:117 +#: engine/core/graphene/object_types.py:207 +#: engine/core/graphene/object_types.py:482 msgid "SEO Meta snapshot" msgstr "SEO Meta snapshot" -#: core/docs/drf/viewsets.py:170 +#: engine/core/docs/drf/viewsets.py:178 msgid "returns a snapshot of the category's SEO meta data" msgstr "Zwraca migawkę metadanych SEO kategorii." -#: core/docs/drf/viewsets.py:175 -msgid "Category UUID or slug" -msgstr "Identyfikator UUID kategorii lub slug" - -#: core/docs/drf/viewsets.py:188 +#: engine/core/docs/drf/viewsets.py:196 msgid "list all orders (simple view)" msgstr "Lista wszystkich kategorii (widok prosty)" -#: core/docs/drf/viewsets.py:189 +#: engine/core/docs/drf/viewsets.py:197 msgid "for non-staff users, only their own orders are returned." msgstr "" "W przypadku użytkowników niebędących pracownikami zwracane są tylko ich " "własne zamówienia." -#: core/docs/drf/viewsets.py:195 +#: engine/core/docs/drf/viewsets.py:203 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." -#: core/docs/drf/viewsets.py:202 +#: engine/core/docs/drf/viewsets.py:210 msgid "Filter orders with buy_time >= this ISO 8601 datetime" msgstr "Filtruj zamówienia z buy_time >= ta data ISO 8601" -#: core/docs/drf/viewsets.py:207 +#: engine/core/docs/drf/viewsets.py:215 msgid "Filter orders with buy_time <= this ISO 8601 datetime" msgstr "Filtruj zamówienia z buy_time <= ten ISO 8601 datetime" -#: core/docs/drf/viewsets.py:212 +#: engine/core/docs/drf/viewsets.py:220 msgid "Filter by exact order UUID" msgstr "Filtruj według dokładnego identyfikatora UUID zamówienia" -#: core/docs/drf/viewsets.py:217 +#: engine/core/docs/drf/viewsets.py:225 msgid "Filter by exact human-readable order ID" msgstr "" "Filtrowanie według dokładnego, czytelnego dla człowieka identyfikatora " "zamówienia" -#: core/docs/drf/viewsets.py:222 +#: engine/core/docs/drf/viewsets.py:230 msgid "Filter by user's email (case-insensitive exact match)" msgstr "" "Filtrowanie według adresu e-mail użytkownika (dokładne dopasowanie z " "uwzględnieniem wielkości liter)" -#: core/docs/drf/viewsets.py:227 +#: engine/core/docs/drf/viewsets.py:235 msgid "Filter by user's UUID" msgstr "Filtrowanie według identyfikatora UUID użytkownika" -#: core/docs/drf/viewsets.py:232 +#: engine/core/docs/drf/viewsets.py:240 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)" -#: core/docs/drf/viewsets.py:238 +#: engine/core/docs/drf/viewsets.py:246 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 " "(np. \"-buy_time\")." -#: core/docs/drf/viewsets.py:247 +#: engine/core/docs/drf/viewsets.py:255 msgid "retrieve a single order (detailed view)" msgstr "Pobieranie pojedynczej kategorii (widok szczegółowy)" -#: core/docs/drf/viewsets.py:251 +#: engine/core/docs/drf/viewsets.py:260 +msgid "Order UUID or human-readable id" +msgstr "Identyfikator UUID zamówienia lub identyfikator czytelny dla człowieka" + +#: engine/core/docs/drf/viewsets.py:267 msgid "create an order" msgstr "Utwórz atrybut" -#: core/docs/drf/viewsets.py:252 +#: engine/core/docs/drf/viewsets.py:268 msgid "doesn't work for non-staff users." msgstr "Nie działa dla użytkowników spoza personelu." -#: core/docs/drf/viewsets.py:256 +#: engine/core/docs/drf/viewsets.py:272 msgid "delete an order" msgstr "Usuwanie atrybutu" -#: core/docs/drf/viewsets.py:260 +#: engine/core/docs/drf/viewsets.py:276 msgid "rewrite an existing order saving non-editables" msgstr "Przepisz istniejącą kategorię, zapisując nieedytowalne elementy" -#: core/docs/drf/viewsets.py:264 +#: engine/core/docs/drf/viewsets.py:280 msgid "rewrite some fields of an existing order saving non-editables" msgstr "" "Przepisz niektóre pola istniejącej kategorii, zapisując elementy " "nieedytowalne" -#: core/docs/drf/viewsets.py:268 +#: engine/core/docs/drf/viewsets.py:284 msgid "purchase an order" msgstr "Cena zakupu w momencie zamówienia" -#: core/docs/drf/viewsets.py:270 +#: engine/core/docs/drf/viewsets.py:286 msgid "" "finalizes the order purchase. if `force_balance` is used, the purchase is " "completed using the user's balance; if `force_payment` is used, a " @@ -453,19 +459,19 @@ msgstr "" "finalizowany przy użyciu salda użytkownika; Jeśli użyto `force_payment`, " "transakcja jest inicjowana." -#: core/docs/drf/viewsets.py:282 core/graphene/mutations.py:335 +#: engine/core/docs/drf/viewsets.py:298 engine/core/graphene/mutations.py:335 msgid "purchase an order without account creation" msgstr "zakup zamówienia bez tworzenia konta" -#: core/docs/drf/viewsets.py:283 +#: engine/core/docs/drf/viewsets.py:299 msgid "finalizes the order purchase for a non-registered user." msgstr "finalizuje zakup zamówienia dla niezarejestrowanego użytkownika." -#: core/docs/drf/viewsets.py:291 +#: engine/core/docs/drf/viewsets.py:307 msgid "add product to order" msgstr "Dodawanie produktu do zamówienia" -#: core/docs/drf/viewsets.py:292 +#: engine/core/docs/drf/viewsets.py:308 msgid "" "adds a product to an order using the provided `product_uuid` and " "`attributes`." @@ -473,11 +479,11 @@ msgstr "" "Dodaje produkt do zamówienia przy użyciu podanych `product_uuid` i " "`attributes`." -#: core/docs/drf/viewsets.py:297 +#: engine/core/docs/drf/viewsets.py:313 msgid "add a list of products to order, quantities will not count" msgstr "Dodaj listę produktów do zamówienia, ilości nie będą liczone." -#: core/docs/drf/viewsets.py:298 +#: engine/core/docs/drf/viewsets.py:314 msgid "" "adds a list of products to an order using the provided `product_uuid` and " "`attributes`." @@ -485,11 +491,11 @@ msgstr "" "Dodaje listę produktów do zamówienia przy użyciu podanych `product_uuid` i " "`attributes`." -#: core/docs/drf/viewsets.py:303 +#: engine/core/docs/drf/viewsets.py:319 msgid "remove product from order" msgstr "Usunięcie produktu z zamówienia" -#: core/docs/drf/viewsets.py:304 +#: engine/core/docs/drf/viewsets.py:320 msgid "" "removes a product from an order using the provided `product_uuid` and " "`attributes`." @@ -497,11 +503,11 @@ msgstr "" "Usuwa produkt z zamówienia przy użyciu podanego `product_uuid` i " "`attributes`." -#: core/docs/drf/viewsets.py:309 +#: engine/core/docs/drf/viewsets.py:325 msgid "remove product from order, quantities will not count" msgstr "Usuń produkt z zamówienia, ilości nie będą liczone" -#: core/docs/drf/viewsets.py:310 +#: engine/core/docs/drf/viewsets.py:326 msgid "" "removes a list of products from an order using the provided `product_uuid` " "and `attributes`" @@ -509,797 +515,822 @@ msgstr "" "Usuwa listę produktów z zamówienia przy użyciu podanych `product_uuid` i " "`attributes`." -#: core/docs/drf/viewsets.py:318 +#: engine/core/docs/drf/viewsets.py:334 msgid "list all wishlists (simple view)" msgstr "Lista wszystkich atrybutów (widok prosty)" -#: core/docs/drf/viewsets.py:319 +#: engine/core/docs/drf/viewsets.py:335 msgid "for non-staff users, only their own wishlists are returned." msgstr "" "W przypadku użytkowników niebędących pracownikami zwracane są tylko ich " "własne listy życzeń." -#: core/docs/drf/viewsets.py:323 +#: engine/core/docs/drf/viewsets.py:339 msgid "retrieve a single wishlist (detailed view)" msgstr "Pobieranie pojedynczego atrybutu (widok szczegółowy)" -#: core/docs/drf/viewsets.py:327 +#: engine/core/docs/drf/viewsets.py:343 msgid "create an wishlist" msgstr "Utwórz atrybut" -#: core/docs/drf/viewsets.py:328 +#: engine/core/docs/drf/viewsets.py:344 msgid "Doesn't work for non-staff users." msgstr "Nie działa dla użytkowników spoza personelu." -#: core/docs/drf/viewsets.py:332 +#: engine/core/docs/drf/viewsets.py:348 msgid "delete an wishlist" msgstr "Usuwanie atrybutu" -#: core/docs/drf/viewsets.py:336 +#: engine/core/docs/drf/viewsets.py:352 msgid "rewrite an existing wishlist saving non-editables" msgstr "" "Przepisanie istniejącego atrybutu z zachowaniem atrybutów nieedytowalnych" -#: core/docs/drf/viewsets.py:340 +#: engine/core/docs/drf/viewsets.py:356 msgid "rewrite some fields of an existing wishlist saving non-editables" msgstr "" "Przepisanie niektórych pól istniejącego atrybutu z zachowaniem atrybutów " "nieedytowalnych" -#: core/docs/drf/viewsets.py:344 +#: engine/core/docs/drf/viewsets.py:360 msgid "add product to wishlist" msgstr "Dodawanie produktu do zamówienia" -#: core/docs/drf/viewsets.py:345 +#: engine/core/docs/drf/viewsets.py:361 msgid "adds a product to an wishlist using the provided `product_uuid`" msgstr "Dodaje produkt do listy życzeń używając podanego `product_uuid`" -#: core/docs/drf/viewsets.py:350 +#: engine/core/docs/drf/viewsets.py:366 msgid "remove product from wishlist" msgstr "Usunięcie produktu z listy życzeń" -#: core/docs/drf/viewsets.py:351 +#: engine/core/docs/drf/viewsets.py:367 msgid "removes a product from an wishlist using the provided `product_uuid`" msgstr "" "Usuwa produkt z listy życzeń przy użyciu podanego identyfikatora " "`product_uuid`." -#: core/docs/drf/viewsets.py:356 +#: engine/core/docs/drf/viewsets.py:372 msgid "add many products to wishlist" msgstr "Dodaj wiele produktów do listy życzeń" -#: core/docs/drf/viewsets.py:357 +#: engine/core/docs/drf/viewsets.py:373 msgid "adds many products to an wishlist using the provided `product_uuids`" msgstr "" "Dodaje wiele produktów do listy życzeń przy użyciu podanych `product_uuids`" -#: core/docs/drf/viewsets.py:362 +#: engine/core/docs/drf/viewsets.py:378 msgid "remove many products from wishlist" msgstr "Usunięcie produktu z zamówienia" -#: core/docs/drf/viewsets.py:363 +#: engine/core/docs/drf/viewsets.py:379 msgid "" "removes many products from an wishlist using the provided `product_uuids`" msgstr "" "Usuwa wiele produktów z listy życzeń przy użyciu podanych `product_uuids`" -#: core/docs/drf/viewsets.py:370 +#: engine/core/docs/drf/viewsets.py:386 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`" -#: core/docs/drf/viewsets.py:386 core/docs/drf/viewsets.py:387 +#: engine/core/docs/drf/viewsets.py:402 engine/core/docs/drf/viewsets.py:403 msgid "list all products (simple view)" msgstr "Lista wszystkich produktów (widok prosty)" -#: core/docs/drf/viewsets.py:392 +#: engine/core/docs/drf/viewsets.py:408 msgid "(exact) Product UUID" msgstr "(dokładny) UUID produktu" -#: core/docs/drf/viewsets.py:399 +#: engine/core/docs/drf/viewsets.py:415 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" -#: core/docs/drf/viewsets.py:413 core/docs/drf/viewsets.py:414 +#: engine/core/docs/drf/viewsets.py:429 engine/core/docs/drf/viewsets.py:430 msgid "retrieve a single product (detailed view)" msgstr "Pobieranie pojedynczego produktu (widok szczegółowy)" -#: core/docs/drf/viewsets.py:419 core/docs/drf/viewsets.py:443 -#: core/docs/drf/viewsets.py:459 core/docs/drf/viewsets.py:475 -#: core/docs/drf/viewsets.py:491 core/docs/drf/viewsets.py:507 +#: engine/core/docs/drf/viewsets.py:435 engine/core/docs/drf/viewsets.py:459 +#: engine/core/docs/drf/viewsets.py:475 engine/core/docs/drf/viewsets.py:491 +#: engine/core/docs/drf/viewsets.py:507 engine/core/docs/drf/viewsets.py:523 msgid "Product UUID or slug" msgstr "UUID produktu lub Slug" -#: core/docs/drf/viewsets.py:429 core/docs/drf/viewsets.py:430 +#: engine/core/docs/drf/viewsets.py:445 engine/core/docs/drf/viewsets.py:446 msgid "create a product" msgstr "Tworzenie produktu" -#: core/docs/drf/viewsets.py:437 core/docs/drf/viewsets.py:438 +#: engine/core/docs/drf/viewsets.py:453 engine/core/docs/drf/viewsets.py:454 msgid "rewrite an existing product, preserving non-editable fields" msgstr "Przepisz istniejący produkt, zachowując nieedytowalne pola" -#: core/docs/drf/viewsets.py:453 core/docs/drf/viewsets.py:454 +#: engine/core/docs/drf/viewsets.py:469 engine/core/docs/drf/viewsets.py:470 msgid "" "update some fields of an existing product, preserving non-editable fields" msgstr "" "Aktualizacja niektórych pól istniejącego produktu z zachowaniem pól " "nieedytowalnych" -#: core/docs/drf/viewsets.py:469 core/docs/drf/viewsets.py:470 +#: engine/core/docs/drf/viewsets.py:485 engine/core/docs/drf/viewsets.py:486 msgid "delete a product" msgstr "Usuń produkt" -#: core/docs/drf/viewsets.py:485 core/docs/drf/viewsets.py:486 +#: engine/core/docs/drf/viewsets.py:501 engine/core/docs/drf/viewsets.py:502 msgid "lists all permitted feedbacks for a product" msgstr "wyświetla wszystkie dozwolone informacje zwrotne dotyczące produktu" -#: core/docs/drf/viewsets.py:502 +#: engine/core/docs/drf/viewsets.py:518 msgid "returns a snapshot of the product's SEO meta data" msgstr "Zwraca migawkę metadanych SEO produktu." -#: core/docs/drf/viewsets.py:520 +#: engine/core/docs/drf/viewsets.py:536 msgid "list all addresses" msgstr "Lista wszystkich adresów" -#: core/docs/drf/viewsets.py:527 +#: engine/core/docs/drf/viewsets.py:543 msgid "retrieve a single address" msgstr "Pobieranie pojedynczego adresu" -#: core/docs/drf/viewsets.py:534 +#: engine/core/docs/drf/viewsets.py:550 msgid "create a new address" msgstr "Utwórz nowy adres" -#: core/docs/drf/viewsets.py:542 +#: engine/core/docs/drf/viewsets.py:558 msgid "delete an address" msgstr "Usuwanie adresu" -#: core/docs/drf/viewsets.py:549 +#: engine/core/docs/drf/viewsets.py:565 msgid "update an entire address" msgstr "Aktualizacja całego adresu" -#: core/docs/drf/viewsets.py:557 +#: engine/core/docs/drf/viewsets.py:573 msgid "partially update an address" msgstr "Częściowa aktualizacja adresu" -#: core/docs/drf/viewsets.py:565 +#: engine/core/docs/drf/viewsets.py:581 msgid "autocomplete address suggestions" msgstr "Wprowadzanie adresu w trybie autouzupełniania" -#: core/docs/drf/viewsets.py:570 +#: engine/core/docs/drf/viewsets.py:586 msgid "raw data query string, please append with data from geo-IP endpoint" msgstr "" "Ciąg zapytania danych nieprzetworzonych, należy dołączyć dane z punktu " "końcowego geo-IP" -#: core/docs/drf/viewsets.py:576 +#: engine/core/docs/drf/viewsets.py:592 msgid "limit the results amount, 1 < limit < 10, default: 5" msgstr "ogranicza ilość wyników, 1 < limit < 10, domyślnie: 5" -#: core/docs/drf/viewsets.py:589 +#: engine/core/docs/drf/viewsets.py:605 msgid "list all feedbacks (simple view)" msgstr "lista wszystkich opinii (widok prosty)" -#: core/docs/drf/viewsets.py:593 +#: engine/core/docs/drf/viewsets.py:609 msgid "retrieve a single feedback (detailed view)" msgstr "pobieranie pojedynczej informacji zwrotnej (widok szczegółowy)" -#: core/docs/drf/viewsets.py:597 +#: engine/core/docs/drf/viewsets.py:613 msgid "create a feedback" msgstr "utworzyć informację zwrotną" -#: core/docs/drf/viewsets.py:601 +#: engine/core/docs/drf/viewsets.py:617 msgid "delete a feedback" msgstr "usuwanie opinii" -#: core/docs/drf/viewsets.py:605 +#: engine/core/docs/drf/viewsets.py:621 msgid "rewrite an existing feedback saving non-editables" msgstr "" "przepisanie istniejącej informacji zwrotnej z zachowaniem elementów " "nieedytowalnych" -#: core/docs/drf/viewsets.py:609 +#: engine/core/docs/drf/viewsets.py:625 msgid "rewrite some fields of an existing feedback saving non-editables" msgstr "" "Przepisz niektóre pola istniejącej kategorii, zapisując elementy " "nieedytowalne" -#: core/docs/drf/viewsets.py:616 +#: engine/core/docs/drf/viewsets.py:632 msgid "list all order–product relations (simple view)" msgstr "lista wszystkich relacji zamówienie-produkt (widok prosty)" -#: core/docs/drf/viewsets.py:623 +#: engine/core/docs/drf/viewsets.py:639 msgid "retrieve a single order–product relation (detailed view)" msgstr "pobranie pojedynczej relacji zamówienie-produkt (widok szczegółowy)" -#: core/docs/drf/viewsets.py:630 +#: engine/core/docs/drf/viewsets.py:646 msgid "create a new order–product relation" msgstr "utworzyć nową relację zamówienie-produkt" -#: core/docs/drf/viewsets.py:637 +#: engine/core/docs/drf/viewsets.py:653 msgid "replace an existing order–product relation" msgstr "zastąpić istniejącą relację zamówienie-produkt" -#: core/docs/drf/viewsets.py:644 +#: engine/core/docs/drf/viewsets.py:660 msgid "partially update an existing order–product relation" msgstr "częściowa aktualizacja istniejącej relacji zamówienie-produkt" -#: core/docs/drf/viewsets.py:651 +#: engine/core/docs/drf/viewsets.py:667 msgid "delete an order–product relation" msgstr "usunąć relację zamówienie-produkt" -#: core/docs/drf/viewsets.py:658 +#: engine/core/docs/drf/viewsets.py:674 msgid "add or remove feedback on an order–product relation" msgstr "dodawanie lub usuwanie opinii na temat relacji zamówienie-produkt" -#: core/docs/drf/viewsets.py:672 +#: engine/core/docs/drf/viewsets.py:688 msgid "list all brands (simple view)" msgstr "Lista wszystkich marek (widok prosty)" -#: core/docs/drf/viewsets.py:676 +#: engine/core/docs/drf/viewsets.py:692 msgid "retrieve a single brand (detailed view)" msgstr "Pobieranie pojedynczej marki (widok szczegółowy)" -#: core/docs/drf/viewsets.py:680 +#: engine/core/docs/drf/viewsets.py:697 engine/core/docs/drf/viewsets.py:725 +msgid "Brand UUID or slug" +msgstr "Brand UUID lub slug" + +#: engine/core/docs/drf/viewsets.py:704 msgid "create a brand" msgstr "Stwórz markę" -#: core/docs/drf/viewsets.py:684 +#: engine/core/docs/drf/viewsets.py:708 msgid "delete a brand" msgstr "Usuń markę" -#: core/docs/drf/viewsets.py:688 +#: engine/core/docs/drf/viewsets.py:712 msgid "rewrite an existing brand saving non-editables" msgstr "Przepisz istniejącą markę, oszczędzając materiały nieedytowalne" -#: core/docs/drf/viewsets.py:692 +#: engine/core/docs/drf/viewsets.py:716 msgid "rewrite some fields of an existing brand saving non-editables" msgstr "" "Przepisz niektóre pola istniejącej kategorii, zapisując elementy " "nieedytowalne" -#: core/docs/drf/viewsets.py:696 +#: engine/core/docs/drf/viewsets.py:720 msgid "SEO Meta snapshot for brand" msgstr "SEO Meta snapshot dla marki" -#: core/docs/drf/viewsets.py:703 +#: engine/core/docs/drf/viewsets.py:735 msgid "list all vendors (simple view)" msgstr "Lista wszystkich sprzedawców (widok prosty)" -#: core/docs/drf/viewsets.py:707 +#: engine/core/docs/drf/viewsets.py:739 msgid "retrieve a single vendor (detailed view)" msgstr "Pobieranie pojedynczego dostawcy (widok szczegółowy)" -#: core/docs/drf/viewsets.py:711 +#: engine/core/docs/drf/viewsets.py:743 msgid "create a vendor" msgstr "Utwórz sprzedawcę" -#: core/docs/drf/viewsets.py:715 +#: engine/core/docs/drf/viewsets.py:747 msgid "delete a vendor" msgstr "Usuń sprzedawcę" -#: core/docs/drf/viewsets.py:719 +#: engine/core/docs/drf/viewsets.py:751 msgid "rewrite an existing vendor saving non-editables" msgstr "Przepisz istniejącego dostawcę, zapisując nieedytowalne elementy" -#: core/docs/drf/viewsets.py:723 +#: engine/core/docs/drf/viewsets.py:755 msgid "rewrite some fields of an existing vendor saving non-editables" msgstr "" "Przepisz niektóre pola istniejącej kategorii, zapisując elementy " "nieedytowalne" -#: core/docs/drf/viewsets.py:730 +#: engine/core/docs/drf/viewsets.py:762 msgid "list all product images (simple view)" msgstr "Lista wszystkich zdjęć produktów (widok prosty)" -#: core/docs/drf/viewsets.py:734 +#: engine/core/docs/drf/viewsets.py:766 msgid "retrieve a single product image (detailed view)" msgstr "Pobieranie pojedynczego obrazu produktu (widok szczegółowy)" -#: core/docs/drf/viewsets.py:738 +#: engine/core/docs/drf/viewsets.py:770 msgid "create a product image" msgstr "Utwórz obraz produktu" -#: core/docs/drf/viewsets.py:742 +#: engine/core/docs/drf/viewsets.py:774 msgid "delete a product image" msgstr "Usuwanie obrazu produktu" -#: core/docs/drf/viewsets.py:746 +#: engine/core/docs/drf/viewsets.py:778 msgid "rewrite an existing product image saving non-editables" msgstr "Przepisz istniejący obraz produktu, zapisując nieedytowalne elementy" -#: core/docs/drf/viewsets.py:750 +#: engine/core/docs/drf/viewsets.py:782 msgid "rewrite some fields of an existing product image saving non-editables" msgstr "" "Przepisz niektóre pola istniejącej kategorii, zapisując elementy " "nieedytowalne" -#: core/docs/drf/viewsets.py:757 +#: engine/core/docs/drf/viewsets.py:789 msgid "list all promo codes (simple view)" msgstr "Lista wszystkich kodów promocyjnych (widok prosty)" -#: core/docs/drf/viewsets.py:761 +#: engine/core/docs/drf/viewsets.py:793 msgid "retrieve a single promo code (detailed view)" msgstr "Pobieranie pojedynczego kodu promocyjnego (widok szczegółowy)" -#: core/docs/drf/viewsets.py:765 +#: engine/core/docs/drf/viewsets.py:797 msgid "create a promo code" msgstr "Utwórz kod promocyjny" -#: core/docs/drf/viewsets.py:769 +#: engine/core/docs/drf/viewsets.py:801 msgid "delete a promo code" msgstr "Usuń kod promocyjny" -#: core/docs/drf/viewsets.py:773 +#: engine/core/docs/drf/viewsets.py:805 msgid "rewrite an existing promo code saving non-editables" msgstr "" "Przepisz istniejący kod promocyjny, oszczędzając nieedytowalne elementy" -#: core/docs/drf/viewsets.py:777 +#: engine/core/docs/drf/viewsets.py:809 msgid "rewrite some fields of an existing promo code saving non-editables" msgstr "" "Przepisz niektóre pola istniejącej kategorii, zapisując elementy " "nieedytowalne" -#: core/docs/drf/viewsets.py:784 +#: engine/core/docs/drf/viewsets.py:816 msgid "list all promotions (simple view)" msgstr "Lista wszystkich promocji (widok prosty)" -#: core/docs/drf/viewsets.py:788 +#: engine/core/docs/drf/viewsets.py:820 msgid "retrieve a single promotion (detailed view)" msgstr "Pobieranie pojedynczej promocji (widok szczegółowy)" -#: core/docs/drf/viewsets.py:792 +#: engine/core/docs/drf/viewsets.py:824 msgid "create a promotion" msgstr "Utwórz promocję" -#: core/docs/drf/viewsets.py:796 +#: engine/core/docs/drf/viewsets.py:828 msgid "delete a promotion" msgstr "Usuń promocję" -#: core/docs/drf/viewsets.py:800 +#: engine/core/docs/drf/viewsets.py:832 msgid "rewrite an existing promotion saving non-editables" msgstr "Przepisz istniejącą promocję, zapisując nieedytowalne elementy" -#: core/docs/drf/viewsets.py:804 +#: engine/core/docs/drf/viewsets.py:836 msgid "rewrite some fields of an existing promotion saving non-editables" msgstr "" "Przepisz niektóre pola istniejącej kategorii, zapisując elementy " "nieedytowalne" -#: core/docs/drf/viewsets.py:811 +#: engine/core/docs/drf/viewsets.py:843 msgid "list all stocks (simple view)" msgstr "Lista wszystkich akcji (widok prosty)" -#: core/docs/drf/viewsets.py:815 +#: engine/core/docs/drf/viewsets.py:847 msgid "retrieve a single stock (detailed view)" msgstr "Pobieranie pojedynczego zasobu (widok szczegółowy)" -#: core/docs/drf/viewsets.py:819 +#: engine/core/docs/drf/viewsets.py:851 msgid "create a stock record" msgstr "Tworzenie rekordu zapasów" -#: core/docs/drf/viewsets.py:823 +#: engine/core/docs/drf/viewsets.py:855 msgid "delete a stock record" msgstr "Usuwanie rekordu zapasów" -#: core/docs/drf/viewsets.py:827 +#: engine/core/docs/drf/viewsets.py:859 msgid "rewrite an existing stock record saving non-editables" msgstr "" "Przepisanie istniejącego rekordu magazynowego z zachowaniem elementów " "nieedytowalnych" -#: core/docs/drf/viewsets.py:831 +#: engine/core/docs/drf/viewsets.py:863 msgid "rewrite some fields of an existing stock record saving non-editables" msgstr "" "Przepisz niektóre pola istniejącej kategorii, zapisując elementy " "nieedytowalne" -#: core/docs/drf/viewsets.py:838 +#: engine/core/docs/drf/viewsets.py:870 msgid "list all product tags (simple view)" msgstr "Lista wszystkich tagów produktów (widok prosty)" -#: core/docs/drf/viewsets.py:842 +#: engine/core/docs/drf/viewsets.py:874 msgid "retrieve a single product tag (detailed view)" msgstr "Pobieranie pojedynczego tagu produktu (widok szczegółowy)" -#: core/docs/drf/viewsets.py:846 +#: engine/core/docs/drf/viewsets.py:878 msgid "create a product tag" msgstr "Utwórz tag produktu" -#: core/docs/drf/viewsets.py:850 +#: engine/core/docs/drf/viewsets.py:882 msgid "delete a product tag" msgstr "Usuwanie tagu produktu" -#: core/docs/drf/viewsets.py:854 +#: engine/core/docs/drf/viewsets.py:886 msgid "rewrite an existing product tag saving non-editables" msgstr "Przepisz istniejący tag produktu, zapisując nieedytowalne elementy" -#: core/docs/drf/viewsets.py:858 +#: engine/core/docs/drf/viewsets.py:890 msgid "rewrite some fields of an existing product tag saving non-editables" msgstr "" "Przepisz niektóre pola istniejącej kategorii, zapisując elementy " "nieedytowalne" -#: core/elasticsearch/__init__.py:118 core/elasticsearch/__init__.py:550 +#: engine/core/elasticsearch/__init__.py:122 +#: engine/core/elasticsearch/__init__.py:570 msgid "no search term provided." msgstr "Nie podano wyszukiwanego hasła." -#: core/filters.py:69 core/filters.py:412 core/filters.py:539 +#: engine/core/filters.py:69 engine/core/filters.py:426 +#: engine/core/filters.py:553 msgid "Search" msgstr "Wyszukiwanie" -#: core/filters.py:70 core/filters.py:569 core/filters.py:598 +#: engine/core/filters.py:70 engine/core/filters.py:583 +#: engine/core/filters.py:612 msgid "UUID" msgstr "UUID" -#: core/filters.py:71 core/filters.py:414 core/filters.py:541 +#: engine/core/filters.py:71 engine/core/filters.py:428 +#: engine/core/filters.py:555 msgid "Name" msgstr "Nazwa" -#: core/filters.py:72 core/filters.py:543 +#: engine/core/filters.py:72 engine/core/filters.py:557 msgid "Categories" msgstr "Kategorie" -#: core/filters.py:74 +#: engine/core/filters.py:74 msgid "Categories Slugs" msgstr "Kategorie Ślimaki" -#: core/filters.py:75 core/filters.py:422 +#: engine/core/filters.py:75 engine/core/filters.py:436 msgid "Tags" msgstr "Tagi" -#: core/filters.py:76 +#: engine/core/filters.py:76 msgid "Min Price" msgstr "Cena minimalna" -#: core/filters.py:77 +#: engine/core/filters.py:77 msgid "Max Price" msgstr "Maksymalna cena" -#: core/filters.py:78 +#: engine/core/filters.py:78 msgid "Is Active" msgstr "Jest aktywny" -#: core/filters.py:79 +#: engine/core/filters.py:79 msgid "Brand" msgstr "Marka" -#: core/filters.py:80 +#: engine/core/filters.py:80 msgid "Attributes" msgstr "Atrybuty" -#: core/filters.py:81 +#: engine/core/filters.py:81 msgid "Quantity" msgstr "Ilość" -#: core/filters.py:82 core/filters.py:416 core/filters.py:542 -#: core/models.py:322 core/models.py:483 core/models.py:637 +#: engine/core/filters.py:82 engine/core/filters.py:430 +#: engine/core/filters.py:556 engine/core/models.py:321 +#: engine/core/models.py:482 engine/core/models.py:637 msgid "Slug" msgstr "Ślimak" -#: core/filters.py:83 +#: engine/core/filters.py:83 msgid "Is Digital" msgstr "Czy cyfrowy" -#: core/filters.py:84 +#: engine/core/filters.py:84 msgid "Include sub-categories" msgstr "Uwzględnienie podkategorii" -#: core/filters.py:87 +#: engine/core/filters.py:87 msgid "Include personal ordered" msgstr "Obejmuje produkty zamawiane osobiście" -#: core/filters.py:89 core/models.py:641 +#: engine/core/filters.py:89 engine/core/models.py:641 msgid "SKU" msgstr "SKU" -#: core/filters.py:173 +#: engine/core/filters.py:184 msgid "there must be a category_uuid to use include_subcategories flag" msgstr "Aby użyć flagi include_subcategories, musi istnieć category_uuid" -#: core/filters.py:339 +#: engine/core/filters.py:353 msgid "Search (ID, product name or part number)" msgstr "Wyszukiwanie (ID, nazwa produktu lub numer części)" -#: core/filters.py:342 +#: engine/core/filters.py:356 msgid "Bought after (inclusive)" msgstr "Kupione po (włącznie)" -#: core/filters.py:343 +#: engine/core/filters.py:357 msgid "Bought before (inclusive)" msgstr "Kupione wcześniej (włącznie)" -#: core/filters.py:346 core/filters.py:393 core/filters.py:600 +#: engine/core/filters.py:360 engine/core/filters.py:407 +#: engine/core/filters.py:614 msgid "User email" msgstr "E-mail użytkownika" -#: core/filters.py:347 core/filters.py:394 core/filters.py:578 -#: core/filters.py:599 +#: engine/core/filters.py:361 engine/core/filters.py:408 +#: engine/core/filters.py:592 engine/core/filters.py:613 msgid "User UUID" msgstr "UUID użytkownika" -#: core/filters.py:348 +#: engine/core/filters.py:362 msgid "Status" msgstr "Status" -#: core/filters.py:352 +#: engine/core/filters.py:366 msgid "Human Readable ID" msgstr "Identyfikator czytelny dla człowieka" -#: core/filters.py:415 +#: engine/core/filters.py:429 msgid "Parent" msgstr "Rodzic" -#: core/filters.py:419 +#: engine/core/filters.py:433 msgid "Whole category(has at least 1 product or not)" msgstr "Cała kategoria (ma co najmniej 1 produkt lub nie)" -#: core/filters.py:423 +#: engine/core/filters.py:437 msgid "Level" msgstr "Poziom" -#: core/filters.py:573 +#: engine/core/filters.py:587 msgid "Product UUID" msgstr "UUID produktu" -#: core/graphene/mutations.py:41 +#: engine/core/graphene/mutations.py:41 msgid "key to look for in or set into the cache" msgstr "Klucz do wyszukania lub ustawienia w pamięci podręcznej" -#: core/graphene/mutations.py:42 +#: engine/core/graphene/mutations.py:42 msgid "data to store in cache" msgstr "Dane do przechowywania w pamięci podręcznej" -#: core/graphene/mutations.py:45 +#: engine/core/graphene/mutations.py:45 msgid "timeout in seconds to set the data for into the cache" msgstr "Limit czasu w sekundach na wprowadzenie danych do pamięci podręcznej" -#: core/graphene/mutations.py:48 +#: engine/core/graphene/mutations.py:48 msgid "cached data" msgstr "Dane w pamięci podręcznej" -#: core/graphene/mutations.py:63 +#: engine/core/graphene/mutations.py:63 msgid "camelized JSON data from the requested URL" msgstr "Kamelizowane dane JSON z żądanego adresu URL" -#: core/graphene/mutations.py:68 core/views.py:232 +#: engine/core/graphene/mutations.py:68 engine/core/views.py:231 msgid "only URLs starting with http(s):// are allowed" msgstr "Dozwolone są tylko adresy URL zaczynające się od http(s)://" -#: core/graphene/mutations.py:84 +#: engine/core/graphene/mutations.py:84 msgid "add a product to the order" msgstr "Dodawanie produktu do zamówienia" -#: core/graphene/mutations.py:105 core/graphene/mutations.py:132 -#: core/graphene/mutations.py:240 core/graphene/mutations.py:288 +#: engine/core/graphene/mutations.py:105 engine/core/graphene/mutations.py:132 +#: engine/core/graphene/mutations.py:240 engine/core/graphene/mutations.py:288 #, python-brace-format msgid "order {order_uuid} not found" msgstr "Nie znaleziono zamówienia {order_uuid}!" -#: core/graphene/mutations.py:111 core/graphene/mutations.py:160 +#: engine/core/graphene/mutations.py:111 engine/core/graphene/mutations.py:160 msgid "remove a product from the order" msgstr "Usunięcie produktu z zamówienia" -#: core/graphene/mutations.py:138 +#: engine/core/graphene/mutations.py:138 msgid "remove all products from the order" msgstr "Usuń wszystkie produkty z zamówienia" -#: core/graphene/mutations.py:183 +#: engine/core/graphene/mutations.py:183 msgid "buy an order" msgstr "Kup zamówienie" -#: core/graphene/mutations.py:212 core/graphene/mutations.py:266 +#: engine/core/graphene/mutations.py:212 engine/core/graphene/mutations.py:266 msgid "please provide either order_uuid or order_hr_id - mutually exclusive" msgstr "Podaj albo order_uuid albo order_hr_id - wzajemnie się wykluczają!" -#: core/graphene/mutations.py:237 core/graphene/mutations.py:502 -#: core/graphene/mutations.py:544 core/viewsets.py:704 +#: engine/core/graphene/mutations.py:237 engine/core/graphene/mutations.py:502 +#: engine/core/graphene/mutations.py:544 engine/core/viewsets.py:704 msgid "wrong type came from order.buy() method: {type(instance)!s}" msgstr "Nieprawidłowy typ pochodzi z metody order.buy(): {type(instance)!s}" -#: core/graphene/mutations.py:246 +#: engine/core/graphene/mutations.py:246 msgid "perform an action on a list of products in the order" msgstr "Wykonanie akcji na liście produktów w zamówieniu" -#: core/graphene/mutations.py:251 +#: engine/core/graphene/mutations.py:251 msgid "remove/add" msgstr "Usuń/Dodaj" -#: core/graphene/mutations.py:283 core/graphene/mutations.py:324 +#: engine/core/graphene/mutations.py:283 engine/core/graphene/mutations.py:324 msgid "action must be either add or remove" msgstr "Akcją musi być \"dodaj\" lub \"usuń\"!" -#: core/graphene/mutations.py:294 +#: engine/core/graphene/mutations.py:294 msgid "perform an action on a list of products in the wishlist" msgstr "Wykonanie akcji na liście produktów na liście życzeń" -#: core/graphene/mutations.py:312 +#: engine/core/graphene/mutations.py:312 msgid "please provide wishlist_uuid value" msgstr "Podaj wartość `wishlist_uuid`." -#: core/graphene/mutations.py:329 core/graphene/mutations.py:405 -#: core/graphene/mutations.py:433 core/graphene/mutations.py:461 -#: core/graphene/mutations.py:505 +#: engine/core/graphene/mutations.py:329 engine/core/graphene/mutations.py:405 +#: engine/core/graphene/mutations.py:433 engine/core/graphene/mutations.py:461 +#: engine/core/graphene/mutations.py:505 #, python-brace-format msgid "wishlist {wishlist_uuid} not found" msgstr "Lista życzeń {wishlist_uuid} nie została znaleziona!" -#: core/graphene/mutations.py:383 +#: engine/core/graphene/mutations.py:383 msgid "add a product to the wishlist" msgstr "Dodawanie produktu do zamówienia" -#: core/graphene/mutations.py:411 +#: engine/core/graphene/mutations.py:411 msgid "remove a product from the wishlist" msgstr "Usunięcie produktu z zamówienia" -#: core/graphene/mutations.py:439 +#: engine/core/graphene/mutations.py:439 msgid "remove all products from the wishlist" msgstr "Usunięcie produktu z zamówienia" -#: core/graphene/mutations.py:467 +#: engine/core/graphene/mutations.py:467 msgid "buy all products from the wishlist" msgstr "Usunięcie produktu z zamówienia" -#: core/graphene/mutations.py:511 +#: engine/core/graphene/mutations.py:511 msgid "buy a product" msgstr "Kup zamówienie" -#: core/graphene/mutations.py:517 +#: engine/core/graphene/mutations.py:517 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" -#: core/graphene/mutations.py:550 +#: engine/core/graphene/mutations.py:550 msgid "add or delete a feedback for orderproduct" msgstr "Dodawanie lub usuwanie opinii dla produktu zamówienia" -#: core/graphene/mutations.py:574 +#: engine/core/graphene/mutations.py:574 msgid "action must be either `add` or `remove`" msgstr "Akcją musi być `add` lub `remove`!" -#: core/graphene/mutations.py:577 +#: engine/core/graphene/mutations.py:577 #, python-brace-format msgid "order product {order_product_uuid} not found" msgstr "Orderproduct {order_product_uuid} nie został znaleziony!" -#: core/graphene/mutations.py:644 +#: engine/core/graphene/mutations.py:644 msgid "original address string provided by the user" msgstr "Oryginalny ciąg adresu podany przez użytkownika" -#: core/graphene/mutations.py:680 core/models.py:930 core/models.py:943 -#: core/models.py:1358 core/models.py:1387 core/models.py:1412 -#: core/viewsets.py:707 +#: engine/core/graphene/mutations.py:680 engine/core/models.py:941 +#: engine/core/models.py:954 engine/core/models.py:1369 +#: engine/core/models.py:1398 engine/core/models.py:1423 +#: engine/core/viewsets.py:707 #, python-brace-format msgid "{name} does not exist: {uuid}" msgstr "{name} nie istnieje: {uuid}!" -#: core/graphene/mutations.py:694 +#: engine/core/graphene/mutations.py:694 msgid "limit must be between 1 and 10" msgstr "Limit musi wynosić od 1 do 10" -#: core/graphene/mutations.py:743 +#: engine/core/graphene/mutations.py:743 msgid "elasticsearch - works like a charm" msgstr "ElasticSearch - działa jak urok" -#: core/graphene/object_types.py:82 core/graphene/object_types.py:370 -#: core/graphene/object_types.py:417 core/models.py:754 core/models.py:1225 -#: core/models.py:1823 +#: engine/core/graphene/object_types.py:82 +#: engine/core/graphene/object_types.py:370 +#: engine/core/graphene/object_types.py:417 engine/core/models.py:765 +#: engine/core/models.py:1236 engine/core/models.py:1883 msgid "attributes" msgstr "Atrybuty" -#: core/graphene/object_types.py:95 +#: engine/core/graphene/object_types.py:95 msgid "grouped attributes" msgstr "Atrybuty pogrupowane" -#: core/graphene/object_types.py:102 +#: engine/core/graphene/object_types.py:102 msgid "groups of attributes" msgstr "Grupy atrybutów" -#: core/graphene/object_types.py:116 core/graphene/object_types.py:193 -#: core/graphene/object_types.py:223 core/models.py:426 +#: engine/core/graphene/object_types.py:116 +#: engine/core/graphene/object_types.py:193 +#: engine/core/graphene/object_types.py:223 engine/core/models.py:425 msgid "categories" msgstr "Kategorie" -#: core/graphene/object_types.py:124 core/models.py:497 +#: engine/core/graphene/object_types.py:124 engine/core/models.py:496 msgid "brands" msgstr "Marki" -#: core/graphene/object_types.py:195 +#: engine/core/graphene/object_types.py:195 msgid "category image url" msgstr "Kategorie" -#: core/graphene/object_types.py:196 core/graphene/object_types.py:317 -#: core/models.py:284 +#: engine/core/graphene/object_types.py:196 +#: engine/core/graphene/object_types.py:317 engine/core/models.py:283 msgid "markup percentage" msgstr "Procentowy narzut" -#: core/graphene/object_types.py:199 +#: engine/core/graphene/object_types.py:199 msgid "which attributes and values can be used for filtering this category." msgstr "" "Które atrybuty i wartości mogą być używane do filtrowania tej kategorii." -#: core/graphene/object_types.py:203 -msgid "" -"minimum and maximum prices for products in this category, if available." +#: engine/core/graphene/object_types.py:203 +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." -#: core/graphene/object_types.py:205 +#: engine/core/graphene/object_types.py:205 msgid "tags for this category" msgstr "Tagi dla tej kategorii" -#: core/graphene/object_types.py:206 +#: engine/core/graphene/object_types.py:206 msgid "products in this category" msgstr "Produkty w tej kategorii" -#: core/graphene/object_types.py:324 core/models.py:189 +#: engine/core/graphene/object_types.py:324 engine/core/models.py:188 msgid "vendors" msgstr "Sprzedawcy" -#: core/graphene/object_types.py:328 +#: engine/core/graphene/object_types.py:328 msgid "Latitude (Y coordinate)" msgstr "Szerokość geograficzna (współrzędna Y)" -#: core/graphene/object_types.py:329 +#: engine/core/graphene/object_types.py:329 msgid "Longitude (X coordinate)" msgstr "Długość geograficzna (współrzędna X)" -#: core/graphene/object_types.py:358 +#: engine/core/graphene/object_types.py:358 msgid "comment" msgstr "Jak" -#: core/graphene/object_types.py:359 core/graphene/object_types.py:483 +#: engine/core/graphene/object_types.py:359 +#: engine/core/graphene/object_types.py:483 msgid "rating value from 1 to 10, inclusive, or 0 if not set." msgstr "Wartość oceny od 1 do 10 włącznie lub 0, jeśli nie jest ustawiona." -#: core/graphene/object_types.py:366 +#: engine/core/graphene/object_types.py:366 msgid "represents feedback from a user." msgstr "Reprezentuje informacje zwrotne od użytkownika." -#: core/graphene/object_types.py:371 core/graphene/object_types.py:418 -#: core/models.py:1219 +#: engine/core/graphene/object_types.py:371 +#: engine/core/graphene/object_types.py:418 engine/core/models.py:1230 msgid "notifications" msgstr "Powiadomienia" -#: core/graphene/object_types.py:372 +#: engine/core/graphene/object_types.py:372 msgid "download url for this order product if applicable" msgstr "Adres URL pobierania dla tego produktu zamówienia, jeśli dotyczy" -#: core/graphene/object_types.py:373 core/models.py:1939 +#: engine/core/graphene/object_types.py:373 engine/core/models.py:1722 msgid "feedback" msgstr "Informacje zwrotne" -#: core/graphene/object_types.py:407 +#: engine/core/graphene/object_types.py:407 msgid "a list of order products in this order" msgstr "Lista zamówionych produktów w tym zamówieniu" -#: core/graphene/object_types.py:409 core/models.py:1189 +#: engine/core/graphene/object_types.py:409 engine/core/models.py:1200 msgid "billing address" msgstr "Adres rozliczeniowy" -#: core/graphene/object_types.py:412 +#: engine/core/graphene/object_types.py:412 msgid "" "shipping address for this order, leave blank if same as billing address or " "if not applicable" @@ -1307,200 +1338,209 @@ msgstr "" "Adres wysyłki dla tego zamówienia, pozostaw pusty, jeśli jest taki sam jak " "adres rozliczeniowy lub jeśli nie dotyczy" -#: core/graphene/object_types.py:414 +#: engine/core/graphene/object_types.py:414 msgid "total price of this order" msgstr "Całkowita cena tego zamówienia" -#: core/graphene/object_types.py:415 +#: engine/core/graphene/object_types.py:415 msgid "total quantity of products in order" msgstr "Całkowita ilość produktów w zamówieniu" -#: core/graphene/object_types.py:416 +#: engine/core/graphene/object_types.py:416 msgid "are all products in the order digital" msgstr "Czy wszystkie produkty w zamówieniu są cyfrowe?" -#: core/graphene/object_types.py:419 +#: engine/core/graphene/object_types.py:419 msgid "transactions for this order" msgstr "Transakcje dla tego zamówienia" -#: core/graphene/object_types.py:438 core/models.py:1253 +#: engine/core/graphene/object_types.py:438 engine/core/models.py:1264 msgid "orders" msgstr "Zamówienia" -#: core/graphene/object_types.py:459 +#: engine/core/graphene/object_types.py:459 msgid "image url" msgstr "Adres URL obrazu" -#: core/graphene/object_types.py:466 +#: engine/core/graphene/object_types.py:466 msgid "product's images" msgstr "Zdjęcia produktu" -#: core/graphene/object_types.py:473 core/models.py:425 core/models.py:579 +#: engine/core/graphene/object_types.py:473 engine/core/models.py:424 +#: engine/core/models.py:579 msgid "category" msgstr "Kategoria" -#: core/graphene/object_types.py:475 core/models.py:1940 +#: engine/core/graphene/object_types.py:475 engine/core/models.py:1723 msgid "feedbacks" msgstr "Informacje zwrotne" -#: core/graphene/object_types.py:476 core/models.py:496 core/models.py:588 +#: engine/core/graphene/object_types.py:476 engine/core/models.py:495 +#: engine/core/models.py:588 msgid "brand" msgstr "Marka" -#: core/graphene/object_types.py:477 core/models.py:107 +#: engine/core/graphene/object_types.py:477 engine/core/models.py:106 msgid "attribute groups" msgstr "Grupy atrybutów" -#: core/graphene/object_types.py:478 -#: core/templates/digital_order_created_email.html:111 -#: core/templates/digital_order_delivered_email.html:109 -#: core/templates/shipped_order_created_email.html:109 -#: core/templates/shipped_order_delivered_email.html:109 +#: engine/core/graphene/object_types.py:478 +#: engine/core/templates/digital_order_created_email.html:111 +#: engine/core/templates/digital_order_delivered_email.html:109 +#: engine/core/templates/shipped_order_created_email.html:109 +#: engine/core/templates/shipped_order_delivered_email.html:109 msgid "price" msgstr "Cena" -#: core/graphene/object_types.py:479 -#: core/templates/digital_order_created_email.html:110 -#: core/templates/digital_order_delivered_email.html:108 -#: core/templates/shipped_order_created_email.html:108 -#: core/templates/shipped_order_delivered_email.html:108 +#: engine/core/graphene/object_types.py:479 +#: engine/core/templates/digital_order_created_email.html:110 +#: engine/core/templates/digital_order_delivered_email.html:108 +#: engine/core/templates/shipped_order_created_email.html:108 +#: engine/core/templates/shipped_order_delivered_email.html:108 msgid "quantity" msgstr "Ilość" -#: core/graphene/object_types.py:480 +#: engine/core/graphene/object_types.py:480 msgid "number of feedbacks" msgstr "Liczba informacji zwrotnych" -#: core/graphene/object_types.py:481 +#: engine/core/graphene/object_types.py:481 msgid "only available for personal orders" msgstr "Produkty dostępne tylko dla zamówień osobistych" -#: core/graphene/object_types.py:507 core/models.py:651 +#: engine/core/graphene/object_types.py:484 +msgid "discount price" +msgstr "Cena rabatowa" + +#: engine/core/graphene/object_types.py:508 engine/core/models.py:651 msgid "products" msgstr "Produkty" -#: core/graphene/object_types.py:607 +#: engine/core/graphene/object_types.py:611 msgid "promocodes" msgstr "Promocodes" -#: core/graphene/object_types.py:617 +#: engine/core/graphene/object_types.py:621 msgid "products on sale" msgstr "Produkty w sprzedaży" -#: core/graphene/object_types.py:624 core/models.py:879 +#: engine/core/graphene/object_types.py:628 engine/core/models.py:890 msgid "promotions" msgstr "Promocje" -#: core/graphene/object_types.py:628 core/models.py:188 +#: engine/core/graphene/object_types.py:632 engine/core/models.py:187 msgid "vendor" msgstr "Sprzedawca" -#: core/graphene/object_types.py:629 core/models.py:650 -#: core/templates/digital_order_created_email.html:109 -#: core/templates/digital_order_delivered_email.html:107 -#: core/templates/shipped_order_created_email.html:107 -#: core/templates/shipped_order_delivered_email.html:107 +#: engine/core/graphene/object_types.py:633 engine/core/models.py:650 +#: 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 +#: engine/core/templates/shipped_order_delivered_email.html:107 msgid "product" msgstr "Produkt" -#: core/graphene/object_types.py:640 core/models.py:902 +#: engine/core/graphene/object_types.py:644 engine/core/models.py:913 msgid "wishlisted products" msgstr "Produkty z listy życzeń" -#: core/graphene/object_types.py:646 core/models.py:919 +#: engine/core/graphene/object_types.py:650 engine/core/models.py:930 msgid "wishlists" msgstr "Listy życzeń" -#: core/graphene/object_types.py:650 +#: engine/core/graphene/object_types.py:654 msgid "tagged products" msgstr "Produkty Tagged" -#: core/graphene/object_types.py:657 core/models.py:225 core/models.py:594 +#: engine/core/graphene/object_types.py:661 engine/core/models.py:224 +#: engine/core/models.py:594 msgid "product tags" msgstr "Tagi produktu" -#: core/graphene/object_types.py:661 +#: engine/core/graphene/object_types.py:665 msgid "tagged categories" msgstr "Kategorie oznaczone tagami" -#: core/graphene/object_types.py:668 +#: engine/core/graphene/object_types.py:672 msgid "categories tags" msgstr "Tagi kategorii" -#: core/graphene/object_types.py:672 +#: engine/core/graphene/object_types.py:676 msgid "project name" msgstr "Nazwa projektu" -#: core/graphene/object_types.py:673 +#: engine/core/graphene/object_types.py:677 msgid "company email" msgstr "Firmowy adres e-mail" -#: core/graphene/object_types.py:674 +#: engine/core/graphene/object_types.py:678 msgid "company name" msgstr "Nazwa firmy" -#: core/graphene/object_types.py:675 +#: engine/core/graphene/object_types.py:679 msgid "company address" msgstr "Adres firmy" -#: core/graphene/object_types.py:676 +#: engine/core/graphene/object_types.py:680 msgid "company phone number" msgstr "Numer telefonu firmy" -#: core/graphene/object_types.py:677 +#: engine/core/graphene/object_types.py:681 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" -#: core/graphene/object_types.py:678 +#: engine/core/graphene/object_types.py:682 msgid "email host user" msgstr "Użytkownik hosta poczty e-mail" -#: core/graphene/object_types.py:679 +#: engine/core/graphene/object_types.py:683 msgid "maximum amount for payment" msgstr "Maksymalna kwota płatności" -#: core/graphene/object_types.py:680 +#: engine/core/graphene/object_types.py:684 msgid "minimum amount for payment" msgstr "Minimalna kwota płatności" -#: core/graphene/object_types.py:681 +#: engine/core/graphene/object_types.py:685 msgid "analytics data" msgstr "Dane analityczne" -#: core/graphene/object_types.py:682 +#: engine/core/graphene/object_types.py:686 msgid "advertisement data" msgstr "Dane reklamowe" -#: core/graphene/object_types.py:685 +#: engine/core/graphene/object_types.py:689 msgid "company configuration" msgstr "Konfiguracja" -#: core/graphene/object_types.py:689 +#: engine/core/graphene/object_types.py:693 msgid "language code" msgstr "Kod języka" -#: core/graphene/object_types.py:690 +#: engine/core/graphene/object_types.py:694 msgid "language name" msgstr "Nazwa języka" -#: core/graphene/object_types.py:691 +#: engine/core/graphene/object_types.py:695 msgid "language flag, if exists :)" msgstr "Flaga języka, jeśli istnieje :)" -#: core/graphene/object_types.py:694 +#: engine/core/graphene/object_types.py:698 msgid "supported languages" msgstr "Pobierz listę obsługiwanych języków" -#: core/graphene/object_types.py:725 core/graphene/object_types.py:726 -#: core/graphene/object_types.py:727 +#: engine/core/graphene/object_types.py:729 +#: engine/core/graphene/object_types.py:730 +#: engine/core/graphene/object_types.py:731 msgid "products search results" msgstr "Wyniki wyszukiwania produktów" -#: core/graphene/object_types.py:728 +#: engine/core/graphene/object_types.py:732 msgid "posts search results" msgstr "Wyniki wyszukiwania produktów" -#: core/models.py:76 +#: engine/core/models.py:75 msgid "" "Represents a group of attributes, which can be hierarchical. This class is " "used to manage and organize attribute groups. An attribute group can have a " @@ -1513,23 +1553,23 @@ msgstr "" "bardziej efektywnego kategoryzowania i zarządzania atrybutami w złożonym " "systemie." -#: core/models.py:92 +#: engine/core/models.py:91 msgid "parent of this group" msgstr "Rodzic tej grupy" -#: core/models.py:93 +#: engine/core/models.py:92 msgid "parent attribute group" msgstr "Grupa atrybutów nadrzędnych" -#: core/models.py:97 core/models.py:98 +#: engine/core/models.py:96 engine/core/models.py:97 msgid "attribute group's name" msgstr "Nazwa grupy atrybutów" -#: core/models.py:106 core/models.py:716 +#: engine/core/models.py:105 engine/core/models.py:727 msgid "attribute group" msgstr "Grupa atrybutów" -#: core/models.py:112 +#: engine/core/models.py:111 msgid "" "Represents a vendor entity capable of storing information about external " "vendors and their interaction requirements. The Vendor class is used to " @@ -1542,55 +1582,55 @@ 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." -#: core/models.py:125 +#: engine/core/models.py:124 msgid "stores credentials and endpoints required for vendor communication" msgstr "" "Przechowuje dane uwierzytelniające i punkty końcowe wymagane do komunikacji " "API dostawcy." -#: core/models.py:126 +#: engine/core/models.py:125 msgid "authentication info" msgstr "Informacje o uwierzytelnianiu" -#: core/models.py:131 +#: engine/core/models.py:130 msgid "define the markup for products retrieved from this vendor" msgstr "Definiowanie znaczników dla produktów pobranych od tego dostawcy" -#: core/models.py:132 +#: engine/core/models.py:131 msgid "vendor markup percentage" msgstr "Procentowa marża sprzedawcy" -#: core/models.py:136 +#: engine/core/models.py:135 msgid "name of this vendor" msgstr "Nazwa tego sprzedawcy" -#: core/models.py:137 +#: engine/core/models.py:136 msgid "vendor name" msgstr "Nazwa sprzedawcy" -#: core/models.py:148 +#: engine/core/models.py:147 msgid "response file" msgstr "plik odpowiedzi" -#: core/models.py:149 +#: engine/core/models.py:148 msgid "vendor's last processing response" msgstr "odpowiedź sprzedawcy na ostatnie przetwarzanie" -#: core/models.py:155 +#: engine/core/models.py:154 msgid "vendor's integration file path" msgstr "Ścieżka do pliku integracji dostawcy" -#: core/models.py:156 +#: engine/core/models.py:155 msgid "integration path" msgstr "Ścieżka integracji" -#: core/models.py:198 +#: engine/core/models.py:197 msgid "" "Represents a product tag used for classifying or identifying products. The " "ProductTag class is designed to uniquely identify and classify products " @@ -1605,27 +1645,27 @@ msgstr "" "Obsługuje operacje eksportowane przez mixiny i zapewnia dostosowanie " "metadanych do celów administracyjnych." -#: core/models.py:210 core/models.py:241 +#: engine/core/models.py:209 engine/core/models.py:240 msgid "internal tag identifier for the product tag" msgstr "Wewnętrzny identyfikator tagu produktu" -#: core/models.py:211 core/models.py:242 +#: engine/core/models.py:210 engine/core/models.py:241 msgid "tag name" msgstr "Nazwa tagu" -#: core/models.py:215 core/models.py:246 +#: engine/core/models.py:214 engine/core/models.py:245 msgid "user-friendly name for the product tag" msgstr "Przyjazna dla użytkownika nazwa etykiety produktu" -#: core/models.py:216 core/models.py:247 +#: engine/core/models.py:215 engine/core/models.py:246 msgid "tag display name" msgstr "Wyświetlana nazwa znacznika" -#: core/models.py:224 +#: engine/core/models.py:223 msgid "product tag" msgstr "Etykieta produktu" -#: core/models.py:230 +#: engine/core/models.py:229 msgid "" "Represents a category tag used for products. This class models a category " "tag that can be used to associate and classify products. It includes " @@ -1636,15 +1676,15 @@ msgstr "" "Zawiera atrybuty dla wewnętrznego identyfikatora tagu i przyjaznej dla " "użytkownika nazwy wyświetlanej." -#: core/models.py:255 +#: engine/core/models.py:254 msgid "category tag" msgstr "tag kategorii" -#: core/models.py:256 core/models.py:328 +#: engine/core/models.py:255 engine/core/models.py:327 msgid "category tags" msgstr "tagi kategorii" -#: core/models.py:261 +#: engine/core/models.py:260 msgid "" "Represents a category entity to organize and group related items in a " "hierarchical structure. Categories may have hierarchical relationships with " @@ -1666,107 +1706,106 @@ msgstr "" "administratorom określanie nazwy, opisu i hierarchii kategorii, a także " "przypisywanie atrybutów, takich jak obrazy, tagi lub priorytety." -#: core/models.py:275 +#: engine/core/models.py:274 msgid "upload an image representing this category" msgstr "Prześlij obraz reprezentujący tę kategorię" -#: core/models.py:278 +#: engine/core/models.py:277 msgid "category image" msgstr "Obraz kategorii" -#: core/models.py:283 +#: engine/core/models.py:282 msgid "define a markup percentage for products in this category" msgstr "Zdefiniuj procentowy narzut dla produktów w tej kategorii." -#: core/models.py:292 +#: engine/core/models.py:291 msgid "parent of this category to form a hierarchical structure" msgstr "Rodzic tej kategorii w celu utworzenia struktury hierarchicznej" -#: core/models.py:293 +#: engine/core/models.py:292 msgid "parent category" msgstr "Kategoria nadrzędna" -#: core/models.py:298 +#: engine/core/models.py:297 msgid "category name" msgstr "Nazwa kategorii" -#: core/models.py:299 +#: engine/core/models.py:298 msgid "provide a name for this category" msgstr "Podaj nazwę dla tej kategorii" -#: core/models.py:306 +#: engine/core/models.py:305 msgid "add a detailed description for this category" msgstr "Dodaj szczegółowy opis dla tej kategorii" -#: core/models.py:307 +#: engine/core/models.py:306 msgid "category description" msgstr "Opis kategorii" -#: core/models.py:327 +#: engine/core/models.py:326 msgid "tags that help describe or group this category" msgstr "tagi, które pomagają opisać lub pogrupować tę kategorię" -#: core/models.py:334 core/models.py:489 +#: engine/core/models.py:333 engine/core/models.py:488 msgid "priority" msgstr "Priorytet" -#: core/models.py:432 +#: engine/core/models.py:431 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." -#: core/models.py:442 +#: engine/core/models.py:441 msgid "name of this brand" msgstr "Nazwa tej marki" -#: core/models.py:443 +#: engine/core/models.py:442 msgid "brand name" msgstr "Nazwa marki" -#: core/models.py:450 +#: engine/core/models.py:449 msgid "upload a logo representing this brand" msgstr "Prześlij logo reprezentujące tę markę" -#: core/models.py:452 +#: engine/core/models.py:451 msgid "brand small image" msgstr "Mały wizerunek marki" -#: core/models.py:458 +#: engine/core/models.py:457 msgid "upload a big logo representing this brand" msgstr "Prześlij duże logo reprezentujące tę markę" -#: core/models.py:460 +#: engine/core/models.py:459 msgid "brand big image" msgstr "Duży wizerunek marki" -#: core/models.py:465 +#: engine/core/models.py:464 msgid "add a detailed description of the brand" msgstr "Dodaj szczegółowy opis marki" -#: core/models.py:466 +#: engine/core/models.py:465 msgid "brand description" msgstr "Opis marki" -#: core/models.py:471 +#: engine/core/models.py:470 msgid "optional categories that this brand is associated with" msgstr "Opcjonalne kategorie, z którymi powiązana jest ta marka" -#: core/models.py:472 +#: engine/core/models.py:471 msgid "associated categories" msgstr "Kategorie" -#: core/models.py:502 +#: engine/core/models.py:501 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 " @@ -1779,68 +1818,72 @@ msgstr "" "częścią systemu zarządzania zapasami, umożliwiając śledzenie i ocenę " "produktów dostępnych od różnych dostawców." -#: core/models.py:514 +#: engine/core/models.py:513 msgid "the vendor supplying this product stock" msgstr "Sprzedawca dostarczający ten produkt" -#: core/models.py:515 +#: engine/core/models.py:514 msgid "associated vendor" msgstr "Powiązany sprzedawca" -#: core/models.py:519 +#: engine/core/models.py:518 msgid "final price to the customer after markups" msgstr "Ostateczna cena dla klienta po uwzględnieniu marży" -#: core/models.py:520 +#: engine/core/models.py:519 msgid "selling price" msgstr "Cena sprzedaży" -#: core/models.py:525 +#: engine/core/models.py:524 msgid "the product associated with this stock entry" msgstr "Produkt powiązany z tym wpisem magazynowym" -#: core/models.py:526 core/models.py:779 core/models.py:825 -#: core/models.py:1718 +#: engine/core/models.py:525 engine/core/models.py:790 +#: engine/core/models.py:836 engine/core/models.py:1778 msgid "associated product" msgstr "Produkt powiązany" -#: core/models.py:533 +#: engine/core/models.py:532 msgid "the price paid to the vendor for this product" msgstr "Cena zapłacona sprzedawcy za ten produkt" -#: core/models.py:534 +#: engine/core/models.py:533 msgid "vendor purchase price" msgstr "Cena zakupu przez sprzedawcę" -#: core/models.py:538 +#: engine/core/models.py:537 msgid "available quantity of the product in stock" msgstr "Dostępna ilość produktu w magazynie" -#: core/models.py:539 +#: engine/core/models.py:538 msgid "quantity in stock" msgstr "Ilość w magazynie" -#: core/models.py:543 +#: engine/core/models.py:542 msgid "vendor-assigned SKU for identifying the product" msgstr "Jednostki SKU przypisane przez dostawcę w celu identyfikacji produktu" -#: core/models.py:544 +#: engine/core/models.py:543 msgid "vendor sku" msgstr "SKU sprzedawcy" -#: core/models.py:550 +#: engine/core/models.py:549 msgid "digital file associated with this stock if applicable" msgstr "Plik cyfrowy powiązany z tymi zapasami, jeśli dotyczy" -#: core/models.py:551 +#: engine/core/models.py:550 msgid "digital file" msgstr "Plik cyfrowy" -#: core/models.py:560 +#: engine/core/models.py:553 +msgid "system attributes" +msgstr "Atrybuty systemu" + +#: engine/core/models.py:560 msgid "stock entries" msgstr "Zapisy magazynowe" -#: core/models.py:565 +#: engine/core/models.py:565 msgid "" "Represents a product with attributes such as category, brand, tags, digital " "status, name, description, part number, and slug. Provides related utility " @@ -1861,61 +1904,61 @@ msgstr "" "definiowania i manipulowania danymi produktu i powiązanymi z nimi " "informacjami w aplikacji." -#: core/models.py:578 +#: engine/core/models.py:578 msgid "category this product belongs to" msgstr "Kategoria, do której należy ten produkt" -#: core/models.py:587 +#: engine/core/models.py:587 msgid "optionally associate this product with a brand" msgstr "Opcjonalnie można powiązać ten produkt z marką" -#: core/models.py:593 +#: engine/core/models.py:593 msgid "tags that help describe or group this product" msgstr "Tagi, które pomagają opisać lub pogrupować ten produkt" -#: core/models.py:598 +#: engine/core/models.py:598 msgid "indicates whether this product is digitally delivered" msgstr "Wskazuje, czy produkt jest dostarczany cyfrowo." -#: core/models.py:599 +#: engine/core/models.py:599 msgid "is product digital" msgstr "Czy produkt jest cyfrowy?" -#: core/models.py:605 +#: engine/core/models.py:605 msgid "provide a clear identifying name for the product" msgstr "Wyraźna nazwa identyfikująca produkt" -#: core/models.py:606 +#: engine/core/models.py:606 msgid "product name" msgstr "Nazwa produktu" -#: core/models.py:612 core/models.py:867 +#: engine/core/models.py:612 engine/core/models.py:878 msgid "add a detailed description of the product" msgstr "Dodaj szczegółowy opis produktu" -#: core/models.py:613 +#: engine/core/models.py:613 msgid "product description" msgstr "Opis produktu" -#: core/models.py:620 +#: engine/core/models.py:620 msgid "part number for this product" msgstr "Numer części dla tego produktu" -#: core/models.py:621 +#: engine/core/models.py:621 msgid "part number" msgstr "Numer części" -#: core/models.py:640 +#: engine/core/models.py:640 msgid "stock keeping unit for this product" msgstr "Jednostka magazynowa dla tego produktu" -#: core/models.py:702 +#: engine/core/models.py:713 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 " @@ -1925,91 +1968,91 @@ msgstr "" "string, integer, float, boolean, array i object. Pozwala to na dynamiczną i " "elastyczną strukturę danych." -#: core/models.py:715 +#: engine/core/models.py:726 msgid "group of this attribute" msgstr "Grupa tego atrybutu" -#: core/models.py:721 +#: engine/core/models.py:732 msgid "string" msgstr "String" -#: core/models.py:722 +#: engine/core/models.py:733 msgid "integer" msgstr "Integer" -#: core/models.py:723 +#: engine/core/models.py:734 msgid "float" msgstr "Pływak" -#: core/models.py:724 +#: engine/core/models.py:735 msgid "boolean" msgstr "Wartość logiczna" -#: core/models.py:725 +#: engine/core/models.py:736 msgid "array" msgstr "Tablica" -#: core/models.py:726 +#: engine/core/models.py:737 msgid "object" msgstr "Obiekt" -#: core/models.py:728 +#: engine/core/models.py:739 msgid "type of the attribute's value" msgstr "Typ wartości atrybutu" -#: core/models.py:729 +#: engine/core/models.py:740 msgid "value type" msgstr "Typ wartości" -#: core/models.py:734 +#: engine/core/models.py:745 msgid "name of this attribute" msgstr "Nazwa tego atrybutu" -#: core/models.py:735 +#: engine/core/models.py:746 msgid "attribute's name" msgstr "Nazwa atrybutu" -#: core/models.py:740 +#: engine/core/models.py:751 msgid "is filterable" msgstr "można filtrować" -#: core/models.py:741 +#: engine/core/models.py:752 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." -#: core/models.py:753 core/models.py:771 -#: core/templates/digital_order_delivered_email.html:134 +#: engine/core/models.py:764 engine/core/models.py:782 +#: engine/core/templates/digital_order_delivered_email.html:134 msgid "attribute" msgstr "Atrybut" -#: core/models.py:759 +#: engine/core/models.py:770 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." -#: core/models.py:770 +#: engine/core/models.py:781 msgid "attribute of this value" msgstr "Atrybut tej wartości" -#: core/models.py:778 +#: engine/core/models.py:789 msgid "the specific product associated with this attribute's value" msgstr "Konkretny produkt powiązany z wartością tego atrybutu" -#: core/models.py:784 +#: engine/core/models.py:795 msgid "the specific value for this attribute" msgstr "Konkretna wartość dla tego atrybutu" -#: core/models.py:797 +#: engine/core/models.py:808 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 "" @@ -2019,88 +2062,87 @@ msgstr "" "określania kolejności ich wyświetlania. Zawiera również funkcję dostępności " "z tekstem alternatywnym dla obrazów." -#: core/models.py:808 +#: engine/core/models.py:819 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" -#: core/models.py:809 +#: engine/core/models.py:820 msgid "image alt text" msgstr "Tekst alternatywny obrazu" -#: core/models.py:812 +#: engine/core/models.py:823 msgid "upload the image file for this product" msgstr "Prześlij plik obrazu dla tego produktu" -#: core/models.py:813 core/models.py:837 +#: engine/core/models.py:824 engine/core/models.py:848 msgid "product image" msgstr "Obraz produktu" -#: core/models.py:818 +#: engine/core/models.py:829 msgid "determines the order in which images are displayed" msgstr "Określa kolejność wyświetlania obrazów" -#: core/models.py:819 +#: engine/core/models.py:830 msgid "display priority" msgstr "Priorytet wyświetlania" -#: core/models.py:824 +#: engine/core/models.py:835 msgid "the product that this image represents" msgstr "Produkt, który przedstawia ten obraz" -#: core/models.py:838 +#: engine/core/models.py:849 msgid "product images" msgstr "Zdjęcia produktów" -#: core/models.py:843 +#: engine/core/models.py:854 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." -#: core/models.py:855 +#: engine/core/models.py:866 msgid "percentage discount for the selected products" msgstr "Rabat procentowy na wybrane produkty" -#: core/models.py:856 +#: engine/core/models.py:867 msgid "discount percentage" msgstr "Procent rabatu" -#: core/models.py:861 +#: engine/core/models.py:872 msgid "provide a unique name for this promotion" msgstr "Podaj unikalną nazwę tej promocji" -#: core/models.py:862 +#: engine/core/models.py:873 msgid "promotion name" msgstr "Nazwa promocji" -#: core/models.py:868 +#: engine/core/models.py:879 msgid "promotion description" msgstr "Opis promocji" -#: core/models.py:873 +#: engine/core/models.py:884 msgid "select which products are included in this promotion" msgstr "Wybierz produkty objęte promocją" -#: core/models.py:874 +#: engine/core/models.py:885 msgid "included products" msgstr "Dołączone produkty" -#: core/models.py:878 +#: engine/core/models.py:889 msgid "promotion" msgstr "Promocja" -#: core/models.py:889 +#: engine/core/models.py:900 msgid "" "Represents a user's wishlist for storing and managing desired products. The " "class provides functionality to manage a collection of products, supporting " @@ -2108,64 +2150,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." -#: core/models.py:901 +#: engine/core/models.py:912 msgid "products that the user has marked as wanted" msgstr "Produkty, które użytkownik oznaczył jako poszukiwane" -#: core/models.py:909 +#: engine/core/models.py:920 msgid "user who owns this wishlist" msgstr "Użytkownik posiadający tę listę życzeń" -#: core/models.py:910 +#: engine/core/models.py:921 msgid "wishlist owner" msgstr "Właściciel listy życzeń" -#: core/models.py:918 +#: engine/core/models.py:929 msgid "wishlist" msgstr "Lista życzeń" -#: core/models.py:960 +#: engine/core/models.py:971 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." -#: core/models.py:973 +#: engine/core/models.py:984 msgid "documentary" msgstr "Film dokumentalny" -#: core/models.py:974 +#: engine/core/models.py:985 msgid "documentaries" msgstr "Filmy dokumentalne" -#: core/models.py:984 +#: engine/core/models.py:995 msgid "unresolved" msgstr "Nierozwiązany" -#: core/models.py:989 +#: engine/core/models.py:1000 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 " @@ -2173,64 +2215,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." -#: core/models.py:1004 +#: engine/core/models.py:1015 msgid "address line for the customer" msgstr "Linia adresu dla klienta" -#: core/models.py:1005 +#: engine/core/models.py:1016 msgid "address line" msgstr "Linia adresowa" -#: core/models.py:1007 +#: engine/core/models.py:1018 msgid "street" msgstr "ul." -#: core/models.py:1008 +#: engine/core/models.py:1019 msgid "district" msgstr "Okręg" -#: core/models.py:1009 +#: engine/core/models.py:1020 msgid "city" msgstr "Miasto" -#: core/models.py:1010 +#: engine/core/models.py:1021 msgid "region" msgstr "Region" -#: core/models.py:1011 +#: engine/core/models.py:1022 msgid "postal code" msgstr "Kod pocztowy" -#: core/models.py:1012 +#: engine/core/models.py:1023 msgid "country" msgstr "Kraj" -#: core/models.py:1019 +#: engine/core/models.py:1030 msgid "geolocation point: (longitude, latitude)" msgstr "Geolocation Point(Longitude, Latitude)" -#: core/models.py:1022 +#: engine/core/models.py:1033 msgid "full JSON response from geocoder for this address" msgstr "Pełna odpowiedź JSON z geokodera dla tego adresu" -#: core/models.py:1027 +#: engine/core/models.py:1038 msgid "stored JSON response from the geocoding service" msgstr "Przechowywana odpowiedź JSON z usługi geokodowania" -#: core/models.py:1035 +#: engine/core/models.py:1046 msgid "address" msgstr "Adres" -#: core/models.py:1036 +#: engine/core/models.py:1047 msgid "addresses" msgstr "Adresy" -#: core/models.py:1048 +#: engine/core/models.py:1059 msgid "" "Represents a promotional code that can be used for discounts, managing its " "validity, type of discount, and application. The PromoCode class stores " @@ -2247,73 +2289,73 @@ msgstr "" "Obejmuje funkcję sprawdzania poprawności i stosowania kodu promocyjnego do " "zamówienia, zapewniając jednocześnie spełnienie ograniczeń." -#: core/models.py:1062 +#: engine/core/models.py:1073 msgid "unique code used by a user to redeem a discount" msgstr "Unikalny kod używany przez użytkownika do realizacji rabatu." -#: core/models.py:1063 +#: engine/core/models.py:1074 msgid "promo code identifier" msgstr "Identyfikator kodu promocyjnego" -#: core/models.py:1070 +#: engine/core/models.py:1081 msgid "fixed discount amount applied if percent is not used" msgstr "Stała kwota rabatu stosowana, jeśli procent nie jest używany" -#: core/models.py:1071 +#: engine/core/models.py:1082 msgid "fixed discount amount" msgstr "Stała kwota rabatu" -#: core/models.py:1077 +#: engine/core/models.py:1088 msgid "percentage discount applied if fixed amount is not used" msgstr "Rabat procentowy stosowany w przypadku niewykorzystania stałej kwoty" -#: core/models.py:1078 +#: engine/core/models.py:1089 msgid "percentage discount" msgstr "Rabat procentowy" -#: core/models.py:1083 +#: engine/core/models.py:1094 msgid "timestamp when the promocode expires" msgstr "Znacznik czasu wygaśnięcia kodu promocyjnego" -#: core/models.py:1084 +#: engine/core/models.py:1095 msgid "end validity time" msgstr "Końcowy czas ważności" -#: core/models.py:1089 +#: engine/core/models.py:1100 msgid "timestamp from which this promocode is valid" msgstr "Znacznik czasu, od którego ten kod promocyjny jest ważny" -#: core/models.py:1090 +#: engine/core/models.py:1101 msgid "start validity time" msgstr "Czas rozpoczęcia ważności" -#: core/models.py:1095 +#: engine/core/models.py:1106 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." -#: core/models.py:1096 +#: engine/core/models.py:1107 msgid "usage timestamp" msgstr "Znacznik czasu użycia" -#: core/models.py:1101 +#: engine/core/models.py:1112 msgid "user assigned to this promocode if applicable" msgstr "Użytkownik przypisany do tego kodu promocyjnego, jeśli dotyczy" -#: core/models.py:1102 +#: engine/core/models.py:1113 msgid "assigned user" msgstr "Przypisany użytkownik" -#: core/models.py:1109 +#: engine/core/models.py:1120 msgid "promo code" msgstr "Kod promocyjny" -#: core/models.py:1110 +#: engine/core/models.py:1121 msgid "promo codes" msgstr "Kody promocyjne" -#: core/models.py:1125 +#: engine/core/models.py:1136 msgid "" "only one type of discount should be defined (amount or percent), but not " "both or neither." @@ -2321,21 +2363,21 @@ msgstr "" "Należy zdefiniować tylko jeden rodzaj rabatu (kwotowy lub procentowy), ale " "nie oba lub żaden z nich." -#: core/models.py:1146 +#: engine/core/models.py:1157 msgid "promocode already used" msgstr "Kod promocyjny został już wykorzystany" -#: core/models.py:1162 +#: engine/core/models.py:1173 #, python-brace-format msgid "invalid discount type for promocode {self.uuid}" msgstr "Nieprawidłowy typ rabatu dla kodu promocyjnego {self.uuid}!" -#: core/models.py:1171 +#: engine/core/models.py:1182 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 "" @@ -2347,142 +2389,142 @@ msgstr "" "Funkcjonalność wspiera również zarządzanie produktami w cyklu życia " "zamówienia." -#: core/models.py:1188 +#: engine/core/models.py:1199 msgid "the billing address used for this order" msgstr "Adres rozliczeniowy użyty dla tego zamówienia" -#: core/models.py:1196 +#: engine/core/models.py:1207 msgid "optional promo code applied to this order" msgstr "Opcjonalny kod promocyjny zastosowany do tego zamówienia" -#: core/models.py:1197 +#: engine/core/models.py:1208 msgid "applied promo code" msgstr "Zastosowany kod promocyjny" -#: core/models.py:1205 +#: engine/core/models.py:1216 msgid "the shipping address used for this order" msgstr "Adres wysyłki użyty dla tego zamówienia" -#: core/models.py:1206 +#: engine/core/models.py:1217 msgid "shipping address" msgstr "Adres wysyłki" -#: core/models.py:1212 +#: engine/core/models.py:1223 msgid "current status of the order in its lifecycle" msgstr "Aktualny status zamówienia w jego cyklu życia" -#: core/models.py:1213 +#: engine/core/models.py:1224 msgid "order status" msgstr "Status zamówienia" -#: core/models.py:1218 core/models.py:1695 +#: engine/core/models.py:1229 engine/core/models.py:1755 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" -#: core/models.py:1224 +#: engine/core/models.py:1235 msgid "json representation of order attributes for this order" msgstr "Reprezentacja JSON atrybutów zamówienia dla tego zamówienia" -#: core/models.py:1230 +#: engine/core/models.py:1241 msgid "the user who placed the order" msgstr "Użytkownik, który złożył zamówienie" -#: core/models.py:1231 +#: engine/core/models.py:1242 msgid "user" msgstr "Użytkownik" -#: core/models.py:1237 +#: engine/core/models.py:1248 msgid "the timestamp when the order was finalized" msgstr "Znacznik czasu, kiedy zamówienie zostało sfinalizowane" -#: core/models.py:1238 +#: engine/core/models.py:1249 msgid "buy time" msgstr "Kup czas" -#: core/models.py:1245 +#: engine/core/models.py:1256 msgid "a human-readable identifier for the order" msgstr "Czytelny dla człowieka identyfikator zamówienia" -#: core/models.py:1246 +#: engine/core/models.py:1257 msgid "human readable id" msgstr "Identyfikator czytelny dla człowieka" -#: core/models.py:1252 +#: engine/core/models.py:1263 msgid "order" msgstr "Zamówienie" -#: core/models.py:1294 +#: engine/core/models.py:1305 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!" -#: core/models.py:1326 +#: engine/core/models.py:1337 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." -#: core/models.py:1331 +#: engine/core/models.py:1342 msgid "you cannot add inactive products to order" msgstr "Nie można dodać nieaktywnych produktów do zamówienia" -#: core/models.py:1348 +#: engine/core/models.py:1359 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" -#: core/models.py:1370 core/models.py:1395 core/models.py:1403 +#: engine/core/models.py:1381 engine/core/models.py:1406 +#: engine/core/models.py:1414 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." -#: core/models.py:1391 +#: engine/core/models.py:1402 #, python-brace-format msgid "{name} does not exist with query <{query}>" msgstr "{name} nie istnieje z zapytaniem <{query}>!" -#: core/models.py:1423 +#: engine/core/models.py:1434 msgid "promocode does not exist" msgstr "Kod promocyjny nie istnieje" -#: core/models.py:1429 +#: engine/core/models.py:1440 msgid "you can only buy physical products with shipping address specified" msgstr "Możesz kupować tylko produkty fizyczne z podanym adresem wysyłki!" -#: core/models.py:1448 +#: engine/core/models.py:1459 msgid "address does not exist" msgstr "Adres nie istnieje" -#: core/models.py:1469 core/models.py:1538 +#: engine/core/models.py:1480 engine/core/models.py:1549 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." -#: core/models.py:1472 core/models.py:1534 +#: engine/core/models.py:1483 engine/core/models.py:1545 msgid "invalid force value" msgstr "Nieprawidłowa wartość siły" -#: core/models.py:1478 core/models.py:1541 +#: engine/core/models.py:1489 engine/core/models.py:1552 msgid "you cannot purchase an empty order!" msgstr "Nie można kupić pustego zamówienia!" -#: core/models.py:1497 +#: engine/core/models.py:1508 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." -#: core/models.py:1511 +#: engine/core/models.py:1522 msgid "a user without a balance cannot buy with balance" msgstr "Użytkownik bez salda nie może kupować za saldo!" -#: core/models.py:1516 +#: engine/core/models.py:1527 msgid "insufficient funds to complete the order" msgstr "Niewystarczające środki do zrealizowania zamówienia" -#: core/models.py:1550 +#: engine/core/models.py:1561 msgid "" "you cannot buy without registration, please provide the following " "information: customer name, customer email, customer phone number" @@ -2491,7 +2533,7 @@ msgstr "" "informacje: imię i nazwisko klienta, adres e-mail klienta, numer telefonu " "klienta." -#: core/models.py:1559 +#: engine/core/models.py:1570 #, python-brace-format msgid "" "invalid payment method: {payment_method} from {available_payment_methods}" @@ -2499,7 +2541,49 @@ msgstr "" "Nieprawidłowa metoda płatności: {payment_method} z " "{available_payment_methods}!" -#: core/models.py:1668 +#: engine/core/models.py:1685 +msgid "" +"Manages user feedback for products. This class is designed to capture and " +"store user feedback for specific products that they have purchased. It " +"contains attributes to store user comments, a reference to the related " +"product in the order, and a user-assigned rating. The class uses database " +"fields to effectively model and manage feedback data." +msgstr "" +"Zarządza opiniami użytkowników na temat produktów. Ta klasa jest " +"przeznaczona do przechwytywania i przechowywania opinii użytkowników na " +"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." + +#: engine/core/models.py:1697 +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:1698 +msgid "feedback comments" +msgstr "Komentarze zwrotne" + +#: engine/core/models.py:1705 +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:1706 +msgid "related order product" +msgstr "Powiązany produkt zamówienia" + +#: engine/core/models.py:1711 +msgid "user-assigned rating for the product" +msgstr "Ocena produktu przypisana przez użytkownika" + +#: engine/core/models.py:1712 +msgid "product rating" +msgstr "Ocena produktu" + +#: engine/core/models.py:1728 msgid "" "Represents products associated with orders and their attributes. The " "OrderProduct model maintains information about a product that is part of an " @@ -2513,127 +2597,126 @@ 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." -#: core/models.py:1683 +#: engine/core/models.py:1743 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." -#: core/models.py:1684 +#: engine/core/models.py:1744 msgid "purchase price at order time" msgstr "Cena zakupu w momencie zamówienia" -#: core/models.py:1689 +#: engine/core/models.py:1749 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" -#: core/models.py:1690 +#: engine/core/models.py:1750 msgid "internal comments" msgstr "Uwagi wewnętrzne" -#: core/models.py:1696 +#: engine/core/models.py:1756 msgid "user notifications" msgstr "Powiadomienia użytkownika" -#: core/models.py:1701 +#: engine/core/models.py:1761 msgid "json representation of this item's attributes" msgstr "Reprezentacja JSON atrybutów tego elementu" -#: core/models.py:1702 +#: engine/core/models.py:1762 msgid "ordered product attributes" msgstr "Zamówione atrybuty produktu" -#: core/models.py:1707 +#: engine/core/models.py:1767 msgid "reference to the parent order that contains this product" msgstr "Odniesienie do zamówienia nadrzędnego zawierającego ten produkt" -#: core/models.py:1708 +#: engine/core/models.py:1768 msgid "parent order" msgstr "Zamówienie nadrzędne" -#: core/models.py:1717 +#: engine/core/models.py:1777 msgid "the specific product associated with this order line" msgstr "Konkretny produkt powiązany z tą linią zamówienia" -#: core/models.py:1724 +#: engine/core/models.py:1784 msgid "quantity of this specific product in the order" msgstr "Ilość tego konkretnego produktu w zamówieniu" -#: core/models.py:1725 +#: engine/core/models.py:1785 msgid "product quantity" msgstr "Ilość produktu" -#: core/models.py:1732 +#: engine/core/models.py:1792 msgid "current status of this product in the order" msgstr "Aktualny status tego produktu w zamówieniu" -#: core/models.py:1733 +#: engine/core/models.py:1793 msgid "product line status" msgstr "Status linii produktów" -#: core/models.py:1798 +#: engine/core/models.py:1858 msgid "order product must have an order" msgstr "Orderproduct musi mieć powiązane zamówienie!" -#: core/models.py:1800 +#: engine/core/models.py:1860 #, python-brace-format msgid "wrong action specified for feedback: {action}" msgstr "Nieprawidłowa akcja określona dla informacji zwrotnej: {action}!" -#: core/models.py:1814 +#: engine/core/models.py:1874 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." -#: core/models.py:1820 +#: engine/core/models.py:1880 msgid "name" msgstr "Nazwa" -#: core/models.py:1821 +#: engine/core/models.py:1881 msgid "URL of the integration" msgstr "Adres URL integracji" -#: core/models.py:1822 +#: engine/core/models.py:1882 msgid "authentication credentials" msgstr "Dane uwierzytelniające" -#: core/models.py:1844 +#: engine/core/models.py:1904 msgid "you can only have one default CRM provider" msgstr "Można mieć tylko jednego domyślnego dostawcę CRM" -#: core/models.py:1854 +#: engine/core/models.py:1914 msgid "CRM" msgstr "CRM" -#: core/models.py:1855 +#: engine/core/models.py:1915 msgid "CRMs" msgstr "CRM" -#: core/models.py:1867 +#: engine/core/models.py:1927 msgid "order CRM link" msgstr "Łącze CRM zamówienia" -#: core/models.py:1868 +#: engine/core/models.py:1928 msgid "orders CRM links" msgstr "Łącza CRM zamówień" -#: core/models.py:1873 +#: engine/core/models.py:1933 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 " @@ -2643,133 +2726,87 @@ msgstr "" "generowania adresu URL do pobrania zasobu, gdy powiązane zamówienie ma " "status ukończonego." -#: core/models.py:1887 +#: engine/core/models.py:1947 msgid "download" msgstr "Pobierz" -#: core/models.py:1888 +#: engine/core/models.py:1948 msgid "downloads" msgstr "Pliki do pobrania" -#: core/models.py:1902 -msgid "" -"Manages user feedback for products. This class is designed to capture and " -"store user feedback for specific products that they have purchased. It " -"contains attributes to store user comments, a reference to the related " -"product in the order, and a user-assigned rating. The class uses database " -"fields to effectively model and manage feedback data." -msgstr "" -"Zarządza opiniami użytkowników na temat produktów. Ta klasa jest " -"przeznaczona do przechwytywania i przechowywania opinii użytkowników na " -"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." - -#: core/models.py:1914 -msgid "user-provided comments about their experience with the product" -msgstr "Komentarze użytkowników na temat ich doświadczeń z produktem" - -#: core/models.py:1915 -msgid "feedback comments" -msgstr "Komentarze zwrotne" - -#: core/models.py:1922 -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." - -#: core/models.py:1923 -msgid "related order product" -msgstr "Powiązany produkt zamówienia" - -#: core/models.py:1928 -msgid "user-assigned rating for the product" -msgstr "Ocena produktu przypisana przez użytkownika" - -#: core/models.py:1929 -msgid "product rating" -msgstr "Ocena produktu" - -#: core/serializers/utility.py:89 +#: engine/core/serializers/utility.py:89 msgid "" "you must provide a comment, rating, and order product uuid to add feedback." msgstr "" "Aby dodać opinię, należy podać komentarz, ocenę i identyfikator produktu " "zamówienia." -#: core/signals.py:73 -msgid "error during promocode creation: {e!s}" -msgstr "Błąd podczas tworzenia kodu promocyjnego: {e!s}" - -#: core/sitemaps.py:25 +#: engine/core/sitemaps.py:25 msgid "Home" msgstr "Strona główna" -#: core/sitemaps.py:30 +#: engine/core/sitemaps.py:30 msgid "Contact Us" msgstr "Kontakt" -#: core/sitemaps.py:35 +#: engine/core/sitemaps.py:35 msgid "About Us" msgstr "O nas" -#: core/templates/digital_order_created_email.html:7 -#: core/templates/digital_order_created_email.html:100 -#: core/templates/digital_order_delivered_email.html:6 -#: core/templates/shipped_order_created_email.html:7 -#: core/templates/shipped_order_created_email.html:99 -#: core/templates/shipped_order_delivered_email.html:7 -#: core/templates/shipped_order_delivered_email.html:99 +#: engine/core/templates/digital_order_created_email.html:7 +#: engine/core/templates/digital_order_created_email.html:100 +#: engine/core/templates/digital_order_delivered_email.html:6 +#: engine/core/templates/shipped_order_created_email.html:7 +#: engine/core/templates/shipped_order_created_email.html:99 +#: engine/core/templates/shipped_order_delivered_email.html:7 +#: engine/core/templates/shipped_order_delivered_email.html:99 msgid "order confirmation" msgstr "Potwierdzenie zamówienia" -#: core/templates/digital_order_created_email.html:95 -#: core/templates/digital_order_delivered_email.html:94 -#: core/templates/promocode_granted_email.html:94 -#: core/templates/shipped_order_created_email.html:94 -#: core/templates/shipped_order_delivered_email.html:94 +#: engine/core/templates/digital_order_created_email.html:95 +#: engine/core/templates/digital_order_delivered_email.html:94 +#: engine/core/templates/promocode_granted_email.html:94 +#: engine/core/templates/shipped_order_created_email.html:94 +#: engine/core/templates/shipped_order_delivered_email.html:94 msgid "logo" msgstr "Logo" -#: core/templates/digital_order_created_email.html:101 -#: core/templates/shipped_order_created_email.html:100 -#: core/templates/shipped_order_delivered_email.html:100 +#: engine/core/templates/digital_order_created_email.html:101 +#: engine/core/templates/shipped_order_created_email.html:100 +#: engine/core/templates/shipped_order_delivered_email.html:100 #, python-format msgid "hello %(order.user.first_name)s," msgstr "Witaj %(order.user.first_name)s," -#: core/templates/digital_order_created_email.html:102 +#: engine/core/templates/digital_order_created_email.html:102 #, 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 " "przyjęliśmy Twoje zamówienie do realizacji. Poniżej znajdują się szczegóły " "zamówienia:" -#: core/templates/digital_order_created_email.html:112 -#: core/templates/digital_order_delivered_email.html:110 -#: core/templates/shipped_order_created_email.html:110 -#: core/templates/shipped_order_delivered_email.html:110 +#: engine/core/templates/digital_order_created_email.html:112 +#: engine/core/templates/digital_order_delivered_email.html:110 +#: engine/core/templates/shipped_order_created_email.html:110 +#: engine/core/templates/shipped_order_delivered_email.html:110 msgid "total" msgstr "Łącznie" -#: core/templates/digital_order_created_email.html:125 -#: core/templates/digital_order_delivered_email.html:157 -#: core/templates/shipped_order_created_email.html:127 -#: core/templates/shipped_order_delivered_email.html:127 +#: engine/core/templates/digital_order_created_email.html:125 +#: engine/core/templates/digital_order_delivered_email.html:157 +#: engine/core/templates/shipped_order_created_email.html:127 +#: engine/core/templates/shipped_order_delivered_email.html:127 msgid "total price" msgstr "Cena całkowita" -#: core/templates/digital_order_created_email.html:131 -#: core/templates/shipped_order_created_email.html:140 -#: core/templates/shipped_order_delivered_email.html:140 +#: engine/core/templates/digital_order_created_email.html:131 +#: engine/core/templates/shipped_order_created_email.html:140 +#: engine/core/templates/shipped_order_delivered_email.html:140 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" @@ -2778,37 +2815,37 @@ msgstr "" "Jeśli masz jakiekolwiek pytania, skontaktuj się z naszym działem pomocy " "technicznej pod adresem %(config.EMAIL_HOST_USER)s." -#: core/templates/digital_order_created_email.html:133 +#: engine/core/templates/digital_order_created_email.html:133 #, python-format msgid "best regards,
the %(config.PROJECT_NAME)s team" msgstr "Najlepsze pozdrowienia,
zespół %(config.PROJECT_NAME)s" -#: core/templates/digital_order_created_email.html:139 -#: core/templates/digital_order_delivered_email.html:171 -#: core/templates/promocode_granted_email.html:114 +#: engine/core/templates/digital_order_created_email.html:139 +#: engine/core/templates/digital_order_delivered_email.html:171 +#: engine/core/templates/promocode_granted_email.html:114 msgid "all rights reserved" msgstr "Wszelkie prawa zastrzeżone" -#: core/templates/digital_order_delivered_email.html:99 +#: engine/core/templates/digital_order_delivered_email.html:99 msgid "order delivered" msgstr "Zamówienie dostarczone" -#: core/templates/digital_order_delivered_email.html:100 -#: core/templates/promocode_granted_email.html:100 +#: engine/core/templates/digital_order_delivered_email.html:100 +#: engine/core/templates/promocode_granted_email.html:100 #, python-format msgid "hello %(user_first_name)s," msgstr "Witaj %(user_first_name)s," -#: core/templates/digital_order_delivered_email.html:101 +#: engine/core/templates/digital_order_delivered_email.html:101 #, python-format 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:" -#: core/templates/digital_order_delivered_email.html:128 +#: engine/core/templates/digital_order_delivered_email.html:128 msgid "" "additional\n" " information" @@ -2816,13 +2853,13 @@ msgstr "" "dodatkowe\n" " informacje" -#: core/templates/digital_order_delivered_email.html:137 -#: core/templates/json_table_widget.html:6 +#: engine/core/templates/digital_order_delivered_email.html:137 +#: engine/core/templates/json_table_widget.html:6 msgid "value" msgstr "Wartość" -#: core/templates/digital_order_delivered_email.html:163 -#: core/templates/promocode_granted_email.html:106 +#: engine/core/templates/digital_order_delivered_email.html:163 +#: engine/core/templates/promocode_granted_email.html:106 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" @@ -2831,26 +2868,26 @@ msgstr "" "Jeśli masz jakiekolwiek pytania, skontaktuj się z naszym działem pomocy " "technicznej pod adresem %(contact_email)s." -#: core/templates/digital_order_delivered_email.html:165 -#: core/templates/promocode_granted_email.html:108 +#: engine/core/templates/digital_order_delivered_email.html:165 +#: engine/core/templates/promocode_granted_email.html:108 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "Najlepsze pozdrowienia,
zespół %(project_name)s" -#: core/templates/json_table_widget.html:5 +#: engine/core/templates/json_table_widget.html:5 msgid "key" msgstr "Klucz" -#: core/templates/json_table_widget.html:40 +#: engine/core/templates/json_table_widget.html:40 msgid "Add Row" msgstr "Dodaj wiersz" -#: core/templates/promocode_granted_email.html:6 -#: core/templates/promocode_granted_email.html:99 +#: engine/core/templates/promocode_granted_email.html:6 +#: engine/core/templates/promocode_granted_email.html:99 msgid "promocode granted" msgstr "Przyznany kod promocyjny" -#: core/templates/promocode_granted_email.html:101 +#: engine/core/templates/promocode_granted_email.html:101 msgid "" "Thank you for staying with us! We have granted you with a promocode\n" " for " @@ -2858,33 +2895,34 @@ msgstr "" "Dziękujemy za pozostanie z nami! Otrzymałeś od nas kod promocyjny\n" " na" -#: core/templates/shipped_order_created_email.html:101 -#: core/templates/shipped_order_delivered_email.html:101 +#: 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 " "znajdują się szczegóły zamówienia:" -#: core/templates/shipped_order_created_email.html:123 -#: core/templates/shipped_order_delivered_email.html:123 +#: engine/core/templates/shipped_order_created_email.html:123 +#: engine/core/templates/shipped_order_delivered_email.html:123 msgid "shipping price" msgstr "Cena wysyłki" -#: core/templates/shipped_order_created_email.html:133 -#: core/templates/shipped_order_delivered_email.html:133 +#: engine/core/templates/shipped_order_created_email.html:133 +#: engine/core/templates/shipped_order_delivered_email.html:133 msgid "your order will be delivered to the following address:" msgstr "Zamówienie zostanie dostarczone pod następujący adres:" -#: core/templates/shipped_order_created_email.html:142 -#: core/templates/shipped_order_delivered_email.html:142 +#: engine/core/templates/shipped_order_created_email.html:142 +#: engine/core/templates/shipped_order_delivered_email.html:142 #, python-format msgid "best regards,
The %(config.PROJECT_NAME)s team" msgstr "Z wyrazami szacunku,
Zespół %(config.PROJECT_NAME)s" -#: core/templates/shipped_order_created_email.html:147 -#: core/templates/shipped_order_delivered_email.html:147 +#: engine/core/templates/shipped_order_created_email.html:147 +#: engine/core/templates/shipped_order_delivered_email.html:147 msgid "" "all rights\n" " reserved" @@ -2892,51 +2930,51 @@ msgstr "" "wszelkie prawa\n" " zastrzeżone" -#: core/utils/caching.py:44 +#: engine/core/utils/caching.py:44 msgid "both data and timeout are required" msgstr "Wymagane są zarówno dane, jak i limit czasu" -#: core/utils/caching.py:46 +#: engine/core/utils/caching.py:46 msgid "invalid timeout value, it must be between 0 and 216000 seconds" msgstr "" "Nieprawidłowa wartość limitu czasu, musi zawierać się w przedziale od 0 do " "216000 sekund." -#: core/utils/emailing.py:27 +#: engine/core/utils/emailing.py:27 #, python-brace-format msgid "{config.PROJECT_NAME} | contact us initiated" msgstr "{config.PROJECT_NAME} | zainicjowany kontakt" -#: core/utils/emailing.py:73 +#: engine/core/utils/emailing.py:73 #, python-brace-format msgid "{config.PROJECT_NAME} | order confirmation" msgstr "{config.PROJECT_NAME} | Potwierdzenie zamówienia" -#: core/utils/emailing.py:105 +#: engine/core/utils/emailing.py:105 #, python-brace-format msgid "{config.PROJECT_NAME} | order delivered" msgstr "{config.PROJECT_NAME} | Zamówienie dostarczone" -#: core/utils/emailing.py:188 +#: engine/core/utils/emailing.py:188 #, python-brace-format msgid "{config.PROJECT_NAME} | promocode granted" msgstr "{config.PROJECT_NAME} | przyznany kod promocyjny" -#: core/utils/messages.py:3 +#: engine/core/utils/messages.py:3 msgid "you do not have permission to perform this action." msgstr "Nie masz uprawnień do wykonania tej akcji." -#: core/utils/nominatim.py:8 +#: engine/core/utils/nominatim.py:8 msgid "NOMINATIM_URL must be configured." msgstr "Parametr NOMINATIM_URL musi być skonfigurowany!" -#: core/validators.py:16 +#: engine/core/validators.py:16 #, python-brace-format msgid "image dimensions should not exceed w{max_width} x h{max_height} pixels" msgstr "" "Wymiary obrazu nie powinny przekraczać w{max_width} x h{max_height} pikseli." -#: core/views.py:72 +#: engine/core/views.py:71 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." @@ -2944,26 +2982,26 @@ msgstr "" "Obsługuje żądanie indeksu mapy witryny i zwraca odpowiedź XML. Zapewnia, że " "odpowiedź zawiera odpowiedni nagłówek typu zawartości dla XML." -#: core/views.py:87 +#: engine/core/views.py:86 msgid "" "Handles the detailed view response for a sitemap. This function processes " "the request, fetches the appropriate sitemap detail response, and sets the " "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." -#: core/views.py:116 +#: engine/core/views.py:115 msgid "" "Returns a list of supported languages and their corresponding information." msgstr "Zwraca listę obsługiwanych języków i odpowiadające im informacje." -#: core/views.py:148 +#: engine/core/views.py:147 msgid "Returns the parameters of the website as a JSON object." msgstr "Zwraca parametry strony internetowej jako obiekt JSON." -#: core/views.py:167 +#: engine/core/views.py:166 msgid "" "Handles cache operations such as reading and setting cache data with a " "specified key and timeout." @@ -2971,11 +3009,11 @@ msgstr "" "Obsługuje operacje pamięci podręcznej, takie jak odczytywanie i ustawianie " "danych pamięci podręcznej z określonym kluczem i limitem czasu." -#: core/views.py:194 +#: engine/core/views.py:193 msgid "Handles `contact us` form submissions." msgstr "Obsługuje zgłoszenia formularzy `kontaktuj się z nami`." -#: core/views.py:215 +#: engine/core/views.py:214 msgid "" "Handles requests for processing and validating URLs from incoming POST " "requests." @@ -2983,54 +3021,62 @@ msgstr "" "Obsługuje żądania przetwarzania i sprawdzania poprawności adresów URL z " "przychodzących żądań POST." -#: core/views.py:255 +#: engine/core/views.py:254 msgid "Handles global search queries." msgstr "Obsługuje globalne zapytania wyszukiwania." -#: core/views.py:270 +#: engine/core/views.py:269 msgid "Handles the logic of buying as a business without registration." msgstr "Obsługuje logikę zakupu jako firma bez rejestracji." -#: core/views.py:306 +#: engine/core/views.py:305 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." -#: core/views.py:316 +#: engine/core/views.py:315 msgid "order_product_uuid is required" msgstr "Order_product_uuid jest wymagany" -#: core/views.py:322 +#: engine/core/views.py:321 msgid "you can only download the digital asset once" msgstr "Zasób cyfrowy można pobrać tylko raz" -#: core/views.py:325 +#: engine/core/views.py:324 msgid "the order must be paid before downloading the digital asset" msgstr "zamówienie musi zostać opłacone przed pobraniem zasobu cyfrowego" -#: core/views.py:331 +#: engine/core/views.py:330 msgid "the order product does not have a product" msgstr "Produkt zamówienia nie ma produktu" -#: core/views.py:369 +#: engine/core/views.py:368 msgid "favicon not found" msgstr "nie znaleziono favicon" -#: core/views.py:374 +#: engine/core/views.py:373 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." -#: core/views.py:386 +#: engine/core/views.py:385 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 " @@ -3038,11 +3084,11 @@ msgstr "" "administratora Django. Używa funkcji `redirect` Django do obsługi " "przekierowania HTTP." -#: core/views.py:399 +#: engine/core/views.py:398 msgid "Returns current version of the eVibes. " msgstr "Zwraca aktualną wersję aplikacji eVibes." -#: core/viewsets.py:137 +#: engine/core/viewsets.py:137 msgid "" "Defines a viewset for managing Evibes-related operations. The EvibesViewSet " "class inherits from ModelViewSet and provides functionality for handling " @@ -3056,21 +3102,20 @@ msgstr "" "dynamicznych klas serializatora w oparciu o bieżącą akcję, konfigurowalne " "uprawnienia i formaty renderowania." -#: core/viewsets.py:157 +#: engine/core/viewsets.py:157 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." -#: core/viewsets.py:176 +#: engine/core/viewsets.py:176 msgid "" "Handles operations related to Attribute objects within the application. " "Provides a set of API endpoints to interact with Attribute data. This class " @@ -3086,21 +3131,21 @@ msgstr "" "filtrowanie według określonych pól lub pobieranie szczegółowych lub " "uproszczonych informacji w zależności od żądania." -#: core/viewsets.py:195 +#: engine/core/viewsets.py:195 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." -#: core/viewsets.py:214 +#: engine/core/viewsets.py:214 msgid "" "Manages views for Category-related operations. The CategoryViewSet class is " "responsible for handling operations related to the Category model in the " @@ -3109,12 +3154,12 @@ 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." -#: core/viewsets.py:326 +#: engine/core/viewsets.py:326 msgid "" "Represents a viewset for managing Brand instances. This class provides " "functionality for querying, filtering, and serializing Brand objects. It " @@ -3126,7 +3171,7 @@ msgstr "" "Brand. Używa frameworka ViewSet Django, aby uprościć implementację punktów " "końcowych API dla obiektów Brand." -#: core/viewsets.py:438 +#: engine/core/viewsets.py:438 msgid "" "Manages operations related to the `Product` model in the system. This class " "provides a viewset for managing products, including their filtering, " @@ -3140,11 +3185,11 @@ msgstr "" "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 " +"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." -#: core/viewsets.py:568 +#: engine/core/viewsets.py:568 msgid "" "Represents a viewset for managing Vendor objects. This viewset allows " "fetching, filtering, and serializing Vendor data. It defines the queryset, " @@ -3154,17 +3199,17 @@ 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." -#: core/viewsets.py:588 +#: engine/core/viewsets.py:588 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 `EvibesViewSet` and makes " "use of Django's filtering system for querying data." msgstr "" "Reprezentacja zestawu widoków obsługujących obiekty opinii. Ta klasa " @@ -3175,14 +3220,14 @@ msgstr "" "bazowy `EvibesViewSet` i wykorzystuje system filtrowania Django do " "odpytywania danych." -#: core/viewsets.py:615 +#: engine/core/viewsets.py:615 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 " @@ -3194,12 +3239,12 @@ msgstr "" "wykorzystuje wiele serializatorów w oparciu o konkretną wykonywaną akcję i " "odpowiednio egzekwuje uprawnienia podczas interakcji z danymi zamówienia." -#: core/viewsets.py:813 +#: engine/core/viewsets.py:813 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 " @@ -3209,31 +3254,31 @@ msgstr "" "szczegółową akcję do obsługi informacji zwrotnych na temat instancji " "OrderProduct" -#: core/viewsets.py:867 +#: engine/core/viewsets.py:867 msgid "Manages operations related to Product images in the application. " msgstr "Zarządza operacjami związanymi z obrazami produktów w aplikacji." -#: core/viewsets.py:880 +#: engine/core/viewsets.py:880 msgid "" "Manages the retrieval and handling of PromoCode instances through various " "API actions." msgstr "" "Zarządza pobieraniem i obsługą instancji PromoCode poprzez różne akcje API." -#: core/viewsets.py:902 +#: engine/core/viewsets.py:902 msgid "Represents a view set for managing promotions. " msgstr "Reprezentuje zestaw widoków do zarządzania promocjami." -#: core/viewsets.py:915 +#: engine/core/viewsets.py:915 msgid "Handles operations related to Stock data in the system." msgstr "Obsługuje operacje związane z danymi Stock w systemie." -#: core/viewsets.py:929 +#: engine/core/viewsets.py:929 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." @@ -3246,7 +3291,7 @@ msgstr "" "że użytkownicy mogą zarządzać tylko własnymi listami życzeń, chyba że " "zostaną przyznane wyraźne uprawnienia." -#: core/viewsets.py:1044 +#: engine/core/viewsets.py:1044 msgid "" "This class provides viewset functionality for managing `Address` objects. " "The AddressViewSet class enables CRUD operations, filtering, and custom " @@ -3257,15 +3302,15 @@ 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." -#: core/viewsets.py:1111 +#: engine/core/viewsets.py:1111 #, python-brace-format msgid "Geocoding error: {e}" msgstr "Błąd geokodowania: {e}" -#: core/viewsets.py:1119 +#: engine/core/viewsets.py:1119 msgid "" "Handles operations related to Product Tags within the application. This " "class provides functionality for retrieving, filtering, and serializing " diff --git a/engine/core/locale/pt_BR/LC_MESSAGES/django.mo b/engine/core/locale/pt_BR/LC_MESSAGES/django.mo new file mode 100644 index 00000000..84710dd0 Binary files /dev/null and b/engine/core/locale/pt_BR/LC_MESSAGES/django.mo differ diff --git a/core/locale/pt_BR/LC_MESSAGES/django.po b/engine/core/locale/pt_BR/LC_MESSAGES/django.po similarity index 68% rename from core/locale/pt_BR/LC_MESSAGES/django.po rename to engine/core/locale/pt_BR/LC_MESSAGES/django.po index 309c56f2..64c6a16e 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,213 +13,216 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: core/abstract.py:12 +#: engine/core/abstract.py:12 msgid "unique id" msgstr "ID exclusivo" -#: core/abstract.py:13 +#: engine/core/abstract.py:13 msgid "unique id is used to surely identify any database object" msgstr "" "O ID exclusivo é usado para identificar com segurança qualquer objeto do " "banco de dados" -#: core/abstract.py:20 +#: engine/core/abstract.py:20 msgid "is active" msgstr "Está ativo" -#: core/abstract.py:21 +#: engine/core/abstract.py:21 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" -#: core/abstract.py:23 core/choices.py:18 +#: engine/core/abstract.py:23 engine/core/choices.py:18 msgid "created" msgstr "Criado" -#: core/abstract.py:23 +#: engine/core/abstract.py:23 msgid "when the object first appeared on the database" msgstr "Quando o objeto apareceu pela primeira vez no banco de dados" -#: core/abstract.py:24 +#: engine/core/abstract.py:24 msgid "modified" msgstr "Modificado" -#: core/abstract.py:24 +#: engine/core/abstract.py:24 msgid "when the object was last modified" msgstr "Quando o objeto foi editado pela última vez" -#: core/admin.py:68 +#: engine/core/admin.py:68 msgid "translations" msgstr "Traduções" -#: core/admin.py:72 +#: engine/core/admin.py:72 msgid "general" msgstr "Geral" -#: core/admin.py:74 +#: engine/core/admin.py:74 msgid "relations" msgstr "Relações" -#: core/admin.py:76 +#: engine/core/admin.py:76 msgid "additional info" msgstr "informações adicionais" -#: core/admin.py:94 +#: engine/core/admin.py:94 msgid "metadata" msgstr "Metadados" -#: core/admin.py:101 +#: engine/core/admin.py:101 msgid "timestamps" msgstr "Carimbos de data/hora" -#: core/admin.py:116 +#: engine/core/admin.py:116 #, python-format msgid "activate selected %(verbose_name_plural)s" msgstr "Ativar o %(verbose_name_plural)s selecionado" -#: core/admin.py:121 +#: engine/core/admin.py:121 msgid "selected items have been activated." msgstr "Os itens selecionados foram ativados!" -#: core/admin.py:127 +#: engine/core/admin.py:127 #, python-format msgid "deactivate selected %(verbose_name_plural)s" msgstr "Desativar o %(verbose_name_plural)s selecionado" -#: core/admin.py:132 +#: engine/core/admin.py:132 msgid "selected items have been deactivated." msgstr "Os itens selecionados foram desativados!" -#: core/admin.py:144 core/graphene/object_types.py:582 -#: core/graphene/object_types.py:589 core/models.py:783 core/models.py:791 +#: engine/core/admin.py:144 engine/core/graphene/object_types.py:586 +#: engine/core/graphene/object_types.py:593 engine/core/models.py:794 +#: engine/core/models.py:802 msgid "attribute value" msgstr "Valor do atributo" -#: core/admin.py:145 core/graphene/object_types.py:75 core/models.py:792 +#: engine/core/admin.py:145 engine/core/graphene/object_types.py:75 +#: engine/core/models.py:803 msgid "attribute values" msgstr "Valores de atributos" -#: core/admin.py:156 +#: engine/core/admin.py:156 msgid "image" msgstr "Imagem" -#: core/admin.py:157 core/graphene/object_types.py:474 +#: engine/core/admin.py:157 engine/core/graphene/object_types.py:474 msgid "images" msgstr "Imagens" -#: core/admin.py:168 core/models.py:559 +#: engine/core/admin.py:169 engine/core/models.py:559 msgid "stock" msgstr "Estoque" -#: core/admin.py:169 core/graphene/object_types.py:636 +#: engine/core/admin.py:170 engine/core/graphene/object_types.py:640 msgid "stocks" msgstr "Ações" -#: core/admin.py:182 core/models.py:1744 +#: engine/core/admin.py:183 engine/core/models.py:1804 msgid "order product" msgstr "Pedido de produto" -#: core/admin.py:183 core/graphene/object_types.py:389 core/models.py:1745 +#: engine/core/admin.py:184 engine/core/graphene/object_types.py:389 +#: engine/core/models.py:1805 msgid "order products" msgstr "Solicitar produtos" -#: core/admin.py:196 core/admin.py:197 +#: engine/core/admin.py:197 engine/core/admin.py:198 msgid "children" msgstr "Crianças" -#: core/admin.py:965 +#: engine/core/admin.py:969 msgid "Config" msgstr "Configuração" -#: core/apps.py:8 +#: engine/core/apps.py:8 msgid "core" msgstr "Core" -#: core/choices.py:4 core/choices.py:20 +#: engine/core/choices.py:4 engine/core/choices.py:20 msgid "finished" msgstr "Finalizado" -#: core/choices.py:5 core/choices.py:19 +#: engine/core/choices.py:5 engine/core/choices.py:19 msgid "delivering" msgstr "Entregando" -#: core/choices.py:6 +#: engine/core/choices.py:6 msgid "delivered" msgstr "Entregue" -#: core/choices.py:7 +#: engine/core/choices.py:7 msgid "canceled" msgstr "Cancelado" -#: core/choices.py:8 core/choices.py:16 core/choices.py:24 +#: engine/core/choices.py:8 engine/core/choices.py:16 engine/core/choices.py:24 msgid "failed" msgstr "Falha" -#: core/choices.py:9 core/choices.py:15 +#: engine/core/choices.py:9 engine/core/choices.py:15 msgid "pending" msgstr "Pendente" -#: core/choices.py:10 +#: engine/core/choices.py:10 msgid "accepted" msgstr "Aceito" -#: core/choices.py:11 +#: engine/core/choices.py:11 msgid "money returned" msgstr "Dinheiro devolvido" -#: core/choices.py:17 +#: engine/core/choices.py:17 msgid "payment" msgstr "Pagamento" -#: core/choices.py:21 +#: engine/core/choices.py:21 msgid "momental" msgstr "Momental" -#: core/choices.py:24 +#: engine/core/choices.py:24 msgid "successful" msgstr "Bem-sucedido" -#: core/docs/drf/views.py:17 core/graphene/mutations.py:38 +#: engine/core/docs/drf/views.py:17 engine/core/graphene/mutations.py:38 msgid "cache I/O" msgstr "E/S do cache" -#: core/docs/drf/views.py:19 +#: engine/core/docs/drf/views.py:19 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 "" "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." -#: core/docs/drf/views.py:32 +#: engine/core/docs/drf/views.py:32 msgid "get a list of supported languages" msgstr "Obter uma lista de idiomas suportados" -#: core/docs/drf/views.py:41 +#: engine/core/docs/drf/views.py:41 msgid "get application's exposable parameters" msgstr "Obter os parâmetros expostos do aplicativo" -#: core/docs/drf/views.py:48 +#: engine/core/docs/drf/views.py:48 msgid "send a message to the support team" msgstr "Envie uma mensagem para a equipe de suporte" -#: core/docs/drf/views.py:59 core/graphene/mutations.py:58 +#: engine/core/docs/drf/views.py:59 engine/core/graphene/mutations.py:58 msgid "request a CORSed URL" msgstr "Solicite um URL com CORS. Somente https é permitido." -#: core/docs/drf/views.py:85 +#: engine/core/docs/drf/views.py:85 msgid "global search endpoint to query across project's tables" msgstr "" "Ponto de extremidade de pesquisa global para consultar as tabelas do projeto" -#: core/docs/drf/views.py:91 +#: engine/core/docs/drf/views.py:91 msgid "purchase an order as a business" msgstr "Comprar um pedido como uma empresa" -#: core/docs/drf/views.py:98 +#: engine/core/docs/drf/views.py:98 msgid "" "purchase an order as a business, using the provided `products` with " "`product_uuid` and `attributes`." @@ -227,214 +230,217 @@ msgstr "" "Compre um pedido como uma empresa, usando os `products` fornecidos com " "`product_uuid` e `attributes`." -#: core/docs/drf/viewsets.py:58 +#: engine/core/docs/drf/viewsets.py:58 msgid "list all attribute groups (simple view)" msgstr "Listar todos os grupos de atributos (visualização simples)" -#: core/docs/drf/viewsets.py:62 +#: engine/core/docs/drf/viewsets.py:62 msgid "retrieve a single attribute group (detailed view)" msgstr "Recuperar um único grupo de atributos (visualização detalhada)" -#: core/docs/drf/viewsets.py:66 +#: engine/core/docs/drf/viewsets.py:66 msgid "create an attribute group" msgstr "Criar um grupo de atributos" -#: core/docs/drf/viewsets.py:70 +#: engine/core/docs/drf/viewsets.py:70 msgid "delete an attribute group" msgstr "Excluir um grupo de atributos" -#: core/docs/drf/viewsets.py:74 +#: engine/core/docs/drf/viewsets.py:74 msgid "rewrite an existing attribute group saving non-editables" msgstr "Reescrever um grupo de atributos existente salvando os não editáveis" -#: core/docs/drf/viewsets.py:78 -msgid "" -"rewrite some fields of an existing attribute group saving non-editables" +#: engine/core/docs/drf/viewsets.py:78 +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" -#: core/docs/drf/viewsets.py:85 +#: engine/core/docs/drf/viewsets.py:85 msgid "list all attributes (simple view)" msgstr "Listar todos os atributos (visualização simples)" -#: core/docs/drf/viewsets.py:89 +#: engine/core/docs/drf/viewsets.py:89 msgid "retrieve a single attribute (detailed view)" msgstr "Recuperar um único atributo (visualização detalhada)" -#: core/docs/drf/viewsets.py:93 +#: engine/core/docs/drf/viewsets.py:93 msgid "create an attribute" msgstr "Criar um atributo" -#: core/docs/drf/viewsets.py:97 +#: engine/core/docs/drf/viewsets.py:97 msgid "delete an attribute" msgstr "Excluir um atributo" -#: core/docs/drf/viewsets.py:101 +#: engine/core/docs/drf/viewsets.py:101 msgid "rewrite an existing attribute saving non-editables" msgstr "Reescreva um atributo existente salvando os não editáveis" -#: core/docs/drf/viewsets.py:105 +#: engine/core/docs/drf/viewsets.py:105 msgid "rewrite some fields of an existing attribute saving non-editables" msgstr "" "Reescreva alguns campos de um atributo existente salvando os não editáveis" -#: core/docs/drf/viewsets.py:112 +#: engine/core/docs/drf/viewsets.py:112 msgid "list all attribute values (simple view)" msgstr "Listar todos os valores de atributos (visualização simples)" -#: core/docs/drf/viewsets.py:116 +#: engine/core/docs/drf/viewsets.py:116 msgid "retrieve a single attribute value (detailed view)" msgstr "Recuperar um único valor de atributo (visualização detalhada)" -#: core/docs/drf/viewsets.py:120 +#: engine/core/docs/drf/viewsets.py:120 msgid "create an attribute value" msgstr "Criar um valor de atributo" -#: core/docs/drf/viewsets.py:124 +#: engine/core/docs/drf/viewsets.py:124 msgid "delete an attribute value" msgstr "Excluir um valor de atributo" -#: core/docs/drf/viewsets.py:128 +#: engine/core/docs/drf/viewsets.py:128 msgid "rewrite an existing attribute value saving non-editables" msgstr "Reescreva um valor de atributo existente salvando os não editáveis" -#: core/docs/drf/viewsets.py:132 -msgid "" -"rewrite some fields of an existing attribute value saving non-editables" +#: engine/core/docs/drf/viewsets.py:132 +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" -#: core/docs/drf/viewsets.py:139 core/docs/drf/viewsets.py:140 +#: engine/core/docs/drf/viewsets.py:139 engine/core/docs/drf/viewsets.py:140 msgid "list all categories (simple view)" msgstr "Listar todas as categorias (visualização simples)" -#: core/docs/drf/viewsets.py:144 core/docs/drf/viewsets.py:145 +#: engine/core/docs/drf/viewsets.py:144 engine/core/docs/drf/viewsets.py:145 msgid "retrieve a single category (detailed view)" msgstr "Recuperar uma única categoria (visualização detalhada)" -#: core/docs/drf/viewsets.py:149 core/docs/drf/viewsets.py:150 +#: engine/core/docs/drf/viewsets.py:150 engine/core/docs/drf/viewsets.py:183 +msgid "Category UUID or slug" +msgstr "UUID ou slug da categoria" + +#: engine/core/docs/drf/viewsets.py:157 engine/core/docs/drf/viewsets.py:158 msgid "create a category" msgstr "Criar uma categoria" -#: core/docs/drf/viewsets.py:154 core/docs/drf/viewsets.py:155 +#: engine/core/docs/drf/viewsets.py:162 engine/core/docs/drf/viewsets.py:163 msgid "delete a category" msgstr "Excluir uma categoria" -#: core/docs/drf/viewsets.py:159 core/docs/drf/viewsets.py:160 +#: engine/core/docs/drf/viewsets.py:167 engine/core/docs/drf/viewsets.py:168 msgid "rewrite an existing category saving non-editables" msgstr "Reescrever uma categoria existente salvando itens não editáveis" -#: core/docs/drf/viewsets.py:164 core/docs/drf/viewsets.py:165 +#: engine/core/docs/drf/viewsets.py:172 engine/core/docs/drf/viewsets.py:173 msgid "rewrite some fields of an existing category saving non-editables" msgstr "" "Reescreva alguns campos de uma categoria existente salvando os não editáveis" -#: core/docs/drf/viewsets.py:169 core/docs/drf/viewsets.py:501 -#: core/graphene/object_types.py:117 core/graphene/object_types.py:207 -#: core/graphene/object_types.py:482 +#: engine/core/docs/drf/viewsets.py:177 engine/core/docs/drf/viewsets.py:517 +#: engine/core/graphene/object_types.py:117 +#: engine/core/graphene/object_types.py:207 +#: engine/core/graphene/object_types.py:482 msgid "SEO Meta snapshot" msgstr "Meta snapshot de SEO" -#: core/docs/drf/viewsets.py:170 +#: engine/core/docs/drf/viewsets.py:178 msgid "returns a snapshot of the category's SEO meta data" msgstr "Retorna um instantâneo dos metadados de SEO da categoria" -#: core/docs/drf/viewsets.py:175 -msgid "Category UUID or slug" -msgstr "UUID ou slug da categoria" - -#: core/docs/drf/viewsets.py:188 +#: engine/core/docs/drf/viewsets.py:196 msgid "list all orders (simple view)" msgstr "Listar todas as categorias (visualização simples)" -#: core/docs/drf/viewsets.py:189 +#: engine/core/docs/drf/viewsets.py:197 msgid "for non-staff users, only their own orders are returned." msgstr "" "Para usuários não funcionários, apenas seus próprios pedidos são devolvidos." -#: core/docs/drf/viewsets.py:195 +#: engine/core/docs/drf/viewsets.py:203 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" -#: core/docs/drf/viewsets.py:202 +#: engine/core/docs/drf/viewsets.py:210 msgid "Filter orders with buy_time >= this ISO 8601 datetime" msgstr "Filtrar pedidos com buy_time >= este datetime ISO 8601" -#: core/docs/drf/viewsets.py:207 +#: engine/core/docs/drf/viewsets.py:215 msgid "Filter orders with buy_time <= this ISO 8601 datetime" msgstr "Filtrar pedidos com buy_time <= este datetime ISO 8601" -#: core/docs/drf/viewsets.py:212 +#: engine/core/docs/drf/viewsets.py:220 msgid "Filter by exact order UUID" msgstr "Filtrar por UUID de ordem exata" -#: core/docs/drf/viewsets.py:217 +#: engine/core/docs/drf/viewsets.py:225 msgid "Filter by exact human-readable order ID" msgstr "Filtrar por ID exata do pedido legível por humanos" -#: core/docs/drf/viewsets.py:222 +#: engine/core/docs/drf/viewsets.py:230 msgid "Filter by user's email (case-insensitive exact match)" msgstr "" "Filtrar por e-mail do usuário (correspondência exata sem distinção entre " "maiúsculas e minúsculas)" -#: core/docs/drf/viewsets.py:227 +#: engine/core/docs/drf/viewsets.py:235 msgid "Filter by user's UUID" msgstr "Filtrar por UUID do usuário" -#: core/docs/drf/viewsets.py:232 +#: engine/core/docs/drf/viewsets.py:240 msgid "Filter by order status (case-insensitive substring match)" msgstr "" "Filtrar por status do pedido (correspondência de substring sem distinção " "entre maiúsculas e minúsculas)" -#: core/docs/drf/viewsets.py:238 +#: engine/core/docs/drf/viewsets.py:246 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 " "ordem decrescente (por exemplo, '-buy_time')." -#: core/docs/drf/viewsets.py:247 +#: engine/core/docs/drf/viewsets.py:255 msgid "retrieve a single order (detailed view)" msgstr "Recuperar uma única categoria (visualização detalhada)" -#: core/docs/drf/viewsets.py:251 +#: engine/core/docs/drf/viewsets.py:260 +msgid "Order UUID or human-readable id" +msgstr "UUID do pedido ou ID legível por humanos" + +#: engine/core/docs/drf/viewsets.py:267 msgid "create an order" msgstr "Criar um atributo" -#: core/docs/drf/viewsets.py:252 +#: engine/core/docs/drf/viewsets.py:268 msgid "doesn't work for non-staff users." msgstr "Não funciona para usuários que não são da equipe." -#: core/docs/drf/viewsets.py:256 +#: engine/core/docs/drf/viewsets.py:272 msgid "delete an order" msgstr "Excluir um atributo" -#: core/docs/drf/viewsets.py:260 +#: engine/core/docs/drf/viewsets.py:276 msgid "rewrite an existing order saving non-editables" msgstr "Reescrever uma categoria existente salvando itens não editáveis" -#: core/docs/drf/viewsets.py:264 +#: engine/core/docs/drf/viewsets.py:280 msgid "rewrite some fields of an existing order saving non-editables" msgstr "" "Reescreva alguns campos de uma categoria existente salvando os não editáveis" -#: core/docs/drf/viewsets.py:268 +#: engine/core/docs/drf/viewsets.py:284 msgid "purchase an order" msgstr "Preço de compra no momento do pedido" -#: core/docs/drf/viewsets.py:270 +#: engine/core/docs/drf/viewsets.py:286 msgid "" "finalizes the order purchase. if `force_balance` is used, the purchase is " "completed using the user's balance; if `force_payment` is used, a " @@ -444,19 +450,19 @@ msgstr "" "concluída usando o saldo do usuário; se `force_payment` for usado, uma " "transação será iniciada." -#: core/docs/drf/viewsets.py:282 core/graphene/mutations.py:335 +#: engine/core/docs/drf/viewsets.py:298 engine/core/graphene/mutations.py:335 msgid "purchase an order without account creation" msgstr "comprar um pedido sem criar uma conta" -#: core/docs/drf/viewsets.py:283 +#: engine/core/docs/drf/viewsets.py:299 msgid "finalizes the order purchase for a non-registered user." msgstr "finaliza a compra do pedido para um usuário não registrado." -#: core/docs/drf/viewsets.py:291 +#: engine/core/docs/drf/viewsets.py:307 msgid "add product to order" msgstr "Adicionar um produto ao pedido" -#: core/docs/drf/viewsets.py:292 +#: engine/core/docs/drf/viewsets.py:308 msgid "" "adds a product to an order using the provided `product_uuid` and " "`attributes`." @@ -464,13 +470,13 @@ msgstr "" "Adiciona um produto a um pedido usando o `product_uuid` e os `attributes` " "fornecidos." -#: core/docs/drf/viewsets.py:297 +#: engine/core/docs/drf/viewsets.py:313 msgid "add a list of products to order, quantities will not count" msgstr "" "Adicionar uma lista de produtos ao pedido, as quantidades não serão " "contabilizadas" -#: core/docs/drf/viewsets.py:298 +#: engine/core/docs/drf/viewsets.py:314 msgid "" "adds a list of products to an order using the provided `product_uuid` and " "`attributes`." @@ -478,11 +484,11 @@ msgstr "" "Adiciona uma lista de produtos a um pedido usando o `product_uuid` e os " "`attributes` fornecidos." -#: core/docs/drf/viewsets.py:303 +#: engine/core/docs/drf/viewsets.py:319 msgid "remove product from order" msgstr "Remover um produto do pedido" -#: core/docs/drf/viewsets.py:304 +#: engine/core/docs/drf/viewsets.py:320 msgid "" "removes a product from an order using the provided `product_uuid` and " "`attributes`." @@ -490,11 +496,11 @@ msgstr "" "Remove um produto de um pedido usando o `product_uuid` e os `attributes` " "fornecidos." -#: core/docs/drf/viewsets.py:309 +#: engine/core/docs/drf/viewsets.py:325 msgid "remove product from order, quantities will not count" msgstr "Remover um produto do pedido, as quantidades não serão contabilizadas" -#: core/docs/drf/viewsets.py:310 +#: engine/core/docs/drf/viewsets.py:326 msgid "" "removes a list of products from an order using the provided `product_uuid` " "and `attributes`" @@ -502,787 +508,812 @@ msgstr "" "Remove uma lista de produtos de um pedido usando o `product_uuid` e os " "`attributes` fornecidos." -#: core/docs/drf/viewsets.py:318 +#: engine/core/docs/drf/viewsets.py:334 msgid "list all wishlists (simple view)" msgstr "Listar todos os atributos (visualização simples)" -#: core/docs/drf/viewsets.py:319 +#: engine/core/docs/drf/viewsets.py:335 msgid "for non-staff users, only their own wishlists are returned." msgstr "" "Para usuários que não pertencem à equipe, apenas suas próprias listas de " "desejos são retornadas." -#: core/docs/drf/viewsets.py:323 +#: engine/core/docs/drf/viewsets.py:339 msgid "retrieve a single wishlist (detailed view)" msgstr "Recuperar um único atributo (visualização detalhada)" -#: core/docs/drf/viewsets.py:327 +#: engine/core/docs/drf/viewsets.py:343 msgid "create an wishlist" msgstr "Criar um atributo" -#: core/docs/drf/viewsets.py:328 +#: engine/core/docs/drf/viewsets.py:344 msgid "Doesn't work for non-staff users." msgstr "Não funciona para usuários que não são da equipe." -#: core/docs/drf/viewsets.py:332 +#: engine/core/docs/drf/viewsets.py:348 msgid "delete an wishlist" msgstr "Excluir um atributo" -#: core/docs/drf/viewsets.py:336 +#: engine/core/docs/drf/viewsets.py:352 msgid "rewrite an existing wishlist saving non-editables" msgstr "Reescreva um atributo existente salvando os não editáveis" -#: core/docs/drf/viewsets.py:340 +#: engine/core/docs/drf/viewsets.py:356 msgid "rewrite some fields of an existing wishlist saving non-editables" msgstr "" "Reescreva alguns campos de um atributo existente salvando os não editáveis" -#: core/docs/drf/viewsets.py:344 +#: engine/core/docs/drf/viewsets.py:360 msgid "add product to wishlist" msgstr "Adicionar um produto ao pedido" -#: core/docs/drf/viewsets.py:345 +#: engine/core/docs/drf/viewsets.py:361 msgid "adds a product to an wishlist using the provided `product_uuid`" msgstr "" "Adiciona um produto a uma lista de desejos usando o `product_uuid` fornecido" -#: core/docs/drf/viewsets.py:350 +#: engine/core/docs/drf/viewsets.py:366 msgid "remove product from wishlist" msgstr "Remover um produto da lista de desejos" -#: core/docs/drf/viewsets.py:351 +#: engine/core/docs/drf/viewsets.py:367 msgid "removes a product from an wishlist using the provided `product_uuid`" msgstr "" "Remove um produto de uma lista de desejos usando o `product_uuid` fornecido" -#: core/docs/drf/viewsets.py:356 +#: engine/core/docs/drf/viewsets.py:372 msgid "add many products to wishlist" msgstr "Adicionar muitos produtos à lista de desejos" -#: core/docs/drf/viewsets.py:357 +#: engine/core/docs/drf/viewsets.py:373 msgid "adds many products to an wishlist using the provided `product_uuids`" msgstr "" "Adiciona vários produtos a uma lista de desejos usando os `product_uuids` " "fornecidos" -#: core/docs/drf/viewsets.py:362 +#: engine/core/docs/drf/viewsets.py:378 msgid "remove many products from wishlist" msgstr "Remover um produto do pedido" -#: core/docs/drf/viewsets.py:363 +#: engine/core/docs/drf/viewsets.py:379 msgid "" "removes many products from an wishlist using the provided `product_uuids`" msgstr "" "Remove vários produtos de uma lista de desejos usando os `product_uuids` " "fornecidos" -#: core/docs/drf/viewsets.py:370 +#: engine/core/docs/drf/viewsets.py:386 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`" -#: core/docs/drf/viewsets.py:386 core/docs/drf/viewsets.py:387 +#: engine/core/docs/drf/viewsets.py:402 engine/core/docs/drf/viewsets.py:403 msgid "list all products (simple view)" msgstr "Listar todos os produtos (visualização simples)" -#: core/docs/drf/viewsets.py:392 +#: engine/core/docs/drf/viewsets.py:408 msgid "(exact) Product UUID" msgstr "UUID (exato) do produto" -#: core/docs/drf/viewsets.py:399 +#: engine/core/docs/drf/viewsets.py:415 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" -#: core/docs/drf/viewsets.py:413 core/docs/drf/viewsets.py:414 +#: engine/core/docs/drf/viewsets.py:429 engine/core/docs/drf/viewsets.py:430 msgid "retrieve a single product (detailed view)" msgstr "Recuperar um único produto (visualização detalhada)" -#: core/docs/drf/viewsets.py:419 core/docs/drf/viewsets.py:443 -#: core/docs/drf/viewsets.py:459 core/docs/drf/viewsets.py:475 -#: core/docs/drf/viewsets.py:491 core/docs/drf/viewsets.py:507 +#: engine/core/docs/drf/viewsets.py:435 engine/core/docs/drf/viewsets.py:459 +#: engine/core/docs/drf/viewsets.py:475 engine/core/docs/drf/viewsets.py:491 +#: engine/core/docs/drf/viewsets.py:507 engine/core/docs/drf/viewsets.py:523 msgid "Product UUID or slug" msgstr "UUID ou Slug do produto" -#: core/docs/drf/viewsets.py:429 core/docs/drf/viewsets.py:430 +#: engine/core/docs/drf/viewsets.py:445 engine/core/docs/drf/viewsets.py:446 msgid "create a product" msgstr "Criar um produto" -#: core/docs/drf/viewsets.py:437 core/docs/drf/viewsets.py:438 +#: engine/core/docs/drf/viewsets.py:453 engine/core/docs/drf/viewsets.py:454 msgid "rewrite an existing product, preserving non-editable fields" msgstr "Reescrever um produto existente, preservando os campos não editáveis" -#: core/docs/drf/viewsets.py:453 core/docs/drf/viewsets.py:454 +#: engine/core/docs/drf/viewsets.py:469 engine/core/docs/drf/viewsets.py:470 msgid "" "update some fields of an existing product, preserving non-editable fields" msgstr "" "Atualizar alguns campos de um produto existente, preservando os campos não " "editáveis" -#: core/docs/drf/viewsets.py:469 core/docs/drf/viewsets.py:470 +#: engine/core/docs/drf/viewsets.py:485 engine/core/docs/drf/viewsets.py:486 msgid "delete a product" msgstr "Excluir um produto" -#: core/docs/drf/viewsets.py:485 core/docs/drf/viewsets.py:486 +#: engine/core/docs/drf/viewsets.py:501 engine/core/docs/drf/viewsets.py:502 msgid "lists all permitted feedbacks for a product" msgstr "lista todos os feedbacks permitidos para um produto" -#: core/docs/drf/viewsets.py:502 +#: engine/core/docs/drf/viewsets.py:518 msgid "returns a snapshot of the product's SEO meta data" msgstr "Retorna um instantâneo dos metadados de SEO do produto" -#: core/docs/drf/viewsets.py:520 +#: engine/core/docs/drf/viewsets.py:536 msgid "list all addresses" msgstr "Listar todos os endereços" -#: core/docs/drf/viewsets.py:527 +#: engine/core/docs/drf/viewsets.py:543 msgid "retrieve a single address" msgstr "Recuperar um único endereço" -#: core/docs/drf/viewsets.py:534 +#: engine/core/docs/drf/viewsets.py:550 msgid "create a new address" msgstr "Criar um novo endereço" -#: core/docs/drf/viewsets.py:542 +#: engine/core/docs/drf/viewsets.py:558 msgid "delete an address" msgstr "Excluir um endereço" -#: core/docs/drf/viewsets.py:549 +#: engine/core/docs/drf/viewsets.py:565 msgid "update an entire address" msgstr "Atualizar um endereço inteiro" -#: core/docs/drf/viewsets.py:557 +#: engine/core/docs/drf/viewsets.py:573 msgid "partially update an address" msgstr "Atualizar parcialmente um endereço" -#: core/docs/drf/viewsets.py:565 +#: engine/core/docs/drf/viewsets.py:581 msgid "autocomplete address suggestions" msgstr "Entrada de endereço com preenchimento automático" -#: core/docs/drf/viewsets.py:570 +#: engine/core/docs/drf/viewsets.py:586 msgid "raw data query string, please append with data from geo-IP endpoint" msgstr "" "Cadeia de consulta de dados brutos, anexe os dados do ponto de extremidade " "de IP geográfico" -#: core/docs/drf/viewsets.py:576 +#: engine/core/docs/drf/viewsets.py:592 msgid "limit the results amount, 1 < limit < 10, default: 5" msgstr "limita a quantidade de resultados, 1 < limite < 10, padrão: 5" -#: core/docs/drf/viewsets.py:589 +#: engine/core/docs/drf/viewsets.py:605 msgid "list all feedbacks (simple view)" msgstr "listar todos os feedbacks (visualização simples)" -#: core/docs/drf/viewsets.py:593 +#: engine/core/docs/drf/viewsets.py:609 msgid "retrieve a single feedback (detailed view)" msgstr "recuperar um único feedback (visualização detalhada)" -#: core/docs/drf/viewsets.py:597 +#: engine/core/docs/drf/viewsets.py:613 msgid "create a feedback" msgstr "criar um feedback" -#: core/docs/drf/viewsets.py:601 +#: engine/core/docs/drf/viewsets.py:617 msgid "delete a feedback" msgstr "excluir um feedback" -#: core/docs/drf/viewsets.py:605 +#: engine/core/docs/drf/viewsets.py:621 msgid "rewrite an existing feedback saving non-editables" msgstr "reescrever um feedback existente salvando itens não editáveis" -#: core/docs/drf/viewsets.py:609 +#: engine/core/docs/drf/viewsets.py:625 msgid "rewrite some fields of an existing feedback saving non-editables" msgstr "" "Reescreva alguns campos de uma categoria existente salvando os não editáveis" -#: core/docs/drf/viewsets.py:616 +#: engine/core/docs/drf/viewsets.py:632 msgid "list all order–product relations (simple view)" msgstr "listar todas as relações pedido-produto (visualização simples)" -#: core/docs/drf/viewsets.py:623 +#: engine/core/docs/drf/viewsets.py:639 msgid "retrieve a single order–product relation (detailed view)" msgstr "recuperar uma única relação pedido-produto (visão detalhada)" -#: core/docs/drf/viewsets.py:630 +#: engine/core/docs/drf/viewsets.py:646 msgid "create a new order–product relation" msgstr "criar uma nova relação pedido-produto" -#: core/docs/drf/viewsets.py:637 +#: engine/core/docs/drf/viewsets.py:653 msgid "replace an existing order–product relation" msgstr "substituir uma relação pedido-produto existente" -#: core/docs/drf/viewsets.py:644 +#: engine/core/docs/drf/viewsets.py:660 msgid "partially update an existing order–product relation" msgstr "atualizar parcialmente uma relação pedido-produto existente" -#: core/docs/drf/viewsets.py:651 +#: engine/core/docs/drf/viewsets.py:667 msgid "delete an order–product relation" msgstr "excluir uma relação pedido-produto" -#: core/docs/drf/viewsets.py:658 +#: engine/core/docs/drf/viewsets.py:674 msgid "add or remove feedback on an order–product relation" msgstr "adicionar ou remover feedback em uma relação pedido-produto" -#: core/docs/drf/viewsets.py:672 +#: engine/core/docs/drf/viewsets.py:688 msgid "list all brands (simple view)" msgstr "Listar todas as marcas (visualização simples)" -#: core/docs/drf/viewsets.py:676 +#: engine/core/docs/drf/viewsets.py:692 msgid "retrieve a single brand (detailed view)" msgstr "Recuperar uma única marca (visualização detalhada)" -#: core/docs/drf/viewsets.py:680 +#: engine/core/docs/drf/viewsets.py:697 engine/core/docs/drf/viewsets.py:725 +msgid "Brand UUID or slug" +msgstr "UUID ou slug da marca" + +#: engine/core/docs/drf/viewsets.py:704 msgid "create a brand" msgstr "Criar uma marca" -#: core/docs/drf/viewsets.py:684 +#: engine/core/docs/drf/viewsets.py:708 msgid "delete a brand" msgstr "Delete a brand" -#: core/docs/drf/viewsets.py:688 +#: engine/core/docs/drf/viewsets.py:712 msgid "rewrite an existing brand saving non-editables" msgstr "Reescrever uma marca existente economizando produtos não editáveis" -#: core/docs/drf/viewsets.py:692 +#: engine/core/docs/drf/viewsets.py:716 msgid "rewrite some fields of an existing brand saving non-editables" msgstr "" "Reescreva alguns campos de uma categoria existente salvando os não editáveis" -#: core/docs/drf/viewsets.py:696 +#: engine/core/docs/drf/viewsets.py:720 msgid "SEO Meta snapshot for brand" msgstr "Meta snapshot de SEO para a marca" -#: core/docs/drf/viewsets.py:703 +#: engine/core/docs/drf/viewsets.py:735 msgid "list all vendors (simple view)" msgstr "Listar todos os fornecedores (visualização simples)" -#: core/docs/drf/viewsets.py:707 +#: engine/core/docs/drf/viewsets.py:739 msgid "retrieve a single vendor (detailed view)" msgstr "Recuperar um único fornecedor (visão detalhada)" -#: core/docs/drf/viewsets.py:711 +#: engine/core/docs/drf/viewsets.py:743 msgid "create a vendor" msgstr "Criar um fornecedor" -#: core/docs/drf/viewsets.py:715 +#: engine/core/docs/drf/viewsets.py:747 msgid "delete a vendor" msgstr "Excluir um fornecedor" -#: core/docs/drf/viewsets.py:719 +#: engine/core/docs/drf/viewsets.py:751 msgid "rewrite an existing vendor saving non-editables" msgstr "Reescrever um fornecedor existente salvando itens não editáveis" -#: core/docs/drf/viewsets.py:723 +#: engine/core/docs/drf/viewsets.py:755 msgid "rewrite some fields of an existing vendor saving non-editables" msgstr "" "Reescreva alguns campos de uma categoria existente salvando os não editáveis" -#: core/docs/drf/viewsets.py:730 +#: engine/core/docs/drf/viewsets.py:762 msgid "list all product images (simple view)" msgstr "Listar todas as imagens do produto (visualização simples)" -#: core/docs/drf/viewsets.py:734 +#: engine/core/docs/drf/viewsets.py:766 msgid "retrieve a single product image (detailed view)" msgstr "Recuperar uma única imagem de produto (visualização detalhada)" -#: core/docs/drf/viewsets.py:738 +#: engine/core/docs/drf/viewsets.py:770 msgid "create a product image" msgstr "Criar uma imagem do produto" -#: core/docs/drf/viewsets.py:742 +#: engine/core/docs/drf/viewsets.py:774 msgid "delete a product image" msgstr "Excluir uma imagem de produto" -#: core/docs/drf/viewsets.py:746 +#: engine/core/docs/drf/viewsets.py:778 msgid "rewrite an existing product image saving non-editables" msgstr "" "Reescrever uma imagem de produto existente salvando itens não editáveis" -#: core/docs/drf/viewsets.py:750 +#: engine/core/docs/drf/viewsets.py:782 msgid "rewrite some fields of an existing product image saving non-editables" msgstr "" "Reescreva alguns campos de uma categoria existente salvando os não editáveis" -#: core/docs/drf/viewsets.py:757 +#: engine/core/docs/drf/viewsets.py:789 msgid "list all promo codes (simple view)" msgstr "Listar todos os códigos promocionais (visualização simples)" -#: core/docs/drf/viewsets.py:761 +#: engine/core/docs/drf/viewsets.py:793 msgid "retrieve a single promo code (detailed view)" msgstr "Recuperar um único código promocional (visualização detalhada)" -#: core/docs/drf/viewsets.py:765 +#: engine/core/docs/drf/viewsets.py:797 msgid "create a promo code" msgstr "Criar um código promocional" -#: core/docs/drf/viewsets.py:769 +#: engine/core/docs/drf/viewsets.py:801 msgid "delete a promo code" msgstr "Delete a promo code" -#: core/docs/drf/viewsets.py:773 +#: engine/core/docs/drf/viewsets.py:805 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" -#: core/docs/drf/viewsets.py:777 +#: engine/core/docs/drf/viewsets.py:809 msgid "rewrite some fields of an existing promo code saving non-editables" msgstr "" "Reescreva alguns campos de uma categoria existente salvando os não editáveis" -#: core/docs/drf/viewsets.py:784 +#: engine/core/docs/drf/viewsets.py:816 msgid "list all promotions (simple view)" msgstr "Listar todas as promoções (visualização simples)" -#: core/docs/drf/viewsets.py:788 +#: engine/core/docs/drf/viewsets.py:820 msgid "retrieve a single promotion (detailed view)" msgstr "Recuperar uma única promoção (visualização detalhada)" -#: core/docs/drf/viewsets.py:792 +#: engine/core/docs/drf/viewsets.py:824 msgid "create a promotion" msgstr "Criar uma promoção" -#: core/docs/drf/viewsets.py:796 +#: engine/core/docs/drf/viewsets.py:828 msgid "delete a promotion" msgstr "Excluir uma promoção" -#: core/docs/drf/viewsets.py:800 +#: engine/core/docs/drf/viewsets.py:832 msgid "rewrite an existing promotion saving non-editables" msgstr "Reescrever uma promoção existente salvando itens não editáveis" -#: core/docs/drf/viewsets.py:804 +#: engine/core/docs/drf/viewsets.py:836 msgid "rewrite some fields of an existing promotion saving non-editables" msgstr "" "Reescreva alguns campos de uma categoria existente salvando os não editáveis" -#: core/docs/drf/viewsets.py:811 +#: engine/core/docs/drf/viewsets.py:843 msgid "list all stocks (simple view)" msgstr "Listar todas as ações (visualização simples)" -#: core/docs/drf/viewsets.py:815 +#: engine/core/docs/drf/viewsets.py:847 msgid "retrieve a single stock (detailed view)" msgstr "Recuperar um único estoque (visualização detalhada)" -#: core/docs/drf/viewsets.py:819 +#: engine/core/docs/drf/viewsets.py:851 msgid "create a stock record" msgstr "Criar um registro de estoque" -#: core/docs/drf/viewsets.py:823 +#: engine/core/docs/drf/viewsets.py:855 msgid "delete a stock record" msgstr "Excluir um registro de estoque" -#: core/docs/drf/viewsets.py:827 +#: engine/core/docs/drf/viewsets.py:859 msgid "rewrite an existing stock record saving non-editables" msgstr "" "Reescrever um registro de estoque existente, salvando itens não editáveis" -#: core/docs/drf/viewsets.py:831 +#: engine/core/docs/drf/viewsets.py:863 msgid "rewrite some fields of an existing stock record saving non-editables" msgstr "" "Reescreva alguns campos de uma categoria existente salvando os não editáveis" -#: core/docs/drf/viewsets.py:838 +#: engine/core/docs/drf/viewsets.py:870 msgid "list all product tags (simple view)" msgstr "Listar todas as tags de produtos (visualização simples)" -#: core/docs/drf/viewsets.py:842 +#: engine/core/docs/drf/viewsets.py:874 msgid "retrieve a single product tag (detailed view)" msgstr "Recuperar uma única tag de produto (visualização detalhada)" -#: core/docs/drf/viewsets.py:846 +#: engine/core/docs/drf/viewsets.py:878 msgid "create a product tag" msgstr "Criar uma tag de produto" -#: core/docs/drf/viewsets.py:850 +#: engine/core/docs/drf/viewsets.py:882 msgid "delete a product tag" msgstr "Excluir uma tag de produto" -#: core/docs/drf/viewsets.py:854 +#: engine/core/docs/drf/viewsets.py:886 msgid "rewrite an existing product tag saving non-editables" msgstr "Reescrever uma tag de produto existente salvando itens não editáveis" -#: core/docs/drf/viewsets.py:858 +#: engine/core/docs/drf/viewsets.py:890 msgid "rewrite some fields of an existing product tag saving non-editables" msgstr "" "Reescreva alguns campos de uma categoria existente salvando os não editáveis" -#: core/elasticsearch/__init__.py:118 core/elasticsearch/__init__.py:550 +#: engine/core/elasticsearch/__init__.py:122 +#: engine/core/elasticsearch/__init__.py:570 msgid "no search term provided." msgstr "Nenhum termo de pesquisa foi fornecido." -#: core/filters.py:69 core/filters.py:412 core/filters.py:539 +#: engine/core/filters.py:69 engine/core/filters.py:426 +#: engine/core/filters.py:553 msgid "Search" msgstr "Pesquisa" -#: core/filters.py:70 core/filters.py:569 core/filters.py:598 +#: engine/core/filters.py:70 engine/core/filters.py:583 +#: engine/core/filters.py:612 msgid "UUID" msgstr "UUID" -#: core/filters.py:71 core/filters.py:414 core/filters.py:541 +#: engine/core/filters.py:71 engine/core/filters.py:428 +#: engine/core/filters.py:555 msgid "Name" msgstr "Nome" -#: core/filters.py:72 core/filters.py:543 +#: engine/core/filters.py:72 engine/core/filters.py:557 msgid "Categories" msgstr "Categorias" -#: core/filters.py:74 +#: engine/core/filters.py:74 msgid "Categories Slugs" msgstr "Categorias Lesmas" -#: core/filters.py:75 core/filters.py:422 +#: engine/core/filters.py:75 engine/core/filters.py:436 msgid "Tags" msgstr "Tags" -#: core/filters.py:76 +#: engine/core/filters.py:76 msgid "Min Price" msgstr "Preço mínimo" -#: core/filters.py:77 +#: engine/core/filters.py:77 msgid "Max Price" msgstr "Preço máximo" -#: core/filters.py:78 +#: engine/core/filters.py:78 msgid "Is Active" msgstr "Está ativo" -#: core/filters.py:79 +#: engine/core/filters.py:79 msgid "Brand" msgstr "Brand" -#: core/filters.py:80 +#: engine/core/filters.py:80 msgid "Attributes" msgstr "Atributos" -#: core/filters.py:81 +#: engine/core/filters.py:81 msgid "Quantity" msgstr "Quantidade" -#: core/filters.py:82 core/filters.py:416 core/filters.py:542 -#: core/models.py:322 core/models.py:483 core/models.py:637 +#: engine/core/filters.py:82 engine/core/filters.py:430 +#: engine/core/filters.py:556 engine/core/models.py:321 +#: engine/core/models.py:482 engine/core/models.py:637 msgid "Slug" msgstr "Lesma" -#: core/filters.py:83 +#: engine/core/filters.py:83 msgid "Is Digital" msgstr "É digital" -#: core/filters.py:84 +#: engine/core/filters.py:84 msgid "Include sub-categories" msgstr "Incluir subcategorias" -#: core/filters.py:87 +#: engine/core/filters.py:87 msgid "Include personal ordered" msgstr "Incluir produtos pessoais encomendados" -#: core/filters.py:89 core/models.py:641 +#: engine/core/filters.py:89 engine/core/models.py:641 msgid "SKU" msgstr "SKU" -#: core/filters.py:173 +#: engine/core/filters.py:184 msgid "there must be a category_uuid to use include_subcategories flag" msgstr "" "Deve haver um category_uuid para usar o sinalizador include_subcategories" -#: core/filters.py:339 +#: engine/core/filters.py:353 msgid "Search (ID, product name or part number)" msgstr "Pesquisa (ID, nome do produto ou número de peça)" -#: core/filters.py:342 +#: engine/core/filters.py:356 msgid "Bought after (inclusive)" msgstr "Comprado depois (inclusive)" -#: core/filters.py:343 +#: engine/core/filters.py:357 msgid "Bought before (inclusive)" msgstr "Comprado antes (inclusive)" -#: core/filters.py:346 core/filters.py:393 core/filters.py:600 +#: engine/core/filters.py:360 engine/core/filters.py:407 +#: engine/core/filters.py:614 msgid "User email" msgstr "E-mail do usuário" -#: core/filters.py:347 core/filters.py:394 core/filters.py:578 -#: core/filters.py:599 +#: engine/core/filters.py:361 engine/core/filters.py:408 +#: engine/core/filters.py:592 engine/core/filters.py:613 msgid "User UUID" msgstr "UUID do usuário" -#: core/filters.py:348 +#: engine/core/filters.py:362 msgid "Status" msgstr "Status" -#: core/filters.py:352 +#: engine/core/filters.py:366 msgid "Human Readable ID" msgstr "ID legível por humanos" -#: core/filters.py:415 +#: engine/core/filters.py:429 msgid "Parent" msgstr "Parent" -#: core/filters.py:419 +#: engine/core/filters.py:433 msgid "Whole category(has at least 1 product or not)" msgstr "Toda a categoria (com pelo menos 1 produto ou não)" -#: core/filters.py:423 +#: engine/core/filters.py:437 msgid "Level" msgstr "Nível" -#: core/filters.py:573 +#: engine/core/filters.py:587 msgid "Product UUID" msgstr "UUID do produto" -#: core/graphene/mutations.py:41 +#: engine/core/graphene/mutations.py:41 msgid "key to look for in or set into the cache" msgstr "Chave para procurar ou colocar no cache" -#: core/graphene/mutations.py:42 +#: engine/core/graphene/mutations.py:42 msgid "data to store in cache" msgstr "Dados a serem armazenados no cache" -#: core/graphene/mutations.py:45 +#: engine/core/graphene/mutations.py:45 msgid "timeout in seconds to set the data for into the cache" msgstr "Tempo limite em segundos para definir os dados para o cache" -#: core/graphene/mutations.py:48 +#: engine/core/graphene/mutations.py:48 msgid "cached data" msgstr "Dados em cache" -#: core/graphene/mutations.py:63 +#: engine/core/graphene/mutations.py:63 msgid "camelized JSON data from the requested URL" msgstr "Dados JSON camelizados da URL solicitada" -#: core/graphene/mutations.py:68 core/views.py:232 +#: engine/core/graphene/mutations.py:68 engine/core/views.py:231 msgid "only URLs starting with http(s):// are allowed" msgstr "Somente URLs que começam com http(s):// são permitidos" -#: core/graphene/mutations.py:84 +#: engine/core/graphene/mutations.py:84 msgid "add a product to the order" msgstr "Adicionar um produto ao pedido" -#: core/graphene/mutations.py:105 core/graphene/mutations.py:132 -#: core/graphene/mutations.py:240 core/graphene/mutations.py:288 +#: engine/core/graphene/mutations.py:105 engine/core/graphene/mutations.py:132 +#: engine/core/graphene/mutations.py:240 engine/core/graphene/mutations.py:288 #, python-brace-format msgid "order {order_uuid} not found" msgstr "Pedido {order_uuid} não encontrado!" -#: core/graphene/mutations.py:111 core/graphene/mutations.py:160 +#: engine/core/graphene/mutations.py:111 engine/core/graphene/mutations.py:160 msgid "remove a product from the order" msgstr "Remover um produto do pedido" -#: core/graphene/mutations.py:138 +#: engine/core/graphene/mutations.py:138 msgid "remove all products from the order" msgstr "Remover todos os produtos do pedido" -#: core/graphene/mutations.py:183 +#: engine/core/graphene/mutations.py:183 msgid "buy an order" msgstr "Comprar um pedido" -#: core/graphene/mutations.py:212 core/graphene/mutations.py:266 +#: engine/core/graphene/mutations.py:212 engine/core/graphene/mutations.py:266 msgid "please provide either order_uuid or order_hr_id - mutually exclusive" msgstr "Forneça order_uuid ou order_hr_id - mutuamente exclusivos!" -#: core/graphene/mutations.py:237 core/graphene/mutations.py:502 -#: core/graphene/mutations.py:544 core/viewsets.py:704 +#: engine/core/graphene/mutations.py:237 engine/core/graphene/mutations.py:502 +#: engine/core/graphene/mutations.py:544 engine/core/viewsets.py:704 msgid "wrong type came from order.buy() method: {type(instance)!s}" msgstr "O tipo errado veio do método order.buy(): {type(instance)!s}" -#: core/graphene/mutations.py:246 +#: engine/core/graphene/mutations.py:246 msgid "perform an action on a list of products in the order" msgstr "Executar uma ação em uma lista de produtos no pedido" -#: core/graphene/mutations.py:251 +#: engine/core/graphene/mutations.py:251 msgid "remove/add" msgstr "Remover/Adicionar" -#: core/graphene/mutations.py:283 core/graphene/mutations.py:324 +#: engine/core/graphene/mutations.py:283 engine/core/graphene/mutations.py:324 msgid "action must be either add or remove" msgstr "A ação deve ser \"adicionar\" ou \"remover\"!" -#: core/graphene/mutations.py:294 +#: engine/core/graphene/mutations.py:294 msgid "perform an action on a list of products in the wishlist" msgstr "Executar uma ação em uma lista de produtos na lista de desejos" -#: core/graphene/mutations.py:312 +#: engine/core/graphene/mutations.py:312 msgid "please provide wishlist_uuid value" msgstr "Forneça o valor `wishlist_uuid`." -#: core/graphene/mutations.py:329 core/graphene/mutations.py:405 -#: core/graphene/mutations.py:433 core/graphene/mutations.py:461 -#: core/graphene/mutations.py:505 +#: engine/core/graphene/mutations.py:329 engine/core/graphene/mutations.py:405 +#: engine/core/graphene/mutations.py:433 engine/core/graphene/mutations.py:461 +#: engine/core/graphene/mutations.py:505 #, python-brace-format msgid "wishlist {wishlist_uuid} not found" msgstr "Lista de desejos {wishlist_uuid} não encontrada!" -#: core/graphene/mutations.py:383 +#: engine/core/graphene/mutations.py:383 msgid "add a product to the wishlist" msgstr "Adicionar um produto ao pedido" -#: core/graphene/mutations.py:411 +#: engine/core/graphene/mutations.py:411 msgid "remove a product from the wishlist" msgstr "Remover um produto do pedido" -#: core/graphene/mutations.py:439 +#: engine/core/graphene/mutations.py:439 msgid "remove all products from the wishlist" msgstr "Remover um produto do pedido" -#: core/graphene/mutations.py:467 +#: engine/core/graphene/mutations.py:467 msgid "buy all products from the wishlist" msgstr "Remover um produto do pedido" -#: core/graphene/mutations.py:511 +#: engine/core/graphene/mutations.py:511 msgid "buy a product" msgstr "Comprar um pedido" -#: core/graphene/mutations.py:517 +#: engine/core/graphene/mutations.py:517 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" -#: core/graphene/mutations.py:550 +#: engine/core/graphene/mutations.py:550 msgid "add or delete a feedback for orderproduct" msgstr "Adicionar ou excluir um feedback para o produto do pedido" -#: core/graphene/mutations.py:574 +#: engine/core/graphene/mutations.py:574 msgid "action must be either `add` or `remove`" msgstr "A ação deve ser `add` ou `remove`!" -#: core/graphene/mutations.py:577 +#: engine/core/graphene/mutations.py:577 #, python-brace-format msgid "order product {order_product_uuid} not found" msgstr "Orderproduct {order_product_uuid} não encontrado!" -#: core/graphene/mutations.py:644 +#: engine/core/graphene/mutations.py:644 msgid "original address string provided by the user" msgstr "Cadeia de endereços original fornecida pelo usuário" -#: core/graphene/mutations.py:680 core/models.py:930 core/models.py:943 -#: core/models.py:1358 core/models.py:1387 core/models.py:1412 -#: core/viewsets.py:707 +#: engine/core/graphene/mutations.py:680 engine/core/models.py:941 +#: engine/core/models.py:954 engine/core/models.py:1369 +#: engine/core/models.py:1398 engine/core/models.py:1423 +#: engine/core/viewsets.py:707 #, python-brace-format msgid "{name} does not exist: {uuid}" msgstr "{name} não existe: {uuid}!" -#: core/graphene/mutations.py:694 +#: engine/core/graphene/mutations.py:694 msgid "limit must be between 1 and 10" msgstr "O limite deve estar entre 1 e 10" -#: core/graphene/mutations.py:743 +#: engine/core/graphene/mutations.py:743 msgid "elasticsearch - works like a charm" msgstr "ElasticSearch - funciona muito bem" -#: core/graphene/object_types.py:82 core/graphene/object_types.py:370 -#: core/graphene/object_types.py:417 core/models.py:754 core/models.py:1225 -#: core/models.py:1823 +#: engine/core/graphene/object_types.py:82 +#: engine/core/graphene/object_types.py:370 +#: engine/core/graphene/object_types.py:417 engine/core/models.py:765 +#: engine/core/models.py:1236 engine/core/models.py:1883 msgid "attributes" msgstr "Atributos" -#: core/graphene/object_types.py:95 +#: engine/core/graphene/object_types.py:95 msgid "grouped attributes" msgstr "Atributos agrupados" -#: core/graphene/object_types.py:102 +#: engine/core/graphene/object_types.py:102 msgid "groups of attributes" msgstr "Grupos de atributos" -#: core/graphene/object_types.py:116 core/graphene/object_types.py:193 -#: core/graphene/object_types.py:223 core/models.py:426 +#: engine/core/graphene/object_types.py:116 +#: engine/core/graphene/object_types.py:193 +#: engine/core/graphene/object_types.py:223 engine/core/models.py:425 msgid "categories" msgstr "Categorias" -#: core/graphene/object_types.py:124 core/models.py:497 +#: engine/core/graphene/object_types.py:124 engine/core/models.py:496 msgid "brands" msgstr "Marcas" -#: core/graphene/object_types.py:195 +#: engine/core/graphene/object_types.py:195 msgid "category image url" msgstr "Categorias" -#: core/graphene/object_types.py:196 core/graphene/object_types.py:317 -#: core/models.py:284 +#: engine/core/graphene/object_types.py:196 +#: engine/core/graphene/object_types.py:317 engine/core/models.py:283 msgid "markup percentage" msgstr "Porcentagem de marcação" -#: core/graphene/object_types.py:199 +#: engine/core/graphene/object_types.py:199 msgid "which attributes and values can be used for filtering this category." msgstr "" "Quais atributos e valores podem ser usados para filtrar essa categoria." -#: core/graphene/object_types.py:203 -msgid "" -"minimum and maximum prices for products in this category, if available." +#: engine/core/graphene/object_types.py:203 +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." -#: core/graphene/object_types.py:205 +#: engine/core/graphene/object_types.py:205 msgid "tags for this category" msgstr "Tags para esta categoria" -#: core/graphene/object_types.py:206 +#: engine/core/graphene/object_types.py:206 msgid "products in this category" msgstr "Produtos desta categoria" -#: core/graphene/object_types.py:324 core/models.py:189 +#: engine/core/graphene/object_types.py:324 engine/core/models.py:188 msgid "vendors" msgstr "Vendors" -#: core/graphene/object_types.py:328 +#: engine/core/graphene/object_types.py:328 msgid "Latitude (Y coordinate)" msgstr "Latitude (coordenada Y)" -#: core/graphene/object_types.py:329 +#: engine/core/graphene/object_types.py:329 msgid "Longitude (X coordinate)" msgstr "Longitude (coordenada X)" -#: core/graphene/object_types.py:358 +#: engine/core/graphene/object_types.py:358 msgid "comment" msgstr "Como fazer" -#: core/graphene/object_types.py:359 core/graphene/object_types.py:483 +#: engine/core/graphene/object_types.py:359 +#: engine/core/graphene/object_types.py:483 msgid "rating value from 1 to 10, inclusive, or 0 if not set." msgstr "" "Valor de classificação de 1 a 10, inclusive, ou 0 se não estiver definido." -#: core/graphene/object_types.py:366 +#: engine/core/graphene/object_types.py:366 msgid "represents feedback from a user." msgstr "Representa o feedback de um usuário." -#: core/graphene/object_types.py:371 core/graphene/object_types.py:418 -#: core/models.py:1219 +#: engine/core/graphene/object_types.py:371 +#: engine/core/graphene/object_types.py:418 engine/core/models.py:1230 msgid "notifications" msgstr "Notificações" -#: core/graphene/object_types.py:372 +#: engine/core/graphene/object_types.py:372 msgid "download url for this order product if applicable" msgstr "URL de download para este produto do pedido, se aplicável" -#: core/graphene/object_types.py:373 core/models.py:1939 +#: engine/core/graphene/object_types.py:373 engine/core/models.py:1722 msgid "feedback" msgstr "Feedback" -#: core/graphene/object_types.py:407 +#: engine/core/graphene/object_types.py:407 msgid "a list of order products in this order" msgstr "Uma lista dos produtos solicitados nesse pedido" -#: core/graphene/object_types.py:409 core/models.py:1189 +#: engine/core/graphene/object_types.py:409 engine/core/models.py:1200 msgid "billing address" msgstr "Endereço de cobrança" -#: core/graphene/object_types.py:412 +#: engine/core/graphene/object_types.py:412 msgid "" "shipping address for this order, leave blank if same as billing address or " "if not applicable" @@ -1290,201 +1321,209 @@ msgstr "" "Endereço de entrega para este pedido, deixe em branco se for o mesmo que o " "endereço de cobrança ou se não for aplicável" -#: core/graphene/object_types.py:414 +#: engine/core/graphene/object_types.py:414 msgid "total price of this order" msgstr "Preço total deste pedido" -#: core/graphene/object_types.py:415 +#: engine/core/graphene/object_types.py:415 msgid "total quantity of products in order" msgstr "Quantidade total de produtos no pedido" -#: core/graphene/object_types.py:416 +#: engine/core/graphene/object_types.py:416 msgid "are all products in the order digital" msgstr "Todos os produtos estão no pedido digital?" -#: core/graphene/object_types.py:419 +#: engine/core/graphene/object_types.py:419 msgid "transactions for this order" msgstr "Transações para esta ordem" -#: core/graphene/object_types.py:438 core/models.py:1253 +#: engine/core/graphene/object_types.py:438 engine/core/models.py:1264 msgid "orders" msgstr "Pedidos" -#: core/graphene/object_types.py:459 +#: engine/core/graphene/object_types.py:459 msgid "image url" msgstr "URL da imagem" -#: core/graphene/object_types.py:466 +#: engine/core/graphene/object_types.py:466 msgid "product's images" msgstr "Imagens do produto" -#: core/graphene/object_types.py:473 core/models.py:425 core/models.py:579 +#: engine/core/graphene/object_types.py:473 engine/core/models.py:424 +#: engine/core/models.py:579 msgid "category" msgstr "Categoria" -#: core/graphene/object_types.py:475 core/models.py:1940 +#: engine/core/graphene/object_types.py:475 engine/core/models.py:1723 msgid "feedbacks" msgstr "Feedbacks" -#: core/graphene/object_types.py:476 core/models.py:496 core/models.py:588 +#: engine/core/graphene/object_types.py:476 engine/core/models.py:495 +#: engine/core/models.py:588 msgid "brand" msgstr "Brand" -#: core/graphene/object_types.py:477 core/models.py:107 +#: engine/core/graphene/object_types.py:477 engine/core/models.py:106 msgid "attribute groups" msgstr "Grupos de atributos" -#: core/graphene/object_types.py:478 -#: core/templates/digital_order_created_email.html:111 -#: core/templates/digital_order_delivered_email.html:109 -#: core/templates/shipped_order_created_email.html:109 -#: core/templates/shipped_order_delivered_email.html:109 +#: engine/core/graphene/object_types.py:478 +#: engine/core/templates/digital_order_created_email.html:111 +#: engine/core/templates/digital_order_delivered_email.html:109 +#: engine/core/templates/shipped_order_created_email.html:109 +#: engine/core/templates/shipped_order_delivered_email.html:109 msgid "price" msgstr "Preço" -#: core/graphene/object_types.py:479 -#: core/templates/digital_order_created_email.html:110 -#: core/templates/digital_order_delivered_email.html:108 -#: core/templates/shipped_order_created_email.html:108 -#: core/templates/shipped_order_delivered_email.html:108 +#: engine/core/graphene/object_types.py:479 +#: engine/core/templates/digital_order_created_email.html:110 +#: engine/core/templates/digital_order_delivered_email.html:108 +#: engine/core/templates/shipped_order_created_email.html:108 +#: engine/core/templates/shipped_order_delivered_email.html:108 msgid "quantity" msgstr "Quantidade" -#: core/graphene/object_types.py:480 +#: engine/core/graphene/object_types.py:480 msgid "number of feedbacks" msgstr "Número de feedbacks" -#: core/graphene/object_types.py:481 +#: engine/core/graphene/object_types.py:481 msgid "only available for personal orders" msgstr "Produtos disponíveis apenas para pedidos pessoais" -#: core/graphene/object_types.py:507 core/models.py:651 +#: engine/core/graphene/object_types.py:484 +msgid "discount price" +msgstr "Preço com desconto" + +#: engine/core/graphene/object_types.py:508 engine/core/models.py:651 msgid "products" msgstr "Produtos" -#: core/graphene/object_types.py:607 +#: engine/core/graphene/object_types.py:611 msgid "promocodes" msgstr "Códigos promocionais" -#: core/graphene/object_types.py:617 +#: engine/core/graphene/object_types.py:621 msgid "products on sale" msgstr "Produtos à venda" -#: core/graphene/object_types.py:624 core/models.py:879 +#: engine/core/graphene/object_types.py:628 engine/core/models.py:890 msgid "promotions" msgstr "Promoções" -#: core/graphene/object_types.py:628 core/models.py:188 +#: engine/core/graphene/object_types.py:632 engine/core/models.py:187 msgid "vendor" msgstr "Vendor" -#: core/graphene/object_types.py:629 core/models.py:650 -#: core/templates/digital_order_created_email.html:109 -#: core/templates/digital_order_delivered_email.html:107 -#: core/templates/shipped_order_created_email.html:107 -#: core/templates/shipped_order_delivered_email.html:107 +#: engine/core/graphene/object_types.py:633 engine/core/models.py:650 +#: 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 +#: engine/core/templates/shipped_order_delivered_email.html:107 msgid "product" msgstr "Produto" -#: core/graphene/object_types.py:640 core/models.py:902 +#: engine/core/graphene/object_types.py:644 engine/core/models.py:913 msgid "wishlisted products" msgstr "Produtos da lista de desejos" -#: core/graphene/object_types.py:646 core/models.py:919 +#: engine/core/graphene/object_types.py:650 engine/core/models.py:930 msgid "wishlists" msgstr "Listas de desejos" -#: core/graphene/object_types.py:650 +#: engine/core/graphene/object_types.py:654 msgid "tagged products" msgstr "Produtos marcados" -#: core/graphene/object_types.py:657 core/models.py:225 core/models.py:594 +#: engine/core/graphene/object_types.py:661 engine/core/models.py:224 +#: engine/core/models.py:594 msgid "product tags" msgstr "Etiquetas do produto" -#: core/graphene/object_types.py:661 +#: engine/core/graphene/object_types.py:665 msgid "tagged categories" msgstr "Categorias de tags" -#: core/graphene/object_types.py:668 +#: engine/core/graphene/object_types.py:672 msgid "categories tags" msgstr "Tags das categorias" -#: core/graphene/object_types.py:672 +#: engine/core/graphene/object_types.py:676 msgid "project name" msgstr "Nome do projeto" -#: core/graphene/object_types.py:673 +#: engine/core/graphene/object_types.py:677 msgid "company email" msgstr "E-mail da empresa" -#: core/graphene/object_types.py:674 +#: engine/core/graphene/object_types.py:678 msgid "company name" msgstr "Nome da empresa" -#: core/graphene/object_types.py:675 +#: engine/core/graphene/object_types.py:679 msgid "company address" msgstr "Endereço da empresa" -#: core/graphene/object_types.py:676 +#: engine/core/graphene/object_types.py:680 msgid "company phone number" msgstr "Número de telefone da empresa" -#: core/graphene/object_types.py:677 +#: engine/core/graphene/object_types.py:681 msgid "email from, sometimes it must be used instead of host user value" msgstr "" "'email from', às vezes ele deve ser usado em vez do valor do usuário do host" -#: core/graphene/object_types.py:678 +#: engine/core/graphene/object_types.py:682 msgid "email host user" msgstr "Usuário do host de e-mail" -#: core/graphene/object_types.py:679 +#: engine/core/graphene/object_types.py:683 msgid "maximum amount for payment" msgstr "Valor máximo para pagamento" -#: core/graphene/object_types.py:680 +#: engine/core/graphene/object_types.py:684 msgid "minimum amount for payment" msgstr "Valor mínimo para pagamento" -#: core/graphene/object_types.py:681 +#: engine/core/graphene/object_types.py:685 msgid "analytics data" msgstr "Dados analíticos" -#: core/graphene/object_types.py:682 +#: engine/core/graphene/object_types.py:686 msgid "advertisement data" msgstr "Dados do anúncio" -#: core/graphene/object_types.py:685 +#: engine/core/graphene/object_types.py:689 msgid "company configuration" msgstr "Configuração" -#: core/graphene/object_types.py:689 +#: engine/core/graphene/object_types.py:693 msgid "language code" msgstr "Código do idioma" -#: core/graphene/object_types.py:690 +#: engine/core/graphene/object_types.py:694 msgid "language name" msgstr "Nome do idioma" -#: core/graphene/object_types.py:691 +#: engine/core/graphene/object_types.py:695 msgid "language flag, if exists :)" msgstr "Sinalizador de idioma, se houver :)" -#: core/graphene/object_types.py:694 +#: engine/core/graphene/object_types.py:698 msgid "supported languages" msgstr "Obter uma lista de idiomas suportados" -#: core/graphene/object_types.py:725 core/graphene/object_types.py:726 -#: core/graphene/object_types.py:727 +#: engine/core/graphene/object_types.py:729 +#: engine/core/graphene/object_types.py:730 +#: engine/core/graphene/object_types.py:731 msgid "products search results" msgstr "Resultados da pesquisa de produtos" -#: core/graphene/object_types.py:728 +#: engine/core/graphene/object_types.py:732 msgid "posts search results" msgstr "Resultados da pesquisa de produtos" -#: core/models.py:76 +#: engine/core/models.py:75 msgid "" "Represents a group of attributes, which can be hierarchical. This class is " "used to manage and organize attribute groups. An attribute group can have a " @@ -1497,23 +1536,23 @@ msgstr "" "útil para categorizar e gerenciar atributos de forma mais eficaz em um " "sistema complexo." -#: core/models.py:92 +#: engine/core/models.py:91 msgid "parent of this group" msgstr "Pai deste grupo" -#: core/models.py:93 +#: engine/core/models.py:92 msgid "parent attribute group" msgstr "Grupo de atributos pai" -#: core/models.py:97 core/models.py:98 +#: engine/core/models.py:96 engine/core/models.py:97 msgid "attribute group's name" msgstr "Nome do grupo de atributos" -#: core/models.py:106 core/models.py:716 +#: engine/core/models.py:105 engine/core/models.py:727 msgid "attribute group" msgstr "Grupo de atributos" -#: core/models.py:112 +#: engine/core/models.py:111 msgid "" "Represents a vendor entity capable of storing information about external " "vendors and their interaction requirements. The Vendor class is used to " @@ -1527,54 +1566,54 @@ 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." -#: core/models.py:125 +#: engine/core/models.py:124 msgid "stores credentials and endpoints required for vendor communication" msgstr "" "Armazena as credenciais e os pontos de extremidade necessários para a " "comunicação da API do fornecedor" -#: core/models.py:126 +#: engine/core/models.py:125 msgid "authentication info" msgstr "Informações de autenticação" -#: core/models.py:131 +#: engine/core/models.py:130 msgid "define the markup for products retrieved from this vendor" msgstr "Definir a marcação para produtos recuperados desse fornecedor" -#: core/models.py:132 +#: engine/core/models.py:131 msgid "vendor markup percentage" msgstr "Porcentagem da margem de lucro do fornecedor" -#: core/models.py:136 +#: engine/core/models.py:135 msgid "name of this vendor" msgstr "Nome do fornecedor" -#: core/models.py:137 +#: engine/core/models.py:136 msgid "vendor name" msgstr "Nome do fornecedor" -#: core/models.py:148 +#: engine/core/models.py:147 msgid "response file" msgstr "arquivo de resposta" -#: core/models.py:149 +#: engine/core/models.py:148 msgid "vendor's last processing response" msgstr "última resposta de processamento do fornecedor" -#: core/models.py:155 +#: engine/core/models.py:154 msgid "vendor's integration file path" msgstr "Caminho do arquivo de integração do fornecedor" -#: core/models.py:156 +#: engine/core/models.py:155 msgid "integration path" msgstr "Caminho de integração" -#: core/models.py:198 +#: engine/core/models.py:197 msgid "" "Represents a product tag used for classifying or identifying products. The " "ProductTag class is designed to uniquely identify and classify products " @@ -1589,27 +1628,27 @@ msgstr "" "operações exportadas por meio de mixins e fornece personalização de " "metadados para fins administrativos." -#: core/models.py:210 core/models.py:241 +#: engine/core/models.py:209 engine/core/models.py:240 msgid "internal tag identifier for the product tag" msgstr "Identificador de tag interno para a tag do produto" -#: core/models.py:211 core/models.py:242 +#: engine/core/models.py:210 engine/core/models.py:241 msgid "tag name" msgstr "Nome da etiqueta" -#: core/models.py:215 core/models.py:246 +#: engine/core/models.py:214 engine/core/models.py:245 msgid "user-friendly name for the product tag" msgstr "Nome de fácil utilização para a etiqueta do produto" -#: core/models.py:216 core/models.py:247 +#: engine/core/models.py:215 engine/core/models.py:246 msgid "tag display name" msgstr "Nome de exibição da tag" -#: core/models.py:224 +#: engine/core/models.py:223 msgid "product tag" msgstr "Etiqueta do produto" -#: core/models.py:230 +#: engine/core/models.py:229 msgid "" "Represents a category tag used for products. This class models a category " "tag that can be used to associate and classify products. It includes " @@ -1620,15 +1659,15 @@ msgstr "" "Ela inclui atributos para um identificador de tag interno e um nome de " "exibição de fácil utilização." -#: core/models.py:255 +#: engine/core/models.py:254 msgid "category tag" msgstr "tag de categoria" -#: core/models.py:256 core/models.py:328 +#: engine/core/models.py:255 engine/core/models.py:327 msgid "category tags" msgstr "tags de categoria" -#: core/models.py:261 +#: engine/core/models.py:260 msgid "" "Represents a category entity to organize and group related items in a " "hierarchical structure. Categories may have hierarchical relationships with " @@ -1651,108 +1690,107 @@ msgstr "" "descrição e a hierarquia das categorias, bem como atribuam atributos como " "imagens, tags ou prioridade." -#: core/models.py:275 +#: engine/core/models.py:274 msgid "upload an image representing this category" msgstr "Faça upload de uma imagem que represente essa categoria" -#: core/models.py:278 +#: engine/core/models.py:277 msgid "category image" msgstr "Imagem da categoria" -#: core/models.py:283 +#: engine/core/models.py:282 msgid "define a markup percentage for products in this category" msgstr "Definir uma porcentagem de majoração para os produtos dessa categoria" -#: core/models.py:292 +#: engine/core/models.py:291 msgid "parent of this category to form a hierarchical structure" msgstr "Pai dessa categoria para formar uma estrutura hierárquica" -#: core/models.py:293 +#: engine/core/models.py:292 msgid "parent category" msgstr "Categoria dos pais" -#: core/models.py:298 +#: engine/core/models.py:297 msgid "category name" msgstr "Nome da categoria" -#: core/models.py:299 +#: engine/core/models.py:298 msgid "provide a name for this category" msgstr "Forneça um nome para essa categoria" -#: core/models.py:306 +#: engine/core/models.py:305 msgid "add a detailed description for this category" msgstr "Adicione uma descrição detalhada para essa categoria" -#: core/models.py:307 +#: engine/core/models.py:306 msgid "category description" msgstr "Descrição da categoria" -#: core/models.py:327 +#: engine/core/models.py:326 msgid "tags that help describe or group this category" msgstr "tags que ajudam a descrever ou agrupar essa categoria" -#: core/models.py:334 core/models.py:489 +#: engine/core/models.py:333 engine/core/models.py:488 msgid "priority" msgstr "Prioridade" -#: core/models.py:432 +#: engine/core/models.py:431 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." -#: core/models.py:442 +#: engine/core/models.py:441 msgid "name of this brand" msgstr "Nome da marca" -#: core/models.py:443 +#: engine/core/models.py:442 msgid "brand name" msgstr "Nome da marca" -#: core/models.py:450 +#: engine/core/models.py:449 msgid "upload a logo representing this brand" msgstr "Faça upload de um logotipo que represente essa marca" -#: core/models.py:452 +#: engine/core/models.py:451 msgid "brand small image" msgstr "Imagem pequena da marca" -#: core/models.py:458 +#: engine/core/models.py:457 msgid "upload a big logo representing this brand" msgstr "Faça upload de um logotipo grande que represente essa marca" -#: core/models.py:460 +#: engine/core/models.py:459 msgid "brand big image" msgstr "Imagem de marca grande" -#: core/models.py:465 +#: engine/core/models.py:464 msgid "add a detailed description of the brand" msgstr "Adicione uma descrição detalhada da marca" -#: core/models.py:466 +#: engine/core/models.py:465 msgid "brand description" msgstr "Descrição da marca" -#: core/models.py:471 +#: engine/core/models.py:470 msgid "optional categories that this brand is associated with" msgstr "Categorias opcionais às quais essa marca está associada" -#: core/models.py:472 +#: engine/core/models.py:471 msgid "associated categories" msgstr "Categorias" -#: core/models.py:502 +#: engine/core/models.py:501 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 " @@ -1765,68 +1803,72 @@ msgstr "" "sistema de gerenciamento de estoque para permitir o rastreamento e a " "avaliação dos produtos disponíveis de vários fornecedores." -#: core/models.py:514 +#: engine/core/models.py:513 msgid "the vendor supplying this product stock" msgstr "O fornecedor que fornece esse estoque de produtos" -#: core/models.py:515 +#: engine/core/models.py:514 msgid "associated vendor" msgstr "Fornecedor associado" -#: core/models.py:519 +#: engine/core/models.py:518 msgid "final price to the customer after markups" msgstr "Preço final para o cliente após as marcações" -#: core/models.py:520 +#: engine/core/models.py:519 msgid "selling price" msgstr "Preço de venda" -#: core/models.py:525 +#: engine/core/models.py:524 msgid "the product associated with this stock entry" msgstr "O produto associado a essa entrada em estoque" -#: core/models.py:526 core/models.py:779 core/models.py:825 -#: core/models.py:1718 +#: engine/core/models.py:525 engine/core/models.py:790 +#: engine/core/models.py:836 engine/core/models.py:1778 msgid "associated product" msgstr "Produto associado" -#: core/models.py:533 +#: engine/core/models.py:532 msgid "the price paid to the vendor for this product" msgstr "O preço pago ao fornecedor por esse produto" -#: core/models.py:534 +#: engine/core/models.py:533 msgid "vendor purchase price" msgstr "Preço de compra do fornecedor" -#: core/models.py:538 +#: engine/core/models.py:537 msgid "available quantity of the product in stock" msgstr "Quantidade disponível do produto em estoque" -#: core/models.py:539 +#: engine/core/models.py:538 msgid "quantity in stock" msgstr "Quantidade em estoque" -#: core/models.py:543 +#: engine/core/models.py:542 msgid "vendor-assigned SKU for identifying the product" msgstr "SKU atribuído pelo fornecedor para identificar o produto" -#: core/models.py:544 +#: engine/core/models.py:543 msgid "vendor sku" msgstr "SKU do fornecedor" -#: core/models.py:550 +#: engine/core/models.py:549 msgid "digital file associated with this stock if applicable" msgstr "Arquivo digital associado a esse estoque, se aplicável" -#: core/models.py:551 +#: engine/core/models.py:550 msgid "digital file" msgstr "Arquivo digital" -#: core/models.py:560 +#: engine/core/models.py:553 +msgid "system attributes" +msgstr "Atributos do sistema" + +#: engine/core/models.py:560 msgid "stock entries" msgstr "Entradas de estoque" -#: core/models.py:565 +#: engine/core/models.py:565 msgid "" "Represents a product with attributes such as category, brand, tags, digital " "status, name, description, part number, and slug. Provides related utility " @@ -1842,210 +1884,209 @@ 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." -#: core/models.py:578 +#: engine/core/models.py:578 msgid "category this product belongs to" msgstr "Categoria à qual este produto pertence" -#: core/models.py:587 +#: engine/core/models.py:587 msgid "optionally associate this product with a brand" msgstr "Opcionalmente, associe esse produto a uma marca" -#: core/models.py:593 +#: engine/core/models.py:593 msgid "tags that help describe or group this product" msgstr "Tags que ajudam a descrever ou agrupar este produto" -#: core/models.py:598 +#: engine/core/models.py:598 msgid "indicates whether this product is digitally delivered" msgstr "Indica se esse produto é entregue digitalmente" -#: core/models.py:599 +#: engine/core/models.py:599 msgid "is product digital" msgstr "O produto é digital" -#: core/models.py:605 +#: engine/core/models.py:605 msgid "provide a clear identifying name for the product" msgstr "Fornecer um nome de identificação claro para o produto" -#: core/models.py:606 +#: engine/core/models.py:606 msgid "product name" msgstr "Nome do produto" -#: core/models.py:612 core/models.py:867 +#: engine/core/models.py:612 engine/core/models.py:878 msgid "add a detailed description of the product" msgstr "Adicione uma descrição detalhada do produto" -#: core/models.py:613 +#: engine/core/models.py:613 msgid "product description" msgstr "Descrição do produto" -#: core/models.py:620 +#: engine/core/models.py:620 msgid "part number for this product" msgstr "Número de peça para este produto" -#: core/models.py:621 +#: engine/core/models.py:621 msgid "part number" msgstr "Número da peça" -#: core/models.py:640 +#: engine/core/models.py:640 msgid "stock keeping unit for this product" msgstr "Unidade de Manutenção de Estoque para este produto" -#: core/models.py:702 +#: engine/core/models.py:713 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." -#: core/models.py:715 +#: engine/core/models.py:726 msgid "group of this attribute" msgstr "Grupo desse atributo" -#: core/models.py:721 +#: engine/core/models.py:732 msgid "string" msgstr "Cordas" -#: core/models.py:722 +#: engine/core/models.py:733 msgid "integer" msgstr "Inteiro" -#: core/models.py:723 +#: engine/core/models.py:734 msgid "float" msgstr "Flutuação" -#: core/models.py:724 +#: engine/core/models.py:735 msgid "boolean" msgstr "Booleano" -#: core/models.py:725 +#: engine/core/models.py:736 msgid "array" msgstr "Matriz" -#: core/models.py:726 +#: engine/core/models.py:737 msgid "object" msgstr "Objeto" -#: core/models.py:728 +#: engine/core/models.py:739 msgid "type of the attribute's value" msgstr "Tipo do valor do atributo" -#: core/models.py:729 +#: engine/core/models.py:740 msgid "value type" msgstr "Tipo de valor" -#: core/models.py:734 +#: engine/core/models.py:745 msgid "name of this attribute" msgstr "Nome desse atributo" -#: core/models.py:735 +#: engine/core/models.py:746 msgid "attribute's name" msgstr "Nome do atributo" -#: core/models.py:740 +#: engine/core/models.py:751 msgid "is filterable" msgstr "é filtrável" -#: core/models.py:741 +#: engine/core/models.py:752 msgid "designates whether this attribute can be used for filtering or not" msgstr "" "Quais atributos e valores podem ser usados para filtrar essa categoria." -#: core/models.py:753 core/models.py:771 -#: core/templates/digital_order_delivered_email.html:134 +#: engine/core/models.py:764 engine/core/models.py:782 +#: engine/core/templates/digital_order_delivered_email.html:134 msgid "attribute" msgstr "Atributo" -#: core/models.py:759 +#: engine/core/models.py:770 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." -#: core/models.py:770 +#: engine/core/models.py:781 msgid "attribute of this value" msgstr "Atributo desse valor" -#: core/models.py:778 +#: engine/core/models.py:789 msgid "the specific product associated with this attribute's value" msgstr "O produto específico associado ao valor desse atributo" -#: core/models.py:784 +#: engine/core/models.py:795 msgid "the specific value for this attribute" msgstr "O valor específico para esse atributo" -#: core/models.py:797 +#: engine/core/models.py:808 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." -#: core/models.py:808 +#: engine/core/models.py:819 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" -#: core/models.py:809 +#: engine/core/models.py:820 msgid "image alt text" msgstr "Texto alternativo da imagem" -#: core/models.py:812 +#: engine/core/models.py:823 msgid "upload the image file for this product" msgstr "Faça o upload do arquivo de imagem para este produto" -#: core/models.py:813 core/models.py:837 +#: engine/core/models.py:824 engine/core/models.py:848 msgid "product image" msgstr "Imagem do produto" -#: core/models.py:818 +#: engine/core/models.py:829 msgid "determines the order in which images are displayed" msgstr "Determina a ordem em que as imagens são exibidas" -#: core/models.py:819 +#: engine/core/models.py:830 msgid "display priority" msgstr "Prioridade de exibição" -#: core/models.py:824 +#: engine/core/models.py:835 msgid "the product that this image represents" msgstr "O produto que esta imagem representa" -#: core/models.py:838 +#: engine/core/models.py:849 msgid "product images" msgstr "Imagens do produto" -#: core/models.py:843 +#: engine/core/models.py:854 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 " @@ -2054,39 +2095,39 @@ msgstr "" "vinculá-la aos produtos aplicáveis. Ela se integra ao catálogo de produtos " "para determinar os itens afetados na campanha." -#: core/models.py:855 +#: engine/core/models.py:866 msgid "percentage discount for the selected products" msgstr "Desconto percentual para os produtos selecionados" -#: core/models.py:856 +#: engine/core/models.py:867 msgid "discount percentage" msgstr "Porcentagem de desconto" -#: core/models.py:861 +#: engine/core/models.py:872 msgid "provide a unique name for this promotion" msgstr "Forneça um nome exclusivo para essa promoção" -#: core/models.py:862 +#: engine/core/models.py:873 msgid "promotion name" msgstr "Nome da promoção" -#: core/models.py:868 +#: engine/core/models.py:879 msgid "promotion description" msgstr "Descrição da promoção" -#: core/models.py:873 +#: engine/core/models.py:884 msgid "select which products are included in this promotion" msgstr "Selecione quais produtos estão incluídos nessa promoção" -#: core/models.py:874 +#: engine/core/models.py:885 msgid "included products" msgstr "Produtos incluídos" -#: core/models.py:878 +#: engine/core/models.py:889 msgid "promotion" msgstr "Promoção" -#: core/models.py:889 +#: engine/core/models.py:900 msgid "" "Represents a user's wishlist for storing and managing desired products. The " "class provides functionality to manage a collection of products, supporting " @@ -2095,129 +2136,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." -#: core/models.py:901 +#: engine/core/models.py:912 msgid "products that the user has marked as wanted" msgstr "Produtos que o usuário marcou como desejados" -#: core/models.py:909 +#: engine/core/models.py:920 msgid "user who owns this wishlist" msgstr "Usuário que possui esta lista de desejos" -#: core/models.py:910 +#: engine/core/models.py:921 msgid "wishlist owner" msgstr "Proprietário da lista de desejos" -#: core/models.py:918 +#: engine/core/models.py:929 msgid "wishlist" msgstr "Lista de desejos" -#: core/models.py:960 +#: engine/core/models.py:971 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." -#: core/models.py:973 +#: engine/core/models.py:984 msgid "documentary" msgstr "Documentário" -#: core/models.py:974 +#: engine/core/models.py:985 msgid "documentaries" msgstr "Documentários" -#: core/models.py:984 +#: engine/core/models.py:995 msgid "unresolved" msgstr "Não resolvido" -#: core/models.py:989 +#: engine/core/models.py:1000 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." -#: core/models.py:1004 +#: engine/core/models.py:1015 msgid "address line for the customer" msgstr "Linha de endereço do cliente" -#: core/models.py:1005 +#: engine/core/models.py:1016 msgid "address line" msgstr "Linha de endereço" -#: core/models.py:1007 +#: engine/core/models.py:1018 msgid "street" msgstr "Rua" -#: core/models.py:1008 +#: engine/core/models.py:1019 msgid "district" msgstr "Distrito" -#: core/models.py:1009 +#: engine/core/models.py:1020 msgid "city" msgstr "Cidade" -#: core/models.py:1010 +#: engine/core/models.py:1021 msgid "region" msgstr "Região" -#: core/models.py:1011 +#: engine/core/models.py:1022 msgid "postal code" msgstr "Código postal" -#: core/models.py:1012 +#: engine/core/models.py:1023 msgid "country" msgstr "País" -#: core/models.py:1019 +#: engine/core/models.py:1030 msgid "geolocation point: (longitude, latitude)" msgstr "Ponto de geolocalização (Longitude, Latitude)" -#: core/models.py:1022 +#: engine/core/models.py:1033 msgid "full JSON response from geocoder for this address" msgstr "Resposta JSON completa do geocodificador para este endereço" -#: core/models.py:1027 +#: engine/core/models.py:1038 msgid "stored JSON response from the geocoding service" msgstr "Resposta JSON armazenada do serviço de geocodificação" -#: core/models.py:1035 +#: engine/core/models.py:1046 msgid "address" msgstr "Endereço" -#: core/models.py:1036 +#: engine/core/models.py:1047 msgid "addresses" msgstr "Endereços" -#: core/models.py:1048 +#: engine/core/models.py:1059 msgid "" "Represents a promotional code that can be used for discounts, managing its " "validity, type of discount, and application. The PromoCode class stores " @@ -2234,96 +2275,96 @@ msgstr "" "funcionalidade para validar e aplicar o código promocional a um pedido, " "garantindo que as restrições sejam atendidas." -#: core/models.py:1062 +#: engine/core/models.py:1073 msgid "unique code used by a user to redeem a discount" msgstr "Código exclusivo usado por um usuário para resgatar um desconto" -#: core/models.py:1063 +#: engine/core/models.py:1074 msgid "promo code identifier" msgstr "Identificador de código promocional" -#: core/models.py:1070 +#: engine/core/models.py:1081 msgid "fixed discount amount applied if percent is not used" msgstr "Valor de desconto fixo aplicado se a porcentagem não for usada" -#: core/models.py:1071 +#: engine/core/models.py:1082 msgid "fixed discount amount" msgstr "Valor do desconto fixo" -#: core/models.py:1077 +#: engine/core/models.py:1088 msgid "percentage discount applied if fixed amount is not used" msgstr "Desconto percentual aplicado se o valor fixo não for usado" -#: core/models.py:1078 +#: engine/core/models.py:1089 msgid "percentage discount" msgstr "Desconto percentual" -#: core/models.py:1083 +#: engine/core/models.py:1094 msgid "timestamp when the promocode expires" msgstr "Registro de data e hora em que o código promocional expira" -#: core/models.py:1084 +#: engine/core/models.py:1095 msgid "end validity time" msgstr "Tempo de validade final" -#: core/models.py:1089 +#: engine/core/models.py:1100 msgid "timestamp from which this promocode is valid" msgstr "" "Registro de data e hora a partir do qual esse código promocional é válido" -#: core/models.py:1090 +#: engine/core/models.py:1101 msgid "start validity time" msgstr "Hora de início da validade" -#: core/models.py:1095 +#: engine/core/models.py:1106 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" -#: core/models.py:1096 +#: engine/core/models.py:1107 msgid "usage timestamp" msgstr "Registro de data e hora de uso" -#: core/models.py:1101 +#: engine/core/models.py:1112 msgid "user assigned to this promocode if applicable" msgstr "Usuário atribuído a esse código promocional, se aplicável" -#: core/models.py:1102 +#: engine/core/models.py:1113 msgid "assigned user" msgstr "Usuário atribuído" -#: core/models.py:1109 +#: engine/core/models.py:1120 msgid "promo code" msgstr "Código promocional" -#: core/models.py:1110 +#: engine/core/models.py:1121 msgid "promo codes" msgstr "Códigos promocionais" -#: core/models.py:1125 +#: engine/core/models.py:1136 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." -#: core/models.py:1146 +#: engine/core/models.py:1157 msgid "promocode already used" msgstr "O código promocional já foi usado" -#: core/models.py:1162 +#: engine/core/models.py:1173 #, python-brace-format msgid "invalid discount type for promocode {self.uuid}" msgstr "Tipo de desconto inválido para o código promocional {self.uuid}!" -#: core/models.py:1171 +#: engine/core/models.py:1182 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 "" @@ -2335,138 +2376,138 @@ msgstr "" "atualizados. Da mesma forma, a funcionalidade suporta o gerenciamento dos " "produtos no ciclo de vida do pedido." -#: core/models.py:1188 +#: engine/core/models.py:1199 msgid "the billing address used for this order" msgstr "O endereço de cobrança usado para esse pedido" -#: core/models.py:1196 +#: engine/core/models.py:1207 msgid "optional promo code applied to this order" msgstr "Código promocional opcional aplicado a este pedido" -#: core/models.py:1197 +#: engine/core/models.py:1208 msgid "applied promo code" msgstr "Código promocional aplicado" -#: core/models.py:1205 +#: engine/core/models.py:1216 msgid "the shipping address used for this order" msgstr "O endereço de entrega usado para esse pedido" -#: core/models.py:1206 +#: engine/core/models.py:1217 msgid "shipping address" msgstr "Endereço de entrega" -#: core/models.py:1212 +#: engine/core/models.py:1223 msgid "current status of the order in its lifecycle" msgstr "Status atual do pedido em seu ciclo de vida" -#: core/models.py:1213 +#: engine/core/models.py:1224 msgid "order status" msgstr "Status do pedido" -#: core/models.py:1218 core/models.py:1695 +#: engine/core/models.py:1229 engine/core/models.py:1755 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" -#: core/models.py:1224 +#: engine/core/models.py:1235 msgid "json representation of order attributes for this order" msgstr "Representação JSON dos atributos do pedido para esse pedido" -#: core/models.py:1230 +#: engine/core/models.py:1241 msgid "the user who placed the order" msgstr "O usuário que fez o pedido" -#: core/models.py:1231 +#: engine/core/models.py:1242 msgid "user" msgstr "Usuário" -#: core/models.py:1237 +#: engine/core/models.py:1248 msgid "the timestamp when the order was finalized" msgstr "O registro de data e hora em que o pedido foi finalizado" -#: core/models.py:1238 +#: engine/core/models.py:1249 msgid "buy time" msgstr "Tempo de compra" -#: core/models.py:1245 +#: engine/core/models.py:1256 msgid "a human-readable identifier for the order" msgstr "Um identificador legível por humanos para o pedido" -#: core/models.py:1246 +#: engine/core/models.py:1257 msgid "human readable id" msgstr "ID legível por humanos" -#: core/models.py:1252 +#: engine/core/models.py:1263 msgid "order" msgstr "Pedido" -#: core/models.py:1294 +#: engine/core/models.py:1305 msgid "a user must have only one pending order at a time" msgstr "Um usuário deve ter apenas uma ordem pendente por vez!" -#: core/models.py:1326 +#: engine/core/models.py:1337 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" -#: core/models.py:1331 +#: engine/core/models.py:1342 msgid "you cannot add inactive products to order" msgstr "Não é possível adicionar produtos inativos ao pedido" -#: core/models.py:1348 +#: engine/core/models.py:1359 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" -#: core/models.py:1370 core/models.py:1395 core/models.py:1403 +#: engine/core/models.py:1381 engine/core/models.py:1406 +#: engine/core/models.py:1414 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" -#: core/models.py:1391 +#: engine/core/models.py:1402 #, python-brace-format msgid "{name} does not exist with query <{query}>" msgstr "{name} não existe com a consulta <{query}>!" -#: core/models.py:1423 +#: engine/core/models.py:1434 msgid "promocode does not exist" msgstr "O código promocional não existe" -#: core/models.py:1429 +#: engine/core/models.py:1440 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!" -#: core/models.py:1448 +#: engine/core/models.py:1459 msgid "address does not exist" msgstr "O endereço não existe" -#: core/models.py:1469 core/models.py:1538 +#: engine/core/models.py:1480 engine/core/models.py:1549 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." -#: core/models.py:1472 core/models.py:1534 +#: engine/core/models.py:1483 engine/core/models.py:1545 msgid "invalid force value" msgstr "Valor de força inválido" -#: core/models.py:1478 core/models.py:1541 +#: engine/core/models.py:1489 engine/core/models.py:1552 msgid "you cannot purchase an empty order!" msgstr "Você não pode comprar um pedido vazio!" -#: core/models.py:1497 +#: engine/core/models.py:1508 msgid "you cannot buy an order without a user" msgstr "Não é possível comprar um pedido sem um usuário!" -#: core/models.py:1511 +#: engine/core/models.py:1522 msgid "a user without a balance cannot buy with balance" msgstr "Um usuário sem saldo não pode comprar com saldo!" -#: core/models.py:1516 +#: engine/core/models.py:1527 msgid "insufficient funds to complete the order" msgstr "Fundos insuficientes para concluir o pedido" -#: core/models.py:1550 +#: engine/core/models.py:1561 msgid "" "you cannot buy without registration, please provide the following " "information: customer name, customer email, customer phone number" @@ -2474,7 +2515,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" -#: core/models.py:1559 +#: engine/core/models.py:1570 #, python-brace-format msgid "" "invalid payment method: {payment_method} from {available_payment_methods}" @@ -2482,7 +2523,49 @@ msgstr "" "Método de pagamento inválido: {payment_method} de " "{available_payment_methods}!" -#: core/models.py:1668 +#: engine/core/models.py:1685 +msgid "" +"Manages user feedback for products. This class is designed to capture and " +"store user feedback for specific products that they have purchased. It " +"contains attributes to store user comments, a reference to the related " +"product in the order, and a user-assigned rating. The class uses database " +"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 " +"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:1697 +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:1698 +msgid "feedback comments" +msgstr "Comentários de feedback" + +#: engine/core/models.py:1705 +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" + +#: engine/core/models.py:1706 +msgid "related order product" +msgstr "Produto de pedido relacionado" + +#: engine/core/models.py:1711 +msgid "user-assigned rating for the product" +msgstr "Classificação atribuída pelo usuário ao produto" + +#: engine/core/models.py:1712 +msgid "product rating" +msgstr "Avaliação do produto" + +#: engine/core/models.py:1728 msgid "" "Represents products associated with orders and their attributes. The " "OrderProduct model maintains information about a product that is part of an " @@ -2495,259 +2578,213 @@ 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." -#: core/models.py:1683 +#: engine/core/models.py:1743 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" -#: core/models.py:1684 +#: engine/core/models.py:1744 msgid "purchase price at order time" msgstr "Preço de compra no momento do pedido" -#: core/models.py:1689 +#: engine/core/models.py:1749 msgid "internal comments for admins about this ordered product" msgstr "" "Comentários internos para administradores sobre este produto encomendado" -#: core/models.py:1690 +#: engine/core/models.py:1750 msgid "internal comments" msgstr "Comentários internos" -#: core/models.py:1696 +#: engine/core/models.py:1756 msgid "user notifications" msgstr "Notificações do usuário" -#: core/models.py:1701 +#: engine/core/models.py:1761 msgid "json representation of this item's attributes" msgstr "Representação JSON dos atributos desse item" -#: core/models.py:1702 +#: engine/core/models.py:1762 msgid "ordered product attributes" msgstr "Atributos ordenados do produto" -#: core/models.py:1707 +#: engine/core/models.py:1767 msgid "reference to the parent order that contains this product" msgstr "Referência ao pedido pai que contém esse produto" -#: core/models.py:1708 +#: engine/core/models.py:1768 msgid "parent order" msgstr "Ordem dos pais" -#: core/models.py:1717 +#: engine/core/models.py:1777 msgid "the specific product associated with this order line" msgstr "O produto específico associado a essa linha de pedido" -#: core/models.py:1724 +#: engine/core/models.py:1784 msgid "quantity of this specific product in the order" msgstr "Quantidade desse produto específico no pedido" -#: core/models.py:1725 +#: engine/core/models.py:1785 msgid "product quantity" msgstr "Quantidade do produto" -#: core/models.py:1732 +#: engine/core/models.py:1792 msgid "current status of this product in the order" msgstr "Status atual desse produto no pedido" -#: core/models.py:1733 +#: engine/core/models.py:1793 msgid "product line status" msgstr "Status da linha de produtos" -#: core/models.py:1798 +#: engine/core/models.py:1858 msgid "order product must have an order" msgstr "O Orderproduct deve ter um pedido associado!" -#: core/models.py:1800 +#: engine/core/models.py:1860 #, python-brace-format msgid "wrong action specified for feedback: {action}" msgstr "Ação incorreta especificada para o feedback: {action}!" -#: core/models.py:1814 +#: engine/core/models.py:1874 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" -#: core/models.py:1820 +#: engine/core/models.py:1880 msgid "name" msgstr "Nome" -#: core/models.py:1821 +#: engine/core/models.py:1881 msgid "URL of the integration" msgstr "URL da integração" -#: core/models.py:1822 +#: engine/core/models.py:1882 msgid "authentication credentials" msgstr "Credenciais de autenticação" -#: core/models.py:1844 +#: engine/core/models.py:1904 msgid "you can only have one default CRM provider" msgstr "Você só pode ter um provedor de CRM padrão" -#: core/models.py:1854 +#: engine/core/models.py:1914 msgid "CRM" msgstr "CRM" -#: core/models.py:1855 +#: engine/core/models.py:1915 msgid "CRMs" msgstr "CRMs" -#: core/models.py:1867 +#: engine/core/models.py:1927 msgid "order CRM link" msgstr "Link do CRM do pedido" -#: core/models.py:1868 +#: engine/core/models.py:1928 msgid "orders CRM links" msgstr "Links de CRM dos pedidos" -#: core/models.py:1873 +#: engine/core/models.py:1933 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." -#: core/models.py:1887 +#: engine/core/models.py:1947 msgid "download" msgstr "Baixar" -#: core/models.py:1888 +#: engine/core/models.py:1948 msgid "downloads" msgstr "Downloads" -#: core/models.py:1902 -msgid "" -"Manages user feedback for products. This class is designed to capture and " -"store user feedback for specific products that they have purchased. It " -"contains attributes to store user comments, a reference to the related " -"product in the order, and a user-assigned rating. The class uses database " -"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 " -"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." - -#: core/models.py:1914 -msgid "user-provided comments about their experience with the product" -msgstr "" -"Comentários fornecidos pelo usuário sobre sua experiência com o produto" - -#: core/models.py:1915 -msgid "feedback comments" -msgstr "Comentários de feedback" - -#: core/models.py:1922 -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" - -#: core/models.py:1923 -msgid "related order product" -msgstr "Produto de pedido relacionado" - -#: core/models.py:1928 -msgid "user-assigned rating for the product" -msgstr "Classificação atribuída pelo usuário ao produto" - -#: core/models.py:1929 -msgid "product rating" -msgstr "Avaliação do produto" - -#: core/serializers/utility.py:89 +#: engine/core/serializers/utility.py:89 msgid "" "you must provide a comment, rating, and order product uuid to add feedback." msgstr "" "Você deve fornecer um comentário, uma classificação e o uuid do produto do " "pedido para adicionar feedback." -#: core/signals.py:73 -msgid "error during promocode creation: {e!s}" -msgstr "Erro durante a criação do código promocional: {e!s}" - -#: core/sitemaps.py:25 +#: engine/core/sitemaps.py:25 msgid "Home" msgstr "Início" -#: core/sitemaps.py:30 +#: engine/core/sitemaps.py:30 msgid "Contact Us" msgstr "Entre em contato conosco" -#: core/sitemaps.py:35 +#: engine/core/sitemaps.py:35 msgid "About Us" msgstr "Sobre nós" -#: core/templates/digital_order_created_email.html:7 -#: core/templates/digital_order_created_email.html:100 -#: core/templates/digital_order_delivered_email.html:6 -#: core/templates/shipped_order_created_email.html:7 -#: core/templates/shipped_order_created_email.html:99 -#: core/templates/shipped_order_delivered_email.html:7 -#: core/templates/shipped_order_delivered_email.html:99 +#: engine/core/templates/digital_order_created_email.html:7 +#: engine/core/templates/digital_order_created_email.html:100 +#: engine/core/templates/digital_order_delivered_email.html:6 +#: engine/core/templates/shipped_order_created_email.html:7 +#: engine/core/templates/shipped_order_created_email.html:99 +#: engine/core/templates/shipped_order_delivered_email.html:7 +#: engine/core/templates/shipped_order_delivered_email.html:99 msgid "order confirmation" msgstr "Confirmação de pedido" -#: core/templates/digital_order_created_email.html:95 -#: core/templates/digital_order_delivered_email.html:94 -#: core/templates/promocode_granted_email.html:94 -#: core/templates/shipped_order_created_email.html:94 -#: core/templates/shipped_order_delivered_email.html:94 +#: engine/core/templates/digital_order_created_email.html:95 +#: engine/core/templates/digital_order_delivered_email.html:94 +#: engine/core/templates/promocode_granted_email.html:94 +#: engine/core/templates/shipped_order_created_email.html:94 +#: engine/core/templates/shipped_order_delivered_email.html:94 msgid "logo" msgstr "Logotipo" -#: core/templates/digital_order_created_email.html:101 -#: core/templates/shipped_order_created_email.html:100 -#: core/templates/shipped_order_delivered_email.html:100 +#: engine/core/templates/digital_order_created_email.html:101 +#: engine/core/templates/shipped_order_created_email.html:100 +#: engine/core/templates/shipped_order_delivered_email.html:100 #, python-format msgid "hello %(order.user.first_name)s," msgstr "Olá %(order.user.first_name)s," -#: core/templates/digital_order_created_email.html:102 +#: engine/core/templates/digital_order_created_email.html:102 #, 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 " "seu pedido foi colocado em prática. Abaixo estão os detalhes de seu pedido:" -#: core/templates/digital_order_created_email.html:112 -#: core/templates/digital_order_delivered_email.html:110 -#: core/templates/shipped_order_created_email.html:110 -#: core/templates/shipped_order_delivered_email.html:110 +#: engine/core/templates/digital_order_created_email.html:112 +#: engine/core/templates/digital_order_delivered_email.html:110 +#: engine/core/templates/shipped_order_created_email.html:110 +#: engine/core/templates/shipped_order_delivered_email.html:110 msgid "total" msgstr "Total" -#: core/templates/digital_order_created_email.html:125 -#: core/templates/digital_order_delivered_email.html:157 -#: core/templates/shipped_order_created_email.html:127 -#: core/templates/shipped_order_delivered_email.html:127 +#: engine/core/templates/digital_order_created_email.html:125 +#: engine/core/templates/digital_order_delivered_email.html:157 +#: engine/core/templates/shipped_order_created_email.html:127 +#: engine/core/templates/shipped_order_delivered_email.html:127 msgid "total price" msgstr "Preço total" -#: core/templates/digital_order_created_email.html:131 -#: core/templates/shipped_order_created_email.html:140 -#: core/templates/shipped_order_delivered_email.html:140 +#: engine/core/templates/digital_order_created_email.html:131 +#: engine/core/templates/shipped_order_created_email.html:140 +#: engine/core/templates/shipped_order_delivered_email.html:140 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" @@ -2756,28 +2793,28 @@ msgstr "" "Se tiver alguma dúvida, entre em contato com nosso suporte em " "%(config.EMAIL_HOST_USER)s." -#: core/templates/digital_order_created_email.html:133 +#: engine/core/templates/digital_order_created_email.html:133 #, python-format msgid "best regards,
the %(config.PROJECT_NAME)s team" msgstr "Atenciosamente,
a equipe %(config.PROJECT_NAME)s" -#: core/templates/digital_order_created_email.html:139 -#: core/templates/digital_order_delivered_email.html:171 -#: core/templates/promocode_granted_email.html:114 +#: engine/core/templates/digital_order_created_email.html:139 +#: engine/core/templates/digital_order_delivered_email.html:171 +#: engine/core/templates/promocode_granted_email.html:114 msgid "all rights reserved" msgstr "Todos os direitos reservados" -#: core/templates/digital_order_delivered_email.html:99 +#: engine/core/templates/digital_order_delivered_email.html:99 msgid "order delivered" msgstr "Pedido entregue" -#: core/templates/digital_order_delivered_email.html:100 -#: core/templates/promocode_granted_email.html:100 +#: engine/core/templates/digital_order_delivered_email.html:100 +#: engine/core/templates/promocode_granted_email.html:100 #, python-format msgid "hello %(user_first_name)s," msgstr "Olá %(user_first_name)s," -#: core/templates/digital_order_delivered_email.html:101 +#: engine/core/templates/digital_order_delivered_email.html:101 #, python-format msgid "" "we have successfully processed your order №%(order_uuid)s! below are the\n" @@ -2786,7 +2823,7 @@ msgstr "" "Seu pedido №%(order_uuid)s foi processado com sucesso! Abaixo estão os " "detalhes de seu pedido:" -#: core/templates/digital_order_delivered_email.html:128 +#: engine/core/templates/digital_order_delivered_email.html:128 msgid "" "additional\n" " information" @@ -2794,13 +2831,13 @@ msgstr "" "adicionais\n" " informações adicionais" -#: core/templates/digital_order_delivered_email.html:137 -#: core/templates/json_table_widget.html:6 +#: engine/core/templates/digital_order_delivered_email.html:137 +#: engine/core/templates/json_table_widget.html:6 msgid "value" msgstr "Valor" -#: core/templates/digital_order_delivered_email.html:163 -#: core/templates/promocode_granted_email.html:106 +#: engine/core/templates/digital_order_delivered_email.html:163 +#: engine/core/templates/promocode_granted_email.html:106 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" @@ -2809,26 +2846,26 @@ msgstr "" "Se tiver alguma dúvida, entre em contato com nosso suporte em " "%(contact_email)s." -#: core/templates/digital_order_delivered_email.html:165 -#: core/templates/promocode_granted_email.html:108 +#: engine/core/templates/digital_order_delivered_email.html:165 +#: engine/core/templates/promocode_granted_email.html:108 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "Atenciosamente,
a equipe %(project_name)s" -#: core/templates/json_table_widget.html:5 +#: engine/core/templates/json_table_widget.html:5 msgid "key" msgstr "Chave" -#: core/templates/json_table_widget.html:40 +#: engine/core/templates/json_table_widget.html:40 msgid "Add Row" msgstr "Adicionar linha" -#: core/templates/promocode_granted_email.html:6 -#: core/templates/promocode_granted_email.html:99 +#: engine/core/templates/promocode_granted_email.html:6 +#: engine/core/templates/promocode_granted_email.html:99 msgid "promocode granted" msgstr "Código promocional concedido" -#: core/templates/promocode_granted_email.html:101 +#: engine/core/templates/promocode_granted_email.html:101 msgid "" "Thank you for staying with us! We have granted you with a promocode\n" " for " @@ -2836,33 +2873,34 @@ msgstr "" "Obrigado por ficar conosco! Nós lhe concedemos um código promocional\n" " para" -#: core/templates/shipped_order_created_email.html:101 -#: core/templates/shipped_order_delivered_email.html:101 +#: 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 " "estão os detalhes de seu pedido:" -#: core/templates/shipped_order_created_email.html:123 -#: core/templates/shipped_order_delivered_email.html:123 +#: engine/core/templates/shipped_order_created_email.html:123 +#: engine/core/templates/shipped_order_delivered_email.html:123 msgid "shipping price" msgstr "Preço da remessa" -#: core/templates/shipped_order_created_email.html:133 -#: core/templates/shipped_order_delivered_email.html:133 +#: engine/core/templates/shipped_order_created_email.html:133 +#: engine/core/templates/shipped_order_delivered_email.html:133 msgid "your order will be delivered to the following address:" msgstr "Seu pedido será entregue no seguinte endereço:" -#: core/templates/shipped_order_created_email.html:142 -#: core/templates/shipped_order_delivered_email.html:142 +#: engine/core/templates/shipped_order_created_email.html:142 +#: engine/core/templates/shipped_order_delivered_email.html:142 #, python-format msgid "best regards,
The %(config.PROJECT_NAME)s team" msgstr "Com os melhores cumprimentos,
A equipe %(config.PROJECT_NAME)s" -#: core/templates/shipped_order_created_email.html:147 -#: core/templates/shipped_order_delivered_email.html:147 +#: engine/core/templates/shipped_order_created_email.html:147 +#: engine/core/templates/shipped_order_delivered_email.html:147 msgid "" "all rights\n" " reserved" @@ -2870,58 +2908,58 @@ msgstr "" "todos os direitos\n" " reservados" -#: core/utils/caching.py:44 +#: engine/core/utils/caching.py:44 msgid "both data and timeout are required" msgstr "São necessários dados e tempo limite" -#: core/utils/caching.py:46 +#: engine/core/utils/caching.py:46 msgid "invalid timeout value, it must be between 0 and 216000 seconds" msgstr "Valor de tempo limite inválido, deve estar entre 0 e 216000 segundos" -#: core/utils/emailing.py:27 +#: engine/core/utils/emailing.py:27 #, python-brace-format msgid "{config.PROJECT_NAME} | contact us initiated" msgstr "{config.PROJECT_NAME} | entre em contato conosco iniciado" -#: core/utils/emailing.py:73 +#: engine/core/utils/emailing.py:73 #, python-brace-format msgid "{config.PROJECT_NAME} | order confirmation" msgstr "{config.PROJECT_NAME} | Confirmação do pedido" -#: core/utils/emailing.py:105 +#: engine/core/utils/emailing.py:105 #, python-brace-format msgid "{config.PROJECT_NAME} | order delivered" msgstr "{config.PROJECT_NAME} | Pedido entregue" -#: core/utils/emailing.py:188 +#: engine/core/utils/emailing.py:188 #, python-brace-format msgid "{config.PROJECT_NAME} | promocode granted" msgstr "{config.PROJECT_NAME} | promocode granted" -#: core/utils/messages.py:3 +#: engine/core/utils/messages.py:3 msgid "you do not have permission to perform this action." msgstr "Você não tem permissão para executar essa ação." -#: core/utils/nominatim.py:8 +#: engine/core/utils/nominatim.py:8 msgid "NOMINATIM_URL must be configured." msgstr "O parâmetro NOMINATIM_URL deve ser configurado!" -#: core/validators.py:16 +#: engine/core/validators.py:16 #, python-brace-format msgid "image dimensions should not exceed w{max_width} x h{max_height} pixels" msgstr "" "As dimensões da imagem não devem exceder w{max_width} x h{max_height} pixels" -#: core/views.py:72 +#: engine/core/views.py:71 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 "" "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." -#: core/views.py:87 +#: engine/core/views.py:86 msgid "" "Handles the detailed view response for a sitemap. This function processes " "the request, fetches the appropriate sitemap detail response, and sets the " @@ -2931,29 +2969,29 @@ msgstr "" "processa a solicitação, obtém a resposta detalhada apropriada do mapa do " "site e define o cabeçalho Content-Type para XML." -#: core/views.py:116 +#: engine/core/views.py:115 msgid "" "Returns a list of supported languages and their corresponding information." msgstr "" "Retorna uma lista de idiomas suportados e suas informações correspondentes." -#: core/views.py:148 +#: engine/core/views.py:147 msgid "Returns the parameters of the website as a JSON object." msgstr "Retorna os parâmetros do site como um objeto JSON." -#: core/views.py:167 +#: engine/core/views.py:166 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." -#: core/views.py:194 +#: engine/core/views.py:193 msgid "Handles `contact us` form submissions." msgstr "Trata os envios de formulários \"entre em contato conosco\"." -#: core/views.py:215 +#: engine/core/views.py:214 msgid "" "Handles requests for processing and validating URLs from incoming POST " "requests." @@ -2961,66 +2999,74 @@ msgstr "" "Trata as solicitações de processamento e validação de URLs de solicitações " "POST recebidas." -#: core/views.py:255 +#: engine/core/views.py:254 msgid "Handles global search queries." msgstr "Trata as consultas de pesquisa global." -#: core/views.py:270 +#: engine/core/views.py:269 msgid "Handles the logic of buying as a business without registration." msgstr "Lida com a lógica de comprar como uma empresa sem registro." -#: core/views.py:306 +#: engine/core/views.py:305 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." -#: core/views.py:316 +#: engine/core/views.py:315 msgid "order_product_uuid is required" msgstr "order_product_uuid é obrigatório" -#: core/views.py:322 +#: engine/core/views.py:321 msgid "you can only download the digital asset once" msgstr "Você só pode fazer o download do ativo digital uma vez" -#: core/views.py:325 +#: engine/core/views.py:324 msgid "the order must be paid before downloading the digital asset" msgstr "o pedido deve ser pago antes de fazer o download do ativo digital" -#: core/views.py:331 +#: engine/core/views.py:330 msgid "the order product does not have a product" msgstr "O produto do pedido não tem um produto" -#: core/views.py:369 +#: engine/core/views.py:368 msgid "favicon not found" msgstr "favicon não encontrado" -#: core/views.py:374 +#: engine/core/views.py:373 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." -#: core/views.py:386 +#: engine/core/views.py:385 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." -#: core/views.py:399 +#: engine/core/views.py:398 msgid "Returns current version of the eVibes. " msgstr "Retorna a versão atual do eVibes." -#: core/viewsets.py:137 +#: engine/core/viewsets.py:137 msgid "" "Defines a viewset for managing Evibes-related operations. The EvibesViewSet " "class inherits from ModelViewSet and provides functionality for handling " @@ -3028,19 +3074,18 @@ msgid "" "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 " +"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 " "inclui suporte para classes de serializadores dinâmicos com base na ação " "atual, permissões personalizáveis e formatos de renderização." -#: core/viewsets.py:157 +#: engine/core/viewsets.py:157 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, " @@ -3048,7 +3093,7 @@ msgstr "" "parte da camada de API do aplicativo e fornece uma maneira padronizada de " "processar solicitações e respostas para dados do AttributeGroup." -#: core/viewsets.py:176 +#: engine/core/viewsets.py:176 msgid "" "Handles operations related to Attribute objects within the application. " "Provides a set of API endpoints to interact with Attribute data. This class " @@ -3057,20 +3102,20 @@ 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." -#: core/viewsets.py:195 +#: engine/core/viewsets.py:195 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, " @@ -3079,7 +3124,7 @@ msgstr "" "serializadores apropriados para diferentes ações. Os recursos de filtragem " "são fornecidos por meio do DjangoFilterBackend." -#: core/viewsets.py:214 +#: engine/core/viewsets.py:214 msgid "" "Manages views for Category-related operations. The CategoryViewSet class is " "responsible for handling operations related to the Category model in the " @@ -3090,23 +3135,23 @@ 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." -#: core/viewsets.py:326 +#: engine/core/viewsets.py:326 msgid "" "Represents a viewset for managing Brand instances. This class provides " "functionality for querying, filtering, and serializing Brand objects. It " "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." -#: core/viewsets.py:438 +#: engine/core/viewsets.py:438 msgid "" "Manages operations related to the `Product` model in the system. This class " "provides a viewset for managing products, including their filtering, " @@ -3118,13 +3163,13 @@ msgid "" 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" -" à estrutura Django REST para operações de API RESTful. Inclui métodos para " +"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 " +"à 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." -#: core/viewsets.py:568 +#: engine/core/viewsets.py:568 msgid "" "Represents a viewset for managing Vendor objects. This viewset allows " "fetching, filtering, and serializing Vendor data. It defines the queryset, " @@ -3136,65 +3181,65 @@ 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." -#: core/viewsets.py:588 +#: engine/core/viewsets.py:588 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 `EvibesViewSet` 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" -" de filtragem do Django para consultar dados." +"feedback acessíveis. Ela estende a base `EvibesViewSet` e faz uso do sistema " +"de filtragem do Django para consultar dados." -#: core/viewsets.py:615 +#: engine/core/viewsets.py:615 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 " "específica que está sendo executada e impõe as permissões de acordo com a " "interação com os dados do pedido." -#: core/viewsets.py:813 +#: engine/core/viewsets.py:813 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" -#: core/viewsets.py:867 +#: engine/core/viewsets.py:867 msgid "Manages operations related to Product images in the application. " msgstr "Gerencia operações relacionadas a imagens de produtos no aplicativo." -#: core/viewsets.py:880 +#: engine/core/viewsets.py:880 msgid "" "Manages the retrieval and handling of PromoCode instances through various " "API actions." @@ -3202,20 +3247,20 @@ msgstr "" "Gerencia a recuperação e o manuseio de instâncias de PromoCode por meio de " "várias ações de API." -#: core/viewsets.py:902 +#: engine/core/viewsets.py:902 msgid "Represents a view set for managing promotions. " msgstr "Representa um conjunto de visualizações para gerenciar promoções." -#: core/viewsets.py:915 +#: engine/core/viewsets.py:915 msgid "Handles operations related to Stock data in the system." msgstr "Trata de operações relacionadas a dados de estoque no sistema." -#: core/viewsets.py:929 +#: engine/core/viewsets.py:929 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." @@ -3229,7 +3274,7 @@ msgstr "" "possam gerenciar suas próprias listas de desejos, a menos que sejam " "concedidas permissões explícitas." -#: core/viewsets.py:1044 +#: engine/core/viewsets.py:1044 msgid "" "This class provides viewset functionality for managing `Address` objects. " "The AddressViewSet class enables CRUD operations, filtering, and custom " @@ -3238,18 +3283,18 @@ 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." -#: core/viewsets.py:1111 +#: engine/core/viewsets.py:1111 #, python-brace-format msgid "Geocoding error: {e}" msgstr "Erro de geocodificação: {e}" -#: core/viewsets.py:1119 +#: engine/core/viewsets.py:1119 msgid "" "Handles operations related to Product Tags within the application. This " "class provides functionality for retrieving, filtering, and serializing " diff --git a/engine/core/locale/ro_RO/LC_MESSAGES/django.mo b/engine/core/locale/ro_RO/LC_MESSAGES/django.mo new file mode 100644 index 00000000..f8a0d006 Binary files /dev/null and b/engine/core/locale/ro_RO/LC_MESSAGES/django.mo differ diff --git a/core/locale/ro_RO/LC_MESSAGES/django.po b/engine/core/locale/ro_RO/LC_MESSAGES/django.po similarity index 69% rename from core/locale/ro_RO/LC_MESSAGES/django.po rename to engine/core/locale/ro_RO/LC_MESSAGES/django.po index 4a691f72..c4603faf 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,435 +13,440 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: core/abstract.py:12 +#: engine/core/abstract.py:12 msgid "unique id" msgstr "ID unic" -#: core/abstract.py:13 +#: engine/core/abstract.py:13 msgid "unique id is used to surely identify any database object" msgstr "" "ID-ul unic este utilizat pentru a identifica cu siguranță orice obiect din " "baza de date" -#: core/abstract.py:20 +#: engine/core/abstract.py:20 msgid "is active" msgstr "Este activ" -#: core/abstract.py:21 +#: engine/core/abstract.py:21 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ă" -#: core/abstract.py:23 core/choices.py:18 +#: engine/core/abstract.py:23 engine/core/choices.py:18 msgid "created" msgstr "Creat" -#: core/abstract.py:23 +#: engine/core/abstract.py:23 msgid "when the object first appeared on the database" msgstr "Când a apărut pentru prima dată obiectul în baza de date" -#: core/abstract.py:24 +#: engine/core/abstract.py:24 msgid "modified" msgstr "Modificat" -#: core/abstract.py:24 +#: engine/core/abstract.py:24 msgid "when the object was last modified" msgstr "Când a fost editat obiectul ultima dată" -#: core/admin.py:68 +#: engine/core/admin.py:68 msgid "translations" msgstr "Traduceri" -#: core/admin.py:72 +#: engine/core/admin.py:72 msgid "general" msgstr "Generalități" -#: core/admin.py:74 +#: engine/core/admin.py:74 msgid "relations" msgstr "Relații" -#: core/admin.py:76 +#: engine/core/admin.py:76 msgid "additional info" msgstr "informații suplimentare" -#: core/admin.py:94 +#: engine/core/admin.py:94 msgid "metadata" msgstr "Metadate" -#: core/admin.py:101 +#: engine/core/admin.py:101 msgid "timestamps" msgstr "Timestamps" -#: core/admin.py:116 +#: engine/core/admin.py:116 #, python-format msgid "activate selected %(verbose_name_plural)s" msgstr "Activați %(verbose_name_plural)s selectat" -#: core/admin.py:121 +#: engine/core/admin.py:121 msgid "selected items have been activated." msgstr "Articolele selectate au fost activate!" -#: core/admin.py:127 +#: engine/core/admin.py:127 #, python-format msgid "deactivate selected %(verbose_name_plural)s" msgstr "Dezactivați %(verbose_name_plural)s selectat" -#: core/admin.py:132 +#: engine/core/admin.py:132 msgid "selected items have been deactivated." msgstr "Articolele selectate au fost dezactivate!" -#: core/admin.py:144 core/graphene/object_types.py:582 -#: core/graphene/object_types.py:589 core/models.py:783 core/models.py:791 +#: engine/core/admin.py:144 engine/core/graphene/object_types.py:586 +#: engine/core/graphene/object_types.py:593 engine/core/models.py:794 +#: engine/core/models.py:802 msgid "attribute value" msgstr "Atribut Valoare" -#: core/admin.py:145 core/graphene/object_types.py:75 core/models.py:792 +#: engine/core/admin.py:145 engine/core/graphene/object_types.py:75 +#: engine/core/models.py:803 msgid "attribute values" msgstr "Valori ale atributului" -#: core/admin.py:156 +#: engine/core/admin.py:156 msgid "image" msgstr "Imagine" -#: core/admin.py:157 core/graphene/object_types.py:474 +#: engine/core/admin.py:157 engine/core/graphene/object_types.py:474 msgid "images" msgstr "Imagini" -#: core/admin.py:168 core/models.py:559 +#: engine/core/admin.py:169 engine/core/models.py:559 msgid "stock" msgstr "Stoc" -#: core/admin.py:169 core/graphene/object_types.py:636 +#: engine/core/admin.py:170 engine/core/graphene/object_types.py:640 msgid "stocks" msgstr "Stocuri" -#: core/admin.py:182 core/models.py:1744 +#: engine/core/admin.py:183 engine/core/models.py:1804 msgid "order product" msgstr "Comanda Produs" -#: core/admin.py:183 core/graphene/object_types.py:389 core/models.py:1745 +#: engine/core/admin.py:184 engine/core/graphene/object_types.py:389 +#: engine/core/models.py:1805 msgid "order products" msgstr "Comandați produse" -#: core/admin.py:196 core/admin.py:197 +#: engine/core/admin.py:197 engine/core/admin.py:198 msgid "children" msgstr "Copii" -#: core/admin.py:965 +#: engine/core/admin.py:969 msgid "Config" msgstr "Configurare" -#: core/apps.py:8 +#: engine/core/apps.py:8 msgid "core" msgstr "Nucleu" -#: core/choices.py:4 core/choices.py:20 +#: engine/core/choices.py:4 engine/core/choices.py:20 msgid "finished" msgstr "Terminat" -#: core/choices.py:5 core/choices.py:19 +#: engine/core/choices.py:5 engine/core/choices.py:19 msgid "delivering" msgstr "Livrarea" -#: core/choices.py:6 +#: engine/core/choices.py:6 msgid "delivered" msgstr "Livrat" -#: core/choices.py:7 +#: engine/core/choices.py:7 msgid "canceled" msgstr "Anulată" -#: core/choices.py:8 core/choices.py:16 core/choices.py:24 +#: engine/core/choices.py:8 engine/core/choices.py:16 engine/core/choices.py:24 msgid "failed" msgstr "Eșuat" -#: core/choices.py:9 core/choices.py:15 +#: engine/core/choices.py:9 engine/core/choices.py:15 msgid "pending" msgstr "În așteptare" -#: core/choices.py:10 +#: engine/core/choices.py:10 msgid "accepted" msgstr "Acceptat" -#: core/choices.py:11 +#: engine/core/choices.py:11 msgid "money returned" msgstr "Bani returnați" -#: core/choices.py:17 +#: engine/core/choices.py:17 msgid "payment" msgstr "Plata" -#: core/choices.py:21 +#: engine/core/choices.py:21 msgid "momental" msgstr "Momental" -#: core/choices.py:24 +#: engine/core/choices.py:24 msgid "successful" msgstr "De succes" -#: core/docs/drf/views.py:17 core/graphene/mutations.py:38 +#: engine/core/docs/drf/views.py:17 engine/core/graphene/mutations.py:38 msgid "cache I/O" msgstr "Cache I/O" -#: core/docs/drf/views.py:19 +#: engine/core/docs/drf/views.py:19 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 "" "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." -#: core/docs/drf/views.py:32 +#: engine/core/docs/drf/views.py:32 msgid "get a list of supported languages" msgstr "Obțineți o listă a limbilor acceptate" -#: core/docs/drf/views.py:41 +#: engine/core/docs/drf/views.py:41 msgid "get application's exposable parameters" msgstr "Obțineți parametrii expunibili ai aplicației" -#: core/docs/drf/views.py:48 +#: engine/core/docs/drf/views.py:48 msgid "send a message to the support team" msgstr "Trimiteți un mesaj echipei de asistență" -#: core/docs/drf/views.py:59 core/graphene/mutations.py:58 +#: engine/core/docs/drf/views.py:59 engine/core/graphene/mutations.py:58 msgid "request a CORSed URL" msgstr "Solicitați un URL CORSed. Numai https este permis." -#: core/docs/drf/views.py:85 +#: engine/core/docs/drf/views.py:85 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" -#: core/docs/drf/views.py:91 +#: engine/core/docs/drf/views.py:91 msgid "purchase an order as a business" msgstr "Achiziționați o comandă ca întreprindere" -#: core/docs/drf/views.py:98 +#: engine/core/docs/drf/views.py:98 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." -#: core/docs/drf/viewsets.py:58 +#: engine/core/docs/drf/viewsets.py:58 msgid "list all attribute groups (simple view)" msgstr "Lista tuturor grupurilor de atribute (vizualizare simplă)" -#: core/docs/drf/viewsets.py:62 +#: engine/core/docs/drf/viewsets.py:62 msgid "retrieve a single attribute group (detailed view)" msgstr "Recuperarea unui singur grup de atribute (vedere detaliată)" -#: core/docs/drf/viewsets.py:66 +#: engine/core/docs/drf/viewsets.py:66 msgid "create an attribute group" msgstr "Crearea unui grup de atribute" -#: core/docs/drf/viewsets.py:70 +#: engine/core/docs/drf/viewsets.py:70 msgid "delete an attribute group" msgstr "Ștergerea unui grup de atribute" -#: core/docs/drf/viewsets.py:74 +#: engine/core/docs/drf/viewsets.py:74 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" -#: core/docs/drf/viewsets.py:78 -msgid "" -"rewrite some fields of an existing attribute group saving non-editables" +#: engine/core/docs/drf/viewsets.py:78 +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" -#: core/docs/drf/viewsets.py:85 +#: engine/core/docs/drf/viewsets.py:85 msgid "list all attributes (simple view)" msgstr "Lista tuturor atributelor (vizualizare simplă)" -#: core/docs/drf/viewsets.py:89 +#: engine/core/docs/drf/viewsets.py:89 msgid "retrieve a single attribute (detailed view)" msgstr "Recuperarea unui singur atribut (vedere detaliată)" -#: core/docs/drf/viewsets.py:93 +#: engine/core/docs/drf/viewsets.py:93 msgid "create an attribute" msgstr "Crearea unui atribut" -#: core/docs/drf/viewsets.py:97 +#: engine/core/docs/drf/viewsets.py:97 msgid "delete an attribute" msgstr "Ștergerea unui atribut" -#: core/docs/drf/viewsets.py:101 +#: engine/core/docs/drf/viewsets.py:101 msgid "rewrite an existing attribute saving non-editables" msgstr "Rescrierea unui atribut existent cu salvarea elementelor needitabile" -#: core/docs/drf/viewsets.py:105 +#: engine/core/docs/drf/viewsets.py:105 msgid "rewrite some fields of an existing attribute saving non-editables" msgstr "" "Rescrieți unele câmpuri ale unui atribut existent salvând elementele " "needitabile" -#: core/docs/drf/viewsets.py:112 +#: engine/core/docs/drf/viewsets.py:112 msgid "list all attribute values (simple view)" msgstr "Lista tuturor valorilor atributelor (vizualizare simplă)" -#: core/docs/drf/viewsets.py:116 +#: engine/core/docs/drf/viewsets.py:116 msgid "retrieve a single attribute value (detailed view)" msgstr "Recuperarea valorii unui singur atribut (vedere detaliată)" -#: core/docs/drf/viewsets.py:120 +#: engine/core/docs/drf/viewsets.py:120 msgid "create an attribute value" msgstr "Crearea unei valori de atribut" -#: core/docs/drf/viewsets.py:124 +#: engine/core/docs/drf/viewsets.py:124 msgid "delete an attribute value" msgstr "Ștergerea unei valori de atribut" -#: core/docs/drf/viewsets.py:128 +#: engine/core/docs/drf/viewsets.py:128 msgid "rewrite an existing attribute value saving non-editables" msgstr "" "Rescrierea unei valori de atribut existente care salvează non-editabile" -#: core/docs/drf/viewsets.py:132 -msgid "" -"rewrite some fields of an existing attribute value saving non-editables" +#: engine/core/docs/drf/viewsets.py:132 +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" -#: core/docs/drf/viewsets.py:139 core/docs/drf/viewsets.py:140 +#: engine/core/docs/drf/viewsets.py:139 engine/core/docs/drf/viewsets.py:140 msgid "list all categories (simple view)" msgstr "Lista tuturor categoriilor (vizualizare simplă)" -#: core/docs/drf/viewsets.py:144 core/docs/drf/viewsets.py:145 +#: engine/core/docs/drf/viewsets.py:144 engine/core/docs/drf/viewsets.py:145 msgid "retrieve a single category (detailed view)" msgstr "Recuperarea unei singure categorii (vedere detaliată)" -#: core/docs/drf/viewsets.py:149 core/docs/drf/viewsets.py:150 +#: engine/core/docs/drf/viewsets.py:150 engine/core/docs/drf/viewsets.py:183 +msgid "Category UUID or slug" +msgstr "Categorie UUID sau slug" + +#: engine/core/docs/drf/viewsets.py:157 engine/core/docs/drf/viewsets.py:158 msgid "create a category" msgstr "Creați o categorie" -#: core/docs/drf/viewsets.py:154 core/docs/drf/viewsets.py:155 +#: engine/core/docs/drf/viewsets.py:162 engine/core/docs/drf/viewsets.py:163 msgid "delete a category" msgstr "Ștergeți o categorie" -#: core/docs/drf/viewsets.py:159 core/docs/drf/viewsets.py:160 +#: engine/core/docs/drf/viewsets.py:167 engine/core/docs/drf/viewsets.py:168 msgid "rewrite an existing category saving non-editables" msgstr "Rescrieți o categorie existentă salvând non-editabile" -#: core/docs/drf/viewsets.py:164 core/docs/drf/viewsets.py:165 +#: engine/core/docs/drf/viewsets.py:172 engine/core/docs/drf/viewsets.py:173 msgid "rewrite some fields of an existing category saving non-editables" msgstr "" "Rescrieți unele câmpuri ale unei categorii existente, salvând elementele " "needitabile" -#: core/docs/drf/viewsets.py:169 core/docs/drf/viewsets.py:501 -#: core/graphene/object_types.py:117 core/graphene/object_types.py:207 -#: core/graphene/object_types.py:482 +#: engine/core/docs/drf/viewsets.py:177 engine/core/docs/drf/viewsets.py:517 +#: engine/core/graphene/object_types.py:117 +#: engine/core/graphene/object_types.py:207 +#: engine/core/graphene/object_types.py:482 msgid "SEO Meta snapshot" msgstr "SEO Meta snapshot" -#: core/docs/drf/viewsets.py:170 +#: engine/core/docs/drf/viewsets.py:178 msgid "returns a snapshot of the category's SEO meta data" msgstr "Returnează un instantaneu al metadatelor SEO ale categoriei" -#: core/docs/drf/viewsets.py:175 -msgid "Category UUID or slug" -msgstr "Categorie UUID sau slug" - -#: core/docs/drf/viewsets.py:188 +#: engine/core/docs/drf/viewsets.py:196 msgid "list all orders (simple view)" msgstr "Lista tuturor categoriilor (vizualizare simplă)" -#: core/docs/drf/viewsets.py:189 +#: engine/core/docs/drf/viewsets.py:197 msgid "for non-staff users, only their own orders are returned." msgstr "" "Pentru utilizatorii care nu fac parte din personal, sunt returnate doar " "comenzile proprii." -#: core/docs/drf/viewsets.py:195 +#: engine/core/docs/drf/viewsets.py:203 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" -#: core/docs/drf/viewsets.py:202 +#: engine/core/docs/drf/viewsets.py:210 msgid "Filter orders with buy_time >= this ISO 8601 datetime" msgstr "Filtrați comenzile cu buy_time >= această dată ISO 8601" -#: core/docs/drf/viewsets.py:207 +#: engine/core/docs/drf/viewsets.py:215 msgid "Filter orders with buy_time <= this ISO 8601 datetime" msgstr "Filtrează comenzile cu buy_time <= această dată ISO 8601" -#: core/docs/drf/viewsets.py:212 +#: engine/core/docs/drf/viewsets.py:220 msgid "Filter by exact order UUID" msgstr "Filtrare după UUID exact al comenzii" -#: core/docs/drf/viewsets.py:217 +#: engine/core/docs/drf/viewsets.py:225 msgid "Filter by exact human-readable order ID" msgstr "Filtrați după ID-ul exact al comenzii care poate fi citit de către om" -#: core/docs/drf/viewsets.py:222 +#: engine/core/docs/drf/viewsets.py:230 msgid "Filter by user's email (case-insensitive exact match)" msgstr "" "Filtrare în funcție de adresa de e-mail a utilizatorului (potrivire exactă " "insensibilă la majuscule)" -#: core/docs/drf/viewsets.py:227 +#: engine/core/docs/drf/viewsets.py:235 msgid "Filter by user's UUID" msgstr "Filtrare după UUID-ul utilizatorului" -#: core/docs/drf/viewsets.py:232 +#: engine/core/docs/drf/viewsets.py:240 msgid "Filter by order status (case-insensitive substring match)" msgstr "" "Filtrare în funcție de starea comenzii (potrivire a substringurilor fără " "deosebire de majuscule)" -#: core/docs/drf/viewsets.py:238 +#: engine/core/docs/drf/viewsets.py:246 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 " "ordine descrescătoare (de exemplu, \"-buy_time\")." -#: core/docs/drf/viewsets.py:247 +#: engine/core/docs/drf/viewsets.py:255 msgid "retrieve a single order (detailed view)" msgstr "Recuperarea unei singure categorii (vedere detaliată)" -#: core/docs/drf/viewsets.py:251 +#: engine/core/docs/drf/viewsets.py:260 +msgid "Order UUID or human-readable id" +msgstr "UUID al comenzii sau identificator lizibil de către om" + +#: engine/core/docs/drf/viewsets.py:267 msgid "create an order" msgstr "Crearea unui atribut" -#: core/docs/drf/viewsets.py:252 +#: engine/core/docs/drf/viewsets.py:268 msgid "doesn't work for non-staff users." msgstr "Nu funcționează pentru utilizatorii care nu fac parte din personal." -#: core/docs/drf/viewsets.py:256 +#: engine/core/docs/drf/viewsets.py:272 msgid "delete an order" msgstr "Ștergerea unui atribut" -#: core/docs/drf/viewsets.py:260 +#: engine/core/docs/drf/viewsets.py:276 msgid "rewrite an existing order saving non-editables" msgstr "Rescrieți o categorie existentă salvând non-editabile" -#: core/docs/drf/viewsets.py:264 +#: engine/core/docs/drf/viewsets.py:280 msgid "rewrite some fields of an existing order saving non-editables" msgstr "" "Rescrieți unele câmpuri ale unei categorii existente, salvând elementele " "needitabile" -#: core/docs/drf/viewsets.py:268 +#: engine/core/docs/drf/viewsets.py:284 msgid "purchase an order" msgstr "Prețul de achiziție la momentul comenzii" -#: core/docs/drf/viewsets.py:270 +#: engine/core/docs/drf/viewsets.py:286 msgid "" "finalizes the order purchase. if `force_balance` is used, the purchase is " "completed using the user's balance; if `force_payment` is used, a " @@ -451,19 +456,19 @@ msgstr "" "achiziția este finalizată utilizând soldul utilizatorului; Dacă se " "utilizează `force_payment`, este inițiată o tranzacție." -#: core/docs/drf/viewsets.py:282 core/graphene/mutations.py:335 +#: engine/core/docs/drf/viewsets.py:298 engine/core/graphene/mutations.py:335 msgid "purchase an order without account creation" msgstr "achiziționarea unei comenzi fără crearea unui cont" -#: core/docs/drf/viewsets.py:283 +#: engine/core/docs/drf/viewsets.py:299 msgid "finalizes the order purchase for a non-registered user." msgstr "finalizează achiziția comenzii pentru un utilizator neînregistrat." -#: core/docs/drf/viewsets.py:291 +#: engine/core/docs/drf/viewsets.py:307 msgid "add product to order" msgstr "Adăugați un produs la comandă" -#: core/docs/drf/viewsets.py:292 +#: engine/core/docs/drf/viewsets.py:308 msgid "" "adds a product to an order using the provided `product_uuid` and " "`attributes`." @@ -471,11 +476,11 @@ msgstr "" "Adaugă un produs la o comandă folosind `product_uuid` și `attributes` " "furnizate." -#: core/docs/drf/viewsets.py:297 +#: engine/core/docs/drf/viewsets.py:313 msgid "add a list of products to order, quantities will not count" msgstr "Adăugați o listă de produse la comandă, cantitățile nu vor conta" -#: core/docs/drf/viewsets.py:298 +#: engine/core/docs/drf/viewsets.py:314 msgid "" "adds a list of products to an order using the provided `product_uuid` and " "`attributes`." @@ -483,11 +488,11 @@ msgstr "" "Adaugă o listă de produse la o comandă folosind `product_uuid` și " "`attributes` furnizate." -#: core/docs/drf/viewsets.py:303 +#: engine/core/docs/drf/viewsets.py:319 msgid "remove product from order" msgstr "Eliminați un produs din comandă" -#: core/docs/drf/viewsets.py:304 +#: engine/core/docs/drf/viewsets.py:320 msgid "" "removes a product from an order using the provided `product_uuid` and " "`attributes`." @@ -495,12 +500,12 @@ msgstr "" "Elimină un produs dintr-o comandă folosind `product_uuid` și `attributes` " "furnizate." -#: core/docs/drf/viewsets.py:309 +#: engine/core/docs/drf/viewsets.py:325 msgid "remove product from order, quantities will not count" msgstr "" "Eliminați un produs din comandă, cantitățile nu vor fi luate în considerare" -#: core/docs/drf/viewsets.py:310 +#: engine/core/docs/drf/viewsets.py:326 msgid "" "removes a list of products from an order using the provided `product_uuid` " "and `attributes`" @@ -508,806 +513,829 @@ msgstr "" "Îndepărtează o listă de produse dintr-o comandă folosind `product_uuid` și " "`attributes` furnizate." -#: core/docs/drf/viewsets.py:318 +#: engine/core/docs/drf/viewsets.py:334 msgid "list all wishlists (simple view)" msgstr "Lista tuturor atributelor (vizualizare simplă)" -#: core/docs/drf/viewsets.py:319 +#: engine/core/docs/drf/viewsets.py:335 msgid "for non-staff users, only their own wishlists are returned." msgstr "" "Pentru utilizatorii care nu fac parte din personal, sunt returnate doar " "propriile liste de dorințe." -#: core/docs/drf/viewsets.py:323 +#: engine/core/docs/drf/viewsets.py:339 msgid "retrieve a single wishlist (detailed view)" msgstr "Recuperarea unui singur atribut (vedere detaliată)" -#: core/docs/drf/viewsets.py:327 +#: engine/core/docs/drf/viewsets.py:343 msgid "create an wishlist" msgstr "Crearea unui atribut" -#: core/docs/drf/viewsets.py:328 +#: engine/core/docs/drf/viewsets.py:344 msgid "Doesn't work for non-staff users." msgstr "Nu funcționează pentru utilizatorii care nu fac parte din personal." -#: core/docs/drf/viewsets.py:332 +#: engine/core/docs/drf/viewsets.py:348 msgid "delete an wishlist" msgstr "Ștergerea unui atribut" -#: core/docs/drf/viewsets.py:336 +#: engine/core/docs/drf/viewsets.py:352 msgid "rewrite an existing wishlist saving non-editables" msgstr "Rescrierea unui atribut existent cu salvarea elementelor needitabile" -#: core/docs/drf/viewsets.py:340 +#: engine/core/docs/drf/viewsets.py:356 msgid "rewrite some fields of an existing wishlist saving non-editables" msgstr "" "Rescrieți unele câmpuri ale unui atribut existent salvând elementele " "needitabile" -#: core/docs/drf/viewsets.py:344 +#: engine/core/docs/drf/viewsets.py:360 msgid "add product to wishlist" msgstr "Adăugați un produs la comandă" -#: core/docs/drf/viewsets.py:345 +#: engine/core/docs/drf/viewsets.py:361 msgid "adds a product to an wishlist using the provided `product_uuid`" msgstr "" "Adaugă un produs la o listă de dorințe folosind `product_uuid` furnizat" -#: core/docs/drf/viewsets.py:350 +#: engine/core/docs/drf/viewsets.py:366 msgid "remove product from wishlist" msgstr "Eliminați un produs din lista de dorințe" -#: core/docs/drf/viewsets.py:351 +#: engine/core/docs/drf/viewsets.py:367 msgid "removes a product from an wishlist using the provided `product_uuid`" msgstr "" "Înlătură un produs dintr-o listă de dorințe folosind `product_uuid` furnizat" -#: core/docs/drf/viewsets.py:356 +#: engine/core/docs/drf/viewsets.py:372 msgid "add many products to wishlist" msgstr "Adăugați mai multe produse la lista de dorințe" -#: core/docs/drf/viewsets.py:357 +#: engine/core/docs/drf/viewsets.py:373 msgid "adds many products to an wishlist using the provided `product_uuids`" msgstr "" "Adaugă mai multe produse la o listă de dorințe folosind `product_uuids` " "furnizat" -#: core/docs/drf/viewsets.py:362 +#: engine/core/docs/drf/viewsets.py:378 msgid "remove many products from wishlist" msgstr "Eliminați un produs din comandă" -#: core/docs/drf/viewsets.py:363 +#: engine/core/docs/drf/viewsets.py:379 msgid "" "removes many products from an wishlist using the provided `product_uuids`" msgstr "" "Îndepărtează mai multe produse dintr-o listă de dorințe folosind " "`product_uuids` furnizat" -#: core/docs/drf/viewsets.py:370 +#: engine/core/docs/drf/viewsets.py:386 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`" -#: core/docs/drf/viewsets.py:386 core/docs/drf/viewsets.py:387 +#: engine/core/docs/drf/viewsets.py:402 engine/core/docs/drf/viewsets.py:403 msgid "list all products (simple view)" msgstr "Listează toate produsele (vizualizare simplă)" -#: core/docs/drf/viewsets.py:392 +#: engine/core/docs/drf/viewsets.py:408 msgid "(exact) Product UUID" msgstr "(exact) UUID al produsului" -#: core/docs/drf/viewsets.py:399 +#: engine/core/docs/drf/viewsets.py:415 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" -#: core/docs/drf/viewsets.py:413 core/docs/drf/viewsets.py:414 +#: engine/core/docs/drf/viewsets.py:429 engine/core/docs/drf/viewsets.py:430 msgid "retrieve a single product (detailed view)" msgstr "Recuperarea unui singur produs (vedere detaliată)" -#: core/docs/drf/viewsets.py:419 core/docs/drf/viewsets.py:443 -#: core/docs/drf/viewsets.py:459 core/docs/drf/viewsets.py:475 -#: core/docs/drf/viewsets.py:491 core/docs/drf/viewsets.py:507 +#: engine/core/docs/drf/viewsets.py:435 engine/core/docs/drf/viewsets.py:459 +#: engine/core/docs/drf/viewsets.py:475 engine/core/docs/drf/viewsets.py:491 +#: engine/core/docs/drf/viewsets.py:507 engine/core/docs/drf/viewsets.py:523 msgid "Product UUID or slug" msgstr "UUID sau Slug al produsului" -#: core/docs/drf/viewsets.py:429 core/docs/drf/viewsets.py:430 +#: engine/core/docs/drf/viewsets.py:445 engine/core/docs/drf/viewsets.py:446 msgid "create a product" msgstr "Creați un produs" -#: core/docs/drf/viewsets.py:437 core/docs/drf/viewsets.py:438 +#: engine/core/docs/drf/viewsets.py:453 engine/core/docs/drf/viewsets.py:454 msgid "rewrite an existing product, preserving non-editable fields" msgstr "" "Rescrierea unui produs existent, păstrând câmpurile care nu pot fi editate" -#: core/docs/drf/viewsets.py:453 core/docs/drf/viewsets.py:454 +#: engine/core/docs/drf/viewsets.py:469 engine/core/docs/drf/viewsets.py:470 msgid "" "update some fields of an existing product, preserving non-editable fields" msgstr "" "Actualizarea unor câmpuri ale unui produs existent, păstrând câmpurile " "needitabile" -#: core/docs/drf/viewsets.py:469 core/docs/drf/viewsets.py:470 +#: engine/core/docs/drf/viewsets.py:485 engine/core/docs/drf/viewsets.py:486 msgid "delete a product" msgstr "Ștergeți un produs" -#: core/docs/drf/viewsets.py:485 core/docs/drf/viewsets.py:486 +#: engine/core/docs/drf/viewsets.py:501 engine/core/docs/drf/viewsets.py:502 msgid "lists all permitted feedbacks for a product" msgstr "listează toate feedback-urile permise pentru un produs" -#: core/docs/drf/viewsets.py:502 +#: engine/core/docs/drf/viewsets.py:518 msgid "returns a snapshot of the product's SEO meta data" msgstr "Returnează un instantaneu al metadatelor SEO ale produsului" -#: core/docs/drf/viewsets.py:520 +#: engine/core/docs/drf/viewsets.py:536 msgid "list all addresses" msgstr "Enumerați toate adresele" -#: core/docs/drf/viewsets.py:527 +#: engine/core/docs/drf/viewsets.py:543 msgid "retrieve a single address" msgstr "Recuperarea unei singure adrese" -#: core/docs/drf/viewsets.py:534 +#: engine/core/docs/drf/viewsets.py:550 msgid "create a new address" msgstr "Creați o adresă nouă" -#: core/docs/drf/viewsets.py:542 +#: engine/core/docs/drf/viewsets.py:558 msgid "delete an address" msgstr "Ștergeți o adresă" -#: core/docs/drf/viewsets.py:549 +#: engine/core/docs/drf/viewsets.py:565 msgid "update an entire address" msgstr "Actualizarea unei adrese întregi" -#: core/docs/drf/viewsets.py:557 +#: engine/core/docs/drf/viewsets.py:573 msgid "partially update an address" msgstr "Actualizarea parțială a unei adrese" -#: core/docs/drf/viewsets.py:565 +#: engine/core/docs/drf/viewsets.py:581 msgid "autocomplete address suggestions" msgstr "Autocompletare adresă de intrare" -#: core/docs/drf/viewsets.py:570 +#: engine/core/docs/drf/viewsets.py:586 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" -#: core/docs/drf/viewsets.py:576 +#: engine/core/docs/drf/viewsets.py:592 msgid "limit the results amount, 1 < limit < 10, default: 5" msgstr "limitează cantitatea de rezultate, 1 < limit < 10, implicit: 5" -#: core/docs/drf/viewsets.py:589 +#: engine/core/docs/drf/viewsets.py:605 msgid "list all feedbacks (simple view)" msgstr "lista tuturor feedback-urilor (vizualizare simplă)" -#: core/docs/drf/viewsets.py:593 +#: engine/core/docs/drf/viewsets.py:609 msgid "retrieve a single feedback (detailed view)" msgstr "recuperați un singur feedback (vizualizare detaliată)" -#: core/docs/drf/viewsets.py:597 +#: engine/core/docs/drf/viewsets.py:613 msgid "create a feedback" msgstr "creați un feedback" -#: core/docs/drf/viewsets.py:601 +#: engine/core/docs/drf/viewsets.py:617 msgid "delete a feedback" msgstr "ștergeți un feedback" -#: core/docs/drf/viewsets.py:605 +#: engine/core/docs/drf/viewsets.py:621 msgid "rewrite an existing feedback saving non-editables" msgstr "rescrierea unui feedback existent cu salvarea elementelor needitabile" -#: core/docs/drf/viewsets.py:609 +#: engine/core/docs/drf/viewsets.py:625 msgid "rewrite some fields of an existing feedback saving non-editables" msgstr "" "Rescrieți unele câmpuri ale unei categorii existente, salvând elementele " "needitabile" -#: core/docs/drf/viewsets.py:616 +#: engine/core/docs/drf/viewsets.py:632 msgid "list all order–product relations (simple view)" msgstr "lista tuturor relațiilor comandă-produs (vedere simplă)" -#: core/docs/drf/viewsets.py:623 +#: engine/core/docs/drf/viewsets.py:639 msgid "retrieve a single order–product relation (detailed view)" msgstr "recuperarea unei singure relații comandă-produs (vedere detaliată)" -#: core/docs/drf/viewsets.py:630 +#: engine/core/docs/drf/viewsets.py:646 msgid "create a new order–product relation" msgstr "crearea unei noi relații comandă-produs" -#: core/docs/drf/viewsets.py:637 +#: engine/core/docs/drf/viewsets.py:653 msgid "replace an existing order–product relation" msgstr "să înlocuiască o relație comandă-produs existentă" -#: core/docs/drf/viewsets.py:644 +#: engine/core/docs/drf/viewsets.py:660 msgid "partially update an existing order–product relation" msgstr "actualizarea parțială a unei relații comandă-produs existente" -#: core/docs/drf/viewsets.py:651 +#: engine/core/docs/drf/viewsets.py:667 msgid "delete an order–product relation" msgstr "ștergeți o relație comandă-produs" -#: core/docs/drf/viewsets.py:658 +#: engine/core/docs/drf/viewsets.py:674 msgid "add or remove feedback on an order–product relation" msgstr "adăugarea sau eliminarea feedback-ului într-o relație comandă-produs" -#: core/docs/drf/viewsets.py:672 +#: engine/core/docs/drf/viewsets.py:688 msgid "list all brands (simple view)" msgstr "Lista tuturor mărcilor (vizualizare simplă)" -#: core/docs/drf/viewsets.py:676 +#: engine/core/docs/drf/viewsets.py:692 msgid "retrieve a single brand (detailed view)" msgstr "Recuperarea unei singure mărci (vedere detaliată)" -#: core/docs/drf/viewsets.py:680 +#: engine/core/docs/drf/viewsets.py:697 engine/core/docs/drf/viewsets.py:725 +msgid "Brand UUID or slug" +msgstr "Marca UUID sau slug" + +#: engine/core/docs/drf/viewsets.py:704 msgid "create a brand" msgstr "Creați un brand" -#: core/docs/drf/viewsets.py:684 +#: engine/core/docs/drf/viewsets.py:708 msgid "delete a brand" msgstr "Ștergeți un brand" -#: core/docs/drf/viewsets.py:688 +#: engine/core/docs/drf/viewsets.py:712 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" -#: core/docs/drf/viewsets.py:692 +#: engine/core/docs/drf/viewsets.py:716 msgid "rewrite some fields of an existing brand saving non-editables" msgstr "" "Rescrieți unele câmpuri ale unei categorii existente, salvând elementele " "needitabile" -#: core/docs/drf/viewsets.py:696 +#: engine/core/docs/drf/viewsets.py:720 msgid "SEO Meta snapshot for brand" msgstr "SEO Meta snapshot pentru brand" -#: core/docs/drf/viewsets.py:703 +#: engine/core/docs/drf/viewsets.py:735 msgid "list all vendors (simple view)" msgstr "Lista tuturor furnizorilor (vizualizare simplă)" -#: core/docs/drf/viewsets.py:707 +#: engine/core/docs/drf/viewsets.py:739 msgid "retrieve a single vendor (detailed view)" msgstr "Recuperarea unui singur furnizor (vedere detaliată)" -#: core/docs/drf/viewsets.py:711 +#: engine/core/docs/drf/viewsets.py:743 msgid "create a vendor" msgstr "Creați un furnizor" -#: core/docs/drf/viewsets.py:715 +#: engine/core/docs/drf/viewsets.py:747 msgid "delete a vendor" msgstr "Ștergeți un furnizor" -#: core/docs/drf/viewsets.py:719 +#: engine/core/docs/drf/viewsets.py:751 msgid "rewrite an existing vendor saving non-editables" msgstr "Rescrierea unui furnizor existent cu salvarea elementelor needitabile" -#: core/docs/drf/viewsets.py:723 +#: engine/core/docs/drf/viewsets.py:755 msgid "rewrite some fields of an existing vendor saving non-editables" msgstr "" "Rescrieți unele câmpuri ale unei categorii existente, salvând elementele " "needitabile" -#: core/docs/drf/viewsets.py:730 +#: engine/core/docs/drf/viewsets.py:762 msgid "list all product images (simple view)" msgstr "Listați toate imaginile produsului (vizualizare simplă)" -#: core/docs/drf/viewsets.py:734 +#: engine/core/docs/drf/viewsets.py:766 msgid "retrieve a single product image (detailed view)" msgstr "Preluarea unei singure imagini a produsului (vedere detaliată)" -#: core/docs/drf/viewsets.py:738 +#: engine/core/docs/drf/viewsets.py:770 msgid "create a product image" msgstr "Creați o imagine a produsului" -#: core/docs/drf/viewsets.py:742 +#: engine/core/docs/drf/viewsets.py:774 msgid "delete a product image" msgstr "Ștergeți imaginea unui produs" -#: core/docs/drf/viewsets.py:746 +#: engine/core/docs/drf/viewsets.py:778 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" -#: core/docs/drf/viewsets.py:750 +#: engine/core/docs/drf/viewsets.py:782 msgid "rewrite some fields of an existing product image saving non-editables" msgstr "" "Rescrieți unele câmpuri ale unei categorii existente, salvând elementele " "needitabile" -#: core/docs/drf/viewsets.py:757 +#: engine/core/docs/drf/viewsets.py:789 msgid "list all promo codes (simple view)" msgstr "Lista tuturor codurilor promoționale (vizualizare simplă)" -#: core/docs/drf/viewsets.py:761 +#: engine/core/docs/drf/viewsets.py:793 msgid "retrieve a single promo code (detailed view)" msgstr "Recuperarea unui singur cod promoțional (vizualizare detaliată)" -#: core/docs/drf/viewsets.py:765 +#: engine/core/docs/drf/viewsets.py:797 msgid "create a promo code" msgstr "Creați un cod promoțional" -#: core/docs/drf/viewsets.py:769 +#: engine/core/docs/drf/viewsets.py:801 msgid "delete a promo code" msgstr "Ștergeți un cod promoțional" -#: core/docs/drf/viewsets.py:773 +#: engine/core/docs/drf/viewsets.py:805 msgid "rewrite an existing promo code saving non-editables" msgstr "Rescrieți un cod promoțional existent, economisind non-editabile" -#: core/docs/drf/viewsets.py:777 +#: engine/core/docs/drf/viewsets.py:809 msgid "rewrite some fields of an existing promo code saving non-editables" msgstr "" "Rescrieți unele câmpuri ale unei categorii existente, salvând elementele " "needitabile" -#: core/docs/drf/viewsets.py:784 +#: engine/core/docs/drf/viewsets.py:816 msgid "list all promotions (simple view)" msgstr "Lista tuturor promoțiilor (vizualizare simplă)" -#: core/docs/drf/viewsets.py:788 +#: engine/core/docs/drf/viewsets.py:820 msgid "retrieve a single promotion (detailed view)" msgstr "Recuperarea unei singure promoții (vedere detaliată)" -#: core/docs/drf/viewsets.py:792 +#: engine/core/docs/drf/viewsets.py:824 msgid "create a promotion" msgstr "Creați o promoție" -#: core/docs/drf/viewsets.py:796 +#: engine/core/docs/drf/viewsets.py:828 msgid "delete a promotion" msgstr "Ștergeți o promovare" -#: core/docs/drf/viewsets.py:800 +#: engine/core/docs/drf/viewsets.py:832 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" -#: core/docs/drf/viewsets.py:804 +#: engine/core/docs/drf/viewsets.py:836 msgid "rewrite some fields of an existing promotion saving non-editables" msgstr "" "Rescrieți unele câmpuri ale unei categorii existente, salvând elementele " "needitabile" -#: core/docs/drf/viewsets.py:811 +#: engine/core/docs/drf/viewsets.py:843 msgid "list all stocks (simple view)" msgstr "Lista tuturor stocurilor (vizualizare simplă)" -#: core/docs/drf/viewsets.py:815 +#: engine/core/docs/drf/viewsets.py:847 msgid "retrieve a single stock (detailed view)" msgstr "Recuperarea unui singur stoc (vedere detaliată)" -#: core/docs/drf/viewsets.py:819 +#: engine/core/docs/drf/viewsets.py:851 msgid "create a stock record" msgstr "Crearea unei fișe de stoc" -#: core/docs/drf/viewsets.py:823 +#: engine/core/docs/drf/viewsets.py:855 msgid "delete a stock record" msgstr "Ștergerea unei înregistrări de stoc" -#: core/docs/drf/viewsets.py:827 +#: engine/core/docs/drf/viewsets.py:859 msgid "rewrite an existing stock record saving non-editables" msgstr "" "Rescrierea unei fișe de stoc existente cu salvarea elementelor needitabile" -#: core/docs/drf/viewsets.py:831 +#: engine/core/docs/drf/viewsets.py:863 msgid "rewrite some fields of an existing stock record saving non-editables" msgstr "" "Rescrieți unele câmpuri ale unei categorii existente, salvând elementele " "needitabile" -#: core/docs/drf/viewsets.py:838 +#: engine/core/docs/drf/viewsets.py:870 msgid "list all product tags (simple view)" msgstr "Listați toate etichetele produselor (vizualizare simplă)" -#: core/docs/drf/viewsets.py:842 +#: engine/core/docs/drf/viewsets.py:874 msgid "retrieve a single product tag (detailed view)" msgstr "Recuperarea unei singure etichete de produs (vizualizare detaliată)" -#: core/docs/drf/viewsets.py:846 +#: engine/core/docs/drf/viewsets.py:878 msgid "create a product tag" msgstr "Creați o etichetă de produs" -#: core/docs/drf/viewsets.py:850 +#: engine/core/docs/drf/viewsets.py:882 msgid "delete a product tag" msgstr "Ștergeți o etichetă de produs" -#: core/docs/drf/viewsets.py:854 +#: engine/core/docs/drf/viewsets.py:886 msgid "rewrite an existing product tag saving non-editables" msgstr "" "Rescrieți o etichetă de produs existentă salvând elementele needitabile" -#: core/docs/drf/viewsets.py:858 +#: engine/core/docs/drf/viewsets.py:890 msgid "rewrite some fields of an existing product tag saving non-editables" msgstr "" "Rescrieți unele câmpuri ale unei categorii existente, salvând elementele " "needitabile" -#: core/elasticsearch/__init__.py:118 core/elasticsearch/__init__.py:550 +#: engine/core/elasticsearch/__init__.py:122 +#: engine/core/elasticsearch/__init__.py:570 msgid "no search term provided." msgstr "Nu a fost furnizat niciun termen de căutare." -#: core/filters.py:69 core/filters.py:412 core/filters.py:539 +#: engine/core/filters.py:69 engine/core/filters.py:426 +#: engine/core/filters.py:553 msgid "Search" msgstr "Căutare" -#: core/filters.py:70 core/filters.py:569 core/filters.py:598 +#: engine/core/filters.py:70 engine/core/filters.py:583 +#: engine/core/filters.py:612 msgid "UUID" msgstr "UUID" -#: core/filters.py:71 core/filters.py:414 core/filters.py:541 +#: engine/core/filters.py:71 engine/core/filters.py:428 +#: engine/core/filters.py:555 msgid "Name" msgstr "Nume și prenume" -#: core/filters.py:72 core/filters.py:543 +#: engine/core/filters.py:72 engine/core/filters.py:557 msgid "Categories" msgstr "Categorii" -#: core/filters.py:74 +#: engine/core/filters.py:74 msgid "Categories Slugs" msgstr "Categorii Melci" -#: core/filters.py:75 core/filters.py:422 +#: engine/core/filters.py:75 engine/core/filters.py:436 msgid "Tags" msgstr "Etichete" -#: core/filters.py:76 +#: engine/core/filters.py:76 msgid "Min Price" msgstr "Preț minim" -#: core/filters.py:77 +#: engine/core/filters.py:77 msgid "Max Price" msgstr "Preț maxim" -#: core/filters.py:78 +#: engine/core/filters.py:78 msgid "Is Active" msgstr "Este activ" -#: core/filters.py:79 +#: engine/core/filters.py:79 msgid "Brand" msgstr "Marca" -#: core/filters.py:80 +#: engine/core/filters.py:80 msgid "Attributes" msgstr "Atribute" -#: core/filters.py:81 +#: engine/core/filters.py:81 msgid "Quantity" msgstr "Cantitate" -#: core/filters.py:82 core/filters.py:416 core/filters.py:542 -#: core/models.py:322 core/models.py:483 core/models.py:637 +#: engine/core/filters.py:82 engine/core/filters.py:430 +#: engine/core/filters.py:556 engine/core/models.py:321 +#: engine/core/models.py:482 engine/core/models.py:637 msgid "Slug" msgstr "Melc" -#: core/filters.py:83 +#: engine/core/filters.py:83 msgid "Is Digital" msgstr "Este digital" -#: core/filters.py:84 +#: engine/core/filters.py:84 msgid "Include sub-categories" msgstr "Includeți subcategorii" -#: core/filters.py:87 +#: engine/core/filters.py:87 msgid "Include personal ordered" msgstr "Includeți produsele comandate personal" -#: core/filters.py:89 core/models.py:641 +#: engine/core/filters.py:89 engine/core/models.py:641 msgid "SKU" msgstr "SKU" -#: core/filters.py:173 +#: engine/core/filters.py:184 msgid "there must be a category_uuid to use include_subcategories flag" msgstr "" "Trebuie să existe un category_uuid pentru a utiliza flagul " "include_subcategories" -#: core/filters.py:339 +#: engine/core/filters.py:353 msgid "Search (ID, product name or part number)" msgstr "Căutare (ID, numele produsului sau numărul piesei)" -#: core/filters.py:342 +#: engine/core/filters.py:356 msgid "Bought after (inclusive)" msgstr "Cumpărat după (inclusiv)" -#: core/filters.py:343 +#: engine/core/filters.py:357 msgid "Bought before (inclusive)" msgstr "Cumpărat înainte (inclusiv)" -#: core/filters.py:346 core/filters.py:393 core/filters.py:600 +#: engine/core/filters.py:360 engine/core/filters.py:407 +#: engine/core/filters.py:614 msgid "User email" msgstr "E-mail utilizator" -#: core/filters.py:347 core/filters.py:394 core/filters.py:578 -#: core/filters.py:599 +#: engine/core/filters.py:361 engine/core/filters.py:408 +#: engine/core/filters.py:592 engine/core/filters.py:613 msgid "User UUID" msgstr "UUID utilizator" -#: core/filters.py:348 +#: engine/core/filters.py:362 msgid "Status" msgstr "Statut" -#: core/filters.py:352 +#: engine/core/filters.py:366 msgid "Human Readable ID" msgstr "ID lizibil de către om" -#: core/filters.py:415 +#: engine/core/filters.py:429 msgid "Parent" msgstr "Părinte" -#: core/filters.py:419 +#: engine/core/filters.py:433 msgid "Whole category(has at least 1 product or not)" msgstr "Întreaga categorie (are cel puțin 1 produs sau nu)" -#: core/filters.py:423 +#: engine/core/filters.py:437 msgid "Level" msgstr "Nivel" -#: core/filters.py:573 +#: engine/core/filters.py:587 msgid "Product UUID" msgstr "UUID produs" -#: core/graphene/mutations.py:41 +#: engine/core/graphene/mutations.py:41 msgid "key to look for in or set into the cache" msgstr "Cheie care trebuie căutată sau introdusă în cache" -#: core/graphene/mutations.py:42 +#: engine/core/graphene/mutations.py:42 msgid "data to store in cache" msgstr "Date de stocat în cache" -#: core/graphene/mutations.py:45 +#: engine/core/graphene/mutations.py:45 msgid "timeout in seconds to set the data for into the cache" msgstr "Timeout în secunde pentru a seta datele în cache" -#: core/graphene/mutations.py:48 +#: engine/core/graphene/mutations.py:48 msgid "cached data" msgstr "Date în cache" -#: core/graphene/mutations.py:63 +#: engine/core/graphene/mutations.py:63 msgid "camelized JSON data from the requested URL" msgstr "Date JSON Camelizate de la URL-ul solicitat" -#: core/graphene/mutations.py:68 core/views.py:232 +#: engine/core/graphene/mutations.py:68 engine/core/views.py:231 msgid "only URLs starting with http(s):// are allowed" msgstr "Sunt permise numai URL-urile care încep cu http(s)://" -#: core/graphene/mutations.py:84 +#: engine/core/graphene/mutations.py:84 msgid "add a product to the order" msgstr "Adăugați un produs la comandă" -#: core/graphene/mutations.py:105 core/graphene/mutations.py:132 -#: core/graphene/mutations.py:240 core/graphene/mutations.py:288 +#: engine/core/graphene/mutations.py:105 engine/core/graphene/mutations.py:132 +#: engine/core/graphene/mutations.py:240 engine/core/graphene/mutations.py:288 #, python-brace-format msgid "order {order_uuid} not found" msgstr "Comanda {order_uuid} nu a fost găsită!" -#: core/graphene/mutations.py:111 core/graphene/mutations.py:160 +#: engine/core/graphene/mutations.py:111 engine/core/graphene/mutations.py:160 msgid "remove a product from the order" msgstr "Eliminați un produs din comandă" -#: core/graphene/mutations.py:138 +#: engine/core/graphene/mutations.py:138 msgid "remove all products from the order" msgstr "Eliminați toate produsele din comandă" -#: core/graphene/mutations.py:183 +#: engine/core/graphene/mutations.py:183 msgid "buy an order" msgstr "Cumpărați o comandă" -#: core/graphene/mutations.py:212 core/graphene/mutations.py:266 +#: engine/core/graphene/mutations.py:212 engine/core/graphene/mutations.py:266 msgid "please provide either order_uuid or order_hr_id - mutually exclusive" msgstr "" "Vă rugăm să furnizați fie order_uuid sau order_hr_id - se exclud reciproc!" -#: core/graphene/mutations.py:237 core/graphene/mutations.py:502 -#: core/graphene/mutations.py:544 core/viewsets.py:704 +#: engine/core/graphene/mutations.py:237 engine/core/graphene/mutations.py:502 +#: engine/core/graphene/mutations.py:544 engine/core/viewsets.py:704 msgid "wrong type came from order.buy() method: {type(instance)!s}" msgstr "Metoda order.buy() a generat un tip greșit: {type(instance)!s}" -#: core/graphene/mutations.py:246 +#: engine/core/graphene/mutations.py:246 msgid "perform an action on a list of products in the order" msgstr "Efectuați o acțiune asupra unei liste de produse din comandă" -#: core/graphene/mutations.py:251 +#: engine/core/graphene/mutations.py:251 msgid "remove/add" msgstr "Eliminare/adăugare" -#: core/graphene/mutations.py:283 core/graphene/mutations.py:324 +#: engine/core/graphene/mutations.py:283 engine/core/graphene/mutations.py:324 msgid "action must be either add or remove" msgstr "Acțiunea trebuie să fie fie \"adăugare\" sau \"eliminare\"!" -#: core/graphene/mutations.py:294 +#: engine/core/graphene/mutations.py:294 msgid "perform an action on a list of products in the wishlist" msgstr "Efectuați o acțiune pe o listă de produse din lista de dorințe" -#: core/graphene/mutations.py:312 +#: engine/core/graphene/mutations.py:312 msgid "please provide wishlist_uuid value" msgstr "Vă rugăm să furnizați valoarea `wishlist_uuid`." -#: core/graphene/mutations.py:329 core/graphene/mutations.py:405 -#: core/graphene/mutations.py:433 core/graphene/mutations.py:461 -#: core/graphene/mutations.py:505 +#: engine/core/graphene/mutations.py:329 engine/core/graphene/mutations.py:405 +#: engine/core/graphene/mutations.py:433 engine/core/graphene/mutations.py:461 +#: engine/core/graphene/mutations.py:505 #, python-brace-format msgid "wishlist {wishlist_uuid} not found" msgstr "Wishlist {wishlist_uuid} nu a fost găsit!" -#: core/graphene/mutations.py:383 +#: engine/core/graphene/mutations.py:383 msgid "add a product to the wishlist" msgstr "Adăugați un produs la comandă" -#: core/graphene/mutations.py:411 +#: engine/core/graphene/mutations.py:411 msgid "remove a product from the wishlist" msgstr "Eliminați un produs din comandă" -#: core/graphene/mutations.py:439 +#: engine/core/graphene/mutations.py:439 msgid "remove all products from the wishlist" msgstr "Eliminați un produs din comandă" -#: core/graphene/mutations.py:467 +#: engine/core/graphene/mutations.py:467 msgid "buy all products from the wishlist" msgstr "Eliminați un produs din comandă" -#: core/graphene/mutations.py:511 +#: engine/core/graphene/mutations.py:511 msgid "buy a product" msgstr "Cumpărați o comandă" -#: core/graphene/mutations.py:517 +#: engine/core/graphene/mutations.py:517 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" -#: core/graphene/mutations.py:550 +#: engine/core/graphene/mutations.py:550 msgid "add or delete a feedback for orderproduct" msgstr "Adăugați sau ștergeți un feedback pentru comandaprodus" -#: core/graphene/mutations.py:574 +#: engine/core/graphene/mutations.py:574 msgid "action must be either `add` or `remove`" msgstr "Acțiunea trebuie să fie `add` sau `remove`!" -#: core/graphene/mutations.py:577 +#: engine/core/graphene/mutations.py:577 #, python-brace-format msgid "order product {order_product_uuid} not found" msgstr "Comandaprodus {order_product_uuid} nu a fost găsită!" -#: core/graphene/mutations.py:644 +#: engine/core/graphene/mutations.py:644 msgid "original address string provided by the user" msgstr "Șirul de adrese original furnizat de utilizator" -#: core/graphene/mutations.py:680 core/models.py:930 core/models.py:943 -#: core/models.py:1358 core/models.py:1387 core/models.py:1412 -#: core/viewsets.py:707 +#: engine/core/graphene/mutations.py:680 engine/core/models.py:941 +#: engine/core/models.py:954 engine/core/models.py:1369 +#: engine/core/models.py:1398 engine/core/models.py:1423 +#: engine/core/viewsets.py:707 #, python-brace-format msgid "{name} does not exist: {uuid}" msgstr "{name} nu există: {uuid}!" -#: core/graphene/mutations.py:694 +#: engine/core/graphene/mutations.py:694 msgid "limit must be between 1 and 10" msgstr "Limita trebuie să fie între 1 și 10" -#: core/graphene/mutations.py:743 +#: engine/core/graphene/mutations.py:743 msgid "elasticsearch - works like a charm" msgstr "ElasticSearch - funcționează ca un farmec" -#: core/graphene/object_types.py:82 core/graphene/object_types.py:370 -#: core/graphene/object_types.py:417 core/models.py:754 core/models.py:1225 -#: core/models.py:1823 +#: engine/core/graphene/object_types.py:82 +#: engine/core/graphene/object_types.py:370 +#: engine/core/graphene/object_types.py:417 engine/core/models.py:765 +#: engine/core/models.py:1236 engine/core/models.py:1883 msgid "attributes" msgstr "Atribute" -#: core/graphene/object_types.py:95 +#: engine/core/graphene/object_types.py:95 msgid "grouped attributes" msgstr "Atribute grupate" -#: core/graphene/object_types.py:102 +#: engine/core/graphene/object_types.py:102 msgid "groups of attributes" msgstr "Grupuri de atribute" -#: core/graphene/object_types.py:116 core/graphene/object_types.py:193 -#: core/graphene/object_types.py:223 core/models.py:426 +#: engine/core/graphene/object_types.py:116 +#: engine/core/graphene/object_types.py:193 +#: engine/core/graphene/object_types.py:223 engine/core/models.py:425 msgid "categories" msgstr "Categorii" -#: core/graphene/object_types.py:124 core/models.py:497 +#: engine/core/graphene/object_types.py:124 engine/core/models.py:496 msgid "brands" msgstr "Mărci" -#: core/graphene/object_types.py:195 +#: engine/core/graphene/object_types.py:195 msgid "category image url" msgstr "Categorii" -#: core/graphene/object_types.py:196 core/graphene/object_types.py:317 -#: core/models.py:284 +#: engine/core/graphene/object_types.py:196 +#: engine/core/graphene/object_types.py:317 engine/core/models.py:283 msgid "markup percentage" msgstr "Procentul de majorare" -#: core/graphene/object_types.py:199 +#: engine/core/graphene/object_types.py:199 msgid "which attributes and values can be used for filtering this category." msgstr "" "Atributele și valorile care pot fi utilizate pentru filtrarea acestei " "categorii." -#: core/graphene/object_types.py:203 -msgid "" -"minimum and maximum prices for products in this category, if available." +#: engine/core/graphene/object_types.py:203 +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." -#: core/graphene/object_types.py:205 +#: engine/core/graphene/object_types.py:205 msgid "tags for this category" msgstr "Etichete pentru această categorie" -#: core/graphene/object_types.py:206 +#: engine/core/graphene/object_types.py:206 msgid "products in this category" msgstr "Produse din această categorie" -#: core/graphene/object_types.py:324 core/models.py:189 +#: engine/core/graphene/object_types.py:324 engine/core/models.py:188 msgid "vendors" msgstr "Furnizori" -#: core/graphene/object_types.py:328 +#: engine/core/graphene/object_types.py:328 msgid "Latitude (Y coordinate)" msgstr "Latitudine (coordonata Y)" -#: core/graphene/object_types.py:329 +#: engine/core/graphene/object_types.py:329 msgid "Longitude (X coordinate)" msgstr "Longitudine (coordonata X)" -#: core/graphene/object_types.py:358 +#: engine/core/graphene/object_types.py:358 msgid "comment" msgstr "Cum să" -#: core/graphene/object_types.py:359 core/graphene/object_types.py:483 +#: engine/core/graphene/object_types.py:359 +#: engine/core/graphene/object_types.py:483 msgid "rating value from 1 to 10, inclusive, or 0 if not set." msgstr "Valoare nominală de la 1 la 10, inclusiv, sau 0 dacă nu este setată." -#: core/graphene/object_types.py:366 +#: engine/core/graphene/object_types.py:366 msgid "represents feedback from a user." msgstr "Reprezintă feedback de la un utilizator." -#: core/graphene/object_types.py:371 core/graphene/object_types.py:418 -#: core/models.py:1219 +#: engine/core/graphene/object_types.py:371 +#: engine/core/graphene/object_types.py:418 engine/core/models.py:1230 msgid "notifications" msgstr "Notificări" -#: core/graphene/object_types.py:372 +#: engine/core/graphene/object_types.py:372 msgid "download url for this order product if applicable" msgstr "URL de descărcare pentru acest produs de comandă, dacă este cazul" -#: core/graphene/object_types.py:373 core/models.py:1939 +#: engine/core/graphene/object_types.py:373 engine/core/models.py:1722 msgid "feedback" msgstr "Feedback" -#: core/graphene/object_types.py:407 +#: engine/core/graphene/object_types.py:407 msgid "a list of order products in this order" msgstr "O listă a produselor comandate în această comandă" -#: core/graphene/object_types.py:409 core/models.py:1189 +#: engine/core/graphene/object_types.py:409 engine/core/models.py:1200 msgid "billing address" msgstr "Adresa de facturare" -#: core/graphene/object_types.py:412 +#: engine/core/graphene/object_types.py:412 msgid "" "shipping address for this order, leave blank if same as billing address or " "if not applicable" @@ -1315,202 +1343,210 @@ msgstr "" "Adresa de expediere pentru această comandă, lăsați în alb dacă este aceeași " "cu adresa de facturare sau dacă nu se aplică" -#: core/graphene/object_types.py:414 +#: engine/core/graphene/object_types.py:414 msgid "total price of this order" msgstr "Prețul total al acestei comenzi" -#: core/graphene/object_types.py:415 +#: engine/core/graphene/object_types.py:415 msgid "total quantity of products in order" msgstr "Cantitatea totală de produse din comandă" -#: core/graphene/object_types.py:416 +#: engine/core/graphene/object_types.py:416 msgid "are all products in the order digital" msgstr "Sunt toate produsele din comanda digitală" -#: core/graphene/object_types.py:419 +#: engine/core/graphene/object_types.py:419 msgid "transactions for this order" msgstr "Tranzacții pentru această comandă" -#: core/graphene/object_types.py:438 core/models.py:1253 +#: engine/core/graphene/object_types.py:438 engine/core/models.py:1264 msgid "orders" msgstr "Ordine" -#: core/graphene/object_types.py:459 +#: engine/core/graphene/object_types.py:459 msgid "image url" msgstr "URL imagine" -#: core/graphene/object_types.py:466 +#: engine/core/graphene/object_types.py:466 msgid "product's images" msgstr "Imagini ale produsului" -#: core/graphene/object_types.py:473 core/models.py:425 core/models.py:579 +#: engine/core/graphene/object_types.py:473 engine/core/models.py:424 +#: engine/core/models.py:579 msgid "category" msgstr "Categorie" -#: core/graphene/object_types.py:475 core/models.py:1940 +#: engine/core/graphene/object_types.py:475 engine/core/models.py:1723 msgid "feedbacks" msgstr "Feedback-uri" -#: core/graphene/object_types.py:476 core/models.py:496 core/models.py:588 +#: engine/core/graphene/object_types.py:476 engine/core/models.py:495 +#: engine/core/models.py:588 msgid "brand" msgstr "Marca" -#: core/graphene/object_types.py:477 core/models.py:107 +#: engine/core/graphene/object_types.py:477 engine/core/models.py:106 msgid "attribute groups" msgstr "Grupuri de atribute" -#: core/graphene/object_types.py:478 -#: core/templates/digital_order_created_email.html:111 -#: core/templates/digital_order_delivered_email.html:109 -#: core/templates/shipped_order_created_email.html:109 -#: core/templates/shipped_order_delivered_email.html:109 +#: engine/core/graphene/object_types.py:478 +#: engine/core/templates/digital_order_created_email.html:111 +#: engine/core/templates/digital_order_delivered_email.html:109 +#: engine/core/templates/shipped_order_created_email.html:109 +#: engine/core/templates/shipped_order_delivered_email.html:109 msgid "price" msgstr "Preț" -#: core/graphene/object_types.py:479 -#: core/templates/digital_order_created_email.html:110 -#: core/templates/digital_order_delivered_email.html:108 -#: core/templates/shipped_order_created_email.html:108 -#: core/templates/shipped_order_delivered_email.html:108 +#: engine/core/graphene/object_types.py:479 +#: engine/core/templates/digital_order_created_email.html:110 +#: engine/core/templates/digital_order_delivered_email.html:108 +#: engine/core/templates/shipped_order_created_email.html:108 +#: engine/core/templates/shipped_order_delivered_email.html:108 msgid "quantity" msgstr "Cantitate" -#: core/graphene/object_types.py:480 +#: engine/core/graphene/object_types.py:480 msgid "number of feedbacks" msgstr "Numărul de reacții" -#: core/graphene/object_types.py:481 +#: engine/core/graphene/object_types.py:481 msgid "only available for personal orders" msgstr "Produse disponibile numai pentru comenzi personale" -#: core/graphene/object_types.py:507 core/models.py:651 +#: engine/core/graphene/object_types.py:484 +msgid "discount price" +msgstr "Preț redus" + +#: engine/core/graphene/object_types.py:508 engine/core/models.py:651 msgid "products" msgstr "Produse" -#: core/graphene/object_types.py:607 +#: engine/core/graphene/object_types.py:611 msgid "promocodes" msgstr "Coduri promoționale" -#: core/graphene/object_types.py:617 +#: engine/core/graphene/object_types.py:621 msgid "products on sale" msgstr "Produse scoase la vânzare" -#: core/graphene/object_types.py:624 core/models.py:879 +#: engine/core/graphene/object_types.py:628 engine/core/models.py:890 msgid "promotions" msgstr "Promoții" -#: core/graphene/object_types.py:628 core/models.py:188 +#: engine/core/graphene/object_types.py:632 engine/core/models.py:187 msgid "vendor" msgstr "Furnizor" -#: core/graphene/object_types.py:629 core/models.py:650 -#: core/templates/digital_order_created_email.html:109 -#: core/templates/digital_order_delivered_email.html:107 -#: core/templates/shipped_order_created_email.html:107 -#: core/templates/shipped_order_delivered_email.html:107 +#: engine/core/graphene/object_types.py:633 engine/core/models.py:650 +#: 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 +#: engine/core/templates/shipped_order_delivered_email.html:107 msgid "product" msgstr "Produs" -#: core/graphene/object_types.py:640 core/models.py:902 +#: engine/core/graphene/object_types.py:644 engine/core/models.py:913 msgid "wishlisted products" msgstr "Produse dorite" -#: core/graphene/object_types.py:646 core/models.py:919 +#: engine/core/graphene/object_types.py:650 engine/core/models.py:930 msgid "wishlists" msgstr "Liste de dorințe" -#: core/graphene/object_types.py:650 +#: engine/core/graphene/object_types.py:654 msgid "tagged products" msgstr "Produse etichetate" -#: core/graphene/object_types.py:657 core/models.py:225 core/models.py:594 +#: engine/core/graphene/object_types.py:661 engine/core/models.py:224 +#: engine/core/models.py:594 msgid "product tags" msgstr "Etichete de produs" -#: core/graphene/object_types.py:661 +#: engine/core/graphene/object_types.py:665 msgid "tagged categories" msgstr "Categorii etichetate" -#: core/graphene/object_types.py:668 +#: engine/core/graphene/object_types.py:672 msgid "categories tags" msgstr "Etichete \"Categorii" -#: core/graphene/object_types.py:672 +#: engine/core/graphene/object_types.py:676 msgid "project name" msgstr "Numele proiectului" -#: core/graphene/object_types.py:673 +#: engine/core/graphene/object_types.py:677 msgid "company email" msgstr "Email companie" -#: core/graphene/object_types.py:674 +#: engine/core/graphene/object_types.py:678 msgid "company name" msgstr "Numele companiei" -#: core/graphene/object_types.py:675 +#: engine/core/graphene/object_types.py:679 msgid "company address" msgstr "Adresa companiei" -#: core/graphene/object_types.py:676 +#: engine/core/graphene/object_types.py:680 msgid "company phone number" msgstr "Numărul de telefon al companiei" -#: core/graphene/object_types.py:677 +#: engine/core/graphene/object_types.py:681 msgid "email from, sometimes it must be used instead of host user value" msgstr "" "\"e-mail de la\", uneori trebuie să fie utilizat în locul valorii " "utilizatorului gazdă" -#: core/graphene/object_types.py:678 +#: engine/core/graphene/object_types.py:682 msgid "email host user" msgstr "Utilizator gazdă e-mail" -#: core/graphene/object_types.py:679 +#: engine/core/graphene/object_types.py:683 msgid "maximum amount for payment" msgstr "Suma maximă pentru plată" -#: core/graphene/object_types.py:680 +#: engine/core/graphene/object_types.py:684 msgid "minimum amount for payment" msgstr "Suma minimă pentru plată" -#: core/graphene/object_types.py:681 +#: engine/core/graphene/object_types.py:685 msgid "analytics data" msgstr "Date analitice" -#: core/graphene/object_types.py:682 +#: engine/core/graphene/object_types.py:686 msgid "advertisement data" msgstr "Date publicitare" -#: core/graphene/object_types.py:685 +#: engine/core/graphene/object_types.py:689 msgid "company configuration" msgstr "Configurație" -#: core/graphene/object_types.py:689 +#: engine/core/graphene/object_types.py:693 msgid "language code" msgstr "Codul limbii" -#: core/graphene/object_types.py:690 +#: engine/core/graphene/object_types.py:694 msgid "language name" msgstr "Numele limbii" -#: core/graphene/object_types.py:691 +#: engine/core/graphene/object_types.py:695 msgid "language flag, if exists :)" msgstr "Indicatorul de limbă, dacă există :)" -#: core/graphene/object_types.py:694 +#: engine/core/graphene/object_types.py:698 msgid "supported languages" msgstr "Obțineți o listă a limbilor acceptate" -#: core/graphene/object_types.py:725 core/graphene/object_types.py:726 -#: core/graphene/object_types.py:727 +#: engine/core/graphene/object_types.py:729 +#: engine/core/graphene/object_types.py:730 +#: engine/core/graphene/object_types.py:731 msgid "products search results" msgstr "Rezultate căutare produse" -#: core/graphene/object_types.py:728 +#: engine/core/graphene/object_types.py:732 msgid "posts search results" msgstr "Rezultate căutare produse" -#: core/models.py:76 +#: engine/core/models.py:75 msgid "" "Represents a group of attributes, which can be hierarchical. This class is " "used to manage and organize attribute groups. An attribute group can have a " @@ -1519,27 +1555,27 @@ 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." -#: core/models.py:92 +#: engine/core/models.py:91 msgid "parent of this group" msgstr "Părinte al acestui grup" -#: core/models.py:93 +#: engine/core/models.py:92 msgid "parent attribute group" msgstr "Grup de atribute părinte" -#: core/models.py:97 core/models.py:98 +#: engine/core/models.py:96 engine/core/models.py:97 msgid "attribute group's name" msgstr "Numele grupului de atribute" -#: core/models.py:106 core/models.py:716 +#: engine/core/models.py:105 engine/core/models.py:727 msgid "attribute group" msgstr "Grup de atribute" -#: core/models.py:112 +#: engine/core/models.py:111 msgid "" "Represents a vendor entity capable of storing information about external " "vendors and their interaction requirements. The Vendor class is used to " @@ -1558,50 +1594,50 @@ msgstr "" "metadate și constrângeri suplimentare, ceea ce îl face potrivit pentru " "utilizarea în sisteme care interacționează cu furnizori terți." -#: core/models.py:125 +#: engine/core/models.py:124 msgid "stores credentials and endpoints required for vendor communication" msgstr "" "Stochează acreditările și punctele finale necesare pentru comunicarea API a " "furnizorului" -#: core/models.py:126 +#: engine/core/models.py:125 msgid "authentication info" msgstr "Informații privind autentificarea" -#: core/models.py:131 +#: engine/core/models.py:130 msgid "define the markup for products retrieved from this vendor" msgstr "" "Definirea marjei de profit pentru produsele preluate de la acest furnizor" -#: core/models.py:132 +#: engine/core/models.py:131 msgid "vendor markup percentage" msgstr "Procentul de majorare al furnizorului" -#: core/models.py:136 +#: engine/core/models.py:135 msgid "name of this vendor" msgstr "Numele acestui vânzător" -#: core/models.py:137 +#: engine/core/models.py:136 msgid "vendor name" msgstr "Numele furnizorului" -#: core/models.py:148 +#: engine/core/models.py:147 msgid "response file" msgstr "fișier de răspuns" -#: core/models.py:149 +#: engine/core/models.py:148 msgid "vendor's last processing response" msgstr "ultimul răspuns de prelucrare al vânzătorului" -#: core/models.py:155 +#: engine/core/models.py:154 msgid "vendor's integration file path" msgstr "Calea fișierului de integrare al furnizorului" -#: core/models.py:156 +#: engine/core/models.py:155 msgid "integration path" msgstr "Calea de integrare" -#: core/models.py:198 +#: engine/core/models.py:197 msgid "" "Represents a product tag used for classifying or identifying products. The " "ProductTag class is designed to uniquely identify and classify products " @@ -1616,27 +1652,27 @@ msgstr "" "Aceasta acceptă operațiuni exportate prin mixins și oferă personalizarea " "metadatelor în scopuri administrative." -#: core/models.py:210 core/models.py:241 +#: engine/core/models.py:209 engine/core/models.py:240 msgid "internal tag identifier for the product tag" msgstr "Identificator intern de etichetă pentru eticheta produsului" -#: core/models.py:211 core/models.py:242 +#: engine/core/models.py:210 engine/core/models.py:241 msgid "tag name" msgstr "Nume etichetă" -#: core/models.py:215 core/models.py:246 +#: engine/core/models.py:214 engine/core/models.py:245 msgid "user-friendly name for the product tag" msgstr "Nume ușor de utilizat pentru eticheta produsului" -#: core/models.py:216 core/models.py:247 +#: engine/core/models.py:215 engine/core/models.py:246 msgid "tag display name" msgstr "Nume afișare etichetă" -#: core/models.py:224 +#: engine/core/models.py:223 msgid "product tag" msgstr "Etichetă produs" -#: core/models.py:230 +#: engine/core/models.py:229 msgid "" "Represents a category tag used for products. This class models a category " "tag that can be used to associate and classify products. It includes " @@ -1644,18 +1680,18 @@ 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." -#: core/models.py:255 +#: engine/core/models.py:254 msgid "category tag" msgstr "etichetă de categorie" -#: core/models.py:256 core/models.py:328 +#: engine/core/models.py:255 engine/core/models.py:327 msgid "category tags" msgstr "Etichete de categorie" -#: core/models.py:261 +#: engine/core/models.py:260 msgid "" "Represents a category entity to organize and group related items in a " "hierarchical structure. Categories may have hierarchical relationships with " @@ -1673,113 +1709,111 @@ 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." -#: core/models.py:275 +#: engine/core/models.py:274 msgid "upload an image representing this category" msgstr "Încărcați o imagine care reprezintă această categorie" -#: core/models.py:278 +#: engine/core/models.py:277 msgid "category image" msgstr "Categorie imagine" -#: core/models.py:283 +#: engine/core/models.py:282 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" -#: core/models.py:292 +#: engine/core/models.py:291 msgid "parent of this category to form a hierarchical structure" msgstr "Părinte al acestei categorii pentru a forma o structură ierarhică" -#: core/models.py:293 +#: engine/core/models.py:292 msgid "parent category" msgstr "Categoria de părinți" -#: core/models.py:298 +#: engine/core/models.py:297 msgid "category name" msgstr "Numele categoriei" -#: core/models.py:299 +#: engine/core/models.py:298 msgid "provide a name for this category" msgstr "Furnizați un nume pentru această categorie" -#: core/models.py:306 +#: engine/core/models.py:305 msgid "add a detailed description for this category" msgstr "Adăugați o descriere detaliată pentru această categorie" -#: core/models.py:307 +#: engine/core/models.py:306 msgid "category description" msgstr "Descriere categorie" -#: core/models.py:327 +#: engine/core/models.py:326 msgid "tags that help describe or group this category" msgstr "etichete care ajută la descrierea sau gruparea acestei categorii" -#: core/models.py:334 core/models.py:489 +#: engine/core/models.py:333 engine/core/models.py:488 msgid "priority" msgstr "Prioritate" -#: core/models.py:432 +#: engine/core/models.py:431 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." -#: core/models.py:442 +#: engine/core/models.py:441 msgid "name of this brand" msgstr "Denumirea acestui brand" -#: core/models.py:443 +#: engine/core/models.py:442 msgid "brand name" msgstr "Nume de marcă" -#: core/models.py:450 +#: engine/core/models.py:449 msgid "upload a logo representing this brand" msgstr "Încărcați un logo care reprezintă acest brand" -#: core/models.py:452 +#: engine/core/models.py:451 msgid "brand small image" msgstr "Brand imagine mică" -#: core/models.py:458 +#: engine/core/models.py:457 msgid "upload a big logo representing this brand" msgstr "Încărcați un logo mare care reprezintă acest brand" -#: core/models.py:460 +#: engine/core/models.py:459 msgid "brand big image" msgstr "Imagine de marcă mare" -#: core/models.py:465 +#: engine/core/models.py:464 msgid "add a detailed description of the brand" msgstr "Adăugați o descriere detaliată a mărcii" -#: core/models.py:466 +#: engine/core/models.py:465 msgid "brand description" msgstr "Descrierea mărcii" -#: core/models.py:471 +#: engine/core/models.py:470 msgid "optional categories that this brand is associated with" msgstr "Categorii opționale cu care acest brand este asociat" -#: core/models.py:472 +#: engine/core/models.py:471 msgid "associated categories" msgstr "Categorii" -#: core/models.py:502 +#: engine/core/models.py:501 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 " @@ -1792,68 +1826,72 @@ msgstr "" "parte din sistemul de gestionare a stocurilor pentru a permite urmărirea și " "evaluarea produselor disponibile de la diverși furnizori." -#: core/models.py:514 +#: engine/core/models.py:513 msgid "the vendor supplying this product stock" msgstr "Furnizorul care furnizează acest stoc de produse" -#: core/models.py:515 +#: engine/core/models.py:514 msgid "associated vendor" msgstr "Furnizor asociat" -#: core/models.py:519 +#: engine/core/models.py:518 msgid "final price to the customer after markups" msgstr "Prețul final pentru client după majorări" -#: core/models.py:520 +#: engine/core/models.py:519 msgid "selling price" msgstr "Prețul de vânzare" -#: core/models.py:525 +#: engine/core/models.py:524 msgid "the product associated with this stock entry" msgstr "Produsul asociat cu această intrare în stoc" -#: core/models.py:526 core/models.py:779 core/models.py:825 -#: core/models.py:1718 +#: engine/core/models.py:525 engine/core/models.py:790 +#: engine/core/models.py:836 engine/core/models.py:1778 msgid "associated product" msgstr "Produs asociat" -#: core/models.py:533 +#: engine/core/models.py:532 msgid "the price paid to the vendor for this product" msgstr "Prețul plătit vânzătorului pentru acest produs" -#: core/models.py:534 +#: engine/core/models.py:533 msgid "vendor purchase price" msgstr "Prețul de achiziție al furnizorului" -#: core/models.py:538 +#: engine/core/models.py:537 msgid "available quantity of the product in stock" msgstr "Cantitatea disponibilă a produsului în stoc" -#: core/models.py:539 +#: engine/core/models.py:538 msgid "quantity in stock" msgstr "Cantitate în stoc" -#: core/models.py:543 +#: engine/core/models.py:542 msgid "vendor-assigned SKU for identifying the product" msgstr "SKU atribuit de furnizor pentru identificarea produsului" -#: core/models.py:544 +#: engine/core/models.py:543 msgid "vendor sku" msgstr "SKU al furnizorului" -#: core/models.py:550 +#: engine/core/models.py:549 msgid "digital file associated with this stock if applicable" msgstr "Fișier digital asociat cu acest stoc, dacă este cazul" -#: core/models.py:551 +#: engine/core/models.py:550 msgid "digital file" msgstr "Fișier digital" -#: core/models.py:560 +#: engine/core/models.py:553 +msgid "system attributes" +msgstr "Atribute de sistem" + +#: engine/core/models.py:560 msgid "stock entries" msgstr "Intrări pe stoc" -#: core/models.py:565 +#: engine/core/models.py:565 msgid "" "Represents a product with attributes such as category, brand, tags, digital " "status, name, description, part number, and slug. Provides related utility " @@ -1864,166 +1902,166 @@ 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." -#: core/models.py:578 +#: engine/core/models.py:578 msgid "category this product belongs to" msgstr "Categoria din care face parte acest produs" -#: core/models.py:587 +#: engine/core/models.py:587 msgid "optionally associate this product with a brand" msgstr "Opțional, asociați acest produs cu un brand" -#: core/models.py:593 +#: engine/core/models.py:593 msgid "tags that help describe or group this product" msgstr "Etichete care ajută la descrierea sau gruparea acestui produs" -#: core/models.py:598 +#: engine/core/models.py:598 msgid "indicates whether this product is digitally delivered" msgstr "Indică dacă acest produs este livrat digital" -#: core/models.py:599 +#: engine/core/models.py:599 msgid "is product digital" msgstr "Produsul este digital" -#: core/models.py:605 +#: engine/core/models.py:605 msgid "provide a clear identifying name for the product" msgstr "Furnizați o denumire clară de identificare a produsului" -#: core/models.py:606 +#: engine/core/models.py:606 msgid "product name" msgstr "Denumirea produsului" -#: core/models.py:612 core/models.py:867 +#: engine/core/models.py:612 engine/core/models.py:878 msgid "add a detailed description of the product" msgstr "Adăugați o descriere detaliată a produsului" -#: core/models.py:613 +#: engine/core/models.py:613 msgid "product description" msgstr "Descrierea produsului" -#: core/models.py:620 +#: engine/core/models.py:620 msgid "part number for this product" msgstr "Numărul piesei pentru acest produs" -#: core/models.py:621 +#: engine/core/models.py:621 msgid "part number" msgstr "Numărul piesei" -#: core/models.py:640 +#: engine/core/models.py:640 msgid "stock keeping unit for this product" msgstr "Stock Keeping Unit pentru acest produs" -#: core/models.py:702 +#: engine/core/models.py:713 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." -#: core/models.py:715 +#: engine/core/models.py:726 msgid "group of this attribute" msgstr "Grupul acestui atribut" -#: core/models.py:721 +#: engine/core/models.py:732 msgid "string" msgstr "Șir de caractere" -#: core/models.py:722 +#: engine/core/models.py:733 msgid "integer" msgstr "Număr întreg" -#: core/models.py:723 +#: engine/core/models.py:734 msgid "float" msgstr "Float" -#: core/models.py:724 +#: engine/core/models.py:735 msgid "boolean" msgstr "Boolean" -#: core/models.py:725 +#: engine/core/models.py:736 msgid "array" msgstr "Array" -#: core/models.py:726 +#: engine/core/models.py:737 msgid "object" msgstr "Obiect" -#: core/models.py:728 +#: engine/core/models.py:739 msgid "type of the attribute's value" msgstr "Tipul valorii atributului" -#: core/models.py:729 +#: engine/core/models.py:740 msgid "value type" msgstr "Tipul de valoare" -#: core/models.py:734 +#: engine/core/models.py:745 msgid "name of this attribute" msgstr "Denumirea acestui atribut" -#: core/models.py:735 +#: engine/core/models.py:746 msgid "attribute's name" msgstr "Numele atributului" -#: core/models.py:740 +#: engine/core/models.py:751 msgid "is filterable" msgstr "este filtrabil" -#: core/models.py:741 +#: engine/core/models.py:752 msgid "designates whether this attribute can be used for filtering or not" msgstr "" "Atributele și valorile care pot fi utilizate pentru filtrarea acestei " "categorii." -#: core/models.py:753 core/models.py:771 -#: core/templates/digital_order_delivered_email.html:134 +#: engine/core/models.py:764 engine/core/models.py:782 +#: engine/core/templates/digital_order_delivered_email.html:134 msgid "attribute" msgstr "Atribut" -#: core/models.py:759 +#: engine/core/models.py:770 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." -#: core/models.py:770 +#: engine/core/models.py:781 msgid "attribute of this value" msgstr "Atributul acestei valori" -#: core/models.py:778 +#: engine/core/models.py:789 msgid "the specific product associated with this attribute's value" msgstr "Produsul specific asociat cu valoarea acestui atribut" -#: core/models.py:784 +#: engine/core/models.py:795 msgid "the specific value for this attribute" msgstr "Valoarea specifică pentru acest atribut" -#: core/models.py:797 +#: engine/core/models.py:808 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 "" @@ -2034,46 +2072,46 @@ msgstr "" "asemenea, include o funcție de accesibilitate cu text alternativ pentru " "imagini." -#: core/models.py:808 +#: engine/core/models.py:819 msgid "provide alternative text for the image for accessibility" msgstr "Furnizați text alternativ pentru imagine pentru accesibilitate" -#: core/models.py:809 +#: engine/core/models.py:820 msgid "image alt text" msgstr "Textul alt al imaginii" -#: core/models.py:812 +#: engine/core/models.py:823 msgid "upload the image file for this product" msgstr "Încărcați fișierul de imagine pentru acest produs" -#: core/models.py:813 core/models.py:837 +#: engine/core/models.py:824 engine/core/models.py:848 msgid "product image" msgstr "Imaginea produsului" -#: core/models.py:818 +#: engine/core/models.py:829 msgid "determines the order in which images are displayed" msgstr "Determină ordinea în care sunt afișate imaginile" -#: core/models.py:819 +#: engine/core/models.py:830 msgid "display priority" msgstr "Prioritatea afișării" -#: core/models.py:824 +#: engine/core/models.py:835 msgid "the product that this image represents" msgstr "Produsul pe care îl reprezintă această imagine" -#: core/models.py:838 +#: engine/core/models.py:849 msgid "product images" msgstr "Imagini ale produsului" -#: core/models.py:843 +#: engine/core/models.py:854 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 " @@ -2082,75 +2120,75 @@ msgstr "" "asocierea acesteia la produsele aplicabile. Se integrează cu catalogul de " "produse pentru a determina articolele afectate în cadrul campaniei." -#: core/models.py:855 +#: engine/core/models.py:866 msgid "percentage discount for the selected products" msgstr "Procentul de reducere pentru produsele selectate" -#: core/models.py:856 +#: engine/core/models.py:867 msgid "discount percentage" msgstr "Procent de reducere" -#: core/models.py:861 +#: engine/core/models.py:872 msgid "provide a unique name for this promotion" msgstr "Furnizați un nume unic pentru această promoție" -#: core/models.py:862 +#: engine/core/models.py:873 msgid "promotion name" msgstr "Numele promoției" -#: core/models.py:868 +#: engine/core/models.py:879 msgid "promotion description" msgstr "Descrierea promoției" -#: core/models.py:873 +#: engine/core/models.py:884 msgid "select which products are included in this promotion" msgstr "Selectați ce produse sunt incluse în această promoție" -#: core/models.py:874 +#: engine/core/models.py:885 msgid "included products" msgstr "Produse incluse" -#: core/models.py:878 +#: engine/core/models.py:889 msgid "promotion" msgstr "Promovare" -#: core/models.py:889 +#: engine/core/models.py:900 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." -#: core/models.py:901 +#: engine/core/models.py:912 msgid "products that the user has marked as wanted" msgstr "Produse pe care utilizatorul le-a marcat ca fiind dorite" -#: core/models.py:909 +#: engine/core/models.py:920 msgid "user who owns this wishlist" msgstr "Utilizatorul care deține această listă de dorințe" -#: core/models.py:910 +#: engine/core/models.py:921 msgid "wishlist owner" msgstr "Proprietarul listei de dorințe" -#: core/models.py:918 +#: engine/core/models.py:929 msgid "wishlist" msgstr "Lista dorințelor" -#: core/models.py:960 +#: engine/core/models.py:971 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 " @@ -2160,28 +2198,28 @@ msgstr "" "funcționalitatea mixinilor specifici și oferă caracteristici personalizate " "suplimentare." -#: core/models.py:973 +#: engine/core/models.py:984 msgid "documentary" msgstr "Documentar" -#: core/models.py:974 +#: engine/core/models.py:985 msgid "documentaries" msgstr "Documentare" -#: core/models.py:984 +#: engine/core/models.py:995 msgid "unresolved" msgstr "Nerezolvat" -#: core/models.py:989 +#: engine/core/models.py:1000 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 " @@ -2191,62 +2229,61 @@ 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." -#: core/models.py:1004 +#: engine/core/models.py:1015 msgid "address line for the customer" msgstr "Linia de adresă pentru client" -#: core/models.py:1005 +#: engine/core/models.py:1016 msgid "address line" msgstr "Linia de adresă" -#: core/models.py:1007 +#: engine/core/models.py:1018 msgid "street" msgstr "Strada" -#: core/models.py:1008 +#: engine/core/models.py:1019 msgid "district" msgstr "Districtul" -#: core/models.py:1009 +#: engine/core/models.py:1020 msgid "city" msgstr "Oraș" -#: core/models.py:1010 +#: engine/core/models.py:1021 msgid "region" msgstr "Regiunea" -#: core/models.py:1011 +#: engine/core/models.py:1022 msgid "postal code" msgstr "Cod poștal" -#: core/models.py:1012 +#: engine/core/models.py:1023 msgid "country" msgstr "Țara" -#: core/models.py:1019 +#: engine/core/models.py:1030 msgid "geolocation point: (longitude, latitude)" msgstr "Punct de geolocație (longitudine, latitudine)" -#: core/models.py:1022 +#: engine/core/models.py:1033 msgid "full JSON response from geocoder for this address" msgstr "Răspuns JSON complet de la geocoder pentru această adresă" -#: core/models.py:1027 +#: engine/core/models.py:1038 msgid "stored JSON response from the geocoding service" msgstr "Răspuns JSON stocat de la serviciul de geocodare" -#: core/models.py:1035 +#: engine/core/models.py:1046 msgid "address" msgstr "Adresă" -#: core/models.py:1036 +#: engine/core/models.py:1047 msgid "addresses" msgstr "Adrese" -#: core/models.py:1048 +#: engine/core/models.py:1059 msgid "" "Represents a promotional code that can be used for discounts, managing its " "validity, type of discount, and application. The PromoCode class stores " @@ -2260,77 +2297,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." -#: core/models.py:1062 +#: engine/core/models.py:1073 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" -#: core/models.py:1063 +#: engine/core/models.py:1074 msgid "promo code identifier" msgstr "Cod promoțional de identificare" -#: core/models.py:1070 +#: engine/core/models.py:1081 msgid "fixed discount amount applied if percent is not used" msgstr "Valoarea fixă a reducerii aplicate dacă procentul nu este utilizat" -#: core/models.py:1071 +#: engine/core/models.py:1082 msgid "fixed discount amount" msgstr "Valoarea fixă a reducerii" -#: core/models.py:1077 +#: engine/core/models.py:1088 msgid "percentage discount applied if fixed amount is not used" msgstr "Procentul de reducere aplicat dacă suma fixă nu este utilizată" -#: core/models.py:1078 +#: engine/core/models.py:1089 msgid "percentage discount" msgstr "Reducere procentuală" -#: core/models.py:1083 +#: engine/core/models.py:1094 msgid "timestamp when the promocode expires" msgstr "Data la care expiră codul promoțional" -#: core/models.py:1084 +#: engine/core/models.py:1095 msgid "end validity time" msgstr "Timpul final de valabilitate" -#: core/models.py:1089 +#: engine/core/models.py:1100 msgid "timestamp from which this promocode is valid" msgstr "Timestamp de la care acest cod promoțional este valabil" -#: core/models.py:1090 +#: engine/core/models.py:1101 msgid "start validity time" msgstr "Ora de începere a valabilității" -#: core/models.py:1095 +#: engine/core/models.py:1106 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ă" -#: core/models.py:1096 +#: engine/core/models.py:1107 msgid "usage timestamp" msgstr "Timestamp de utilizare" -#: core/models.py:1101 +#: engine/core/models.py:1112 msgid "user assigned to this promocode if applicable" msgstr "Utilizatorul atribuit acestui cod promoțional, dacă este cazul" -#: core/models.py:1102 +#: engine/core/models.py:1113 msgid "assigned user" msgstr "Utilizator atribuit" -#: core/models.py:1109 +#: engine/core/models.py:1120 msgid "promo code" msgstr "Cod promoțional" -#: core/models.py:1110 +#: engine/core/models.py:1121 msgid "promo codes" msgstr "Coduri promoționale" -#: core/models.py:1125 +#: engine/core/models.py:1136 msgid "" "only one type of discount should be defined (amount or percent), but not " "both or neither." @@ -2338,166 +2375,167 @@ msgstr "" "Trebuie definit un singur tip de reducere (sumă sau procent), dar nu ambele " "sau niciuna." -#: core/models.py:1146 +#: engine/core/models.py:1157 msgid "promocode already used" msgstr "Codul promoțional a fost deja utilizat" -#: core/models.py:1162 +#: engine/core/models.py:1173 #, python-brace-format msgid "invalid discount type for promocode {self.uuid}" msgstr "Tip de reducere invalid pentru codul promoțional {self.uuid}!" -#: core/models.py:1171 +#: engine/core/models.py:1182 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." -#: core/models.py:1188 +#: engine/core/models.py:1199 msgid "the billing address used for this order" msgstr "Adresa de facturare utilizată pentru această comandă" -#: core/models.py:1196 +#: engine/core/models.py:1207 msgid "optional promo code applied to this order" msgstr "Cod promoțional opțional aplicat la această comandă" -#: core/models.py:1197 +#: engine/core/models.py:1208 msgid "applied promo code" msgstr "Cod promoțional aplicat" -#: core/models.py:1205 +#: engine/core/models.py:1216 msgid "the shipping address used for this order" msgstr "Adresa de expediere utilizată pentru această comandă" -#: core/models.py:1206 +#: engine/core/models.py:1217 msgid "shipping address" msgstr "Adresa de expediere" -#: core/models.py:1212 +#: engine/core/models.py:1223 msgid "current status of the order in its lifecycle" msgstr "Stadiul actual al comenzii în ciclul său de viață" -#: core/models.py:1213 +#: engine/core/models.py:1224 msgid "order status" msgstr "Stadiul comenzii" -#: core/models.py:1218 core/models.py:1695 +#: engine/core/models.py:1229 engine/core/models.py:1755 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ă" -#: core/models.py:1224 +#: engine/core/models.py:1235 msgid "json representation of order attributes for this order" msgstr "Reprezentarea JSON a atributelor comenzii pentru această comandă" -#: core/models.py:1230 +#: engine/core/models.py:1241 msgid "the user who placed the order" msgstr "Utilizatorul care a plasat comanda" -#: core/models.py:1231 +#: engine/core/models.py:1242 msgid "user" msgstr "Utilizator" -#: core/models.py:1237 +#: engine/core/models.py:1248 msgid "the timestamp when the order was finalized" msgstr "Momentul în care comanda a fost finalizată" -#: core/models.py:1238 +#: engine/core/models.py:1249 msgid "buy time" msgstr "Cumpărați timp" -#: core/models.py:1245 +#: engine/core/models.py:1256 msgid "a human-readable identifier for the order" msgstr "Un identificator ușor de citit pentru comandă" -#: core/models.py:1246 +#: engine/core/models.py:1257 msgid "human readable id" msgstr "ID lizibil de către om" -#: core/models.py:1252 +#: engine/core/models.py:1263 msgid "order" msgstr "Comandă" -#: core/models.py:1294 +#: engine/core/models.py:1305 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!" -#: core/models.py:1326 +#: engine/core/models.py:1337 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" -#: core/models.py:1331 +#: engine/core/models.py:1342 msgid "you cannot add inactive products to order" msgstr "Nu puteți adăuga produse inactive la comandă" -#: core/models.py:1348 +#: engine/core/models.py:1359 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" -#: core/models.py:1370 core/models.py:1395 core/models.py:1403 +#: engine/core/models.py:1381 engine/core/models.py:1406 +#: engine/core/models.py:1414 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" -#: core/models.py:1391 +#: engine/core/models.py:1402 #, python-brace-format msgid "{name} does not exist with query <{query}>" msgstr "{name} nu există cu interogarea <{query}>!" -#: core/models.py:1423 +#: engine/core/models.py:1434 msgid "promocode does not exist" msgstr "Codul promoțional nu există" -#: core/models.py:1429 +#: engine/core/models.py:1440 msgid "you can only buy physical products with shipping address specified" msgstr "" "Puteți cumpăra numai produse fizice cu adresa de expediere specificată!" -#: core/models.py:1448 +#: engine/core/models.py:1459 msgid "address does not exist" msgstr "Adresa nu există" -#: core/models.py:1469 core/models.py:1538 +#: engine/core/models.py:1480 engine/core/models.py:1549 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." -#: core/models.py:1472 core/models.py:1534 +#: engine/core/models.py:1483 engine/core/models.py:1545 msgid "invalid force value" msgstr "Valoare forță invalidă" -#: core/models.py:1478 core/models.py:1541 +#: engine/core/models.py:1489 engine/core/models.py:1552 msgid "you cannot purchase an empty order!" msgstr "Nu puteți achiziționa o comandă goală!" -#: core/models.py:1497 +#: engine/core/models.py:1508 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" -#: core/models.py:1511 +#: engine/core/models.py:1522 msgid "a user without a balance cannot buy with balance" msgstr "Un utilizator fără sold nu poate cumpăra cu sold!" -#: core/models.py:1516 +#: engine/core/models.py:1527 msgid "insufficient funds to complete the order" msgstr "Insuficiența fondurilor pentru finalizarea comenzii" -#: core/models.py:1550 +#: engine/core/models.py:1561 msgid "" "you cannot buy without registration, please provide the following " "information: customer name, customer email, customer phone number" @@ -2505,166 +2543,14 @@ 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" -#: core/models.py:1559 +#: engine/core/models.py:1570 #, 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}!" -#: core/models.py:1668 -msgid "" -"Represents products associated with orders and their attributes. The " -"OrderProduct model maintains information about a product that is part of an " -"order, including details such as purchase price, quantity, product " -"attributes, and status. It manages notifications for the user and " -"administrators and handles operations such as returning the product balance " -"or adding feedback. This model also provides methods and properties that " -"support business logic, such as calculating the total price or generating a " -"download URL for digital products. The model integrates with the Order and " -"Product models and stores a reference to them." -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 " -"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 " -"calcularea prețului total sau generarea unui URL de descărcare pentru " -"produsele digitale. Modelul se integrează cu modelele Order și Product și " -"stochează o referință la acestea." - -#: core/models.py:1683 -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" - -#: core/models.py:1684 -msgid "purchase price at order time" -msgstr "Prețul de achiziție la momentul comenzii" - -#: core/models.py:1689 -msgid "internal comments for admins about this ordered product" -msgstr "" -"Comentarii interne pentru administratori cu privire la acest produs comandat" - -#: core/models.py:1690 -msgid "internal comments" -msgstr "Observații interne" - -#: core/models.py:1696 -msgid "user notifications" -msgstr "Notificări pentru utilizatori" - -#: core/models.py:1701 -msgid "json representation of this item's attributes" -msgstr "Reprezentarea JSON a atributelor acestui element" - -#: core/models.py:1702 -msgid "ordered product attributes" -msgstr "Atribute de produs ordonate" - -#: core/models.py:1707 -msgid "reference to the parent order that contains this product" -msgstr "Trimitere la comanda mamă care conține acest produs" - -#: core/models.py:1708 -msgid "parent order" -msgstr "Ordinul părinților" - -#: core/models.py:1717 -msgid "the specific product associated with this order line" -msgstr "Produsul specific asociat cu această linie de comandă" - -#: core/models.py:1724 -msgid "quantity of this specific product in the order" -msgstr "Cantitatea acestui produs specific din comandă" - -#: core/models.py:1725 -msgid "product quantity" -msgstr "Cantitatea produsului" - -#: core/models.py:1732 -msgid "current status of this product in the order" -msgstr "Starea actuală a acestui produs în comandă" - -#: core/models.py:1733 -msgid "product line status" -msgstr "Starea liniei de produse" - -#: core/models.py:1798 -msgid "order product must have an order" -msgstr "Comandaprodusul trebuie să aibă o comandă asociată!" - -#: core/models.py:1800 -#, python-brace-format -msgid "wrong action specified for feedback: {action}" -msgstr "Acțiune greșită specificată pentru feedback: {action}!" - -#: core/models.py:1814 -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" - -#: core/models.py:1820 -msgid "name" -msgstr "Nume și prenume" - -#: core/models.py:1821 -msgid "URL of the integration" -msgstr "Adresa URL a integrării" - -#: core/models.py:1822 -msgid "authentication credentials" -msgstr "Acreditări de autentificare" - -#: core/models.py:1844 -msgid "you can only have one default CRM provider" -msgstr "Puteți avea un singur furnizor CRM implicit" - -#: core/models.py:1854 -msgid "CRM" -msgstr "CRM" - -#: core/models.py:1855 -msgid "CRMs" -msgstr "CRM-uri" - -#: core/models.py:1867 -msgid "order CRM link" -msgstr "Legătura CRM a comenzii" - -#: core/models.py:1868 -msgid "orders CRM links" -msgstr "Legături CRM pentru comenzi" - -#: core/models.py:1873 -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." -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ă." - -#: core/models.py:1887 -msgid "download" -msgstr "Descărcare" - -#: core/models.py:1888 -msgid "downloads" -msgstr "Descărcări" - -#: core/models.py:1902 +#: engine/core/models.py:1685 msgid "" "Manages user feedback for products. This class is designed to capture and " "store user feedback for specific products that they have purchased. It " @@ -2679,110 +2565,257 @@ 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." -#: core/models.py:1914 +#: engine/core/models.py:1697 msgid "user-provided comments about their experience with the product" msgstr "" "Comentarii furnizate de utilizatori cu privire la experiența lor cu produsul" -#: core/models.py:1915 +#: engine/core/models.py:1698 msgid "feedback comments" msgstr "Comentarii de feedback" -#: core/models.py:1922 -msgid "" -"references the specific product in an order that this feedback is about" +#: engine/core/models.py:1705 +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" -#: core/models.py:1923 +#: engine/core/models.py:1706 msgid "related order product" msgstr "Produs aferent comenzii" -#: core/models.py:1928 +#: engine/core/models.py:1711 msgid "user-assigned rating for the product" msgstr "Rating atribuit de utilizator pentru produs" -#: core/models.py:1929 +#: engine/core/models.py:1712 msgid "product rating" msgstr "Evaluarea produsului" -#: core/serializers/utility.py:89 +#: engine/core/models.py:1728 +msgid "" +"Represents products associated with orders and their attributes. The " +"OrderProduct model maintains information about a product that is part of an " +"order, including details such as purchase price, quantity, product " +"attributes, and status. It manages notifications for the user and " +"administrators and handles operations such as returning the product balance " +"or adding feedback. This model also provides methods and properties that " +"support business logic, such as calculating the total price or generating a " +"download URL for digital products. The model integrates with the Order and " +"Product models and stores a reference to them." +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 " +"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 " +"calcularea prețului total sau generarea unui URL de descărcare pentru " +"produsele digitale. Modelul se integrează cu modelele Order și Product și " +"stochează o referință la acestea." + +#: engine/core/models.py:1743 +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:1744 +msgid "purchase price at order time" +msgstr "Prețul de achiziție la momentul comenzii" + +#: engine/core/models.py:1749 +msgid "internal comments for admins about this ordered product" +msgstr "" +"Comentarii interne pentru administratori cu privire la acest produs comandat" + +#: engine/core/models.py:1750 +msgid "internal comments" +msgstr "Observații interne" + +#: engine/core/models.py:1756 +msgid "user notifications" +msgstr "Notificări pentru utilizatori" + +#: engine/core/models.py:1761 +msgid "json representation of this item's attributes" +msgstr "Reprezentarea JSON a atributelor acestui element" + +#: engine/core/models.py:1762 +msgid "ordered product attributes" +msgstr "Atribute de produs ordonate" + +#: engine/core/models.py:1767 +msgid "reference to the parent order that contains this product" +msgstr "Trimitere la comanda mamă care conține acest produs" + +#: engine/core/models.py:1768 +msgid "parent order" +msgstr "Ordinul părinților" + +#: engine/core/models.py:1777 +msgid "the specific product associated with this order line" +msgstr "Produsul specific asociat cu această linie de comandă" + +#: engine/core/models.py:1784 +msgid "quantity of this specific product in the order" +msgstr "Cantitatea acestui produs specific din comandă" + +#: engine/core/models.py:1785 +msgid "product quantity" +msgstr "Cantitatea produsului" + +#: engine/core/models.py:1792 +msgid "current status of this product in the order" +msgstr "Starea actuală a acestui produs în comandă" + +#: engine/core/models.py:1793 +msgid "product line status" +msgstr "Starea liniei de produse" + +#: engine/core/models.py:1858 +msgid "order product must have an order" +msgstr "Comandaprodusul trebuie să aibă o comandă asociată!" + +#: engine/core/models.py:1860 +#, python-brace-format +msgid "wrong action specified for feedback: {action}" +msgstr "Acțiune greșită specificată pentru feedback: {action}!" + +#: engine/core/models.py:1874 +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:1880 +msgid "name" +msgstr "Nume și prenume" + +#: engine/core/models.py:1881 +msgid "URL of the integration" +msgstr "Adresa URL a integrării" + +#: engine/core/models.py:1882 +msgid "authentication credentials" +msgstr "Acreditări de autentificare" + +#: engine/core/models.py:1904 +msgid "you can only have one default CRM provider" +msgstr "Puteți avea un singur furnizor CRM implicit" + +#: engine/core/models.py:1914 +msgid "CRM" +msgstr "CRM" + +#: engine/core/models.py:1915 +msgid "CRMs" +msgstr "CRM-uri" + +#: engine/core/models.py:1927 +msgid "order CRM link" +msgstr "Legătura CRM a comenzii" + +#: engine/core/models.py:1928 +msgid "orders CRM links" +msgstr "Legături CRM pentru comenzi" + +#: engine/core/models.py:1933 +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." +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ă." + +#: engine/core/models.py:1947 +msgid "download" +msgstr "Descărcare" + +#: engine/core/models.py:1948 +msgid "downloads" +msgstr "Descărcări" + +#: engine/core/serializers/utility.py:89 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." -#: core/signals.py:73 -msgid "error during promocode creation: {e!s}" -msgstr "Eroare în timpul creării codului promoțional: {e!s}" - -#: core/sitemaps.py:25 +#: engine/core/sitemaps.py:25 msgid "Home" msgstr "Acasă" -#: core/sitemaps.py:30 +#: engine/core/sitemaps.py:30 msgid "Contact Us" msgstr "Contactați-ne" -#: core/sitemaps.py:35 +#: engine/core/sitemaps.py:35 msgid "About Us" msgstr "Despre noi" -#: core/templates/digital_order_created_email.html:7 -#: core/templates/digital_order_created_email.html:100 -#: core/templates/digital_order_delivered_email.html:6 -#: core/templates/shipped_order_created_email.html:7 -#: core/templates/shipped_order_created_email.html:99 -#: core/templates/shipped_order_delivered_email.html:7 -#: core/templates/shipped_order_delivered_email.html:99 +#: engine/core/templates/digital_order_created_email.html:7 +#: engine/core/templates/digital_order_created_email.html:100 +#: engine/core/templates/digital_order_delivered_email.html:6 +#: engine/core/templates/shipped_order_created_email.html:7 +#: engine/core/templates/shipped_order_created_email.html:99 +#: engine/core/templates/shipped_order_delivered_email.html:7 +#: engine/core/templates/shipped_order_delivered_email.html:99 msgid "order confirmation" msgstr "Confirmarea comenzii" -#: core/templates/digital_order_created_email.html:95 -#: core/templates/digital_order_delivered_email.html:94 -#: core/templates/promocode_granted_email.html:94 -#: core/templates/shipped_order_created_email.html:94 -#: core/templates/shipped_order_delivered_email.html:94 +#: engine/core/templates/digital_order_created_email.html:95 +#: engine/core/templates/digital_order_delivered_email.html:94 +#: engine/core/templates/promocode_granted_email.html:94 +#: engine/core/templates/shipped_order_created_email.html:94 +#: engine/core/templates/shipped_order_delivered_email.html:94 msgid "logo" msgstr "Logo" -#: core/templates/digital_order_created_email.html:101 -#: core/templates/shipped_order_created_email.html:100 -#: core/templates/shipped_order_delivered_email.html:100 +#: engine/core/templates/digital_order_created_email.html:101 +#: engine/core/templates/shipped_order_created_email.html:100 +#: engine/core/templates/shipped_order_delivered_email.html:100 #, python-format msgid "hello %(order.user.first_name)s," msgstr "Bună ziua %(order.user.first_name)s," -#: core/templates/digital_order_created_email.html:102 +#: engine/core/templates/digital_order_created_email.html:102 #, 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ă " "informăm că am preluat comanda dvs. în lucru. Mai jos sunt detaliile " "comenzii dvs:" -#: core/templates/digital_order_created_email.html:112 -#: core/templates/digital_order_delivered_email.html:110 -#: core/templates/shipped_order_created_email.html:110 -#: core/templates/shipped_order_delivered_email.html:110 +#: engine/core/templates/digital_order_created_email.html:112 +#: engine/core/templates/digital_order_delivered_email.html:110 +#: engine/core/templates/shipped_order_created_email.html:110 +#: engine/core/templates/shipped_order_delivered_email.html:110 msgid "total" msgstr "Total" -#: core/templates/digital_order_created_email.html:125 -#: core/templates/digital_order_delivered_email.html:157 -#: core/templates/shipped_order_created_email.html:127 -#: core/templates/shipped_order_delivered_email.html:127 +#: engine/core/templates/digital_order_created_email.html:125 +#: engine/core/templates/digital_order_delivered_email.html:157 +#: engine/core/templates/shipped_order_created_email.html:127 +#: engine/core/templates/shipped_order_delivered_email.html:127 msgid "total price" msgstr "Preț total" -#: core/templates/digital_order_created_email.html:131 -#: core/templates/shipped_order_created_email.html:140 -#: core/templates/shipped_order_delivered_email.html:140 +#: engine/core/templates/digital_order_created_email.html:131 +#: engine/core/templates/shipped_order_created_email.html:140 +#: engine/core/templates/shipped_order_delivered_email.html:140 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" @@ -2791,28 +2824,28 @@ msgstr "" "Dacă aveți întrebări, nu ezitați să contactați asistența noastră la " "%(config.EMAIL_HOST_USER)s." -#: core/templates/digital_order_created_email.html:133 +#: engine/core/templates/digital_order_created_email.html:133 #, python-format msgid "best regards,
the %(config.PROJECT_NAME)s team" msgstr "Cele mai bune salutări,
echipa %(config.PROJECT_NAME)s" -#: core/templates/digital_order_created_email.html:139 -#: core/templates/digital_order_delivered_email.html:171 -#: core/templates/promocode_granted_email.html:114 +#: engine/core/templates/digital_order_created_email.html:139 +#: engine/core/templates/digital_order_delivered_email.html:171 +#: engine/core/templates/promocode_granted_email.html:114 msgid "all rights reserved" msgstr "Toate drepturile rezervate" -#: core/templates/digital_order_delivered_email.html:99 +#: engine/core/templates/digital_order_delivered_email.html:99 msgid "order delivered" msgstr "Comanda livrată" -#: core/templates/digital_order_delivered_email.html:100 -#: core/templates/promocode_granted_email.html:100 +#: engine/core/templates/digital_order_delivered_email.html:100 +#: engine/core/templates/promocode_granted_email.html:100 #, python-format msgid "hello %(user_first_name)s," msgstr "Bună ziua %(user_first_name)s," -#: core/templates/digital_order_delivered_email.html:101 +#: engine/core/templates/digital_order_delivered_email.html:101 #, python-format msgid "" "we have successfully processed your order №%(order_uuid)s! below are the\n" @@ -2821,7 +2854,7 @@ msgstr "" "Am procesat cu succes comanda dvs. №%(order_uuid)s! Mai jos sunt detaliile " "comenzii dvs:" -#: core/templates/digital_order_delivered_email.html:128 +#: engine/core/templates/digital_order_delivered_email.html:128 msgid "" "additional\n" " information" @@ -2829,13 +2862,13 @@ msgstr "" "informații suplimentare\n" " informații suplimentare" -#: core/templates/digital_order_delivered_email.html:137 -#: core/templates/json_table_widget.html:6 +#: engine/core/templates/digital_order_delivered_email.html:137 +#: engine/core/templates/json_table_widget.html:6 msgid "value" msgstr "Valoare" -#: core/templates/digital_order_delivered_email.html:163 -#: core/templates/promocode_granted_email.html:106 +#: engine/core/templates/digital_order_delivered_email.html:163 +#: engine/core/templates/promocode_granted_email.html:106 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" @@ -2844,26 +2877,26 @@ msgstr "" "Dacă aveți întrebări, nu ezitați să contactați asistența noastră la " "%(contact_email)s." -#: core/templates/digital_order_delivered_email.html:165 -#: core/templates/promocode_granted_email.html:108 +#: engine/core/templates/digital_order_delivered_email.html:165 +#: engine/core/templates/promocode_granted_email.html:108 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "Cele mai bune salutări,
echipa %(project_name)s" -#: core/templates/json_table_widget.html:5 +#: engine/core/templates/json_table_widget.html:5 msgid "key" msgstr "Cheie" -#: core/templates/json_table_widget.html:40 +#: engine/core/templates/json_table_widget.html:40 msgid "Add Row" msgstr "Adaugă rând" -#: core/templates/promocode_granted_email.html:6 -#: core/templates/promocode_granted_email.html:99 +#: engine/core/templates/promocode_granted_email.html:6 +#: engine/core/templates/promocode_granted_email.html:99 msgid "promocode granted" msgstr "Promocode acordat" -#: core/templates/promocode_granted_email.html:101 +#: engine/core/templates/promocode_granted_email.html:101 msgid "" "Thank you for staying with us! We have granted you with a promocode\n" " for " @@ -2871,33 +2904,34 @@ msgstr "" "Vă mulțumim pentru că stați cu noi! V-am acordat un cod promoțional\n" " pentru" -#: core/templates/shipped_order_created_email.html:101 -#: core/templates/shipped_order_delivered_email.html:101 +#: 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:" -#: core/templates/shipped_order_created_email.html:123 -#: core/templates/shipped_order_delivered_email.html:123 +#: engine/core/templates/shipped_order_created_email.html:123 +#: engine/core/templates/shipped_order_delivered_email.html:123 msgid "shipping price" msgstr "Preț de livrare" -#: core/templates/shipped_order_created_email.html:133 -#: core/templates/shipped_order_delivered_email.html:133 +#: engine/core/templates/shipped_order_created_email.html:133 +#: engine/core/templates/shipped_order_delivered_email.html:133 msgid "your order will be delivered to the following address:" msgstr "Comanda dvs. va fi livrată la următoarea adresă:" -#: core/templates/shipped_order_created_email.html:142 -#: core/templates/shipped_order_delivered_email.html:142 +#: engine/core/templates/shipped_order_created_email.html:142 +#: engine/core/templates/shipped_order_delivered_email.html:142 #, python-format msgid "best regards,
The %(config.PROJECT_NAME)s team" msgstr "Salutări,
Echipa %(config.PROJECT_NAME)s" -#: core/templates/shipped_order_created_email.html:147 -#: core/templates/shipped_order_delivered_email.html:147 +#: engine/core/templates/shipped_order_created_email.html:147 +#: engine/core/templates/shipped_order_delivered_email.html:147 msgid "" "all rights\n" " reserved" @@ -2905,50 +2939,50 @@ msgstr "" "toate drepturile\n" " rezervate" -#: core/utils/caching.py:44 +#: engine/core/utils/caching.py:44 msgid "both data and timeout are required" msgstr "Sunt necesare atât datele, cât și timpul de așteptare" -#: core/utils/caching.py:46 +#: engine/core/utils/caching.py:46 msgid "invalid timeout value, it must be between 0 and 216000 seconds" msgstr "Valoare timeout invalidă, trebuie să fie între 0 și 216000 secunde" -#: core/utils/emailing.py:27 +#: engine/core/utils/emailing.py:27 #, python-brace-format msgid "{config.PROJECT_NAME} | contact us initiated" msgstr "{config.PROJECT_NAME} | contactați-ne inițiat" -#: core/utils/emailing.py:73 +#: engine/core/utils/emailing.py:73 #, python-brace-format msgid "{config.PROJECT_NAME} | order confirmation" msgstr "{config.PROJECT_NAME} | Confirmarea comenzii" -#: core/utils/emailing.py:105 +#: engine/core/utils/emailing.py:105 #, python-brace-format msgid "{config.PROJECT_NAME} | order delivered" msgstr "{config.PROJECT_NAME} | Livrarea comenzii" -#: core/utils/emailing.py:188 +#: engine/core/utils/emailing.py:188 #, python-brace-format msgid "{config.PROJECT_NAME} | promocode granted" msgstr "{config.PROJECT_NAME} | promocode acordat" -#: core/utils/messages.py:3 +#: engine/core/utils/messages.py:3 msgid "you do not have permission to perform this action." msgstr "Nu aveți permisiunea de a efectua această acțiune." -#: core/utils/nominatim.py:8 +#: engine/core/utils/nominatim.py:8 msgid "NOMINATIM_URL must be configured." msgstr "Parametrul NOMINATIM_URL trebuie să fie configurat!" -#: core/validators.py:16 +#: engine/core/validators.py:16 #, python-brace-format msgid "image dimensions should not exceed w{max_width} x h{max_height} pixels" msgstr "" "Dimensiunile imaginii nu trebuie să depășească w{max_width} x h{max_height} " "pixeli" -#: core/views.py:72 +#: engine/core/views.py:71 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." @@ -2956,106 +2990,115 @@ msgstr "" "Gestionează cererea pentru indexul sitemap și returnează un răspuns XML. Se " "asigură că răspunsul include antetul tip de conținut adecvat pentru XML." -#: core/views.py:87 +#: engine/core/views.py:86 msgid "" "Handles the detailed view response for a sitemap. This function processes " "the request, fetches the appropriate sitemap detail response, and sets the " "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." -#: core/views.py:116 +#: engine/core/views.py:115 msgid "" "Returns a list of supported languages and their corresponding information." msgstr "" "Returnează o listă a limbilor acceptate și informațiile corespunzătoare." -#: core/views.py:148 +#: engine/core/views.py:147 msgid "Returns the parameters of the website as a JSON object." msgstr "Returnează parametrii site-ului web sub forma unui obiect JSON." -#: core/views.py:167 +#: engine/core/views.py:166 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." -#: core/views.py:194 +#: engine/core/views.py:193 msgid "Handles `contact us` form submissions." msgstr "Gestionează trimiterea formularelor `contact us`." -#: core/views.py:215 +#: engine/core/views.py:214 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." -#: core/views.py:255 +#: engine/core/views.py:254 msgid "Handles global search queries." msgstr "Gestionează interogările de căutare globală." -#: core/views.py:270 +#: engine/core/views.py:269 msgid "Handles the logic of buying as a business without registration." msgstr "Gestionează logica cumpărării ca o afacere fără înregistrare." -#: core/views.py:306 +#: engine/core/views.py:305 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ă." -#: core/views.py:316 +#: engine/core/views.py:315 msgid "order_product_uuid is required" msgstr "order_product_uuid este necesar" -#: core/views.py:322 +#: engine/core/views.py:321 msgid "you can only download the digital asset once" msgstr "Puteți descărca activul digital o singură dată" -#: core/views.py:325 +#: engine/core/views.py:324 msgid "the order must be paid before downloading the digital asset" msgstr "comanda trebuie plătită înainte de descărcarea activului digital" -#: core/views.py:331 +#: engine/core/views.py:330 msgid "the order product does not have a product" msgstr "Produsul de comandă nu are un produs" -#: core/views.py:369 +#: engine/core/views.py:368 msgid "favicon not found" msgstr "favicon nu a fost găsit" -#: core/views.py:374 +#: engine/core/views.py:373 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ă." -#: core/views.py:386 +#: engine/core/views.py:385 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." -#: core/views.py:399 +#: engine/core/views.py:398 msgid "Returns current version of the eVibes. " msgstr "Returnează versiunea curentă a eVibes." -#: core/viewsets.py:137 +#: engine/core/viewsets.py:137 msgid "" "Defines a viewset for managing Evibes-related operations. The EvibesViewSet " "class inherits from ModelViewSet and provides functionality for handling " @@ -3070,13 +3113,12 @@ msgstr "" "dinamice în funcție de acțiunea curentă, permisiuni personalizabile și " "formate de redare." -#: core/viewsets.py:157 +#: engine/core/viewsets.py:157 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 " @@ -3084,7 +3126,7 @@ msgstr "" "stratul API al aplicației și oferă o modalitate standardizată de a procesa " "cererile și răspunsurile pentru datele AttributeGroup." -#: core/viewsets.py:176 +#: engine/core/viewsets.py:176 msgid "" "Handles operations related to Attribute objects within the application. " "Provides a set of API endpoints to interact with Attribute data. This class " @@ -3093,20 +3135,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." -#: core/viewsets.py:195 +#: engine/core/viewsets.py:195 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, " @@ -3115,7 +3157,7 @@ msgstr "" "serializatoare adecvate pentru diferite acțiuni. Capacitățile de filtrare " "sunt furnizate prin DjangoFilterBackend." -#: core/viewsets.py:214 +#: engine/core/viewsets.py:214 msgid "" "Manages views for Category-related operations. The CategoryViewSet class is " "responsible for handling operations related to the Category model in the " @@ -3130,7 +3172,7 @@ msgstr "" "permisiuni pentru a se asigura că numai utilizatorii autorizați pot accesa " "date specifice." -#: core/viewsets.py:326 +#: engine/core/viewsets.py:326 msgid "" "Represents a viewset for managing Brand instances. This class provides " "functionality for querying, filtering, and serializing Brand objects. It " @@ -3142,7 +3184,7 @@ msgstr "" "serializarea obiectelor Brand. Utilizează cadrul ViewSet al Django pentru a " "simplifica implementarea punctelor finale API pentru obiectele Brand." -#: core/viewsets.py:438 +#: engine/core/viewsets.py:438 msgid "" "Manages operations related to the `Product` model in the system. This class " "provides a viewset for managing products, including their filtering, " @@ -3154,13 +3196,13 @@ msgid "" 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" -" integrează cu cadrul REST Django pentru operațiuni API RESTful. Include " +"filtrarea lor, serializarea și operațiunile asupra instanțelor specifice. Se " +"extinde de la `EvibesViewSet` 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." -#: core/viewsets.py:568 +#: engine/core/viewsets.py:568 msgid "" "Represents a viewset for managing Vendor objects. This viewset allows " "fetching, filtering, and serializing Vendor data. It defines the queryset, " @@ -3168,38 +3210,38 @@ 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 " "Vendor prin intermediul cadrului REST Django." -#: core/viewsets.py:588 +#: engine/core/viewsets.py:588 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 `EvibesViewSet` 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 " "utilizează sistemul de filtrare Django pentru interogarea datelor." -#: core/viewsets.py:615 +#: engine/core/viewsets.py:615 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ă " @@ -3212,12 +3254,12 @@ msgstr "" "de acțiunea specifică efectuată și aplică permisiunile corespunzătoare în " "timpul interacțiunii cu datele comenzii." -#: core/viewsets.py:813 +#: engine/core/viewsets.py:813 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. " @@ -3227,12 +3269,11 @@ msgstr "" "solicitată. În plus, oferă o acțiune detaliată pentru gestionarea feedback-" "ului privind instanțele OrderProduct" -#: core/viewsets.py:867 +#: engine/core/viewsets.py:867 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." -#: core/viewsets.py:880 +#: engine/core/viewsets.py:880 msgid "" "Manages the retrieval and handling of PromoCode instances through various " "API actions." @@ -3240,21 +3281,21 @@ msgstr "" "Gestionează recuperarea și gestionarea instanțelor PromoCode prin diverse " "acțiuni API." -#: core/viewsets.py:902 +#: engine/core/viewsets.py:902 msgid "Represents a view set for managing promotions. " msgstr "Reprezintă un set de vizualizări pentru gestionarea promoțiilor." -#: core/viewsets.py:915 +#: engine/core/viewsets.py:915 msgid "Handles operations related to Stock data in the system." msgstr "" "Gestionează operațiunile legate de datele privind stocurile din sistem." -#: core/viewsets.py:929 +#: engine/core/viewsets.py:929 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." @@ -3268,7 +3309,7 @@ msgstr "" "utilizatorii își pot gestiona doar propriile liste de dorințe, cu excepția " "cazului în care sunt acordate permisiuni explicite." -#: core/viewsets.py:1044 +#: engine/core/viewsets.py:1044 msgid "" "This class provides viewset functionality for managing `Address` objects. " "The AddressViewSet class enables CRUD operations, filtering, and custom " @@ -3277,18 +3318,18 @@ 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." -#: core/viewsets.py:1111 +#: engine/core/viewsets.py:1111 #, python-brace-format msgid "Geocoding error: {e}" msgstr "Eroare de geocodare: {e}" -#: core/viewsets.py:1119 +#: engine/core/viewsets.py:1119 msgid "" "Handles operations related to Product Tags within the application. This " "class provides functionality for retrieving, filtering, and serializing " diff --git a/engine/core/locale/ru_RU/LC_MESSAGES/django.mo b/engine/core/locale/ru_RU/LC_MESSAGES/django.mo new file mode 100644 index 00000000..82517f62 Binary files /dev/null and b/engine/core/locale/ru_RU/LC_MESSAGES/django.mo differ diff --git a/core/locale/ru_RU/LC_MESSAGES/django.po b/engine/core/locale/ru_RU/LC_MESSAGES/django.po similarity index 73% rename from core/locale/ru_RU/LC_MESSAGES/django.po rename to engine/core/locale/ru_RU/LC_MESSAGES/django.po index 88076c5c..d3e648ae 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,180 +13,182 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: core/abstract.py:12 +#: engine/core/abstract.py:12 msgid "unique id" msgstr "Уникальный идентификатор" -#: core/abstract.py:13 +#: engine/core/abstract.py:13 msgid "unique id is used to surely identify any database object" msgstr "" "Уникальный идентификатор используется для точной идентификации любого " "объекта базы данных" -#: core/abstract.py:20 +#: engine/core/abstract.py:20 msgid "is active" msgstr "Активен" -#: core/abstract.py:21 +#: engine/core/abstract.py:21 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, этот объект не может быть виден " "пользователям без необходимого разрешения" -#: core/abstract.py:23 core/choices.py:18 +#: engine/core/abstract.py:23 engine/core/choices.py:18 msgid "created" msgstr "Создано" -#: core/abstract.py:23 +#: engine/core/abstract.py:23 msgid "when the object first appeared on the database" msgstr "Когда объект впервые появился в базе данных" -#: core/abstract.py:24 +#: engine/core/abstract.py:24 msgid "modified" msgstr "Модифицированный" -#: core/abstract.py:24 +#: engine/core/abstract.py:24 msgid "when the object was last modified" msgstr "Когда объект был отредактирован в последний раз" -#: core/admin.py:68 +#: engine/core/admin.py:68 msgid "translations" msgstr "Переводы" -#: core/admin.py:72 +#: engine/core/admin.py:72 msgid "general" msgstr "Общие сведения" -#: core/admin.py:74 +#: engine/core/admin.py:74 msgid "relations" msgstr "Отношения" -#: core/admin.py:76 +#: engine/core/admin.py:76 msgid "additional info" msgstr "дополнительная информация" -#: core/admin.py:94 +#: engine/core/admin.py:94 msgid "metadata" msgstr "Метаданные" -#: core/admin.py:101 +#: engine/core/admin.py:101 msgid "timestamps" msgstr "Временные метки" -#: core/admin.py:116 +#: engine/core/admin.py:116 #, python-format msgid "activate selected %(verbose_name_plural)s" msgstr "Активировать выбранный %(verbose_name_plural)s" -#: core/admin.py:121 +#: engine/core/admin.py:121 msgid "selected items have been activated." msgstr "Выбранные сущности активированы!" -#: core/admin.py:127 +#: engine/core/admin.py:127 #, python-format msgid "deactivate selected %(verbose_name_plural)s" msgstr "Деактивировать выбранный %(verbose_name_plural)s" -#: core/admin.py:132 +#: engine/core/admin.py:132 msgid "selected items have been deactivated." msgstr "Выбранные сущности были деактивированы!" -#: core/admin.py:144 core/graphene/object_types.py:582 -#: core/graphene/object_types.py:589 core/models.py:783 core/models.py:791 +#: engine/core/admin.py:144 engine/core/graphene/object_types.py:586 +#: engine/core/graphene/object_types.py:593 engine/core/models.py:794 +#: engine/core/models.py:802 msgid "attribute value" msgstr "Значение атрибута" -#: core/admin.py:145 core/graphene/object_types.py:75 core/models.py:792 +#: engine/core/admin.py:145 engine/core/graphene/object_types.py:75 +#: engine/core/models.py:803 msgid "attribute values" msgstr "Значения атрибутов" -#: core/admin.py:156 +#: engine/core/admin.py:156 msgid "image" msgstr "Изображение" -#: core/admin.py:157 core/graphene/object_types.py:474 +#: engine/core/admin.py:157 engine/core/graphene/object_types.py:474 msgid "images" msgstr "Изображения" -#: core/admin.py:168 core/models.py:559 +#: engine/core/admin.py:169 engine/core/models.py:559 msgid "stock" msgstr "Наличие" -#: core/admin.py:169 core/graphene/object_types.py:636 +#: engine/core/admin.py:170 engine/core/graphene/object_types.py:640 msgid "stocks" msgstr "Наличия" -#: core/admin.py:182 core/models.py:1744 +#: engine/core/admin.py:183 engine/core/models.py:1804 msgid "order product" msgstr "Заказанный товар" -#: core/admin.py:183 core/graphene/object_types.py:389 core/models.py:1745 +#: engine/core/admin.py:184 engine/core/graphene/object_types.py:389 +#: engine/core/models.py:1805 msgid "order products" msgstr "Заказанные товары" -#: core/admin.py:196 core/admin.py:197 +#: engine/core/admin.py:197 engine/core/admin.py:198 msgid "children" msgstr "Дети" -#: core/admin.py:965 +#: engine/core/admin.py:969 msgid "Config" msgstr "Конфигурация" -#: core/apps.py:8 +#: engine/core/apps.py:8 msgid "core" msgstr "Главное" -#: core/choices.py:4 core/choices.py:20 +#: engine/core/choices.py:4 engine/core/choices.py:20 msgid "finished" msgstr "Готовые" -#: core/choices.py:5 core/choices.py:19 +#: engine/core/choices.py:5 engine/core/choices.py:19 msgid "delivering" msgstr "Доставка" -#: core/choices.py:6 +#: engine/core/choices.py:6 msgid "delivered" msgstr "Доставлено" -#: core/choices.py:7 +#: engine/core/choices.py:7 msgid "canceled" msgstr "Отменено" -#: core/choices.py:8 core/choices.py:16 core/choices.py:24 +#: engine/core/choices.py:8 engine/core/choices.py:16 engine/core/choices.py:24 msgid "failed" msgstr "Не удалось" -#: core/choices.py:9 core/choices.py:15 +#: engine/core/choices.py:9 engine/core/choices.py:15 msgid "pending" msgstr "В ожидании" -#: core/choices.py:10 +#: engine/core/choices.py:10 msgid "accepted" msgstr "Принято" -#: core/choices.py:11 +#: engine/core/choices.py:11 msgid "money returned" msgstr "Возвращенные деньги" -#: core/choices.py:17 +#: engine/core/choices.py:17 msgid "payment" msgstr "Оплата" -#: core/choices.py:21 +#: engine/core/choices.py:21 msgid "momental" msgstr "Моментальный" -#: core/choices.py:24 +#: engine/core/choices.py:24 msgid "successful" msgstr "Успешный" -#: core/docs/drf/views.py:17 core/graphene/mutations.py:38 +#: engine/core/docs/drf/views.py:17 engine/core/graphene/mutations.py:38 msgid "cache I/O" msgstr "Ввод/вывод кэша" -#: core/docs/drf/views.py:19 +#: engine/core/docs/drf/views.py:19 msgid "" "apply only a key to read permitted data from cache.\n" "apply key, data and timeout with authentication to write data to cache." @@ -194,32 +196,32 @@ msgstr "" "Применяйте только ключ для чтения разрешенных данных из кэша.\n" "Применяйте ключ, данные и таймаут с аутентификацией для записи данных в кэш." -#: core/docs/drf/views.py:32 +#: engine/core/docs/drf/views.py:32 msgid "get a list of supported languages" msgstr "Получите список поддерживаемых языков" -#: core/docs/drf/views.py:41 +#: engine/core/docs/drf/views.py:41 msgid "get application's exposable parameters" msgstr "Получите параметры приложения, которые можно использовать" -#: core/docs/drf/views.py:48 +#: engine/core/docs/drf/views.py:48 msgid "send a message to the support team" msgstr "Отправьте сообщение в службу поддержки" -#: core/docs/drf/views.py:59 core/graphene/mutations.py:58 +#: engine/core/docs/drf/views.py:59 engine/core/graphene/mutations.py:58 msgid "request a CORSed URL" msgstr "Запросите URL-адрес с поддержкой CORS. Допускается только https." -#: core/docs/drf/views.py:85 +#: engine/core/docs/drf/views.py:85 msgid "global search endpoint to query across project's tables" msgstr "" "Ручка глобального поиска для запросов по всем открытым таблицам проекта" -#: core/docs/drf/views.py:91 +#: engine/core/docs/drf/views.py:91 msgid "purchase an order as a business" msgstr "Приобрести заказ в качестве предприятия" -#: core/docs/drf/views.py:98 +#: engine/core/docs/drf/views.py:98 msgid "" "purchase an order as a business, using the provided `products` with " "`product_uuid` and `attributes`." @@ -227,223 +229,226 @@ msgstr "" "Приобретите заказ как бизнес, используя предоставленные `продукты` с " "`product_uuid` и `attributes`." -#: core/docs/drf/viewsets.py:58 +#: engine/core/docs/drf/viewsets.py:58 msgid "list all attribute groups (simple view)" msgstr "Список всех групп атрибутов (простой вид)" -#: core/docs/drf/viewsets.py:62 +#: engine/core/docs/drf/viewsets.py:62 msgid "retrieve a single attribute group (detailed view)" msgstr "Получение одной группы атрибутов (подробный просмотр)" -#: core/docs/drf/viewsets.py:66 +#: engine/core/docs/drf/viewsets.py:66 msgid "create an attribute group" msgstr "Создайте группу атрибутов" -#: core/docs/drf/viewsets.py:70 +#: engine/core/docs/drf/viewsets.py:70 msgid "delete an attribute group" msgstr "Удаление группы атрибутов" -#: core/docs/drf/viewsets.py:74 +#: engine/core/docs/drf/viewsets.py:74 msgid "rewrite an existing attribute group saving non-editables" msgstr "" "Переписать существующую группу атрибутов с сохранением нередактируемых " "элементов" -#: core/docs/drf/viewsets.py:78 -msgid "" -"rewrite some fields of an existing attribute group saving non-editables" +#: engine/core/docs/drf/viewsets.py:78 +msgid "rewrite some fields of an existing attribute group saving non-editables" msgstr "" "Переписывание некоторых полей существующей группы атрибутов с сохранением " "нередактируемых полей" -#: core/docs/drf/viewsets.py:85 +#: engine/core/docs/drf/viewsets.py:85 msgid "list all attributes (simple view)" msgstr "Список всех атрибутов (простой вид)" -#: core/docs/drf/viewsets.py:89 +#: engine/core/docs/drf/viewsets.py:89 msgid "retrieve a single attribute (detailed view)" msgstr "Получение одного атрибута (подробный просмотр)" -#: core/docs/drf/viewsets.py:93 +#: engine/core/docs/drf/viewsets.py:93 msgid "create an attribute" msgstr "Создайте атрибут" -#: core/docs/drf/viewsets.py:97 +#: engine/core/docs/drf/viewsets.py:97 msgid "delete an attribute" msgstr "Удалить атрибут" -#: core/docs/drf/viewsets.py:101 +#: engine/core/docs/drf/viewsets.py:101 msgid "rewrite an existing attribute saving non-editables" msgstr "Переписать существующий атрибут, сохранив нередактируемый" -#: core/docs/drf/viewsets.py:105 +#: engine/core/docs/drf/viewsets.py:105 msgid "rewrite some fields of an existing attribute saving non-editables" msgstr "" "Переписывание некоторых полей существующего атрибута с сохранением " "нередактируемых полей" -#: core/docs/drf/viewsets.py:112 +#: engine/core/docs/drf/viewsets.py:112 msgid "list all attribute values (simple view)" msgstr "Список всех значений атрибутов (простой вид)" -#: core/docs/drf/viewsets.py:116 +#: engine/core/docs/drf/viewsets.py:116 msgid "retrieve a single attribute value (detailed view)" msgstr "Получение значения одного атрибута (подробный просмотр)" -#: core/docs/drf/viewsets.py:120 +#: engine/core/docs/drf/viewsets.py:120 msgid "create an attribute value" msgstr "Создание значения атрибута" -#: core/docs/drf/viewsets.py:124 +#: engine/core/docs/drf/viewsets.py:124 msgid "delete an attribute value" msgstr "Удалить значение атрибута" -#: core/docs/drf/viewsets.py:128 +#: engine/core/docs/drf/viewsets.py:128 msgid "rewrite an existing attribute value saving non-editables" msgstr "" "Перезапись существующего значения атрибута с сохранением нередактируемых " "значений" -#: core/docs/drf/viewsets.py:132 -msgid "" -"rewrite some fields of an existing attribute value saving non-editables" +#: engine/core/docs/drf/viewsets.py:132 +msgid "rewrite some fields of an existing attribute value saving non-editables" msgstr "" "Переписывание некоторых полей существующего значения атрибута с сохранением " "нередактируемых значений" -#: core/docs/drf/viewsets.py:139 core/docs/drf/viewsets.py:140 +#: engine/core/docs/drf/viewsets.py:139 engine/core/docs/drf/viewsets.py:140 msgid "list all categories (simple view)" msgstr "Список всех категорий (простой вид)" -#: core/docs/drf/viewsets.py:144 core/docs/drf/viewsets.py:145 +#: engine/core/docs/drf/viewsets.py:144 engine/core/docs/drf/viewsets.py:145 msgid "retrieve a single category (detailed view)" msgstr "Получение одной категории (подробный просмотр)" -#: core/docs/drf/viewsets.py:149 core/docs/drf/viewsets.py:150 +#: engine/core/docs/drf/viewsets.py:150 engine/core/docs/drf/viewsets.py:183 +msgid "Category UUID or slug" +msgstr "UUID или slug категории" + +#: engine/core/docs/drf/viewsets.py:157 engine/core/docs/drf/viewsets.py:158 msgid "create a category" msgstr "Создайте категорию" -#: core/docs/drf/viewsets.py:154 core/docs/drf/viewsets.py:155 +#: engine/core/docs/drf/viewsets.py:162 engine/core/docs/drf/viewsets.py:163 msgid "delete a category" msgstr "Удалить категорию" -#: core/docs/drf/viewsets.py:159 core/docs/drf/viewsets.py:160 +#: engine/core/docs/drf/viewsets.py:167 engine/core/docs/drf/viewsets.py:168 msgid "rewrite an existing category saving non-editables" msgstr "" "Переписать существующую категорию с сохранением нередактируемых объектов" -#: core/docs/drf/viewsets.py:164 core/docs/drf/viewsets.py:165 +#: engine/core/docs/drf/viewsets.py:172 engine/core/docs/drf/viewsets.py:173 msgid "rewrite some fields of an existing category saving non-editables" msgstr "" "Переписать некоторые поля существующей категории с сохранением " "нередактируемых полей" -#: core/docs/drf/viewsets.py:169 core/docs/drf/viewsets.py:501 -#: core/graphene/object_types.py:117 core/graphene/object_types.py:207 -#: core/graphene/object_types.py:482 +#: engine/core/docs/drf/viewsets.py:177 engine/core/docs/drf/viewsets.py:517 +#: engine/core/graphene/object_types.py:117 +#: engine/core/graphene/object_types.py:207 +#: engine/core/graphene/object_types.py:482 msgid "SEO Meta snapshot" msgstr "SEO Meta snapshot" -#: core/docs/drf/viewsets.py:170 +#: engine/core/docs/drf/viewsets.py:178 msgid "returns a snapshot of the category's SEO meta data" msgstr "Возвращает снимок SEO-метаданных категории." -#: core/docs/drf/viewsets.py:175 -msgid "Category UUID or slug" -msgstr "UUID или slug категории" - -#: core/docs/drf/viewsets.py:188 +#: engine/core/docs/drf/viewsets.py:196 msgid "list all orders (simple view)" msgstr "Список всех категорий (простой вид)" -#: core/docs/drf/viewsets.py:189 +#: engine/core/docs/drf/viewsets.py:197 msgid "for non-staff users, only their own orders are returned." msgstr "" "Для пользователей, не являющихся сотрудниками, возвращаются только их " "собственные заказы." -#: core/docs/drf/viewsets.py:195 +#: engine/core/docs/drf/viewsets.py:203 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" -#: core/docs/drf/viewsets.py:202 +#: engine/core/docs/drf/viewsets.py:210 msgid "Filter orders with buy_time >= this ISO 8601 datetime" msgstr "Отфильтруйте ордера с buy_time >= этому времени ISO 8601" -#: core/docs/drf/viewsets.py:207 +#: engine/core/docs/drf/viewsets.py:215 msgid "Filter orders with buy_time <= this ISO 8601 datetime" msgstr "Отфильтруйте ордера с buy_time <= этому времени ISO 8601" -#: core/docs/drf/viewsets.py:212 +#: engine/core/docs/drf/viewsets.py:220 msgid "Filter by exact order UUID" msgstr "Фильтр по точному UUID заказа" -#: core/docs/drf/viewsets.py:217 +#: engine/core/docs/drf/viewsets.py:225 msgid "Filter by exact human-readable order ID" msgstr "Фильтр по точному человекочитаемому идентификатору заказа" -#: core/docs/drf/viewsets.py:222 +#: engine/core/docs/drf/viewsets.py:230 msgid "Filter by user's email (case-insensitive exact match)" msgstr "" "Фильтр по электронной почте пользователя (точное совпадение без учета " "регистра)" -#: core/docs/drf/viewsets.py:227 +#: engine/core/docs/drf/viewsets.py:235 msgid "Filter by user's UUID" msgstr "Фильтр по UUID пользователя" -#: core/docs/drf/viewsets.py:232 +#: engine/core/docs/drf/viewsets.py:240 msgid "Filter by order status (case-insensitive substring match)" msgstr "" "Фильтр по статусу заказа (нечувствительное к регистру подстрочное " "соответствие)" -#: core/docs/drf/viewsets.py:238 +#: engine/core/docs/drf/viewsets.py:246 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')." -#: core/docs/drf/viewsets.py:247 +#: engine/core/docs/drf/viewsets.py:255 msgid "retrieve a single order (detailed view)" msgstr "Получение одной категории (подробный просмотр)" -#: core/docs/drf/viewsets.py:251 +#: engine/core/docs/drf/viewsets.py:260 +msgid "Order UUID or human-readable id" +msgstr "UUID заказа или человекочитаемый идентификатор" + +#: engine/core/docs/drf/viewsets.py:267 msgid "create an order" msgstr "Создайте атрибут" -#: core/docs/drf/viewsets.py:252 +#: engine/core/docs/drf/viewsets.py:268 msgid "doesn't work for non-staff users." msgstr "Не работает для нештатных пользователей." -#: core/docs/drf/viewsets.py:256 +#: engine/core/docs/drf/viewsets.py:272 msgid "delete an order" msgstr "Удалить атрибут" -#: core/docs/drf/viewsets.py:260 +#: engine/core/docs/drf/viewsets.py:276 msgid "rewrite an existing order saving non-editables" msgstr "" "Переписать существующую категорию с сохранением нередактируемых объектов" -#: core/docs/drf/viewsets.py:264 +#: engine/core/docs/drf/viewsets.py:280 msgid "rewrite some fields of an existing order saving non-editables" msgstr "" "Переписать некоторые поля существующей категории с сохранением " "нередактируемых полей" -#: core/docs/drf/viewsets.py:268 +#: engine/core/docs/drf/viewsets.py:284 msgid "purchase an order" msgstr "Покупная цена на момент заказа" -#: core/docs/drf/viewsets.py:270 +#: engine/core/docs/drf/viewsets.py:286 msgid "" "finalizes the order purchase. if `force_balance` is used, the purchase is " "completed using the user's balance; if `force_payment` is used, a " @@ -453,19 +458,19 @@ msgstr "" "завершается с использованием баланса пользователя; если используется " "`force_payment`, инициируется транзакция." -#: core/docs/drf/viewsets.py:282 core/graphene/mutations.py:335 +#: engine/core/docs/drf/viewsets.py:298 engine/core/graphene/mutations.py:335 msgid "purchase an order without account creation" msgstr "приобретение заказа без создания учетной записи" -#: core/docs/drf/viewsets.py:283 +#: engine/core/docs/drf/viewsets.py:299 msgid "finalizes the order purchase for a non-registered user." msgstr "завершает покупку заказа для незарегистрированного пользователя." -#: core/docs/drf/viewsets.py:291 +#: engine/core/docs/drf/viewsets.py:307 msgid "add product to order" msgstr "Добавить товар в заказ" -#: core/docs/drf/viewsets.py:292 +#: engine/core/docs/drf/viewsets.py:308 msgid "" "adds a product to an order using the provided `product_uuid` and " "`attributes`." @@ -473,23 +478,23 @@ msgstr "" "Добавляет товар в заказ, используя предоставленные `product_uuid` и " "`attributes`." -#: core/docs/drf/viewsets.py:297 +#: engine/core/docs/drf/viewsets.py:313 msgid "add a list of products to order, quantities will not count" msgstr "Добавьте список продуктов для заказа, количество не учитывается" -#: core/docs/drf/viewsets.py:298 +#: engine/core/docs/drf/viewsets.py:314 msgid "" "adds a list of products to an order using the provided `product_uuid` and " "`attributes`." msgstr "" -"Добавляет список товаров в заказ, используя предоставленные `product_uuid` и" -" `attributes`." +"Добавляет список товаров в заказ, используя предоставленные `product_uuid` и " +"`attributes`." -#: core/docs/drf/viewsets.py:303 +#: engine/core/docs/drf/viewsets.py:319 msgid "remove product from order" msgstr "Удалить продукт из заказа" -#: core/docs/drf/viewsets.py:304 +#: engine/core/docs/drf/viewsets.py:320 msgid "" "removes a product from an order using the provided `product_uuid` and " "`attributes`." @@ -497,819 +502,846 @@ msgstr "" "Удаляет товар из заказа, используя предоставленные `product_uuid` и " "`attributes`." -#: core/docs/drf/viewsets.py:309 +#: engine/core/docs/drf/viewsets.py:325 msgid "remove product from order, quantities will not count" msgstr "Удалите продукт из заказа, количество не будет учитываться" -#: core/docs/drf/viewsets.py:310 +#: engine/core/docs/drf/viewsets.py:326 msgid "" "removes a list of products from an order using the provided `product_uuid` " "and `attributes`" msgstr "" -"Удаляет список товаров из заказа, используя предоставленные `product_uuid` и" -" `attributes`." +"Удаляет список товаров из заказа, используя предоставленные `product_uuid` и " +"`attributes`." -#: core/docs/drf/viewsets.py:318 +#: engine/core/docs/drf/viewsets.py:334 msgid "list all wishlists (simple view)" msgstr "Список всех атрибутов (простой вид)" -#: core/docs/drf/viewsets.py:319 +#: engine/core/docs/drf/viewsets.py:335 msgid "for non-staff users, only their own wishlists are returned." msgstr "" "Для пользователей, не являющихся сотрудниками, возвращаются только их " "собственные списки желаний." -#: core/docs/drf/viewsets.py:323 +#: engine/core/docs/drf/viewsets.py:339 msgid "retrieve a single wishlist (detailed view)" msgstr "Получение одного атрибута (подробный просмотр)" -#: core/docs/drf/viewsets.py:327 +#: engine/core/docs/drf/viewsets.py:343 msgid "create an wishlist" msgstr "Создайте атрибут" -#: core/docs/drf/viewsets.py:328 +#: engine/core/docs/drf/viewsets.py:344 msgid "Doesn't work for non-staff users." msgstr "Не работает для нештатных пользователей." -#: core/docs/drf/viewsets.py:332 +#: engine/core/docs/drf/viewsets.py:348 msgid "delete an wishlist" msgstr "Удалить атрибут" -#: core/docs/drf/viewsets.py:336 +#: engine/core/docs/drf/viewsets.py:352 msgid "rewrite an existing wishlist saving non-editables" msgstr "Переписать существующий атрибут, сохранив нередактируемый" -#: core/docs/drf/viewsets.py:340 +#: engine/core/docs/drf/viewsets.py:356 msgid "rewrite some fields of an existing wishlist saving non-editables" msgstr "" "Переписывание некоторых полей существующего атрибута с сохранением " "нередактируемых полей" -#: core/docs/drf/viewsets.py:344 +#: engine/core/docs/drf/viewsets.py:360 msgid "add product to wishlist" msgstr "Добавить товар в заказ" -#: core/docs/drf/viewsets.py:345 +#: engine/core/docs/drf/viewsets.py:361 msgid "adds a product to an wishlist using the provided `product_uuid`" msgstr "" "Добавляет товар в список желаний, используя предоставленный `product_uuid`." -#: core/docs/drf/viewsets.py:350 +#: engine/core/docs/drf/viewsets.py:366 msgid "remove product from wishlist" msgstr "Удалить продукт из списка желаний" -#: core/docs/drf/viewsets.py:351 +#: engine/core/docs/drf/viewsets.py:367 msgid "removes a product from an wishlist using the provided `product_uuid`" msgstr "" "Удаляет продукт из списка желаний, используя предоставленный `product_uuid`." -#: core/docs/drf/viewsets.py:356 +#: engine/core/docs/drf/viewsets.py:372 msgid "add many products to wishlist" msgstr "Добавьте много товаров в список желаний" -#: core/docs/drf/viewsets.py:357 +#: engine/core/docs/drf/viewsets.py:373 msgid "adds many products to an wishlist using the provided `product_uuids`" msgstr "" "Добавляет множество товаров в список желаний, используя предоставленные " "`product_uuids`." -#: core/docs/drf/viewsets.py:362 +#: engine/core/docs/drf/viewsets.py:378 msgid "remove many products from wishlist" msgstr "Удалить продукт из заказа" -#: core/docs/drf/viewsets.py:363 +#: engine/core/docs/drf/viewsets.py:379 msgid "" "removes many products from an wishlist using the provided `product_uuids`" msgstr "" "Удаляет множество товаров из списка желаний, используя предоставленные " "`product_uuids`." -#: core/docs/drf/viewsets.py:370 +#: engine/core/docs/drf/viewsets.py:386 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`." -#: core/docs/drf/viewsets.py:386 core/docs/drf/viewsets.py:387 +#: engine/core/docs/drf/viewsets.py:402 engine/core/docs/drf/viewsets.py:403 msgid "list all products (simple view)" msgstr "Список всех продуктов (простой вид)" -#: core/docs/drf/viewsets.py:392 +#: engine/core/docs/drf/viewsets.py:408 msgid "(exact) Product UUID" msgstr "(точный) UUID продукта" -#: core/docs/drf/viewsets.py:399 +#: engine/core/docs/drf/viewsets.py:415 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" -#: core/docs/drf/viewsets.py:413 core/docs/drf/viewsets.py:414 +#: engine/core/docs/drf/viewsets.py:429 engine/core/docs/drf/viewsets.py:430 msgid "retrieve a single product (detailed view)" msgstr "Получение одного продукта (подробный просмотр)" -#: core/docs/drf/viewsets.py:419 core/docs/drf/viewsets.py:443 -#: core/docs/drf/viewsets.py:459 core/docs/drf/viewsets.py:475 -#: core/docs/drf/viewsets.py:491 core/docs/drf/viewsets.py:507 +#: engine/core/docs/drf/viewsets.py:435 engine/core/docs/drf/viewsets.py:459 +#: engine/core/docs/drf/viewsets.py:475 engine/core/docs/drf/viewsets.py:491 +#: engine/core/docs/drf/viewsets.py:507 engine/core/docs/drf/viewsets.py:523 msgid "Product UUID or slug" msgstr "UUID или Slug продукта" -#: core/docs/drf/viewsets.py:429 core/docs/drf/viewsets.py:430 +#: engine/core/docs/drf/viewsets.py:445 engine/core/docs/drf/viewsets.py:446 msgid "create a product" msgstr "Создать продукт" -#: core/docs/drf/viewsets.py:437 core/docs/drf/viewsets.py:438 +#: engine/core/docs/drf/viewsets.py:453 engine/core/docs/drf/viewsets.py:454 msgid "rewrite an existing product, preserving non-editable fields" msgstr "Переписать существующий продукт, сохранив нередактируемые поля" -#: core/docs/drf/viewsets.py:453 core/docs/drf/viewsets.py:454 +#: engine/core/docs/drf/viewsets.py:469 engine/core/docs/drf/viewsets.py:470 msgid "" "update some fields of an existing product, preserving non-editable fields" msgstr "" "Обновление некоторых полей существующего продукта с сохранением " "нередактируемых полей" -#: core/docs/drf/viewsets.py:469 core/docs/drf/viewsets.py:470 +#: engine/core/docs/drf/viewsets.py:485 engine/core/docs/drf/viewsets.py:486 msgid "delete a product" msgstr "Удалить продукт" -#: core/docs/drf/viewsets.py:485 core/docs/drf/viewsets.py:486 +#: engine/core/docs/drf/viewsets.py:501 engine/core/docs/drf/viewsets.py:502 msgid "lists all permitted feedbacks for a product" msgstr "список всех разрешенных отзывов о продукте" -#: core/docs/drf/viewsets.py:502 +#: engine/core/docs/drf/viewsets.py:518 msgid "returns a snapshot of the product's SEO meta data" msgstr "Возвращает снимок метаданных SEO продукта." -#: core/docs/drf/viewsets.py:520 +#: engine/core/docs/drf/viewsets.py:536 msgid "list all addresses" msgstr "Перечислите все адреса" -#: core/docs/drf/viewsets.py:527 +#: engine/core/docs/drf/viewsets.py:543 msgid "retrieve a single address" msgstr "Получение одного адреса" -#: core/docs/drf/viewsets.py:534 +#: engine/core/docs/drf/viewsets.py:550 msgid "create a new address" msgstr "Создайте новый адрес" -#: core/docs/drf/viewsets.py:542 +#: engine/core/docs/drf/viewsets.py:558 msgid "delete an address" msgstr "Удалить адрес" -#: core/docs/drf/viewsets.py:549 +#: engine/core/docs/drf/viewsets.py:565 msgid "update an entire address" msgstr "Обновление всего адреса" -#: core/docs/drf/viewsets.py:557 +#: engine/core/docs/drf/viewsets.py:573 msgid "partially update an address" msgstr "Частичное обновление адреса" -#: core/docs/drf/viewsets.py:565 +#: engine/core/docs/drf/viewsets.py:581 msgid "autocomplete address suggestions" msgstr "Автозаполнение ввода адреса" -#: core/docs/drf/viewsets.py:570 +#: engine/core/docs/drf/viewsets.py:586 msgid "raw data query string, please append with data from geo-IP endpoint" msgstr "" "Строка запроса сырых данных, пожалуйста, дополните ее данными с конечной " "точки geo-IP" -#: core/docs/drf/viewsets.py:576 +#: engine/core/docs/drf/viewsets.py:592 msgid "limit the results amount, 1 < limit < 10, default: 5" msgstr "ограничивает количество результатов, 1 < limit < 10, по умолчанию: 5" -#: core/docs/drf/viewsets.py:589 +#: engine/core/docs/drf/viewsets.py:605 msgid "list all feedbacks (simple view)" msgstr "список всех отзывов (простой вид)" -#: core/docs/drf/viewsets.py:593 +#: engine/core/docs/drf/viewsets.py:609 msgid "retrieve a single feedback (detailed view)" msgstr "получить один отзыв (подробный просмотр)" -#: core/docs/drf/viewsets.py:597 +#: engine/core/docs/drf/viewsets.py:613 msgid "create a feedback" msgstr "создать отзыв" -#: core/docs/drf/viewsets.py:601 +#: engine/core/docs/drf/viewsets.py:617 msgid "delete a feedback" msgstr "удалить отзыв" -#: core/docs/drf/viewsets.py:605 +#: engine/core/docs/drf/viewsets.py:621 msgid "rewrite an existing feedback saving non-editables" msgstr "" "Переписать существующую категорию с сохранением нередактируемых объектов" -#: core/docs/drf/viewsets.py:609 +#: engine/core/docs/drf/viewsets.py:625 msgid "rewrite some fields of an existing feedback saving non-editables" msgstr "" "Переписать некоторые поля существующей категории с сохранением " "нередактируемых полей" -#: core/docs/drf/viewsets.py:616 +#: engine/core/docs/drf/viewsets.py:632 msgid "list all order–product relations (simple view)" msgstr "список всех отношений \"заказ-продукт\" (простой вид)" -#: core/docs/drf/viewsets.py:623 +#: engine/core/docs/drf/viewsets.py:639 msgid "retrieve a single order–product relation (detailed view)" msgstr "получить одно отношение \"заказ-продукт\" (подробный просмотр)" -#: core/docs/drf/viewsets.py:630 +#: engine/core/docs/drf/viewsets.py:646 msgid "create a new order–product relation" msgstr "создать новое отношение \"заказ-продукт" -#: core/docs/drf/viewsets.py:637 +#: engine/core/docs/drf/viewsets.py:653 msgid "replace an existing order–product relation" msgstr "заменить существующее отношение \"заказ-продукт" -#: core/docs/drf/viewsets.py:644 +#: engine/core/docs/drf/viewsets.py:660 msgid "partially update an existing order–product relation" msgstr "частично обновить существующее отношение \"заказ-продукт" -#: core/docs/drf/viewsets.py:651 +#: engine/core/docs/drf/viewsets.py:667 msgid "delete an order–product relation" msgstr "удалить отношение \"заказ-продукт" -#: core/docs/drf/viewsets.py:658 +#: engine/core/docs/drf/viewsets.py:674 msgid "add or remove feedback on an order–product relation" msgstr "добавлять или удалять отзывы о связи заказ-продукт" -#: core/docs/drf/viewsets.py:672 +#: engine/core/docs/drf/viewsets.py:688 msgid "list all brands (simple view)" msgstr "Список всех брендов (простой вид)" -#: core/docs/drf/viewsets.py:676 +#: engine/core/docs/drf/viewsets.py:692 msgid "retrieve a single brand (detailed view)" msgstr "Извлечение одного бренда (подробный просмотр)" -#: core/docs/drf/viewsets.py:680 +#: engine/core/docs/drf/viewsets.py:697 engine/core/docs/drf/viewsets.py:725 +msgid "Brand UUID or slug" +msgstr "UUID бренда или ссылка" + +#: engine/core/docs/drf/viewsets.py:704 msgid "create a brand" msgstr "Создайте бренд" -#: core/docs/drf/viewsets.py:684 +#: engine/core/docs/drf/viewsets.py:708 msgid "delete a brand" msgstr "Удалить бренд" -#: core/docs/drf/viewsets.py:688 +#: engine/core/docs/drf/viewsets.py:712 msgid "rewrite an existing brand saving non-editables" msgstr "" "Переписать существующую категорию с сохранением нередактируемых объектов" -#: core/docs/drf/viewsets.py:692 +#: engine/core/docs/drf/viewsets.py:716 msgid "rewrite some fields of an existing brand saving non-editables" msgstr "" "Переписать некоторые поля существующей категории с сохранением " "нередактируемых полей" -#: core/docs/drf/viewsets.py:696 +#: engine/core/docs/drf/viewsets.py:720 msgid "SEO Meta snapshot for brand" msgstr "SEO Meta snapshot для бренда" -#: core/docs/drf/viewsets.py:703 +#: engine/core/docs/drf/viewsets.py:735 msgid "list all vendors (simple view)" msgstr "Список всех продавцов (простой вид)" -#: core/docs/drf/viewsets.py:707 +#: engine/core/docs/drf/viewsets.py:739 msgid "retrieve a single vendor (detailed view)" msgstr "Получение данных по одному поставщику (подробный просмотр)" -#: core/docs/drf/viewsets.py:711 +#: engine/core/docs/drf/viewsets.py:743 msgid "create a vendor" msgstr "Создать поставщика" -#: core/docs/drf/viewsets.py:715 +#: engine/core/docs/drf/viewsets.py:747 msgid "delete a vendor" msgstr "Удалить поставщика" -#: core/docs/drf/viewsets.py:719 +#: engine/core/docs/drf/viewsets.py:751 msgid "rewrite an existing vendor saving non-editables" msgstr "" "Переписать существующую категорию с сохранением нередактируемых объектов" -#: core/docs/drf/viewsets.py:723 +#: engine/core/docs/drf/viewsets.py:755 msgid "rewrite some fields of an existing vendor saving non-editables" msgstr "" "Переписать некоторые поля существующей категории с сохранением " "нередактируемых полей" -#: core/docs/drf/viewsets.py:730 +#: engine/core/docs/drf/viewsets.py:762 msgid "list all product images (simple view)" msgstr "Список всех изображений товаров (простой вид)" -#: core/docs/drf/viewsets.py:734 +#: engine/core/docs/drf/viewsets.py:766 msgid "retrieve a single product image (detailed view)" msgstr "Получение изображения одного продукта (детальный просмотр)" -#: core/docs/drf/viewsets.py:738 +#: engine/core/docs/drf/viewsets.py:770 msgid "create a product image" msgstr "Создайте изображение продукта" -#: core/docs/drf/viewsets.py:742 +#: engine/core/docs/drf/viewsets.py:774 msgid "delete a product image" msgstr "Удаление изображения продукта" -#: core/docs/drf/viewsets.py:746 +#: engine/core/docs/drf/viewsets.py:778 msgid "rewrite an existing product image saving non-editables" msgstr "" "Переписать существующую категорию с сохранением нередактируемых объектов" -#: core/docs/drf/viewsets.py:750 +#: engine/core/docs/drf/viewsets.py:782 msgid "rewrite some fields of an existing product image saving non-editables" msgstr "" "Переписать некоторые поля существующей категории с сохранением " "нередактируемых полей" -#: core/docs/drf/viewsets.py:757 +#: engine/core/docs/drf/viewsets.py:789 msgid "list all promo codes (simple view)" msgstr "Список всех промокодов (простой вид)" -#: core/docs/drf/viewsets.py:761 +#: engine/core/docs/drf/viewsets.py:793 msgid "retrieve a single promo code (detailed view)" msgstr "Получение одного промокода (подробный просмотр)" -#: core/docs/drf/viewsets.py:765 +#: engine/core/docs/drf/viewsets.py:797 msgid "create a promo code" msgstr "Создайте промокод" -#: core/docs/drf/viewsets.py:769 +#: engine/core/docs/drf/viewsets.py:801 msgid "delete a promo code" msgstr "Удалить промокод" -#: core/docs/drf/viewsets.py:773 +#: engine/core/docs/drf/viewsets.py:805 msgid "rewrite an existing promo code saving non-editables" msgstr "" "Переписать существующую категорию с сохранением нередактируемых объектов" -#: core/docs/drf/viewsets.py:777 +#: engine/core/docs/drf/viewsets.py:809 msgid "rewrite some fields of an existing promo code saving non-editables" msgstr "" "Переписать некоторые поля существующей категории с сохранением " "нередактируемых полей" -#: core/docs/drf/viewsets.py:784 +#: engine/core/docs/drf/viewsets.py:816 msgid "list all promotions (simple view)" msgstr "Список всех рекламных акций (простой вид)" -#: core/docs/drf/viewsets.py:788 +#: engine/core/docs/drf/viewsets.py:820 msgid "retrieve a single promotion (detailed view)" msgstr "Получение одной акции (подробный просмотр)" -#: core/docs/drf/viewsets.py:792 +#: engine/core/docs/drf/viewsets.py:824 msgid "create a promotion" msgstr "Создайте рекламную акцию" -#: core/docs/drf/viewsets.py:796 +#: engine/core/docs/drf/viewsets.py:828 msgid "delete a promotion" msgstr "Удалить акцию" -#: core/docs/drf/viewsets.py:800 +#: engine/core/docs/drf/viewsets.py:832 msgid "rewrite an existing promotion saving non-editables" msgstr "" "Переписать существующую категорию с сохранением нередактируемых объектов" -#: core/docs/drf/viewsets.py:804 +#: engine/core/docs/drf/viewsets.py:836 msgid "rewrite some fields of an existing promotion saving non-editables" msgstr "" "Переписать некоторые поля существующей категории с сохранением " "нередактируемых полей" -#: core/docs/drf/viewsets.py:811 +#: engine/core/docs/drf/viewsets.py:843 msgid "list all stocks (simple view)" msgstr "Список всех акций (простой вид)" -#: core/docs/drf/viewsets.py:815 +#: engine/core/docs/drf/viewsets.py:847 msgid "retrieve a single stock (detailed view)" msgstr "Получение одной акции (подробный просмотр)" -#: core/docs/drf/viewsets.py:819 +#: engine/core/docs/drf/viewsets.py:851 msgid "create a stock record" msgstr "Создайте запись о запасах" -#: core/docs/drf/viewsets.py:823 +#: engine/core/docs/drf/viewsets.py:855 msgid "delete a stock record" msgstr "Удаление записи о запасах" -#: core/docs/drf/viewsets.py:827 +#: engine/core/docs/drf/viewsets.py:859 msgid "rewrite an existing stock record saving non-editables" msgstr "" "Переписать существующую категорию с сохранением нередактируемых объектов" -#: core/docs/drf/viewsets.py:831 +#: engine/core/docs/drf/viewsets.py:863 msgid "rewrite some fields of an existing stock record saving non-editables" msgstr "" "Переписать некоторые поля существующей категории с сохранением " "нередактируемых полей" -#: core/docs/drf/viewsets.py:838 +#: engine/core/docs/drf/viewsets.py:870 msgid "list all product tags (simple view)" msgstr "Список всех тегов товара (простой вид)" -#: core/docs/drf/viewsets.py:842 +#: engine/core/docs/drf/viewsets.py:874 msgid "retrieve a single product tag (detailed view)" msgstr "Получение одной метки товара (подробный просмотр)" -#: core/docs/drf/viewsets.py:846 +#: engine/core/docs/drf/viewsets.py:878 msgid "create a product tag" msgstr "Создайте тег продукта" -#: core/docs/drf/viewsets.py:850 +#: engine/core/docs/drf/viewsets.py:882 msgid "delete a product tag" msgstr "Удаление тега продукта" -#: core/docs/drf/viewsets.py:854 +#: engine/core/docs/drf/viewsets.py:886 msgid "rewrite an existing product tag saving non-editables" msgstr "" "Переписать существующую категорию с сохранением нередактируемых объектов" -#: core/docs/drf/viewsets.py:858 +#: engine/core/docs/drf/viewsets.py:890 msgid "rewrite some fields of an existing product tag saving non-editables" msgstr "" "Переписать некоторые поля существующей категории с сохранением " "нередактируемых полей" -#: core/elasticsearch/__init__.py:118 core/elasticsearch/__init__.py:550 +#: engine/core/elasticsearch/__init__.py:122 +#: engine/core/elasticsearch/__init__.py:570 msgid "no search term provided." msgstr "Поисковый запрос не предоставлен." -#: core/filters.py:69 core/filters.py:412 core/filters.py:539 +#: engine/core/filters.py:69 engine/core/filters.py:426 +#: engine/core/filters.py:553 msgid "Search" msgstr "Поиск" -#: core/filters.py:70 core/filters.py:569 core/filters.py:598 +#: engine/core/filters.py:70 engine/core/filters.py:583 +#: engine/core/filters.py:612 msgid "UUID" msgstr "UUID" -#: core/filters.py:71 core/filters.py:414 core/filters.py:541 +#: engine/core/filters.py:71 engine/core/filters.py:428 +#: engine/core/filters.py:555 msgid "Name" msgstr "Имя" -#: core/filters.py:72 core/filters.py:543 +#: engine/core/filters.py:72 engine/core/filters.py:557 msgid "Categories" msgstr "Категории" -#: core/filters.py:74 +#: engine/core/filters.py:74 msgid "Categories Slugs" msgstr "Категории Слизни" -#: core/filters.py:75 core/filters.py:422 +#: engine/core/filters.py:75 engine/core/filters.py:436 msgid "Tags" msgstr "Теги" -#: core/filters.py:76 +#: engine/core/filters.py:76 msgid "Min Price" msgstr "Мин. цена" -#: core/filters.py:77 +#: engine/core/filters.py:77 msgid "Max Price" msgstr "Максимальная цена" -#: core/filters.py:78 +#: engine/core/filters.py:78 msgid "Is Active" msgstr "Активен" -#: core/filters.py:79 +#: engine/core/filters.py:79 msgid "Brand" msgstr "Бренд" -#: core/filters.py:80 +#: engine/core/filters.py:80 msgid "Attributes" msgstr "Атрибуты" -#: core/filters.py:81 +#: engine/core/filters.py:81 msgid "Quantity" msgstr "Количество" -#: core/filters.py:82 core/filters.py:416 core/filters.py:542 -#: core/models.py:322 core/models.py:483 core/models.py:637 +#: engine/core/filters.py:82 engine/core/filters.py:430 +#: engine/core/filters.py:556 engine/core/models.py:321 +#: engine/core/models.py:482 engine/core/models.py:637 msgid "Slug" msgstr "Слаг" -#: core/filters.py:83 +#: engine/core/filters.py:83 msgid "Is Digital" msgstr "Цифровой" -#: core/filters.py:84 +#: engine/core/filters.py:84 msgid "Include sub-categories" msgstr "Включите подкатегории" -#: core/filters.py:87 +#: engine/core/filters.py:87 msgid "Include personal ordered" msgstr "Включите продукты, заказанные лично" -#: core/filters.py:89 core/models.py:641 +#: engine/core/filters.py:89 engine/core/models.py:641 msgid "SKU" msgstr "Артикул" -#: core/filters.py:173 +#: engine/core/filters.py:184 msgid "there must be a category_uuid to use include_subcategories flag" msgstr "" "Для использования флага include_subcategories должен быть указан " "category_uuid." -#: core/filters.py:339 +#: engine/core/filters.py:353 msgid "Search (ID, product name or part number)" msgstr "Поиск (идентификатор, название продукта или номер детали)" -#: core/filters.py:342 +#: engine/core/filters.py:356 msgid "Bought after (inclusive)" msgstr "Куплено после (включительно)" -#: core/filters.py:343 +#: engine/core/filters.py:357 msgid "Bought before (inclusive)" msgstr "Куплено ранее (включительно)" -#: core/filters.py:346 core/filters.py:393 core/filters.py:600 +#: engine/core/filters.py:360 engine/core/filters.py:407 +#: engine/core/filters.py:614 msgid "User email" msgstr "Электронная почта пользователя" -#: core/filters.py:347 core/filters.py:394 core/filters.py:578 -#: core/filters.py:599 +#: engine/core/filters.py:361 engine/core/filters.py:408 +#: engine/core/filters.py:592 engine/core/filters.py:613 msgid "User UUID" msgstr "UUID пользователя" -#: core/filters.py:348 +#: engine/core/filters.py:362 msgid "Status" msgstr "Статус" -#: core/filters.py:352 +#: engine/core/filters.py:366 msgid "Human Readable ID" msgstr "Человекочитаемый идентификатор" -#: core/filters.py:415 +#: engine/core/filters.py:429 msgid "Parent" msgstr "Родитель" -#: core/filters.py:419 +#: engine/core/filters.py:433 msgid "Whole category(has at least 1 product or not)" msgstr "Вся категория (есть хотя бы 1 продукт или нет)" -#: core/filters.py:423 +#: engine/core/filters.py:437 msgid "Level" msgstr "Уровень" -#: core/filters.py:573 +#: engine/core/filters.py:587 msgid "Product UUID" msgstr "UUID продукта" -#: core/graphene/mutations.py:41 +#: engine/core/graphene/mutations.py:41 msgid "key to look for in or set into the cache" msgstr "Ключ, который нужно найти в тайнике или вложить в него" -#: core/graphene/mutations.py:42 +#: engine/core/graphene/mutations.py:42 msgid "data to store in cache" msgstr "Данные для хранения в кэше" -#: core/graphene/mutations.py:45 +#: engine/core/graphene/mutations.py:45 msgid "timeout in seconds to set the data for into the cache" msgstr "Тайм-аут в секундах для занесения данных в кэш" -#: core/graphene/mutations.py:48 +#: engine/core/graphene/mutations.py:48 msgid "cached data" msgstr "Кэшированные данные" -#: core/graphene/mutations.py:63 +#: engine/core/graphene/mutations.py:63 msgid "camelized JSON data from the requested URL" msgstr "Camelized JSON-данные из запрашиваемого URL" -#: core/graphene/mutations.py:68 core/views.py:232 +#: engine/core/graphene/mutations.py:68 engine/core/views.py:231 msgid "only URLs starting with http(s):// are allowed" msgstr "Допускаются только URL-адреса, начинающиеся с http(s)://" -#: core/graphene/mutations.py:84 +#: engine/core/graphene/mutations.py:84 msgid "add a product to the order" msgstr "Добавить товар в заказ" -#: core/graphene/mutations.py:105 core/graphene/mutations.py:132 -#: core/graphene/mutations.py:240 core/graphene/mutations.py:288 +#: engine/core/graphene/mutations.py:105 engine/core/graphene/mutations.py:132 +#: engine/core/graphene/mutations.py:240 engine/core/graphene/mutations.py:288 #, python-brace-format msgid "order {order_uuid} not found" msgstr "Заказ {order_uuid} не найден!" -#: core/graphene/mutations.py:111 core/graphene/mutations.py:160 +#: engine/core/graphene/mutations.py:111 engine/core/graphene/mutations.py:160 msgid "remove a product from the order" msgstr "Удалить продукт из заказа" -#: core/graphene/mutations.py:138 +#: engine/core/graphene/mutations.py:138 msgid "remove all products from the order" msgstr "Удалить все товары из заказа" -#: core/graphene/mutations.py:183 +#: engine/core/graphene/mutations.py:183 msgid "buy an order" msgstr "Купить заказ" -#: core/graphene/mutations.py:212 core/graphene/mutations.py:266 +#: engine/core/graphene/mutations.py:212 engine/core/graphene/mutations.py:266 msgid "please provide either order_uuid or order_hr_id - mutually exclusive" msgstr "" "Пожалуйста, укажите либо order_uuid, либо order_hr_id - взаимоисключающие " "варианты!" -#: core/graphene/mutations.py:237 core/graphene/mutations.py:502 -#: core/graphene/mutations.py:544 core/viewsets.py:704 +#: engine/core/graphene/mutations.py:237 engine/core/graphene/mutations.py:502 +#: engine/core/graphene/mutations.py:544 engine/core/viewsets.py:704 msgid "wrong type came from order.buy() method: {type(instance)!s}" msgstr "Неправильный тип получен из метода order.buy(): {type(instance)!s}" -#: core/graphene/mutations.py:246 +#: engine/core/graphene/mutations.py:246 msgid "perform an action on a list of products in the order" msgstr "Выполните действие над списком товаров в заказе" -#: core/graphene/mutations.py:251 +#: engine/core/graphene/mutations.py:251 msgid "remove/add" msgstr "Удалить/добавить" -#: core/graphene/mutations.py:283 core/graphene/mutations.py:324 +#: engine/core/graphene/mutations.py:283 engine/core/graphene/mutations.py:324 msgid "action must be either add or remove" msgstr "Действие должно быть либо \"добавить\", либо \"удалить\"!" -#: core/graphene/mutations.py:294 +#: engine/core/graphene/mutations.py:294 msgid "perform an action on a list of products in the wishlist" msgstr "Выполните действие над списком продуктов в списке желаний" -#: core/graphene/mutations.py:312 +#: engine/core/graphene/mutations.py:312 msgid "please provide wishlist_uuid value" msgstr "Пожалуйста, укажите значение `wishlist_uuid`." -#: core/graphene/mutations.py:329 core/graphene/mutations.py:405 -#: core/graphene/mutations.py:433 core/graphene/mutations.py:461 -#: core/graphene/mutations.py:505 +#: engine/core/graphene/mutations.py:329 engine/core/graphene/mutations.py:405 +#: engine/core/graphene/mutations.py:433 engine/core/graphene/mutations.py:461 +#: engine/core/graphene/mutations.py:505 #, python-brace-format msgid "wishlist {wishlist_uuid} not found" msgstr "Список желаний {wishlist_uuid} не найден!" -#: core/graphene/mutations.py:383 +#: engine/core/graphene/mutations.py:383 msgid "add a product to the wishlist" msgstr "Добавить товар в заказ" -#: core/graphene/mutations.py:411 +#: engine/core/graphene/mutations.py:411 msgid "remove a product from the wishlist" msgstr "Удалить продукт из заказа" -#: core/graphene/mutations.py:439 +#: engine/core/graphene/mutations.py:439 msgid "remove all products from the wishlist" msgstr "Удалить продукт из заказа" -#: core/graphene/mutations.py:467 +#: engine/core/graphene/mutations.py:467 msgid "buy all products from the wishlist" msgstr "Удалить продукт из заказа" -#: core/graphene/mutations.py:511 +#: engine/core/graphene/mutations.py:511 msgid "buy a product" msgstr "Купить заказ" -#: core/graphene/mutations.py:517 +#: engine/core/graphene/mutations.py:517 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" -#: core/graphene/mutations.py:550 +#: engine/core/graphene/mutations.py:550 msgid "add or delete a feedback for orderproduct" msgstr "Добавить или удалить отзыв для продукта заказа" -#: core/graphene/mutations.py:574 +#: engine/core/graphene/mutations.py:574 msgid "action must be either `add` or `remove`" msgstr "Действие должно быть либо `add`, либо `remove`!" -#: core/graphene/mutations.py:577 +#: engine/core/graphene/mutations.py:577 #, python-brace-format msgid "order product {order_product_uuid} not found" msgstr "Заказ товара {order_product_uuid} не найден!" -#: core/graphene/mutations.py:644 +#: engine/core/graphene/mutations.py:644 msgid "original address string provided by the user" msgstr "Оригинальная строка адреса, предоставленная пользователем" -#: core/graphene/mutations.py:680 core/models.py:930 core/models.py:943 -#: core/models.py:1358 core/models.py:1387 core/models.py:1412 -#: core/viewsets.py:707 +#: engine/core/graphene/mutations.py:680 engine/core/models.py:941 +#: engine/core/models.py:954 engine/core/models.py:1369 +#: engine/core/models.py:1398 engine/core/models.py:1423 +#: engine/core/viewsets.py:707 #, python-brace-format msgid "{name} does not exist: {uuid}" msgstr "{name} не существует: {uuid}!" -#: core/graphene/mutations.py:694 +#: engine/core/graphene/mutations.py:694 msgid "limit must be between 1 and 10" msgstr "Предел должен быть от 1 до 10" -#: core/graphene/mutations.py:743 +#: engine/core/graphene/mutations.py:743 msgid "elasticsearch - works like a charm" msgstr "ElasticSearch - работает как шарм" -#: core/graphene/object_types.py:82 core/graphene/object_types.py:370 -#: core/graphene/object_types.py:417 core/models.py:754 core/models.py:1225 -#: core/models.py:1823 +#: engine/core/graphene/object_types.py:82 +#: engine/core/graphene/object_types.py:370 +#: engine/core/graphene/object_types.py:417 engine/core/models.py:765 +#: engine/core/models.py:1236 engine/core/models.py:1883 msgid "attributes" msgstr "Атрибуты" -#: core/graphene/object_types.py:95 +#: engine/core/graphene/object_types.py:95 msgid "grouped attributes" msgstr "Сгруппированные атрибуты" -#: core/graphene/object_types.py:102 +#: engine/core/graphene/object_types.py:102 msgid "groups of attributes" msgstr "Группы атрибутов" -#: core/graphene/object_types.py:116 core/graphene/object_types.py:193 -#: core/graphene/object_types.py:223 core/models.py:426 +#: engine/core/graphene/object_types.py:116 +#: engine/core/graphene/object_types.py:193 +#: engine/core/graphene/object_types.py:223 engine/core/models.py:425 msgid "categories" msgstr "Категории" -#: core/graphene/object_types.py:124 core/models.py:497 +#: engine/core/graphene/object_types.py:124 engine/core/models.py:496 msgid "brands" msgstr "Бренды" -#: core/graphene/object_types.py:195 +#: engine/core/graphene/object_types.py:195 msgid "category image url" msgstr "Категории" -#: core/graphene/object_types.py:196 core/graphene/object_types.py:317 -#: core/models.py:284 +#: engine/core/graphene/object_types.py:196 +#: engine/core/graphene/object_types.py:317 engine/core/models.py:283 msgid "markup percentage" msgstr "Процент наценки" -#: core/graphene/object_types.py:199 +#: engine/core/graphene/object_types.py:199 msgid "which attributes and values can be used for filtering this category." msgstr "" "Какие атрибуты и значения можно использовать для фильтрации этой категории." -#: core/graphene/object_types.py:203 -msgid "" -"minimum and maximum prices for products in this category, if available." +#: engine/core/graphene/object_types.py:203 +msgid "minimum and maximum prices for products in this category, if available." msgstr "" "Минимальные и максимальные цены на товары в этой категории, если они " "доступны." -#: core/graphene/object_types.py:205 +#: engine/core/graphene/object_types.py:205 msgid "tags for this category" msgstr "Теги для этой категории" -#: core/graphene/object_types.py:206 +#: engine/core/graphene/object_types.py:206 msgid "products in this category" msgstr "Продукты в этой категории" -#: core/graphene/object_types.py:324 core/models.py:189 +#: engine/core/graphene/object_types.py:324 engine/core/models.py:188 msgid "vendors" msgstr "Поставщики" -#: core/graphene/object_types.py:328 +#: engine/core/graphene/object_types.py:328 msgid "Latitude (Y coordinate)" msgstr "Широта (координата Y)" -#: core/graphene/object_types.py:329 +#: engine/core/graphene/object_types.py:329 msgid "Longitude (X coordinate)" msgstr "Долгота (координата X)" -#: core/graphene/object_types.py:358 +#: engine/core/graphene/object_types.py:358 msgid "comment" msgstr "Как" -#: core/graphene/object_types.py:359 core/graphene/object_types.py:483 +#: engine/core/graphene/object_types.py:359 +#: engine/core/graphene/object_types.py:483 msgid "rating value from 1 to 10, inclusive, or 0 if not set." msgstr "" "Значение рейтинга от 1 до 10, включительно, или 0, если он не установлен." -#: core/graphene/object_types.py:366 +#: engine/core/graphene/object_types.py:366 msgid "represents feedback from a user." msgstr "Представляет собой отзыв пользователя." -#: core/graphene/object_types.py:371 core/graphene/object_types.py:418 -#: core/models.py:1219 +#: engine/core/graphene/object_types.py:371 +#: engine/core/graphene/object_types.py:418 engine/core/models.py:1230 msgid "notifications" msgstr "Уведомления" -#: core/graphene/object_types.py:372 +#: engine/core/graphene/object_types.py:372 msgid "download url for this order product if applicable" msgstr "Если применимо, загрузите url для этого продукта заказа" -#: core/graphene/object_types.py:373 core/models.py:1939 +#: engine/core/graphene/object_types.py:373 engine/core/models.py:1722 msgid "feedback" msgstr "Обратная связь" -#: core/graphene/object_types.py:407 +#: engine/core/graphene/object_types.py:407 msgid "a list of order products in this order" msgstr "Список товаров, заказанных в этом заказе" -#: core/graphene/object_types.py:409 core/models.py:1189 +#: engine/core/graphene/object_types.py:409 engine/core/models.py:1200 msgid "billing address" msgstr "Адрес для выставления счетов" -#: core/graphene/object_types.py:412 +#: engine/core/graphene/object_types.py:412 msgid "" "shipping address for this order, leave blank if same as billing address or " "if not applicable" @@ -1317,202 +1349,210 @@ msgstr "" "Адрес доставки для данного заказа, оставьте пустым, если он совпадает с " "адресом выставления счета или не применяется" -#: core/graphene/object_types.py:414 +#: engine/core/graphene/object_types.py:414 msgid "total price of this order" msgstr "Общая стоимость этого заказа" -#: core/graphene/object_types.py:415 +#: engine/core/graphene/object_types.py:415 msgid "total quantity of products in order" msgstr "Общее количество продуктов в заказе" -#: core/graphene/object_types.py:416 +#: engine/core/graphene/object_types.py:416 msgid "are all products in the order digital" msgstr "Все ли товары в заказе представлены в цифровом виде" -#: core/graphene/object_types.py:419 +#: engine/core/graphene/object_types.py:419 msgid "transactions for this order" msgstr "Операции для этого заказа" -#: core/graphene/object_types.py:438 core/models.py:1253 +#: engine/core/graphene/object_types.py:438 engine/core/models.py:1264 msgid "orders" msgstr "Заказы" -#: core/graphene/object_types.py:459 +#: engine/core/graphene/object_types.py:459 msgid "image url" msgstr "URL-адрес изображения" -#: core/graphene/object_types.py:466 +#: engine/core/graphene/object_types.py:466 msgid "product's images" msgstr "Изображения товара" -#: core/graphene/object_types.py:473 core/models.py:425 core/models.py:579 +#: engine/core/graphene/object_types.py:473 engine/core/models.py:424 +#: engine/core/models.py:579 msgid "category" msgstr "Категория" -#: core/graphene/object_types.py:475 core/models.py:1940 +#: engine/core/graphene/object_types.py:475 engine/core/models.py:1723 msgid "feedbacks" msgstr "Отзывы" -#: core/graphene/object_types.py:476 core/models.py:496 core/models.py:588 +#: engine/core/graphene/object_types.py:476 engine/core/models.py:495 +#: engine/core/models.py:588 msgid "brand" msgstr "Бренд" -#: core/graphene/object_types.py:477 core/models.py:107 +#: engine/core/graphene/object_types.py:477 engine/core/models.py:106 msgid "attribute groups" msgstr "Группы атрибутов" -#: core/graphene/object_types.py:478 -#: core/templates/digital_order_created_email.html:111 -#: core/templates/digital_order_delivered_email.html:109 -#: core/templates/shipped_order_created_email.html:109 -#: core/templates/shipped_order_delivered_email.html:109 +#: engine/core/graphene/object_types.py:478 +#: engine/core/templates/digital_order_created_email.html:111 +#: engine/core/templates/digital_order_delivered_email.html:109 +#: engine/core/templates/shipped_order_created_email.html:109 +#: engine/core/templates/shipped_order_delivered_email.html:109 msgid "price" msgstr "Цена" -#: core/graphene/object_types.py:479 -#: core/templates/digital_order_created_email.html:110 -#: core/templates/digital_order_delivered_email.html:108 -#: core/templates/shipped_order_created_email.html:108 -#: core/templates/shipped_order_delivered_email.html:108 +#: engine/core/graphene/object_types.py:479 +#: engine/core/templates/digital_order_created_email.html:110 +#: engine/core/templates/digital_order_delivered_email.html:108 +#: engine/core/templates/shipped_order_created_email.html:108 +#: engine/core/templates/shipped_order_delivered_email.html:108 msgid "quantity" msgstr "Количество" -#: core/graphene/object_types.py:480 +#: engine/core/graphene/object_types.py:480 msgid "number of feedbacks" msgstr "Количество отзывов" -#: core/graphene/object_types.py:481 +#: engine/core/graphene/object_types.py:481 msgid "only available for personal orders" msgstr "Продукты доступны только для личных заказов" -#: core/graphene/object_types.py:507 core/models.py:651 +#: engine/core/graphene/object_types.py:484 +msgid "discount price" +msgstr "Цена со скидкой" + +#: engine/core/graphene/object_types.py:508 engine/core/models.py:651 msgid "products" msgstr "Товары" -#: core/graphene/object_types.py:607 +#: engine/core/graphene/object_types.py:611 msgid "promocodes" msgstr "Промокоды" -#: core/graphene/object_types.py:617 +#: engine/core/graphene/object_types.py:621 msgid "products on sale" msgstr "Продукты в продаже" -#: core/graphene/object_types.py:624 core/models.py:879 +#: engine/core/graphene/object_types.py:628 engine/core/models.py:890 msgid "promotions" msgstr "Промоакции" -#: core/graphene/object_types.py:628 core/models.py:188 +#: engine/core/graphene/object_types.py:632 engine/core/models.py:187 msgid "vendor" msgstr "Поставщик" -#: core/graphene/object_types.py:629 core/models.py:650 -#: core/templates/digital_order_created_email.html:109 -#: core/templates/digital_order_delivered_email.html:107 -#: core/templates/shipped_order_created_email.html:107 -#: core/templates/shipped_order_delivered_email.html:107 +#: engine/core/graphene/object_types.py:633 engine/core/models.py:650 +#: 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 +#: engine/core/templates/shipped_order_delivered_email.html:107 msgid "product" msgstr "Товар" -#: core/graphene/object_types.py:640 core/models.py:902 +#: engine/core/graphene/object_types.py:644 engine/core/models.py:913 msgid "wishlisted products" msgstr "Продукты из списка желаний" -#: core/graphene/object_types.py:646 core/models.py:919 +#: engine/core/graphene/object_types.py:650 engine/core/models.py:930 msgid "wishlists" msgstr "Списки желаний" -#: core/graphene/object_types.py:650 +#: engine/core/graphene/object_types.py:654 msgid "tagged products" msgstr "Tagged products" -#: core/graphene/object_types.py:657 core/models.py:225 core/models.py:594 +#: engine/core/graphene/object_types.py:661 engine/core/models.py:224 +#: engine/core/models.py:594 msgid "product tags" msgstr "Теги товара" -#: core/graphene/object_types.py:661 +#: engine/core/graphene/object_types.py:665 msgid "tagged categories" msgstr "Категории с метками" -#: core/graphene/object_types.py:668 +#: engine/core/graphene/object_types.py:672 msgid "categories tags" msgstr "Теги категорий" -#: core/graphene/object_types.py:672 +#: engine/core/graphene/object_types.py:676 msgid "project name" msgstr "Название проекта" -#: core/graphene/object_types.py:673 +#: engine/core/graphene/object_types.py:677 msgid "company email" msgstr "Электронная почта компании" -#: core/graphene/object_types.py:674 +#: engine/core/graphene/object_types.py:678 msgid "company name" msgstr "Название компании" -#: core/graphene/object_types.py:675 +#: engine/core/graphene/object_types.py:679 msgid "company address" msgstr "Адрес компании" -#: core/graphene/object_types.py:676 +#: engine/core/graphene/object_types.py:680 msgid "company phone number" msgstr "Номер телефона компании" -#: core/graphene/object_types.py:677 +#: engine/core/graphene/object_types.py:681 msgid "email from, sometimes it must be used instead of host user value" msgstr "" "'email from', иногда его нужно использовать вместо значения пользователя " "хоста." -#: core/graphene/object_types.py:678 +#: engine/core/graphene/object_types.py:682 msgid "email host user" msgstr "Пользователь узла электронной почты" -#: core/graphene/object_types.py:679 +#: engine/core/graphene/object_types.py:683 msgid "maximum amount for payment" msgstr "Максимальная сумма для оплаты" -#: core/graphene/object_types.py:680 +#: engine/core/graphene/object_types.py:684 msgid "minimum amount for payment" msgstr "Минимальная сумма для оплаты" -#: core/graphene/object_types.py:681 +#: engine/core/graphene/object_types.py:685 msgid "analytics data" msgstr "Аналитические данные" -#: core/graphene/object_types.py:682 +#: engine/core/graphene/object_types.py:686 msgid "advertisement data" msgstr "Рекламные данные" -#: core/graphene/object_types.py:685 +#: engine/core/graphene/object_types.py:689 msgid "company configuration" msgstr "Конфигурация" -#: core/graphene/object_types.py:689 +#: engine/core/graphene/object_types.py:693 msgid "language code" msgstr "Код языка" -#: core/graphene/object_types.py:690 +#: engine/core/graphene/object_types.py:694 msgid "language name" msgstr "Название языка" -#: core/graphene/object_types.py:691 +#: engine/core/graphene/object_types.py:695 msgid "language flag, if exists :)" msgstr "Языковой флаг, если он существует :)" -#: core/graphene/object_types.py:694 +#: engine/core/graphene/object_types.py:698 msgid "supported languages" msgstr "Получите список поддерживаемых языков" -#: core/graphene/object_types.py:725 core/graphene/object_types.py:726 -#: core/graphene/object_types.py:727 +#: engine/core/graphene/object_types.py:729 +#: engine/core/graphene/object_types.py:730 +#: engine/core/graphene/object_types.py:731 msgid "products search results" msgstr "Результаты поиска товаров" -#: core/graphene/object_types.py:728 +#: engine/core/graphene/object_types.py:732 msgid "posts search results" msgstr "Результаты поиска товаров" -#: core/models.py:76 +#: engine/core/models.py:75 msgid "" "Represents a group of attributes, which can be hierarchical. This class is " "used to manage and organize attribute groups. An attribute group can have a " @@ -1525,23 +1565,23 @@ msgstr "" "быть полезно для категоризации и более эффективного управления атрибутами в " "сложной системе." -#: core/models.py:92 +#: engine/core/models.py:91 msgid "parent of this group" msgstr "Родитель этой группы" -#: core/models.py:93 +#: engine/core/models.py:92 msgid "parent attribute group" msgstr "Родительская группа атрибутов" -#: core/models.py:97 core/models.py:98 +#: engine/core/models.py:96 engine/core/models.py:97 msgid "attribute group's name" msgstr "Имя группы атрибутов" -#: core/models.py:106 core/models.py:716 +#: engine/core/models.py:105 engine/core/models.py:727 msgid "attribute group" msgstr "Группа атрибутов" -#: core/models.py:112 +#: engine/core/models.py:111 msgid "" "Represents a vendor entity capable of storing information about external " "vendors and their interaction requirements. The Vendor class is used to " @@ -1560,49 +1600,49 @@ msgstr "" "метаданные и ограничения, что делает ее пригодной для использования в " "системах, взаимодействующих со сторонними поставщиками." -#: core/models.py:125 +#: engine/core/models.py:124 msgid "stores credentials and endpoints required for vendor communication" msgstr "" -"Хранит учетные данные и конечные точки, необходимые для взаимодействия с API" -" поставщика." +"Хранит учетные данные и конечные точки, необходимые для взаимодействия с API " +"поставщика." -#: core/models.py:126 +#: engine/core/models.py:125 msgid "authentication info" msgstr "Информация об аутентификации" -#: core/models.py:131 +#: engine/core/models.py:130 msgid "define the markup for products retrieved from this vendor" msgstr "Определите наценку для товаров, полученных от этого продавца" -#: core/models.py:132 +#: engine/core/models.py:131 msgid "vendor markup percentage" msgstr "Процент наценки поставщика" -#: core/models.py:136 +#: engine/core/models.py:135 msgid "name of this vendor" msgstr "Имя этого продавца" -#: core/models.py:137 +#: engine/core/models.py:136 msgid "vendor name" msgstr "Название поставщика" -#: core/models.py:148 +#: engine/core/models.py:147 msgid "response file" msgstr "файл ответа" -#: core/models.py:149 +#: engine/core/models.py:148 msgid "vendor's last processing response" msgstr "последний ответ поставщика на обработку" -#: core/models.py:155 +#: engine/core/models.py:154 msgid "vendor's integration file path" msgstr "Путь к файлу интеграции поставщика" -#: core/models.py:156 +#: engine/core/models.py:155 msgid "integration path" msgstr "Путь интеграции" -#: core/models.py:198 +#: engine/core/models.py:197 msgid "" "Represents a product tag used for classifying or identifying products. The " "ProductTag class is designed to uniquely identify and classify products " @@ -1612,32 +1652,32 @@ msgid "" msgstr "" "Представляет тег продукта, используемый для классификации или идентификации " "продуктов. Класс ProductTag предназначен для уникальной идентификации и " -"классификации продуктов с помощью комбинации внутреннего идентификатора тега" -" и удобного для пользователя отображаемого имени. Он поддерживает операции, " +"классификации продуктов с помощью комбинации внутреннего идентификатора тега " +"и удобного для пользователя отображаемого имени. Он поддерживает операции, " "экспортируемые через миксины, и обеспечивает настройку метаданных для " "административных целей." -#: core/models.py:210 core/models.py:241 +#: engine/core/models.py:209 engine/core/models.py:240 msgid "internal tag identifier for the product tag" msgstr "Внутренний идентификатор тега для тега продукта" -#: core/models.py:211 core/models.py:242 +#: engine/core/models.py:210 engine/core/models.py:241 msgid "tag name" msgstr "Название тега" -#: core/models.py:215 core/models.py:246 +#: engine/core/models.py:214 engine/core/models.py:245 msgid "user-friendly name for the product tag" msgstr "Удобное название для метки продукта" -#: core/models.py:216 core/models.py:247 +#: engine/core/models.py:215 engine/core/models.py:246 msgid "tag display name" msgstr "Отображаемое имя тега" -#: core/models.py:224 +#: engine/core/models.py:223 msgid "product tag" msgstr "Метка продукта" -#: core/models.py:230 +#: engine/core/models.py:229 msgid "" "Represents a category tag used for products. This class models a category " "tag that can be used to associate and classify products. It includes " @@ -1645,18 +1685,18 @@ msgid "" msgstr "" "Представляет тег категории, используемый для продуктов. Этот класс " "моделирует тег категории, который может быть использован для ассоциации и " -"классификации продуктов. Он включает атрибуты для внутреннего идентификатора" -" тега и удобного для пользователя отображаемого имени." +"классификации продуктов. Он включает атрибуты для внутреннего идентификатора " +"тега и удобного для пользователя отображаемого имени." -#: core/models.py:255 +#: engine/core/models.py:254 msgid "category tag" msgstr "тег категории" -#: core/models.py:256 core/models.py:328 +#: engine/core/models.py:255 engine/core/models.py:327 msgid "category tags" msgstr "теги категорий" -#: core/models.py:261 +#: engine/core/models.py:260 msgid "" "Represents a category entity to organize and group related items in a " "hierarchical structure. Categories may have hierarchical relationships with " @@ -1670,115 +1710,114 @@ msgid "" msgstr "" "Представляет собой объект категории для организации и группировки связанных " "элементов в иерархическую структуру. Категории могут иметь иерархические " -"отношения с другими категориями, поддерживая отношения \"родитель-ребенок\"." -" Класс включает поля для метаданных и визуального представления, которые " +"отношения с другими категориями, поддерживая отношения \"родитель-ребенок\". " +"Класс включает поля для метаданных и визуального представления, которые " "служат основой для функций, связанных с категориями. Этот класс обычно " "используется для определения и управления категориями товаров или другими " "подобными группировками в приложении, позволяя пользователям или " "администраторам указывать название, описание и иерархию категорий, а также " "назначать атрибуты, такие как изображения, теги или приоритет." -#: core/models.py:275 +#: engine/core/models.py:274 msgid "upload an image representing this category" msgstr "Загрузите изображение, представляющее эту категорию" -#: core/models.py:278 +#: engine/core/models.py:277 msgid "category image" msgstr "Изображение категории" -#: core/models.py:283 +#: engine/core/models.py:282 msgid "define a markup percentage for products in this category" msgstr "Определите процент наценки для товаров в этой категории" -#: core/models.py:292 +#: engine/core/models.py:291 msgid "parent of this category to form a hierarchical structure" msgstr "Родитель данной категории для формирования иерархической структуры" -#: core/models.py:293 +#: engine/core/models.py:292 msgid "parent category" msgstr "Родительская категория" -#: core/models.py:298 +#: engine/core/models.py:297 msgid "category name" msgstr "Название категории" -#: core/models.py:299 +#: engine/core/models.py:298 msgid "provide a name for this category" msgstr "Укажите название этой категории" -#: core/models.py:306 +#: engine/core/models.py:305 msgid "add a detailed description for this category" msgstr "Добавьте подробное описание для этой категории" -#: core/models.py:307 +#: engine/core/models.py:306 msgid "category description" msgstr "Описание категории" -#: core/models.py:327 +#: engine/core/models.py:326 msgid "tags that help describe or group this category" msgstr "теги, которые помогают описать или сгруппировать эту категорию" -#: core/models.py:334 core/models.py:489 +#: engine/core/models.py:333 engine/core/models.py:488 msgid "priority" msgstr "Приоритет" -#: core/models.py:432 +#: engine/core/models.py:431 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 в системе. Этот класс обрабатывает информацию и " "атрибуты, связанные с брендом, включая его название, логотипы, описание, " "связанные категории, уникальную метку и порядок приоритетов. Он позволяет " "организовать и представить данные, связанные с брендом, в приложении." -#: core/models.py:442 +#: engine/core/models.py:441 msgid "name of this brand" msgstr "Название этой марки" -#: core/models.py:443 +#: engine/core/models.py:442 msgid "brand name" msgstr "Название бренда" -#: core/models.py:450 +#: engine/core/models.py:449 msgid "upload a logo representing this brand" msgstr "Загрузите логотип, представляющий этот бренд" -#: core/models.py:452 +#: engine/core/models.py:451 msgid "brand small image" msgstr "Маленький образ бренда" -#: core/models.py:458 +#: engine/core/models.py:457 msgid "upload a big logo representing this brand" msgstr "Загрузите большой логотип, представляющий этот бренд" -#: core/models.py:460 +#: engine/core/models.py:459 msgid "brand big image" msgstr "Большой имидж бренда" -#: core/models.py:465 +#: engine/core/models.py:464 msgid "add a detailed description of the brand" msgstr "Добавьте подробное описание бренда" -#: core/models.py:466 +#: engine/core/models.py:465 msgid "brand description" msgstr "Описание бренда" -#: core/models.py:471 +#: engine/core/models.py:470 msgid "optional categories that this brand is associated with" msgstr "Дополнительные категории, с которыми ассоциируется этот бренд" -#: core/models.py:472 +#: engine/core/models.py:471 msgid "associated categories" msgstr "Категории" -#: core/models.py:502 +#: engine/core/models.py:501 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 " @@ -1791,68 +1830,72 @@ msgstr "" "активы. Он является частью системы управления запасами, позволяющей " "отслеживать и оценивать продукты, доступные у различных поставщиков." -#: core/models.py:514 +#: engine/core/models.py:513 msgid "the vendor supplying this product stock" msgstr "Поставщик, поставляющий данный товар на склад" -#: core/models.py:515 +#: engine/core/models.py:514 msgid "associated vendor" msgstr "Ассоциированный поставщик" -#: core/models.py:519 +#: engine/core/models.py:518 msgid "final price to the customer after markups" msgstr "Окончательная цена для покупателя после наценок" -#: core/models.py:520 +#: engine/core/models.py:519 msgid "selling price" msgstr "Цена продажи" -#: core/models.py:525 +#: engine/core/models.py:524 msgid "the product associated with this stock entry" msgstr "Продукт, связанный с этой складской записью" -#: core/models.py:526 core/models.py:779 core/models.py:825 -#: core/models.py:1718 +#: engine/core/models.py:525 engine/core/models.py:790 +#: engine/core/models.py:836 engine/core/models.py:1778 msgid "associated product" msgstr "Сопутствующий товар" -#: core/models.py:533 +#: engine/core/models.py:532 msgid "the price paid to the vendor for this product" msgstr "Цена, уплаченная продавцу за этот продукт" -#: core/models.py:534 +#: engine/core/models.py:533 msgid "vendor purchase price" msgstr "Цена покупки у поставщика" -#: core/models.py:538 +#: engine/core/models.py:537 msgid "available quantity of the product in stock" msgstr "Доступное количество продукта на складе" -#: core/models.py:539 +#: engine/core/models.py:538 msgid "quantity in stock" msgstr "Количество на складе" -#: core/models.py:543 +#: engine/core/models.py:542 msgid "vendor-assigned SKU for identifying the product" msgstr "Присвоенный поставщиком SKU для идентификации продукта" -#: core/models.py:544 +#: engine/core/models.py:543 msgid "vendor sku" msgstr "Артикул поставщика" -#: core/models.py:550 +#: engine/core/models.py:549 msgid "digital file associated with this stock if applicable" msgstr "Цифровой файл, связанный с этой акцией, если применимо" -#: core/models.py:551 +#: engine/core/models.py:550 msgid "digital file" msgstr "Цифровой файл" -#: core/models.py:560 +#: engine/core/models.py:553 +msgid "system attributes" +msgstr "Атрибуты системы" + +#: engine/core/models.py:560 msgid "stock entries" msgstr "Наличия" -#: core/models.py:565 +#: engine/core/models.py:565 msgid "" "Represents a product with attributes such as category, brand, tags, digital " "status, name, description, part number, and slug. Provides related utility " @@ -1867,67 +1910,67 @@ msgstr "" "цифровой статус, название, описание, номер детали и метка. Предоставляет " "связанные с ним полезные свойства для получения оценок, количества отзывов, " "цены, количества и общего числа заказов. Предназначен для использования в " -"системе, которая занимается электронной коммерцией или управлением запасами." -" Этот класс взаимодействует со связанными моделями (такими как Category, " +"системе, которая занимается электронной коммерцией или управлением запасами. " +"Этот класс взаимодействует со связанными моделями (такими как Category, " "Brand и ProductTag) и управляет кэшированием часто используемых свойств для " "повышения производительности. Он используется для определения и " "манипулирования данными о товаре и связанной с ним информацией в приложении." -#: core/models.py:578 +#: engine/core/models.py:578 msgid "category this product belongs to" msgstr "Категория, к которой относится этот продукт" -#: core/models.py:587 +#: engine/core/models.py:587 msgid "optionally associate this product with a brand" msgstr "По желанию ассоциируйте этот продукт с брендом" -#: core/models.py:593 +#: engine/core/models.py:593 msgid "tags that help describe or group this product" msgstr "Теги, которые помогают описать или сгруппировать этот продукт" -#: core/models.py:598 +#: engine/core/models.py:598 msgid "indicates whether this product is digitally delivered" msgstr "Указывает, поставляется ли этот продукт в цифровом виде" -#: core/models.py:599 +#: engine/core/models.py:599 msgid "is product digital" msgstr "Является ли продукт цифровым" -#: core/models.py:605 +#: engine/core/models.py:605 msgid "provide a clear identifying name for the product" msgstr "Обеспечьте четкое идентификационное название продукта" -#: core/models.py:606 +#: engine/core/models.py:606 msgid "product name" msgstr "Название продукта" -#: core/models.py:612 core/models.py:867 +#: engine/core/models.py:612 engine/core/models.py:878 msgid "add a detailed description of the product" msgstr "Добавьте подробное описание продукта" -#: core/models.py:613 +#: engine/core/models.py:613 msgid "product description" msgstr "Описание товара" -#: core/models.py:620 +#: engine/core/models.py:620 msgid "part number for this product" msgstr "Парт. номер для данного товара" -#: core/models.py:621 +#: engine/core/models.py:621 msgid "part number" msgstr "Парт. номер" -#: core/models.py:640 +#: engine/core/models.py:640 msgid "stock keeping unit for this product" msgstr "Единица складского учета для данного продукта" -#: core/models.py:702 +#: engine/core/models.py:713 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 "" "Представляет атрибут в системе. Этот класс используется для определения и " @@ -1938,91 +1981,91 @@ msgstr "" "плавающую форму, булевую форму, массив и объект. Это позволяет динамично и " "гибко структурировать данные." -#: core/models.py:715 +#: engine/core/models.py:726 msgid "group of this attribute" msgstr "Группа этого атрибута" -#: core/models.py:721 +#: engine/core/models.py:732 msgid "string" msgstr "Строка" -#: core/models.py:722 +#: engine/core/models.py:733 msgid "integer" msgstr "Целое число" -#: core/models.py:723 +#: engine/core/models.py:734 msgid "float" msgstr "Поплавок" -#: core/models.py:724 +#: engine/core/models.py:735 msgid "boolean" msgstr "Булево" -#: core/models.py:725 +#: engine/core/models.py:736 msgid "array" msgstr "Массив" -#: core/models.py:726 +#: engine/core/models.py:737 msgid "object" msgstr "Объект" -#: core/models.py:728 +#: engine/core/models.py:739 msgid "type of the attribute's value" msgstr "Тип значения атрибута" -#: core/models.py:729 +#: engine/core/models.py:740 msgid "value type" msgstr "Тип значения" -#: core/models.py:734 +#: engine/core/models.py:745 msgid "name of this attribute" msgstr "Имя этого атрибута" -#: core/models.py:735 +#: engine/core/models.py:746 msgid "attribute's name" msgstr "Имя атрибута" -#: core/models.py:740 +#: engine/core/models.py:751 msgid "is filterable" msgstr "поддается фильтрации" -#: core/models.py:741 +#: engine/core/models.py:752 msgid "designates whether this attribute can be used for filtering or not" msgstr "" "Какие атрибуты и значения можно использовать для фильтрации этой категории." -#: core/models.py:753 core/models.py:771 -#: core/templates/digital_order_delivered_email.html:134 +#: engine/core/models.py:764 engine/core/models.py:782 +#: engine/core/templates/digital_order_delivered_email.html:134 msgid "attribute" msgstr "Атрибут" -#: core/models.py:759 +#: engine/core/models.py:770 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 "" -"Представляет собой конкретное значение для атрибута, связанного с продуктом." -" Он связывает \"атрибут\" с уникальным \"значением\", позволяя лучше " +"Представляет собой конкретное значение для атрибута, связанного с продуктом. " +"Он связывает \"атрибут\" с уникальным \"значением\", позволяя лучше " "организовать и динамически представить характеристики продукта." -#: core/models.py:770 +#: engine/core/models.py:781 msgid "attribute of this value" msgstr "Атрибут этого значения" -#: core/models.py:778 +#: engine/core/models.py:789 msgid "the specific product associated with this attribute's value" msgstr "Конкретный продукт, связанный со значением этого атрибута" -#: core/models.py:784 +#: engine/core/models.py:795 msgid "the specific value for this attribute" msgstr "Конкретное значение для этого атрибута" -#: core/models.py:797 +#: engine/core/models.py:808 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 "" @@ -2032,48 +2075,48 @@ msgstr "" "товарам и определения порядка их отображения. Он также включает функцию " "доступности с альтернативным текстом для изображений." -#: core/models.py:808 +#: engine/core/models.py:819 msgid "provide alternative text for the image for accessibility" msgstr "" "Предоставьте альтернативный текст для изображения, чтобы обеспечить " "доступность" -#: core/models.py:809 +#: engine/core/models.py:820 msgid "image alt text" msgstr "Альтовый текст изображения" -#: core/models.py:812 +#: engine/core/models.py:823 msgid "upload the image file for this product" msgstr "Загрузите файл изображения для этого продукта" -#: core/models.py:813 core/models.py:837 +#: engine/core/models.py:824 engine/core/models.py:848 msgid "product image" msgstr "Изображение продукта" -#: core/models.py:818 +#: engine/core/models.py:829 msgid "determines the order in which images are displayed" msgstr "Определяет порядок отображения изображений" -#: core/models.py:819 +#: engine/core/models.py:830 msgid "display priority" msgstr "Приоритет отображения" -#: core/models.py:824 +#: engine/core/models.py:835 msgid "the product that this image represents" msgstr "Продукт, который представлен на этом изображении" -#: core/models.py:838 +#: engine/core/models.py:849 msgid "product images" msgstr "Изображения товаров" -#: core/models.py:843 +#: engine/core/models.py:854 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 "" "Представляет рекламную кампанию для товаров со скидкой. Этот класс " "используется для определения и управления рекламными кампаниями, " @@ -2082,39 +2125,39 @@ msgstr "" "акции и привязки ее к соответствующим товарам. Он интегрируется с каталогом " "товаров для определения товаров, на которые распространяется акция." -#: core/models.py:855 +#: engine/core/models.py:866 msgid "percentage discount for the selected products" msgstr "Процентная скидка на выбранные продукты" -#: core/models.py:856 +#: engine/core/models.py:867 msgid "discount percentage" msgstr "Процент скидки" -#: core/models.py:861 +#: engine/core/models.py:872 msgid "provide a unique name for this promotion" msgstr "Укажите уникальное имя для этой акции" -#: core/models.py:862 +#: engine/core/models.py:873 msgid "promotion name" msgstr "Название акции" -#: core/models.py:868 +#: engine/core/models.py:879 msgid "promotion description" msgstr "Описание акции" -#: core/models.py:873 +#: engine/core/models.py:884 msgid "select which products are included in this promotion" msgstr "Выберите, какие продукты участвуют в этой акции" -#: core/models.py:874 +#: engine/core/models.py:885 msgid "included products" msgstr "Включенные продукты" -#: core/models.py:878 +#: engine/core/models.py:889 msgid "promotion" msgstr "Продвижение" -#: core/models.py:889 +#: engine/core/models.py:900 msgid "" "Represents a user's wishlist for storing and managing desired products. The " "class provides functionality to manage a collection of products, supporting " @@ -2127,60 +2170,60 @@ msgstr "" "товаров, а также поддерживая операции добавления и удаления нескольких " "товаров одновременно." -#: core/models.py:901 +#: engine/core/models.py:912 msgid "products that the user has marked as wanted" msgstr "Продукты, которые пользователь отметил как желаемые" -#: core/models.py:909 +#: engine/core/models.py:920 msgid "user who owns this wishlist" msgstr "Пользователь, владеющий этим списком желаний" -#: core/models.py:910 +#: engine/core/models.py:921 msgid "wishlist owner" msgstr "Владелец вишлиста" -#: core/models.py:918 +#: engine/core/models.py:929 msgid "wishlist" msgstr "Список желаний" -#: core/models.py:960 +#: engine/core/models.py:971 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 "" "Представляет документальную запись, связанную с продуктом. Этот класс " "используется для хранения информации о документальных записях, связанных с " "конкретными продуктами, включая загруженные файлы и их метаданные. Он " "содержит методы и свойства для обработки типа файла и пути хранения " -"документальных файлов. Он расширяет функциональность определенных миксинов и" -" предоставляет дополнительные пользовательские возможности." +"документальных файлов. Он расширяет функциональность определенных миксинов и " +"предоставляет дополнительные пользовательские возможности." -#: core/models.py:973 +#: engine/core/models.py:984 msgid "documentary" msgstr "Документальный фильм" -#: core/models.py:974 +#: engine/core/models.py:985 msgid "documentaries" msgstr "Документальные фильмы" -#: core/models.py:984 +#: engine/core/models.py:995 msgid "unresolved" msgstr "Неразрешенные" -#: core/models.py:989 +#: engine/core/models.py:1000 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 "" "Представляет адресную сущность, включающую сведения о местоположении и " "ассоциации с пользователем. Обеспечивает функциональность для хранения " @@ -2192,59 +2235,59 @@ msgstr "" "обработки или проверки. Класс также позволяет ассоциировать адрес с " "пользователем, что облегчает работу с персонализированными данными." -#: core/models.py:1004 +#: engine/core/models.py:1015 msgid "address line for the customer" msgstr "Адресная строка для клиента" -#: core/models.py:1005 +#: engine/core/models.py:1016 msgid "address line" msgstr "Адресная строка" -#: core/models.py:1007 +#: engine/core/models.py:1018 msgid "street" msgstr "Улица" -#: core/models.py:1008 +#: engine/core/models.py:1019 msgid "district" msgstr "Округ" -#: core/models.py:1009 +#: engine/core/models.py:1020 msgid "city" msgstr "Город" -#: core/models.py:1010 +#: engine/core/models.py:1021 msgid "region" msgstr "Регион" -#: core/models.py:1011 +#: engine/core/models.py:1022 msgid "postal code" msgstr "Почтовый индекс" -#: core/models.py:1012 +#: engine/core/models.py:1023 msgid "country" msgstr "Страна" -#: core/models.py:1019 +#: engine/core/models.py:1030 msgid "geolocation point: (longitude, latitude)" msgstr "Геолокационная точка(долгота, широта)" -#: core/models.py:1022 +#: engine/core/models.py:1033 msgid "full JSON response from geocoder for this address" msgstr "Полный JSON-ответ от геокодера для этого адреса" -#: core/models.py:1027 +#: engine/core/models.py:1038 msgid "stored JSON response from the geocoding service" msgstr "Сохраненный JSON-ответ от сервиса геокодирования" -#: core/models.py:1035 +#: engine/core/models.py:1046 msgid "address" msgstr "Адрес" -#: core/models.py:1036 +#: engine/core/models.py:1047 msgid "addresses" msgstr "Адреса" -#: core/models.py:1048 +#: engine/core/models.py:1059 msgid "" "Represents a promotional code that can be used for discounts, managing its " "validity, type of discount, and application. The PromoCode class stores " @@ -2256,244 +2299,244 @@ msgstr "" "Представляет промокод, который можно использовать для получения скидки, " "управляя его сроком действия, типом скидки и применением. Класс PromoCode " "хранит информацию о промокоде, включая его уникальный идентификатор, " -"свойства скидки (размер или процент), срок действия, связанного пользователя" -" (если таковой имеется) и статус его использования. Он включает в себя " +"свойства скидки (размер или процент), срок действия, связанного пользователя " +"(если таковой имеется) и статус его использования. Он включает в себя " "функциональность для проверки и применения промокода к заказу, обеспечивая " "при этом соблюдение ограничений." -#: core/models.py:1062 +#: engine/core/models.py:1073 msgid "unique code used by a user to redeem a discount" msgstr "Уникальный код, используемый пользователем для получения скидки" -#: core/models.py:1063 +#: engine/core/models.py:1074 msgid "promo code identifier" msgstr "Идентификатор промо-кода" -#: core/models.py:1070 +#: engine/core/models.py:1081 msgid "fixed discount amount applied if percent is not used" msgstr "Фиксированная сумма скидки, применяемая, если процент не используется" -#: core/models.py:1071 +#: engine/core/models.py:1082 msgid "fixed discount amount" msgstr "Фиксированная сумма скидки" -#: core/models.py:1077 +#: engine/core/models.py:1088 msgid "percentage discount applied if fixed amount is not used" msgstr "" "Процентная скидка, применяемая, если фиксированная сумма не используется" -#: core/models.py:1078 +#: engine/core/models.py:1089 msgid "percentage discount" msgstr "Процентная скидка" -#: core/models.py:1083 +#: engine/core/models.py:1094 msgid "timestamp when the promocode expires" msgstr "Временная метка, когда истекает срок действия промокода" -#: core/models.py:1084 +#: engine/core/models.py:1095 msgid "end validity time" msgstr "Время окончания срока действия" -#: core/models.py:1089 +#: engine/core/models.py:1100 msgid "timestamp from which this promocode is valid" msgstr "Время, с которого действует этот промокод" -#: core/models.py:1090 +#: engine/core/models.py:1101 msgid "start validity time" msgstr "Время начала действия" -#: core/models.py:1095 +#: engine/core/models.py:1106 msgid "timestamp when the promocode was used, blank if not used yet" msgstr "" "Временная метка, когда был использован промокод, пустая, если он еще не " "использовался" -#: core/models.py:1096 +#: engine/core/models.py:1107 msgid "usage timestamp" msgstr "Временная метка использования" -#: core/models.py:1101 +#: engine/core/models.py:1112 msgid "user assigned to this promocode if applicable" msgstr "Пользователь, назначенный на этот промокод, если применимо" -#: core/models.py:1102 +#: engine/core/models.py:1113 msgid "assigned user" msgstr "Назначенный пользователь" -#: core/models.py:1109 +#: engine/core/models.py:1120 msgid "promo code" msgstr "Промокод" -#: core/models.py:1110 +#: engine/core/models.py:1121 msgid "promo codes" msgstr "Промокоды" -#: core/models.py:1125 +#: engine/core/models.py:1136 msgid "" "only one type of discount should be defined (amount or percent), but not " "both or neither." msgstr "" -"Следует определить только один тип скидки (сумма или процент), но не оба или" -" ни один из них." +"Следует определить только один тип скидки (сумма или процент), но не оба или " +"ни один из них." -#: core/models.py:1146 +#: engine/core/models.py:1157 msgid "promocode already used" msgstr "Промокоды" -#: core/models.py:1162 +#: engine/core/models.py:1173 #, python-brace-format msgid "invalid discount type for promocode {self.uuid}" msgstr "Неверный тип скидки для промокода {self.uuid}!" -#: core/models.py:1171 +#: engine/core/models.py:1182 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 "" -"Представляет заказ, оформленный пользователем. Этот класс моделирует заказ в" -" приложении, включая его различные атрибуты, такие как информация о " +"Представляет заказ, оформленный пользователем. Этот класс моделирует заказ в " +"приложении, включая его различные атрибуты, такие как информация о " "выставлении счета и доставке, статус, связанный пользователь, уведомления и " "связанные операции. Заказы могут иметь связанные продукты, к ним можно " "применять рекламные акции, устанавливать адреса и обновлять данные о " "доставке или выставлении счета. Кроме того, функциональность поддерживает " "управление продуктами в жизненном цикле заказа." -#: core/models.py:1188 +#: engine/core/models.py:1199 msgid "the billing address used for this order" msgstr "Адрес для выставления счетов, используемый для данного заказа" -#: core/models.py:1196 +#: engine/core/models.py:1207 msgid "optional promo code applied to this order" msgstr "Дополнительный промокод, применяемый к этому заказу" -#: core/models.py:1197 +#: engine/core/models.py:1208 msgid "applied promo code" msgstr "Примененный промокод" -#: core/models.py:1205 +#: engine/core/models.py:1216 msgid "the shipping address used for this order" msgstr "Адрес доставки, используемый для данного заказа" -#: core/models.py:1206 +#: engine/core/models.py:1217 msgid "shipping address" msgstr "Адрес доставки" -#: core/models.py:1212 +#: engine/core/models.py:1223 msgid "current status of the order in its lifecycle" msgstr "Текущий статус заказа в его жизненном цикле" -#: core/models.py:1213 +#: engine/core/models.py:1224 msgid "order status" msgstr "Статус заказа" -#: core/models.py:1218 core/models.py:1695 +#: engine/core/models.py:1229 engine/core/models.py:1755 msgid "json structure of notifications to display to users" msgstr "" -"JSON-структура уведомлений для отображения пользователям, в административном" -" интерфейсе используется табличный вид" +"JSON-структура уведомлений для отображения пользователям, в административном " +"интерфейсе используется табличный вид" -#: core/models.py:1224 +#: engine/core/models.py:1235 msgid "json representation of order attributes for this order" msgstr "JSON-представление атрибутов заказа для этого заказа" -#: core/models.py:1230 +#: engine/core/models.py:1241 msgid "the user who placed the order" msgstr "Пользователь, разместивший заказ" -#: core/models.py:1231 +#: engine/core/models.py:1242 msgid "user" msgstr "Пользователь" -#: core/models.py:1237 +#: engine/core/models.py:1248 msgid "the timestamp when the order was finalized" msgstr "Временная метка, когда заказ был завершен" -#: core/models.py:1238 +#: engine/core/models.py:1249 msgid "buy time" msgstr "Время покупки" -#: core/models.py:1245 +#: engine/core/models.py:1256 msgid "a human-readable identifier for the order" msgstr "Человекочитаемый идентификатор для заказа" -#: core/models.py:1246 +#: engine/core/models.py:1257 msgid "human readable id" msgstr "человекочитаемый идентификатор" -#: core/models.py:1252 +#: engine/core/models.py:1263 msgid "order" msgstr "Заказ" -#: core/models.py:1294 +#: engine/core/models.py:1305 msgid "a user must have only one pending order at a time" msgstr "Пользователь может одновременно иметь только один отложенный ордер!" -#: core/models.py:1326 +#: engine/core/models.py:1337 msgid "you cannot add products to an order that is not a pending one" msgstr "Вы не можете добавить товары в заказ, который не является отложенным." -#: core/models.py:1331 +#: engine/core/models.py:1342 msgid "you cannot add inactive products to order" msgstr "Вы не можете добавить неактивные товары в заказ" -#: core/models.py:1348 +#: engine/core/models.py:1359 msgid "you cannot add more products than available in stock" msgstr "Вы не можете добавить больше товаров, чем есть на складе" -#: core/models.py:1370 core/models.py:1395 core/models.py:1403 +#: engine/core/models.py:1381 engine/core/models.py:1406 +#: engine/core/models.py:1414 msgid "you cannot remove products from an order that is not a pending one" -msgstr "" -"Вы не можете удалить товары из заказа, который не является отложенным." +msgstr "Вы не можете удалить товары из заказа, который не является отложенным." -#: core/models.py:1391 +#: engine/core/models.py:1402 #, python-brace-format msgid "{name} does not exist with query <{query}>" msgstr "{name} не существует с запросом <{query}>!" -#: core/models.py:1423 +#: engine/core/models.py:1434 msgid "promocode does not exist" msgstr "Промокод не существует" -#: core/models.py:1429 +#: engine/core/models.py:1440 msgid "you can only buy physical products with shipping address specified" msgstr "" "Вы можете купить физические товары только с указанным адресом доставки!" -#: core/models.py:1448 +#: engine/core/models.py:1459 msgid "address does not exist" msgstr "Адрес не существует" -#: core/models.py:1469 core/models.py:1538 +#: engine/core/models.py:1480 engine/core/models.py:1549 msgid "you can not buy at this moment, please try again in a few minutes" msgstr "" "В данный момент вы не можете совершить покупку, пожалуйста, повторите " "попытку через несколько минут." -#: core/models.py:1472 core/models.py:1534 +#: engine/core/models.py:1483 engine/core/models.py:1545 msgid "invalid force value" msgstr "Недопустимое значение силы" -#: core/models.py:1478 core/models.py:1541 +#: engine/core/models.py:1489 engine/core/models.py:1552 msgid "you cannot purchase an empty order!" msgstr "Вы не можете приобрести пустой заказ!" -#: core/models.py:1497 +#: engine/core/models.py:1508 msgid "you cannot buy an order without a user" msgstr "Вы не можете купить заказ без пользователя!" -#: core/models.py:1511 +#: engine/core/models.py:1522 msgid "a user without a balance cannot buy with balance" msgstr "Пользователь без баланса не может покупать с балансом!" -#: core/models.py:1516 +#: engine/core/models.py:1527 msgid "insufficient funds to complete the order" msgstr "Недостаточно средств для выполнения заказа" -#: core/models.py:1550 +#: engine/core/models.py:1561 msgid "" "you cannot buy without registration, please provide the following " "information: customer name, customer email, customer phone number" @@ -2501,14 +2544,54 @@ msgstr "" "Вы не можете купить без регистрации, пожалуйста, предоставьте следующую " "информацию: имя клиента, электронная почта клиента, номер телефона клиента" -#: core/models.py:1559 +#: engine/core/models.py:1570 #, python-brace-format msgid "" "invalid payment method: {payment_method} from {available_payment_methods}" msgstr "" "Неверный способ оплаты: {payment_method} от {available_payment_methods}!" -#: core/models.py:1668 +#: engine/core/models.py:1685 +msgid "" +"Manages user feedback for products. This class is designed to capture and " +"store user feedback for specific products that they have purchased. It " +"contains attributes to store user comments, a reference to the related " +"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:1697 +msgid "user-provided comments about their experience with the product" +msgstr "Комментарии пользователей об их опыте использования продукта" + +#: engine/core/models.py:1698 +msgid "feedback comments" +msgstr "Комментарии к отзывам" + +#: engine/core/models.py:1705 +msgid "references the specific product in an order that this feedback is about" +msgstr "" +"Ссылка на конкретный продукт в заказе, о котором идет речь в этом отзыве" + +#: engine/core/models.py:1706 +msgid "related order product" +msgstr "Сопутствующий товар для заказа" + +#: engine/core/models.py:1711 +msgid "user-assigned rating for the product" +msgstr "Присвоенный пользователем рейтинг продукта" + +#: engine/core/models.py:1712 +msgid "product rating" +msgstr "Рейтинг продукции" + +#: engine/core/models.py:1728 msgid "" "Represents products associated with orders and their attributes. The " "OrderProduct model maintains information about a product that is part of an " @@ -2530,248 +2613,203 @@ msgstr "" "для цифровых продуктов. Модель интегрируется с моделями Order и Product и " "хранит ссылки на них." -#: core/models.py:1683 +#: engine/core/models.py:1743 msgid "the price paid by the customer for this product at purchase time" msgstr "Цена, уплаченная клиентом за данный продукт на момент покупки" -#: core/models.py:1684 +#: engine/core/models.py:1744 msgid "purchase price at order time" msgstr "Покупная цена на момент заказа" -#: core/models.py:1689 +#: engine/core/models.py:1749 msgid "internal comments for admins about this ordered product" -msgstr "" -"Внутренние комментарии для администраторов об этом заказанном продукте" +msgstr "Внутренние комментарии для администраторов об этом заказанном продукте" -#: core/models.py:1690 +#: engine/core/models.py:1750 msgid "internal comments" msgstr "Внутренние комментарии" -#: core/models.py:1696 +#: engine/core/models.py:1756 msgid "user notifications" msgstr "Уведомления пользователей" -#: core/models.py:1701 +#: engine/core/models.py:1761 msgid "json representation of this item's attributes" msgstr "JSON-представление атрибутов этого элемента" -#: core/models.py:1702 +#: engine/core/models.py:1762 msgid "ordered product attributes" msgstr "Атрибуты заказанного продукта" -#: core/models.py:1707 +#: engine/core/models.py:1767 msgid "reference to the parent order that contains this product" msgstr "Ссылка на родительский заказ, содержащий данный продукт" -#: core/models.py:1708 +#: engine/core/models.py:1768 msgid "parent order" msgstr "Родительский приказ" -#: core/models.py:1717 +#: engine/core/models.py:1777 msgid "the specific product associated with this order line" msgstr "Конкретный продукт, связанный с этой линией заказа" -#: core/models.py:1724 +#: engine/core/models.py:1784 msgid "quantity of this specific product in the order" msgstr "Количество данного товара в заказе" -#: core/models.py:1725 +#: engine/core/models.py:1785 msgid "product quantity" msgstr "Количество продукта" -#: core/models.py:1732 +#: engine/core/models.py:1792 msgid "current status of this product in the order" msgstr "Текущий статус этого продукта в заказе" -#: core/models.py:1733 +#: engine/core/models.py:1793 msgid "product line status" msgstr "Состояние продуктовой линейки" -#: core/models.py:1798 +#: engine/core/models.py:1858 msgid "order product must have an order" msgstr "У заказанного продукта должен быть связанный с ним заказ!" -#: core/models.py:1800 +#: engine/core/models.py:1860 #, python-brace-format msgid "wrong action specified for feedback: {action}" msgstr "Для обратной связи указано неверное действие: {action}!" -#: core/models.py:1814 +#: engine/core/models.py:1874 msgid "you cannot feedback an order which is not received" msgstr "Вы не можете отозвать заказ, который не был получен" -#: core/models.py:1820 +#: engine/core/models.py:1880 msgid "name" msgstr "Имя" -#: core/models.py:1821 +#: engine/core/models.py:1881 msgid "URL of the integration" msgstr "URL-адрес интеграции" -#: core/models.py:1822 +#: engine/core/models.py:1882 msgid "authentication credentials" msgstr "Учетные данные для аутентификации" -#: core/models.py:1844 +#: engine/core/models.py:1904 msgid "you can only have one default CRM provider" msgstr "У вас может быть только один поставщик CRM по умолчанию" -#: core/models.py:1854 +#: engine/core/models.py:1914 msgid "CRM" msgstr "CRM" -#: core/models.py:1855 +#: engine/core/models.py:1915 msgid "CRMs" msgstr "CRM" -#: core/models.py:1867 +#: engine/core/models.py:1927 msgid "order CRM link" msgstr "Ссылка на CRM заказа" -#: core/models.py:1868 +#: engine/core/models.py:1928 msgid "orders CRM links" msgstr "Ссылки на CRM заказов" -#: core/models.py:1873 +#: engine/core/models.py:1933 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-адреса для загрузки " "актива, когда связанный заказ находится в состоянии завершения." -#: core/models.py:1887 +#: engine/core/models.py:1947 msgid "download" msgstr "Скачать" -#: core/models.py:1888 +#: engine/core/models.py:1948 msgid "downloads" msgstr "Скачать" -#: core/models.py:1902 -msgid "" -"Manages user feedback for products. This class is designed to capture and " -"store user feedback for specific products that they have purchased. It " -"contains attributes to store user comments, a reference to the related " -"product in the order, and a user-assigned rating. The class uses database " -"fields to effectively model and manage feedback data." -msgstr "" -"Управление отзывами пользователей о товарах. Этот класс предназначен для " -"сбора и хранения отзывов пользователей о конкретных товарах, которые они " -"приобрели. Он содержит атрибуты для хранения комментариев пользователей, " -"ссылку на соответствующий товар в заказе и оценку, присвоенную " -"пользователем. Класс использует поля базы данных для эффективного " -"моделирования и управления данными отзывов." - -#: core/models.py:1914 -msgid "user-provided comments about their experience with the product" -msgstr "Комментарии пользователей об их опыте использования продукта" - -#: core/models.py:1915 -msgid "feedback comments" -msgstr "Комментарии к отзывам" - -#: core/models.py:1922 -msgid "" -"references the specific product in an order that this feedback is about" -msgstr "" -"Ссылка на конкретный продукт в заказе, о котором идет речь в этом отзыве" - -#: core/models.py:1923 -msgid "related order product" -msgstr "Сопутствующий товар для заказа" - -#: core/models.py:1928 -msgid "user-assigned rating for the product" -msgstr "Присвоенный пользователем рейтинг продукта" - -#: core/models.py:1929 -msgid "product rating" -msgstr "Рейтинг продукции" - -#: core/serializers/utility.py:89 +#: engine/core/serializers/utility.py:89 msgid "" "you must provide a comment, rating, and order product uuid to add feedback." msgstr "" "чтобы добавить отзыв, необходимо указать комментарий, рейтинг и uuid " "продукта заказа." -#: core/signals.py:73 -msgid "error during promocode creation: {e!s}" -msgstr "Ошибка при создании промокода: {e!s}" - -#: core/sitemaps.py:25 +#: engine/core/sitemaps.py:25 msgid "Home" msgstr "Главная" -#: core/sitemaps.py:30 +#: engine/core/sitemaps.py:30 msgid "Contact Us" msgstr "Свяжитесь с нами" -#: core/sitemaps.py:35 +#: engine/core/sitemaps.py:35 msgid "About Us" msgstr "О нас" -#: core/templates/digital_order_created_email.html:7 -#: core/templates/digital_order_created_email.html:100 -#: core/templates/digital_order_delivered_email.html:6 -#: core/templates/shipped_order_created_email.html:7 -#: core/templates/shipped_order_created_email.html:99 -#: core/templates/shipped_order_delivered_email.html:7 -#: core/templates/shipped_order_delivered_email.html:99 +#: engine/core/templates/digital_order_created_email.html:7 +#: engine/core/templates/digital_order_created_email.html:100 +#: engine/core/templates/digital_order_delivered_email.html:6 +#: engine/core/templates/shipped_order_created_email.html:7 +#: engine/core/templates/shipped_order_created_email.html:99 +#: engine/core/templates/shipped_order_delivered_email.html:7 +#: engine/core/templates/shipped_order_delivered_email.html:99 msgid "order confirmation" msgstr "Подтверждение заказа" -#: core/templates/digital_order_created_email.html:95 -#: core/templates/digital_order_delivered_email.html:94 -#: core/templates/promocode_granted_email.html:94 -#: core/templates/shipped_order_created_email.html:94 -#: core/templates/shipped_order_delivered_email.html:94 +#: engine/core/templates/digital_order_created_email.html:95 +#: engine/core/templates/digital_order_delivered_email.html:94 +#: engine/core/templates/promocode_granted_email.html:94 +#: engine/core/templates/shipped_order_created_email.html:94 +#: engine/core/templates/shipped_order_delivered_email.html:94 msgid "logo" msgstr "Логотип" -#: core/templates/digital_order_created_email.html:101 -#: core/templates/shipped_order_created_email.html:100 -#: core/templates/shipped_order_delivered_email.html:100 +#: engine/core/templates/digital_order_created_email.html:101 +#: engine/core/templates/shipped_order_created_email.html:100 +#: engine/core/templates/shipped_order_delivered_email.html:100 #, python-format msgid "hello %(order.user.first_name)s," msgstr "Привет %(order.user.first_name)s," -#: core/templates/digital_order_created_email.html:102 +#: engine/core/templates/digital_order_created_email.html:102 #, 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! Мы рады сообщить Вам, что приняли Ваш " +"заказ в работу. Ниже приведены детали вашего заказа:" -#: core/templates/digital_order_created_email.html:112 -#: core/templates/digital_order_delivered_email.html:110 -#: core/templates/shipped_order_created_email.html:110 -#: core/templates/shipped_order_delivered_email.html:110 +#: engine/core/templates/digital_order_created_email.html:112 +#: engine/core/templates/digital_order_delivered_email.html:110 +#: engine/core/templates/shipped_order_created_email.html:110 +#: engine/core/templates/shipped_order_delivered_email.html:110 msgid "total" msgstr "Всего" -#: core/templates/digital_order_created_email.html:125 -#: core/templates/digital_order_delivered_email.html:157 -#: core/templates/shipped_order_created_email.html:127 -#: core/templates/shipped_order_delivered_email.html:127 +#: engine/core/templates/digital_order_created_email.html:125 +#: engine/core/templates/digital_order_delivered_email.html:157 +#: engine/core/templates/shipped_order_created_email.html:127 +#: engine/core/templates/shipped_order_delivered_email.html:127 msgid "total price" msgstr "Общая цена" -#: core/templates/digital_order_created_email.html:131 -#: core/templates/shipped_order_created_email.html:140 -#: core/templates/shipped_order_delivered_email.html:140 +#: engine/core/templates/digital_order_created_email.html:131 +#: engine/core/templates/shipped_order_created_email.html:140 +#: engine/core/templates/shipped_order_delivered_email.html:140 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" @@ -2780,28 +2818,28 @@ msgstr "" "Если у вас возникнут вопросы, обращайтесь в нашу службу поддержки по адресу " "%(config.EMAIL_HOST_USER)s." -#: core/templates/digital_order_created_email.html:133 +#: engine/core/templates/digital_order_created_email.html:133 #, python-format msgid "best regards,
the %(config.PROJECT_NAME)s team" msgstr "С наилучшими пожеланиями,
команда %(config.PROJECT_NAME)s" -#: core/templates/digital_order_created_email.html:139 -#: core/templates/digital_order_delivered_email.html:171 -#: core/templates/promocode_granted_email.html:114 +#: engine/core/templates/digital_order_created_email.html:139 +#: engine/core/templates/digital_order_delivered_email.html:171 +#: engine/core/templates/promocode_granted_email.html:114 msgid "all rights reserved" msgstr "Все права защищены" -#: core/templates/digital_order_delivered_email.html:99 +#: engine/core/templates/digital_order_delivered_email.html:99 msgid "order delivered" msgstr "Заказ доставлен" -#: core/templates/digital_order_delivered_email.html:100 -#: core/templates/promocode_granted_email.html:100 +#: engine/core/templates/digital_order_delivered_email.html:100 +#: engine/core/templates/promocode_granted_email.html:100 #, python-format msgid "hello %(user_first_name)s," msgstr "Привет %(user_first_name)s," -#: core/templates/digital_order_delivered_email.html:101 +#: engine/core/templates/digital_order_delivered_email.html:101 #, python-format msgid "" "we have successfully processed your order №%(order_uuid)s! below are the\n" @@ -2810,7 +2848,7 @@ msgstr "" "Мы успешно обработали ваш заказ №%(order_uuid)s! Ниже приведены детали " "вашего заказа:" -#: core/templates/digital_order_delivered_email.html:128 +#: engine/core/templates/digital_order_delivered_email.html:128 msgid "" "additional\n" " information" @@ -2818,13 +2856,13 @@ msgstr "" "дополнительная\n" " информация" -#: core/templates/digital_order_delivered_email.html:137 -#: core/templates/json_table_widget.html:6 +#: engine/core/templates/digital_order_delivered_email.html:137 +#: engine/core/templates/json_table_widget.html:6 msgid "value" msgstr "Значение" -#: core/templates/digital_order_delivered_email.html:163 -#: core/templates/promocode_granted_email.html:106 +#: engine/core/templates/digital_order_delivered_email.html:163 +#: engine/core/templates/promocode_granted_email.html:106 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" @@ -2833,26 +2871,26 @@ msgstr "" "Если у вас возникнут вопросы, обращайтесь в нашу службу поддержки по адресу " "%(contact_email)s." -#: core/templates/digital_order_delivered_email.html:165 -#: core/templates/promocode_granted_email.html:108 +#: engine/core/templates/digital_order_delivered_email.html:165 +#: engine/core/templates/promocode_granted_email.html:108 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "С наилучшими пожеланиями,
команда %(project_name)s" -#: core/templates/json_table_widget.html:5 +#: engine/core/templates/json_table_widget.html:5 msgid "key" msgstr "Ключ" -#: core/templates/json_table_widget.html:40 +#: engine/core/templates/json_table_widget.html:40 msgid "Add Row" msgstr "Добавить строку" -#: core/templates/promocode_granted_email.html:6 -#: core/templates/promocode_granted_email.html:99 +#: engine/core/templates/promocode_granted_email.html:6 +#: engine/core/templates/promocode_granted_email.html:99 msgid "promocode granted" msgstr "Предоставленный промокод" -#: core/templates/promocode_granted_email.html:101 +#: engine/core/templates/promocode_granted_email.html:101 msgid "" "Thank you for staying with us! We have granted you with a promocode\n" " for " @@ -2860,33 +2898,34 @@ msgstr "" "Спасибо, что остаетесь с нами! Мы предоставили вам промокод\n" " для" -#: core/templates/shipped_order_created_email.html:101 -#: core/templates/shipped_order_delivered_email.html:101 +#: 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 "" "Спасибо за ваш заказ! Мы рады подтвердить вашу покупку. Ниже приведены " "детали вашего заказа:" -#: core/templates/shipped_order_created_email.html:123 -#: core/templates/shipped_order_delivered_email.html:123 +#: engine/core/templates/shipped_order_created_email.html:123 +#: engine/core/templates/shipped_order_delivered_email.html:123 msgid "shipping price" msgstr "Цена доставки" -#: core/templates/shipped_order_created_email.html:133 -#: core/templates/shipped_order_delivered_email.html:133 +#: engine/core/templates/shipped_order_created_email.html:133 +#: engine/core/templates/shipped_order_delivered_email.html:133 msgid "your order will be delivered to the following address:" msgstr "Ваш заказ будет доставлен по следующему адресу:" -#: core/templates/shipped_order_created_email.html:142 -#: core/templates/shipped_order_delivered_email.html:142 +#: engine/core/templates/shipped_order_created_email.html:142 +#: engine/core/templates/shipped_order_delivered_email.html:142 #, python-format msgid "best regards,
The %(config.PROJECT_NAME)s team" msgstr "С наилучшими пожеланиями,
Команда %(config.PROJECT_NAME)s" -#: core/templates/shipped_order_created_email.html:147 -#: core/templates/shipped_order_delivered_email.html:147 +#: engine/core/templates/shipped_order_created_email.html:147 +#: engine/core/templates/shipped_order_delivered_email.html:147 msgid "" "all rights\n" " reserved" @@ -2894,52 +2933,51 @@ msgstr "" "все права\n" " защищены" -#: core/utils/caching.py:44 +#: engine/core/utils/caching.py:44 msgid "both data and timeout are required" msgstr "Требуются как данные, так и тайм-аут" -#: core/utils/caching.py:46 +#: engine/core/utils/caching.py:46 msgid "invalid timeout value, it must be between 0 and 216000 seconds" msgstr "" "Неверное значение тайм-аута, оно должно находиться в диапазоне от 0 до " "216000 секунд" -#: core/utils/emailing.py:27 +#: engine/core/utils/emailing.py:27 #, python-brace-format msgid "{config.PROJECT_NAME} | contact us initiated" msgstr "{config.PROJECT_NAME} | свяжитесь с нами по инициативе" -#: core/utils/emailing.py:73 +#: engine/core/utils/emailing.py:73 #, python-brace-format msgid "{config.PROJECT_NAME} | order confirmation" msgstr "{config.PROJECT_NAME} | Подтверждение заказа" -#: core/utils/emailing.py:105 +#: engine/core/utils/emailing.py:105 #, python-brace-format msgid "{config.PROJECT_NAME} | order delivered" msgstr "{config.PROJECT_NAME} | Заказ доставлен" -#: core/utils/emailing.py:188 +#: engine/core/utils/emailing.py:188 #, python-brace-format msgid "{config.PROJECT_NAME} | promocode granted" msgstr "{config.PROJECT_NAME} | Промокод предоставлен" -#: core/utils/messages.py:3 +#: engine/core/utils/messages.py:3 msgid "you do not have permission to perform this action." msgstr "У вас нет разрешения на выполнение этого действия." -#: core/utils/nominatim.py:8 +#: engine/core/utils/nominatim.py:8 msgid "NOMINATIM_URL must be configured." msgstr "Параметр NOMINATIM_URL должен быть настроен!" -#: core/validators.py:16 +#: engine/core/validators.py:16 #, 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} пикселей" -#: core/views.py:72 +#: engine/core/views.py:71 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." @@ -2948,27 +2986,27 @@ msgstr "" "Он обеспечивает включение в ответ заголовка типа содержимого, " "соответствующего типу XML." -#: core/views.py:87 +#: engine/core/views.py:86 msgid "" "Handles the detailed view response for a sitemap. This function processes " "the request, fetches the appropriate sitemap detail response, and sets the " "Content-Type header for XML." msgstr "" "Обрабатывает подробный ответ на просмотр карты сайта. Эта функция " -"обрабатывает запрос, извлекает соответствующий подробный ответ карты сайта и" -" устанавливает заголовок Content-Type для XML." +"обрабатывает запрос, извлекает соответствующий подробный ответ карты сайта и " +"устанавливает заголовок Content-Type для XML." -#: core/views.py:116 +#: engine/core/views.py:115 msgid "" "Returns a list of supported languages and their corresponding information." msgstr "" "Возвращает список поддерживаемых языков и соответствующую информацию о них." -#: core/views.py:148 +#: engine/core/views.py:147 msgid "Returns the parameters of the website as a JSON object." msgstr "Возвращает параметры сайта в виде объекта JSON." -#: core/views.py:167 +#: engine/core/views.py:166 msgid "" "Handles cache operations such as reading and setting cache data with a " "specified key and timeout." @@ -2976,65 +3014,73 @@ msgstr "" "Выполняет операции с кэшем, такие как чтение и установка данных кэша с " "заданным ключом и таймаутом." -#: core/views.py:194 +#: engine/core/views.py:193 msgid "Handles `contact us` form submissions." msgstr "Обрабатывает отправленные формы `contact us`." -#: core/views.py:215 +#: engine/core/views.py:214 msgid "" "Handles requests for processing and validating URLs from incoming POST " "requests." msgstr "" "Обрабатывает запросы на обработку и проверку URL из входящих POST-запросов." -#: core/views.py:255 +#: engine/core/views.py:254 msgid "Handles global search queries." msgstr "Обрабатывает глобальные поисковые запросы." -#: core/views.py:270 +#: engine/core/views.py:269 msgid "Handles the logic of buying as a business without registration." msgstr "Работает с логикой покупки как бизнеса без регистрации." -#: core/views.py:306 +#: engine/core/views.py:305 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, " +"указывающая на недоступность ресурса." -#: core/views.py:316 +#: engine/core/views.py:315 msgid "order_product_uuid is required" msgstr "требуется order_product_uuid" -#: core/views.py:322 +#: engine/core/views.py:321 msgid "you can only download the digital asset once" msgstr "Вы можете загрузить цифровой актив только один раз" -#: core/views.py:325 +#: engine/core/views.py:324 msgid "the order must be paid before downloading the digital asset" msgstr "заказ должен быть оплачен до загрузки цифрового актива" -#: core/views.py:331 +#: engine/core/views.py:330 msgid "the order product does not have a product" msgstr "У заказанного продукта нет продукта" -#: core/views.py:369 +#: engine/core/views.py:368 msgid "favicon not found" msgstr "favicon не найден" -#: core/views.py:374 +#: engine/core/views.py:373 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, " +"указывающая на недоступность ресурса." -#: core/views.py:386 +#: engine/core/views.py:385 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 "" "Перенаправляет запрос на индексную страницу админки. Функция обрабатывает " @@ -3042,11 +3088,11 @@ msgstr "" "администратора Django. Для обработки HTTP-перенаправления используется " "функция Django `redirect`." -#: core/views.py:399 +#: engine/core/views.py:398 msgid "Returns current version of the eVibes. " msgstr "Возвращает текущую версию eVibes." -#: core/viewsets.py:137 +#: engine/core/viewsets.py:137 msgid "" "Defines a viewset for managing Evibes-related operations. The EvibesViewSet " "class inherits from ModelViewSet and provides functionality for handling " @@ -3056,17 +3102,16 @@ msgid "" msgstr "" "Определяет набор представлений для управления операциями, связанными с " "Evibes. Класс EvibesViewSet наследует от ModelViewSet и предоставляет " -"функциональность для обработки действий и операций над сущностями Evibes. Он" -" включает в себя поддержку динамических классов сериализаторов в зависимости" -" от текущего действия, настраиваемые разрешения и форматы рендеринга." +"функциональность для обработки действий и операций над сущностями Evibes. Он " +"включает в себя поддержку динамических классов сериализаторов в зависимости " +"от текущего действия, настраиваемые разрешения и форматы рендеринга." -#: core/viewsets.py:157 +#: engine/core/viewsets.py:157 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, включая " @@ -3074,7 +3119,7 @@ msgstr "" "уровня API приложения и обеспечивает стандартизированный способ обработки " "запросов и ответов на данные AttributeGroup." -#: core/viewsets.py:176 +#: engine/core/viewsets.py:176 msgid "" "Handles operations related to Attribute objects within the application. " "Provides a set of API endpoints to interact with Attribute data. This class " @@ -3090,22 +3135,22 @@ msgstr "" "например, фильтровать по определенным полям или получать подробную или " "упрощенную информацию в зависимости от запроса." -#: core/viewsets.py:195 +#: engine/core/viewsets.py:195 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." -#: core/viewsets.py:214 +#: engine/core/viewsets.py:214 msgid "" "Manages views for Category-related operations. The CategoryViewSet class is " "responsible for handling operations related to the Category model in the " @@ -3114,13 +3159,13 @@ msgid "" "can access specific data." msgstr "" "Управляет представлениями для операций, связанных с категорией. Класс " -"CategoryViewSet отвечает за обработку операций, связанных с моделью Category" -" в системе. Он поддерживает получение, фильтрацию и сериализацию данных " +"CategoryViewSet отвечает за обработку операций, связанных с моделью Category " +"в системе. Он поддерживает получение, фильтрацию и сериализацию данных " "категории. Набор представлений также обеспечивает соблюдение прав доступа, " "чтобы только авторизованные пользователи могли получить доступ к " "определенным данным." -#: core/viewsets.py:326 +#: engine/core/viewsets.py:326 msgid "" "Represents a viewset for managing Brand instances. This class provides " "functionality for querying, filtering, and serializing Brand objects. It " @@ -3132,7 +3177,7 @@ msgstr "" "сериализации объектов Brand. Он использует фреймворк Django ViewSet для " "упрощения реализации конечных точек API для объектов Brand." -#: core/viewsets.py:438 +#: engine/core/viewsets.py:438 msgid "" "Manages operations related to the `Product` model in the system. This class " "provides a viewset for managing products, including their filtering, " @@ -3150,7 +3195,7 @@ msgstr "" "методы для получения информации о продукте, применения разрешений и доступа " "к связанным отзывам о продукте." -#: core/viewsets.py:568 +#: engine/core/viewsets.py:568 msgid "" "Represents a viewset for managing Vendor objects. This viewset allows " "fetching, filtering, and serializing Vendor data. It defines the queryset, " @@ -3158,20 +3203,20 @@ 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." -#: core/viewsets.py:588 +#: engine/core/viewsets.py:588 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 `EvibesViewSet` and makes " "use of Django's filtering system for querying data." msgstr "" "Представление набора представлений, обрабатывающих объекты Feedback. Этот " @@ -3182,48 +3227,47 @@ msgstr "" "доступа. Он расширяет базовый `EvibesViewSet` и использует систему " "фильтрации Django для запроса данных." -#: core/viewsets.py:615 +#: engine/core/viewsets.py:615 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 использует несколько сериализаторов в зависимости от конкретного " +"выполняемого действия и соответствующим образом устанавливает разрешения при " +"взаимодействии с данными заказа." -#: core/viewsets.py:813 +#: engine/core/viewsets.py:813 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" -#: core/viewsets.py:867 +#: engine/core/viewsets.py:867 msgid "Manages operations related to Product images in the application. " msgstr "" "Управляет операциями, связанными с изображениями продуктов в приложении." -#: core/viewsets.py:880 +#: engine/core/viewsets.py:880 msgid "" "Manages the retrieval and handling of PromoCode instances through various " "API actions." @@ -3231,21 +3275,21 @@ msgstr "" "Управляет получением и обработкой экземпляров PromoCode с помощью различных " "действий API." -#: core/viewsets.py:902 +#: engine/core/viewsets.py:902 msgid "Represents a view set for managing promotions. " msgstr "" "Представляет собой набор представлений для управления рекламными акциями." -#: core/viewsets.py:915 +#: engine/core/viewsets.py:915 msgid "Handles operations related to Stock data in the system." msgstr "Выполняет операции, связанные с данными о запасах в системе." -#: core/viewsets.py:929 +#: engine/core/viewsets.py:929 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." @@ -3258,7 +3302,7 @@ msgstr "" "проверка прав доступа гарантирует, что пользователи смогут управлять только " "своими списками желаний, если не предоставлены явные права." -#: core/viewsets.py:1044 +#: engine/core/viewsets.py:1044 msgid "" "This class provides viewset functionality for managing `Address` objects. " "The AddressViewSet class enables CRUD operations, filtering, and custom " @@ -3273,12 +3317,12 @@ msgstr "" "методов HTTP, переопределение сериализатора и обработку разрешений в " "зависимости от контекста запроса." -#: core/viewsets.py:1111 +#: engine/core/viewsets.py:1111 #, python-brace-format msgid "Geocoding error: {e}" msgstr "Ошибка геокодирования: {e}" -#: core/viewsets.py:1119 +#: engine/core/viewsets.py:1119 msgid "" "Handles operations related to Product Tags within the application. This " "class provides functionality for retrieving, filtering, and serializing " @@ -3286,8 +3330,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 new file mode 100644 index 00000000..03b6a0e1 Binary files /dev/null and b/engine/core/locale/sv_SE/LC_MESSAGES/django.mo differ diff --git a/core/locale/sv_SE/LC_MESSAGES/django.po b/engine/core/locale/sv_SE/LC_MESSAGES/django.po similarity index 68% rename from core/locale/sv_SE/LC_MESSAGES/django.po rename to engine/core/locale/sv_SE/LC_MESSAGES/django.po index 78bdd0e5..313d4303 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,210 +13,213 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: core/abstract.py:12 +#: engine/core/abstract.py:12 msgid "unique id" msgstr "Unikt ID" -#: core/abstract.py:13 +#: engine/core/abstract.py:13 msgid "unique id is used to surely identify any database object" msgstr "Unikt ID används för att säkert identifiera alla databasobjekt" -#: core/abstract.py:20 +#: engine/core/abstract.py:20 msgid "is active" msgstr "Är aktiv" -#: core/abstract.py:21 +#: engine/core/abstract.py:21 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" -#: core/abstract.py:23 core/choices.py:18 +#: engine/core/abstract.py:23 engine/core/choices.py:18 msgid "created" msgstr "Skapad" -#: core/abstract.py:23 +#: engine/core/abstract.py:23 msgid "when the object first appeared on the database" msgstr "När objektet först dök upp på databasen" -#: core/abstract.py:24 +#: engine/core/abstract.py:24 msgid "modified" msgstr "Modifierad" -#: core/abstract.py:24 +#: engine/core/abstract.py:24 msgid "when the object was last modified" msgstr "När objektet senast redigerades" -#: core/admin.py:68 +#: engine/core/admin.py:68 msgid "translations" msgstr "Översättningar" -#: core/admin.py:72 +#: engine/core/admin.py:72 msgid "general" msgstr "Allmänt" -#: core/admin.py:74 +#: engine/core/admin.py:74 msgid "relations" msgstr "Relationer" -#: core/admin.py:76 +#: engine/core/admin.py:76 msgid "additional info" msgstr "Ytterligare information" -#: core/admin.py:94 +#: engine/core/admin.py:94 msgid "metadata" msgstr "Metadata" -#: core/admin.py:101 +#: engine/core/admin.py:101 msgid "timestamps" msgstr "Tidsstämplar" -#: core/admin.py:116 +#: engine/core/admin.py:116 #, python-format msgid "activate selected %(verbose_name_plural)s" msgstr "Aktivera vald %(verbose_name_plural)s." -#: core/admin.py:121 +#: engine/core/admin.py:121 msgid "selected items have been activated." msgstr "Valda artiklar har aktiverats!" -#: core/admin.py:127 +#: engine/core/admin.py:127 #, python-format msgid "deactivate selected %(verbose_name_plural)s" msgstr "Avaktivera vald %(verbose_name_plural)s." -#: core/admin.py:132 +#: engine/core/admin.py:132 msgid "selected items have been deactivated." msgstr "Valda objekt har avaktiverats!" -#: core/admin.py:144 core/graphene/object_types.py:582 -#: core/graphene/object_types.py:589 core/models.py:783 core/models.py:791 +#: engine/core/admin.py:144 engine/core/graphene/object_types.py:586 +#: engine/core/graphene/object_types.py:593 engine/core/models.py:794 +#: engine/core/models.py:802 msgid "attribute value" msgstr "Attributvärde" -#: core/admin.py:145 core/graphene/object_types.py:75 core/models.py:792 +#: engine/core/admin.py:145 engine/core/graphene/object_types.py:75 +#: engine/core/models.py:803 msgid "attribute values" msgstr "Attributets värden" -#: core/admin.py:156 +#: engine/core/admin.py:156 msgid "image" msgstr "Bild" -#: core/admin.py:157 core/graphene/object_types.py:474 +#: engine/core/admin.py:157 engine/core/graphene/object_types.py:474 msgid "images" msgstr "Bilder" -#: core/admin.py:168 core/models.py:559 +#: engine/core/admin.py:169 engine/core/models.py:559 msgid "stock" msgstr "Stock" -#: core/admin.py:169 core/graphene/object_types.py:636 +#: engine/core/admin.py:170 engine/core/graphene/object_types.py:640 msgid "stocks" msgstr "Stocks" -#: core/admin.py:182 core/models.py:1744 +#: engine/core/admin.py:183 engine/core/models.py:1804 msgid "order product" msgstr "Beställ produkt" -#: core/admin.py:183 core/graphene/object_types.py:389 core/models.py:1745 +#: engine/core/admin.py:184 engine/core/graphene/object_types.py:389 +#: engine/core/models.py:1805 msgid "order products" msgstr "Beställ produkter" -#: core/admin.py:196 core/admin.py:197 +#: engine/core/admin.py:197 engine/core/admin.py:198 msgid "children" msgstr "Barn och ungdomar" -#: core/admin.py:965 +#: engine/core/admin.py:969 msgid "Config" msgstr "Konfig" -#: core/apps.py:8 +#: engine/core/apps.py:8 msgid "core" msgstr "Kärnan" -#: core/choices.py:4 core/choices.py:20 +#: engine/core/choices.py:4 engine/core/choices.py:20 msgid "finished" msgstr "Färdig" -#: core/choices.py:5 core/choices.py:19 +#: engine/core/choices.py:5 engine/core/choices.py:19 msgid "delivering" msgstr "Leverera" -#: core/choices.py:6 +#: engine/core/choices.py:6 msgid "delivered" msgstr "Levereras" -#: core/choices.py:7 +#: engine/core/choices.py:7 msgid "canceled" msgstr "Annullerad" -#: core/choices.py:8 core/choices.py:16 core/choices.py:24 +#: engine/core/choices.py:8 engine/core/choices.py:16 engine/core/choices.py:24 msgid "failed" msgstr "Misslyckades" -#: core/choices.py:9 core/choices.py:15 +#: engine/core/choices.py:9 engine/core/choices.py:15 msgid "pending" msgstr "Avvaktande" -#: core/choices.py:10 +#: engine/core/choices.py:10 msgid "accepted" msgstr "Accepterad" -#: core/choices.py:11 +#: engine/core/choices.py:11 msgid "money returned" msgstr "Återbetalda pengar" -#: core/choices.py:17 +#: engine/core/choices.py:17 msgid "payment" msgstr "Betalning" -#: core/choices.py:21 +#: engine/core/choices.py:21 msgid "momental" msgstr "Momental" -#: core/choices.py:24 +#: engine/core/choices.py:24 msgid "successful" msgstr "Framgångsrik" -#: core/docs/drf/views.py:17 core/graphene/mutations.py:38 +#: engine/core/docs/drf/views.py:17 engine/core/graphene/mutations.py:38 msgid "cache I/O" msgstr "Cache I/O" -#: core/docs/drf/views.py:19 +#: engine/core/docs/drf/views.py:19 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 "" "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." -#: core/docs/drf/views.py:32 +#: engine/core/docs/drf/views.py:32 msgid "get a list of supported languages" msgstr "Hämta en lista över språk som stöds" -#: core/docs/drf/views.py:41 +#: engine/core/docs/drf/views.py:41 msgid "get application's exposable parameters" msgstr "Hämta applikationens exponerbara parametrar" -#: core/docs/drf/views.py:48 +#: engine/core/docs/drf/views.py:48 msgid "send a message to the support team" msgstr "Skicka ett meddelande till supportteamet" -#: core/docs/drf/views.py:59 core/graphene/mutations.py:58 +#: engine/core/docs/drf/views.py:59 engine/core/graphene/mutations.py:58 msgid "request a CORSed URL" msgstr "Begär en CORSed URL. Endast https tillåtet." -#: core/docs/drf/views.py:85 +#: engine/core/docs/drf/views.py:85 msgid "global search endpoint to query across project's tables" msgstr "Global sökpunkt för att söka i projektets alla tabeller" -#: core/docs/drf/views.py:91 +#: engine/core/docs/drf/views.py:91 msgid "purchase an order as a business" msgstr "Köpa en order som ett företag" -#: core/docs/drf/views.py:98 +#: engine/core/docs/drf/views.py:98 msgid "" "purchase an order as a business, using the provided `products` with " "`product_uuid` and `attributes`." @@ -224,212 +227,213 @@ msgstr "" "Köp en order som ett företag, med hjälp av de tillhandahållna `produkterna` " "med `produkt_uuid` och `attribut`." -#: core/docs/drf/viewsets.py:58 +#: engine/core/docs/drf/viewsets.py:58 msgid "list all attribute groups (simple view)" msgstr "Lista alla attributgrupper (enkel vy)" -#: core/docs/drf/viewsets.py:62 +#: engine/core/docs/drf/viewsets.py:62 msgid "retrieve a single attribute group (detailed view)" msgstr "Hämta en enskild attributgrupp (detaljerad vy)" -#: core/docs/drf/viewsets.py:66 +#: engine/core/docs/drf/viewsets.py:66 msgid "create an attribute group" msgstr "Skapa en attributgrupp" -#: core/docs/drf/viewsets.py:70 +#: engine/core/docs/drf/viewsets.py:70 msgid "delete an attribute group" msgstr "Ta bort en attributgrupp" -#: core/docs/drf/viewsets.py:74 +#: engine/core/docs/drf/viewsets.py:74 msgid "rewrite an existing attribute group saving non-editables" msgstr "" "Skriva om en befintlig attributgrupp och spara icke-redigerbara attribut" -#: core/docs/drf/viewsets.py:78 -msgid "" -"rewrite some fields of an existing attribute group saving non-editables" +#: engine/core/docs/drf/viewsets.py:78 +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" -#: core/docs/drf/viewsets.py:85 +#: engine/core/docs/drf/viewsets.py:85 msgid "list all attributes (simple view)" msgstr "Lista alla attribut (enkel vy)" -#: core/docs/drf/viewsets.py:89 +#: engine/core/docs/drf/viewsets.py:89 msgid "retrieve a single attribute (detailed view)" msgstr "Hämta ett enskilt attribut (detaljerad vy)" -#: core/docs/drf/viewsets.py:93 +#: engine/core/docs/drf/viewsets.py:93 msgid "create an attribute" msgstr "Skapa ett attribut" -#: core/docs/drf/viewsets.py:97 +#: engine/core/docs/drf/viewsets.py:97 msgid "delete an attribute" msgstr "Ta bort ett attribut" -#: core/docs/drf/viewsets.py:101 +#: engine/core/docs/drf/viewsets.py:101 msgid "rewrite an existing attribute saving non-editables" msgstr "Skriva om ett befintligt attribut och spara icke-redigerbara" -#: core/docs/drf/viewsets.py:105 +#: engine/core/docs/drf/viewsets.py:105 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" -#: core/docs/drf/viewsets.py:112 +#: engine/core/docs/drf/viewsets.py:112 msgid "list all attribute values (simple view)" msgstr "Lista alla attributvärden (enkel vy)" -#: core/docs/drf/viewsets.py:116 +#: engine/core/docs/drf/viewsets.py:116 msgid "retrieve a single attribute value (detailed view)" msgstr "Hämta ett enskilt attributvärde (detaljerad vy)" -#: core/docs/drf/viewsets.py:120 +#: engine/core/docs/drf/viewsets.py:120 msgid "create an attribute value" msgstr "Skapa ett attributvärde" -#: core/docs/drf/viewsets.py:124 +#: engine/core/docs/drf/viewsets.py:124 msgid "delete an attribute value" msgstr "Ta bort ett attributvärde" -#: core/docs/drf/viewsets.py:128 +#: engine/core/docs/drf/viewsets.py:128 msgid "rewrite an existing attribute value saving non-editables" msgstr "Skriva om ett befintligt attributvärde som sparar icke-redigerbara" -#: core/docs/drf/viewsets.py:132 -msgid "" -"rewrite some fields of an existing attribute value saving non-editables" +#: engine/core/docs/drf/viewsets.py:132 +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" -#: core/docs/drf/viewsets.py:139 core/docs/drf/viewsets.py:140 +#: engine/core/docs/drf/viewsets.py:139 engine/core/docs/drf/viewsets.py:140 msgid "list all categories (simple view)" msgstr "Lista alla kategorier (enkel vy)" -#: core/docs/drf/viewsets.py:144 core/docs/drf/viewsets.py:145 +#: engine/core/docs/drf/viewsets.py:144 engine/core/docs/drf/viewsets.py:145 msgid "retrieve a single category (detailed view)" msgstr "Hämta en enskild kategori (detaljerad vy)" -#: core/docs/drf/viewsets.py:149 core/docs/drf/viewsets.py:150 -msgid "create a category" -msgstr "Skapa en kategori" - -#: core/docs/drf/viewsets.py:154 core/docs/drf/viewsets.py:155 -msgid "delete a category" -msgstr "Ta bort en kategori" - -#: core/docs/drf/viewsets.py:159 core/docs/drf/viewsets.py:160 -msgid "rewrite an existing category saving non-editables" -msgstr "Skriva om en befintlig kategori som sparar icke-redigerbara" - -#: core/docs/drf/viewsets.py:164 core/docs/drf/viewsets.py:165 -msgid "rewrite some fields of an existing category saving non-editables" -msgstr "Skriva om vissa fält i en befintlig kategori spara icke-redigerbara" - -#: core/docs/drf/viewsets.py:169 core/docs/drf/viewsets.py:501 -#: core/graphene/object_types.py:117 core/graphene/object_types.py:207 -#: core/graphene/object_types.py:482 -msgid "SEO Meta snapshot" -msgstr "SEO Meta snapshot" - -#: core/docs/drf/viewsets.py:170 -msgid "returns a snapshot of the category's SEO meta data" -msgstr "Returnerar en ögonblicksbild av kategorins SEO-metadata" - -#: core/docs/drf/viewsets.py:175 +#: engine/core/docs/drf/viewsets.py:150 engine/core/docs/drf/viewsets.py:183 msgid "Category UUID or slug" msgstr "Kategori UUID eller slug" -#: core/docs/drf/viewsets.py:188 +#: engine/core/docs/drf/viewsets.py:157 engine/core/docs/drf/viewsets.py:158 +msgid "create a category" +msgstr "Skapa en kategori" + +#: engine/core/docs/drf/viewsets.py:162 engine/core/docs/drf/viewsets.py:163 +msgid "delete a category" +msgstr "Ta bort en kategori" + +#: engine/core/docs/drf/viewsets.py:167 engine/core/docs/drf/viewsets.py:168 +msgid "rewrite an existing category saving non-editables" +msgstr "Skriva om en befintlig kategori som sparar icke-redigerbara" + +#: engine/core/docs/drf/viewsets.py:172 engine/core/docs/drf/viewsets.py:173 +msgid "rewrite some fields of an existing category saving non-editables" +msgstr "Skriva om vissa fält i en befintlig kategori spara icke-redigerbara" + +#: engine/core/docs/drf/viewsets.py:177 engine/core/docs/drf/viewsets.py:517 +#: engine/core/graphene/object_types.py:117 +#: engine/core/graphene/object_types.py:207 +#: engine/core/graphene/object_types.py:482 +msgid "SEO Meta snapshot" +msgstr "SEO Meta snapshot" + +#: engine/core/docs/drf/viewsets.py:178 +msgid "returns a snapshot of the category's SEO meta data" +msgstr "Returnerar en ögonblicksbild av kategorins SEO-metadata" + +#: engine/core/docs/drf/viewsets.py:196 msgid "list all orders (simple view)" msgstr "Lista alla kategorier (enkel vy)" -#: core/docs/drf/viewsets.py:189 +#: engine/core/docs/drf/viewsets.py:197 msgid "for non-staff users, only their own orders are returned." msgstr "" "För användare som inte är anställda returneras endast deras egna " "beställningar." -#: core/docs/drf/viewsets.py:195 +#: engine/core/docs/drf/viewsets.py:203 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" -#: core/docs/drf/viewsets.py:202 +#: engine/core/docs/drf/viewsets.py:210 msgid "Filter orders with buy_time >= this ISO 8601 datetime" msgstr "Filtrera order med buy_time >= denna ISO 8601-datumtid" -#: core/docs/drf/viewsets.py:207 +#: engine/core/docs/drf/viewsets.py:215 msgid "Filter orders with buy_time <= this ISO 8601 datetime" msgstr "Filtrera order med buy_time <= denna ISO 8601-datumtid" -#: core/docs/drf/viewsets.py:212 +#: engine/core/docs/drf/viewsets.py:220 msgid "Filter by exact order UUID" msgstr "Filtrera efter exakt order UUID" -#: core/docs/drf/viewsets.py:217 +#: engine/core/docs/drf/viewsets.py:225 msgid "Filter by exact human-readable order ID" msgstr "Filtrera efter exakt mänskligt läsbart order-ID" -#: core/docs/drf/viewsets.py:222 +#: engine/core/docs/drf/viewsets.py:230 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)" -#: core/docs/drf/viewsets.py:227 +#: engine/core/docs/drf/viewsets.py:235 msgid "Filter by user's UUID" msgstr "Filtrera efter användarens UUID" -#: core/docs/drf/viewsets.py:232 +#: engine/core/docs/drf/viewsets.py:240 msgid "Filter by order status (case-insensitive substring match)" msgstr "Filtrera efter orderstatus (skiftlägeskänslig matchning av delsträng)" -#: core/docs/drf/viewsets.py:238 +#: engine/core/docs/drf/viewsets.py:246 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 " "ordning (t.ex. \"-buy_time\")." -#: core/docs/drf/viewsets.py:247 +#: engine/core/docs/drf/viewsets.py:255 msgid "retrieve a single order (detailed view)" msgstr "Hämta en enskild kategori (detaljerad vy)" -#: core/docs/drf/viewsets.py:251 +#: engine/core/docs/drf/viewsets.py:260 +msgid "Order UUID or human-readable id" +msgstr "Order UUID eller mänskligt läsbart id" + +#: engine/core/docs/drf/viewsets.py:267 msgid "create an order" msgstr "Skapa ett attribut" -#: core/docs/drf/viewsets.py:252 +#: engine/core/docs/drf/viewsets.py:268 msgid "doesn't work for non-staff users." msgstr "Fungerar inte för användare som inte är anställda." -#: core/docs/drf/viewsets.py:256 +#: engine/core/docs/drf/viewsets.py:272 msgid "delete an order" msgstr "Ta bort ett attribut" -#: core/docs/drf/viewsets.py:260 +#: engine/core/docs/drf/viewsets.py:276 msgid "rewrite an existing order saving non-editables" msgstr "Skriva om en befintlig kategori som sparar icke-redigerbara" -#: core/docs/drf/viewsets.py:264 +#: engine/core/docs/drf/viewsets.py:280 msgid "rewrite some fields of an existing order saving non-editables" msgstr "Skriva om vissa fält i en befintlig kategori spara icke-redigerbara" -#: core/docs/drf/viewsets.py:268 +#: engine/core/docs/drf/viewsets.py:284 msgid "purchase an order" msgstr "Inköpspris vid ordertillfället" -#: core/docs/drf/viewsets.py:270 +#: engine/core/docs/drf/viewsets.py:286 msgid "" "finalizes the order purchase. if `force_balance` is used, the purchase is " "completed using the user's balance; if `force_payment` is used, a " @@ -438,19 +442,19 @@ msgstr "" "Slutför orderköpet. Om `force_balance` används, slutförs köpet med " "användarens saldo; Om `force_payment` används, initieras en transaktion." -#: core/docs/drf/viewsets.py:282 core/graphene/mutations.py:335 +#: engine/core/docs/drf/viewsets.py:298 engine/core/graphene/mutations.py:335 msgid "purchase an order without account creation" msgstr "köpa en order utan att skapa ett konto" -#: core/docs/drf/viewsets.py:283 +#: engine/core/docs/drf/viewsets.py:299 msgid "finalizes the order purchase for a non-registered user." msgstr "slutför orderköpet för en icke registrerad användare." -#: core/docs/drf/viewsets.py:291 +#: engine/core/docs/drf/viewsets.py:307 msgid "add product to order" msgstr "Lägg till en produkt i ordern" -#: core/docs/drf/viewsets.py:292 +#: engine/core/docs/drf/viewsets.py:308 msgid "" "adds a product to an order using the provided `product_uuid` and " "`attributes`." @@ -458,11 +462,11 @@ msgstr "" "Lägger till en produkt till en order med hjälp av de angivna `product_uuid` " "och `attributes`." -#: core/docs/drf/viewsets.py:297 +#: engine/core/docs/drf/viewsets.py:313 msgid "add a list of products to order, quantities will not count" msgstr "Lägg till en lista med produkter till ordern, kvantiteter räknas inte" -#: core/docs/drf/viewsets.py:298 +#: engine/core/docs/drf/viewsets.py:314 msgid "" "adds a list of products to an order using the provided `product_uuid` and " "`attributes`." @@ -470,23 +474,23 @@ msgstr "" "Lägger till en lista med produkter till en order med hjälp av de angivna " "`product_uuid` och `attributes`." -#: core/docs/drf/viewsets.py:303 +#: engine/core/docs/drf/viewsets.py:319 msgid "remove product from order" msgstr "Ta bort en produkt från ordern" -#: core/docs/drf/viewsets.py:304 +#: engine/core/docs/drf/viewsets.py:320 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`." -#: core/docs/drf/viewsets.py:309 +#: engine/core/docs/drf/viewsets.py:325 msgid "remove product from order, quantities will not count" msgstr "Ta bort en produkt från ordern, kvantiteter räknas inte" -#: core/docs/drf/viewsets.py:310 +#: engine/core/docs/drf/viewsets.py:326 msgid "" "removes a list of products from an order using the provided `product_uuid` " "and `attributes`" @@ -494,794 +498,815 @@ msgstr "" "Tar bort en lista med produkter från en order med hjälp av de angivna " "`product_uuid` och `attributes`." -#: core/docs/drf/viewsets.py:318 +#: engine/core/docs/drf/viewsets.py:334 msgid "list all wishlists (simple view)" msgstr "Lista alla attribut (enkel vy)" -#: core/docs/drf/viewsets.py:319 +#: engine/core/docs/drf/viewsets.py:335 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." -#: core/docs/drf/viewsets.py:323 +#: engine/core/docs/drf/viewsets.py:339 msgid "retrieve a single wishlist (detailed view)" msgstr "Hämta ett enskilt attribut (detaljerad vy)" -#: core/docs/drf/viewsets.py:327 +#: engine/core/docs/drf/viewsets.py:343 msgid "create an wishlist" msgstr "Skapa ett attribut" -#: core/docs/drf/viewsets.py:328 +#: engine/core/docs/drf/viewsets.py:344 msgid "Doesn't work for non-staff users." msgstr "Fungerar inte för användare som inte är anställda." -#: core/docs/drf/viewsets.py:332 +#: engine/core/docs/drf/viewsets.py:348 msgid "delete an wishlist" msgstr "Ta bort ett attribut" -#: core/docs/drf/viewsets.py:336 +#: engine/core/docs/drf/viewsets.py:352 msgid "rewrite an existing wishlist saving non-editables" msgstr "Skriva om ett befintligt attribut och spara icke-redigerbara" -#: core/docs/drf/viewsets.py:340 +#: engine/core/docs/drf/viewsets.py:356 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" -#: core/docs/drf/viewsets.py:344 +#: engine/core/docs/drf/viewsets.py:360 msgid "add product to wishlist" msgstr "Lägg till en produkt i ordern" -#: core/docs/drf/viewsets.py:345 +#: engine/core/docs/drf/viewsets.py:361 msgid "adds a product to an wishlist using the provided `product_uuid`" msgstr "" "Lägger till en produkt i en önskelista med hjälp av den angivna " "`product_uuid`." -#: core/docs/drf/viewsets.py:350 +#: engine/core/docs/drf/viewsets.py:366 msgid "remove product from wishlist" msgstr "Ta bort en produkt från önskelistan" -#: core/docs/drf/viewsets.py:351 +#: engine/core/docs/drf/viewsets.py:367 msgid "removes a product from an wishlist using the provided `product_uuid`" msgstr "" "Tar bort en produkt från en önskelista med hjälp av den angivna " "`product_uuid`" -#: core/docs/drf/viewsets.py:356 +#: engine/core/docs/drf/viewsets.py:372 msgid "add many products to wishlist" msgstr "Lägg till många produkter på önskelistan" -#: core/docs/drf/viewsets.py:357 +#: engine/core/docs/drf/viewsets.py:373 msgid "adds many products to an wishlist using the provided `product_uuids`" msgstr "" "Lägger till många produkter till en önskelista med hjälp av de angivna " "`product_uuids`" -#: core/docs/drf/viewsets.py:362 +#: engine/core/docs/drf/viewsets.py:378 msgid "remove many products from wishlist" msgstr "Ta bort en produkt från ordern" -#: core/docs/drf/viewsets.py:363 +#: engine/core/docs/drf/viewsets.py:379 msgid "" "removes many products from an wishlist using the provided `product_uuids`" msgstr "" "Tar bort många produkter från en önskelista med hjälp av de angivna " "`product_uuids`" -#: core/docs/drf/viewsets.py:370 +#: engine/core/docs/drf/viewsets.py:386 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" "`b64-beskrivning=icontains-aGVhdC1jb2xk`" -#: core/docs/drf/viewsets.py:386 core/docs/drf/viewsets.py:387 +#: engine/core/docs/drf/viewsets.py:402 engine/core/docs/drf/viewsets.py:403 msgid "list all products (simple view)" msgstr "Lista alla produkter (enkel vy)" -#: core/docs/drf/viewsets.py:392 +#: engine/core/docs/drf/viewsets.py:408 msgid "(exact) Product UUID" msgstr "(exakt) UUID för produkt" -#: core/docs/drf/viewsets.py:399 +#: engine/core/docs/drf/viewsets.py:415 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" -#: core/docs/drf/viewsets.py:413 core/docs/drf/viewsets.py:414 +#: engine/core/docs/drf/viewsets.py:429 engine/core/docs/drf/viewsets.py:430 msgid "retrieve a single product (detailed view)" msgstr "Hämta en enskild produkt (detaljerad vy)" -#: core/docs/drf/viewsets.py:419 core/docs/drf/viewsets.py:443 -#: core/docs/drf/viewsets.py:459 core/docs/drf/viewsets.py:475 -#: core/docs/drf/viewsets.py:491 core/docs/drf/viewsets.py:507 +#: engine/core/docs/drf/viewsets.py:435 engine/core/docs/drf/viewsets.py:459 +#: engine/core/docs/drf/viewsets.py:475 engine/core/docs/drf/viewsets.py:491 +#: engine/core/docs/drf/viewsets.py:507 engine/core/docs/drf/viewsets.py:523 msgid "Product UUID or slug" msgstr "Produkt UUID eller Slug" -#: core/docs/drf/viewsets.py:429 core/docs/drf/viewsets.py:430 +#: engine/core/docs/drf/viewsets.py:445 engine/core/docs/drf/viewsets.py:446 msgid "create a product" msgstr "Skapa en produkt" -#: core/docs/drf/viewsets.py:437 core/docs/drf/viewsets.py:438 +#: engine/core/docs/drf/viewsets.py:453 engine/core/docs/drf/viewsets.py:454 msgid "rewrite an existing product, preserving non-editable fields" msgstr "Skriva om en befintlig produkt och bevara icke redigerbara fält" -#: core/docs/drf/viewsets.py:453 core/docs/drf/viewsets.py:454 +#: engine/core/docs/drf/viewsets.py:469 engine/core/docs/drf/viewsets.py:470 msgid "" "update some fields of an existing product, preserving non-editable fields" msgstr "" "Uppdatera vissa fält i en befintlig produkt och bevara icke redigerbara fält" -#: core/docs/drf/viewsets.py:469 core/docs/drf/viewsets.py:470 +#: engine/core/docs/drf/viewsets.py:485 engine/core/docs/drf/viewsets.py:486 msgid "delete a product" msgstr "Ta bort en produkt" -#: core/docs/drf/viewsets.py:485 core/docs/drf/viewsets.py:486 +#: engine/core/docs/drf/viewsets.py:501 engine/core/docs/drf/viewsets.py:502 msgid "lists all permitted feedbacks for a product" msgstr "listar alla tillåtna återkopplingar för en produkt" -#: core/docs/drf/viewsets.py:502 +#: engine/core/docs/drf/viewsets.py:518 msgid "returns a snapshot of the product's SEO meta data" msgstr "Returnerar en ögonblicksbild av produktens SEO-metadata" -#: core/docs/drf/viewsets.py:520 +#: engine/core/docs/drf/viewsets.py:536 msgid "list all addresses" msgstr "Lista alla adresser" -#: core/docs/drf/viewsets.py:527 +#: engine/core/docs/drf/viewsets.py:543 msgid "retrieve a single address" msgstr "Hämta en enskild adress" -#: core/docs/drf/viewsets.py:534 +#: engine/core/docs/drf/viewsets.py:550 msgid "create a new address" msgstr "Skapa en ny adress" -#: core/docs/drf/viewsets.py:542 +#: engine/core/docs/drf/viewsets.py:558 msgid "delete an address" msgstr "Ta bort en adress" -#: core/docs/drf/viewsets.py:549 +#: engine/core/docs/drf/viewsets.py:565 msgid "update an entire address" msgstr "Uppdatera en hel adress" -#: core/docs/drf/viewsets.py:557 +#: engine/core/docs/drf/viewsets.py:573 msgid "partially update an address" msgstr "Delvis uppdatera en adress" -#: core/docs/drf/viewsets.py:565 +#: engine/core/docs/drf/viewsets.py:581 msgid "autocomplete address suggestions" msgstr "Autokomplettering av adressinmatning" -#: core/docs/drf/viewsets.py:570 +#: engine/core/docs/drf/viewsets.py:586 msgid "raw data query string, please append with data from geo-IP endpoint" msgstr "Frågesträng för rådata, komplettera med data från geo-IP-slutpunkt" -#: core/docs/drf/viewsets.py:576 +#: engine/core/docs/drf/viewsets.py:592 msgid "limit the results amount, 1 < limit < 10, default: 5" msgstr "begränsar resultatmängden, 1 < limit < 10, standard: 5" -#: core/docs/drf/viewsets.py:589 +#: engine/core/docs/drf/viewsets.py:605 msgid "list all feedbacks (simple view)" msgstr "lista alla återkopplingar (enkel vy)" -#: core/docs/drf/viewsets.py:593 +#: engine/core/docs/drf/viewsets.py:609 msgid "retrieve a single feedback (detailed view)" msgstr "hämta en enskild feedback (detaljerad vy)" -#: core/docs/drf/viewsets.py:597 +#: engine/core/docs/drf/viewsets.py:613 msgid "create a feedback" msgstr "skapa en återkoppling" -#: core/docs/drf/viewsets.py:601 +#: engine/core/docs/drf/viewsets.py:617 msgid "delete a feedback" msgstr "ta bort en återkoppling" -#: core/docs/drf/viewsets.py:605 +#: engine/core/docs/drf/viewsets.py:621 msgid "rewrite an existing feedback saving non-editables" msgstr "skriva om en befintlig feedback och spara icke-redigerbara filer" -#: core/docs/drf/viewsets.py:609 +#: engine/core/docs/drf/viewsets.py:625 msgid "rewrite some fields of an existing feedback saving non-editables" msgstr "" "skriva om vissa fält i en befintlig feedback och spara icke-redigerbara fält" -#: core/docs/drf/viewsets.py:616 +#: engine/core/docs/drf/viewsets.py:632 msgid "list all order–product relations (simple view)" msgstr "lista alla order-produktrelationer (enkel vy)" -#: core/docs/drf/viewsets.py:623 +#: engine/core/docs/drf/viewsets.py:639 msgid "retrieve a single order–product relation (detailed view)" msgstr "hämta en enskild order-produktrelation (detaljerad vy)" -#: core/docs/drf/viewsets.py:630 +#: engine/core/docs/drf/viewsets.py:646 msgid "create a new order–product relation" msgstr "skapa en ny relation mellan order och produkt" -#: core/docs/drf/viewsets.py:637 +#: engine/core/docs/drf/viewsets.py:653 msgid "replace an existing order–product relation" msgstr "ersätta en befintlig order-produktrelation" -#: core/docs/drf/viewsets.py:644 +#: engine/core/docs/drf/viewsets.py:660 msgid "partially update an existing order–product relation" msgstr "delvis uppdatera en befintlig order-produktrelation" -#: core/docs/drf/viewsets.py:651 +#: engine/core/docs/drf/viewsets.py:667 msgid "delete an order–product relation" msgstr "ta bort en order-produktrelation" -#: core/docs/drf/viewsets.py:658 +#: engine/core/docs/drf/viewsets.py:674 msgid "add or remove feedback on an order–product relation" msgstr "lägga till eller ta bort feedback om en order-produktrelation" -#: core/docs/drf/viewsets.py:672 +#: engine/core/docs/drf/viewsets.py:688 msgid "list all brands (simple view)" msgstr "Lista alla varumärken (enkel vy)" -#: core/docs/drf/viewsets.py:676 +#: engine/core/docs/drf/viewsets.py:692 msgid "retrieve a single brand (detailed view)" msgstr "Hämta ett enskilt varumärke (detaljerad vy)" -#: core/docs/drf/viewsets.py:680 +#: engine/core/docs/drf/viewsets.py:697 engine/core/docs/drf/viewsets.py:725 +msgid "Brand UUID or slug" +msgstr "UUID eller slug för varumärke" + +#: engine/core/docs/drf/viewsets.py:704 msgid "create a brand" msgstr "Skapa ett varumärke" -#: core/docs/drf/viewsets.py:684 +#: engine/core/docs/drf/viewsets.py:708 msgid "delete a brand" msgstr "Ta bort ett varumärke" -#: core/docs/drf/viewsets.py:688 +#: engine/core/docs/drf/viewsets.py:712 msgid "rewrite an existing brand saving non-editables" msgstr "" "Skriva om ett befintligt varumärke och spara icke-redigerbara produkter" -#: core/docs/drf/viewsets.py:692 +#: engine/core/docs/drf/viewsets.py:716 msgid "rewrite some fields of an existing brand saving non-editables" msgstr "" "Skriva om vissa fält i ett befintligt varumärke och spara icke-redigerbara " "fält" -#: core/docs/drf/viewsets.py:696 +#: engine/core/docs/drf/viewsets.py:720 msgid "SEO Meta snapshot for brand" msgstr "SEO Meta snapshot for brand" -#: core/docs/drf/viewsets.py:703 +#: engine/core/docs/drf/viewsets.py:735 msgid "list all vendors (simple view)" msgstr "Lista alla leverantörer (enkel vy)" -#: core/docs/drf/viewsets.py:707 +#: engine/core/docs/drf/viewsets.py:739 msgid "retrieve a single vendor (detailed view)" msgstr "Hämta en enskild leverantör (detaljerad vy)" -#: core/docs/drf/viewsets.py:711 +#: engine/core/docs/drf/viewsets.py:743 msgid "create a vendor" msgstr "Skapa en leverantör" -#: core/docs/drf/viewsets.py:715 +#: engine/core/docs/drf/viewsets.py:747 msgid "delete a vendor" msgstr "Ta bort en leverantör" -#: core/docs/drf/viewsets.py:719 +#: engine/core/docs/drf/viewsets.py:751 msgid "rewrite an existing vendor saving non-editables" msgstr "Skriva om en befintlig leverantör och spara icke-redigerbara filer" -#: core/docs/drf/viewsets.py:723 +#: engine/core/docs/drf/viewsets.py:755 msgid "rewrite some fields of an existing vendor saving non-editables" msgstr "" "Skriva om vissa fält i en befintlig leverantör och spara icke-redigerbara " "fält" -#: core/docs/drf/viewsets.py:730 +#: engine/core/docs/drf/viewsets.py:762 msgid "list all product images (simple view)" msgstr "Lista alla produktbilder (enkel vy)" -#: core/docs/drf/viewsets.py:734 +#: engine/core/docs/drf/viewsets.py:766 msgid "retrieve a single product image (detailed view)" msgstr "Hämta en enskild produktbild (detaljerad vy)" -#: core/docs/drf/viewsets.py:738 +#: engine/core/docs/drf/viewsets.py:770 msgid "create a product image" msgstr "Skapa en produktbild" -#: core/docs/drf/viewsets.py:742 +#: engine/core/docs/drf/viewsets.py:774 msgid "delete a product image" msgstr "Ta bort en produktbild" -#: core/docs/drf/viewsets.py:746 +#: engine/core/docs/drf/viewsets.py:778 msgid "rewrite an existing product image saving non-editables" msgstr "Skriva om en befintlig produktbild och spara icke-redigerbara objekt" -#: core/docs/drf/viewsets.py:750 +#: engine/core/docs/drf/viewsets.py:782 msgid "rewrite some fields of an existing product image saving non-editables" msgstr "" "Skriva om några fält i en befintlig produktbild och spara icke-redigerbara " "fält" -#: core/docs/drf/viewsets.py:757 +#: engine/core/docs/drf/viewsets.py:789 msgid "list all promo codes (simple view)" msgstr "Lista alla kampanjkoder (enkel vy)" -#: core/docs/drf/viewsets.py:761 +#: engine/core/docs/drf/viewsets.py:793 msgid "retrieve a single promo code (detailed view)" msgstr "Hämta en enskild kampanjkod (detaljerad vy)" -#: core/docs/drf/viewsets.py:765 +#: engine/core/docs/drf/viewsets.py:797 msgid "create a promo code" msgstr "Skapa en kampanjkod" -#: core/docs/drf/viewsets.py:769 +#: engine/core/docs/drf/viewsets.py:801 msgid "delete a promo code" msgstr "Ta bort en kampanjkod" -#: core/docs/drf/viewsets.py:773 +#: engine/core/docs/drf/viewsets.py:805 msgid "rewrite an existing promo code saving non-editables" msgstr "Skriva om en befintlig kampanjkod som sparar icke-redigerbara" -#: core/docs/drf/viewsets.py:777 +#: engine/core/docs/drf/viewsets.py:809 msgid "rewrite some fields of an existing promo code saving non-editables" msgstr "" "Skriva om vissa fält i en befintlig kampanjkod och spara icke-redigerbara " "fält" -#: core/docs/drf/viewsets.py:784 +#: engine/core/docs/drf/viewsets.py:816 msgid "list all promotions (simple view)" msgstr "Lista alla kampanjer (enkel vy)" -#: core/docs/drf/viewsets.py:788 +#: engine/core/docs/drf/viewsets.py:820 msgid "retrieve a single promotion (detailed view)" msgstr "Hämta en enskild kampanj (detaljerad vy)" -#: core/docs/drf/viewsets.py:792 +#: engine/core/docs/drf/viewsets.py:824 msgid "create a promotion" msgstr "Skapa en kampanj" -#: core/docs/drf/viewsets.py:796 +#: engine/core/docs/drf/viewsets.py:828 msgid "delete a promotion" msgstr "Ta bort en kampanj" -#: core/docs/drf/viewsets.py:800 +#: engine/core/docs/drf/viewsets.py:832 msgid "rewrite an existing promotion saving non-editables" msgstr "Skriv om en befintlig kampanj som sparar icke-redigerbara" -#: core/docs/drf/viewsets.py:804 +#: engine/core/docs/drf/viewsets.py:836 msgid "rewrite some fields of an existing promotion saving non-editables" msgstr "" "Skriva om vissa fält i en befintlig kampanj och spara icke-redigerbara fält" -#: core/docs/drf/viewsets.py:811 +#: engine/core/docs/drf/viewsets.py:843 msgid "list all stocks (simple view)" msgstr "Lista alla aktier (enkel vy)" -#: core/docs/drf/viewsets.py:815 +#: engine/core/docs/drf/viewsets.py:847 msgid "retrieve a single stock (detailed view)" msgstr "Hämta en enskild aktie (detaljerad vy)" -#: core/docs/drf/viewsets.py:819 +#: engine/core/docs/drf/viewsets.py:851 msgid "create a stock record" msgstr "Skapa en lagerpost" -#: core/docs/drf/viewsets.py:823 +#: engine/core/docs/drf/viewsets.py:855 msgid "delete a stock record" msgstr "Ta bort en lagerpost" -#: core/docs/drf/viewsets.py:827 +#: engine/core/docs/drf/viewsets.py:859 msgid "rewrite an existing stock record saving non-editables" msgstr "Skriva om en befintlig lagerpost och spara icke-redigerbara uppgifter" -#: core/docs/drf/viewsets.py:831 +#: engine/core/docs/drf/viewsets.py:863 msgid "rewrite some fields of an existing stock record saving non-editables" msgstr "" "Skriva om vissa fält i en befintlig lagerpost och spara icke-redigerbara " "uppgifter" -#: core/docs/drf/viewsets.py:838 +#: engine/core/docs/drf/viewsets.py:870 msgid "list all product tags (simple view)" msgstr "Lista alla produkttaggar (enkel vy)" -#: core/docs/drf/viewsets.py:842 +#: engine/core/docs/drf/viewsets.py:874 msgid "retrieve a single product tag (detailed view)" msgstr "Hämta en enskild produkttagg (detaljerad vy)" -#: core/docs/drf/viewsets.py:846 +#: engine/core/docs/drf/viewsets.py:878 msgid "create a product tag" msgstr "Skapa en produkttagg" -#: core/docs/drf/viewsets.py:850 +#: engine/core/docs/drf/viewsets.py:882 msgid "delete a product tag" msgstr "Ta bort en produkttagg" -#: core/docs/drf/viewsets.py:854 +#: engine/core/docs/drf/viewsets.py:886 msgid "rewrite an existing product tag saving non-editables" msgstr "Skriv om en befintlig produkttagg och spara icke-redigerbara objekt" -#: core/docs/drf/viewsets.py:858 +#: engine/core/docs/drf/viewsets.py:890 msgid "rewrite some fields of an existing product tag saving non-editables" msgstr "" "Skriva om vissa fält i en befintlig produkttagg och spara icke-redigerbara " "fält" -#: core/elasticsearch/__init__.py:118 core/elasticsearch/__init__.py:550 +#: engine/core/elasticsearch/__init__.py:122 +#: engine/core/elasticsearch/__init__.py:570 msgid "no search term provided." msgstr "Ingen sökterm angavs." -#: core/filters.py:69 core/filters.py:412 core/filters.py:539 +#: engine/core/filters.py:69 engine/core/filters.py:426 +#: engine/core/filters.py:553 msgid "Search" msgstr "Sök" -#: core/filters.py:70 core/filters.py:569 core/filters.py:598 +#: engine/core/filters.py:70 engine/core/filters.py:583 +#: engine/core/filters.py:612 msgid "UUID" msgstr "UUID" -#: core/filters.py:71 core/filters.py:414 core/filters.py:541 +#: engine/core/filters.py:71 engine/core/filters.py:428 +#: engine/core/filters.py:555 msgid "Name" msgstr "Namn" -#: core/filters.py:72 core/filters.py:543 +#: engine/core/filters.py:72 engine/core/filters.py:557 msgid "Categories" msgstr "Kategorier" -#: core/filters.py:74 +#: engine/core/filters.py:74 msgid "Categories Slugs" msgstr "Kategorier Sniglar" -#: core/filters.py:75 core/filters.py:422 +#: engine/core/filters.py:75 engine/core/filters.py:436 msgid "Tags" msgstr "Etiketter" -#: core/filters.py:76 +#: engine/core/filters.py:76 msgid "Min Price" msgstr "Min pris" -#: core/filters.py:77 +#: engine/core/filters.py:77 msgid "Max Price" msgstr "Max pris" -#: core/filters.py:78 +#: engine/core/filters.py:78 msgid "Is Active" msgstr "Är aktiv" -#: core/filters.py:79 +#: engine/core/filters.py:79 msgid "Brand" msgstr "Varumärke" -#: core/filters.py:80 +#: engine/core/filters.py:80 msgid "Attributes" msgstr "Attribut" -#: core/filters.py:81 +#: engine/core/filters.py:81 msgid "Quantity" msgstr "Kvantitet" -#: core/filters.py:82 core/filters.py:416 core/filters.py:542 -#: core/models.py:322 core/models.py:483 core/models.py:637 +#: engine/core/filters.py:82 engine/core/filters.py:430 +#: engine/core/filters.py:556 engine/core/models.py:321 +#: engine/core/models.py:482 engine/core/models.py:637 msgid "Slug" msgstr "Snigel" -#: core/filters.py:83 +#: engine/core/filters.py:83 msgid "Is Digital" msgstr "Är digital" -#: core/filters.py:84 +#: engine/core/filters.py:84 msgid "Include sub-categories" msgstr "Inkludera underkategorier" -#: core/filters.py:87 +#: engine/core/filters.py:87 msgid "Include personal ordered" msgstr "Inkludera personligt beställda produkter" -#: core/filters.py:89 core/models.py:641 +#: engine/core/filters.py:89 engine/core/models.py:641 msgid "SKU" msgstr "SKU" -#: core/filters.py:173 +#: engine/core/filters.py:184 msgid "there must be a category_uuid to use include_subcategories flag" msgstr "" "Det måste finnas en category_uuid för att använda flaggan " "include_subcategories" -#: core/filters.py:339 +#: engine/core/filters.py:353 msgid "Search (ID, product name or part number)" msgstr "Sök (ID, produktnamn eller artikelnummer)" -#: core/filters.py:342 +#: engine/core/filters.py:356 msgid "Bought after (inclusive)" msgstr "Köpt efter (inklusive)" -#: core/filters.py:343 +#: engine/core/filters.py:357 msgid "Bought before (inclusive)" msgstr "Köpt tidigare (inklusive)" -#: core/filters.py:346 core/filters.py:393 core/filters.py:600 +#: engine/core/filters.py:360 engine/core/filters.py:407 +#: engine/core/filters.py:614 msgid "User email" msgstr "Användarens e-post" -#: core/filters.py:347 core/filters.py:394 core/filters.py:578 -#: core/filters.py:599 +#: engine/core/filters.py:361 engine/core/filters.py:408 +#: engine/core/filters.py:592 engine/core/filters.py:613 msgid "User UUID" msgstr "Användarens UUID" -#: core/filters.py:348 +#: engine/core/filters.py:362 msgid "Status" msgstr "Status" -#: core/filters.py:352 +#: engine/core/filters.py:366 msgid "Human Readable ID" msgstr "Human Readable ID" -#: core/filters.py:415 +#: engine/core/filters.py:429 msgid "Parent" msgstr "Förälder" -#: core/filters.py:419 +#: engine/core/filters.py:433 msgid "Whole category(has at least 1 product or not)" msgstr "Hela kategorin (har minst 1 produkt eller inte)" -#: core/filters.py:423 +#: engine/core/filters.py:437 msgid "Level" msgstr "Nivå" -#: core/filters.py:573 +#: engine/core/filters.py:587 msgid "Product UUID" msgstr "Produktens UUID" -#: core/graphene/mutations.py:41 +#: engine/core/graphene/mutations.py:41 msgid "key to look for in or set into the cache" msgstr "Nyckel att leta efter i eller sätta in i cachen" -#: core/graphene/mutations.py:42 +#: engine/core/graphene/mutations.py:42 msgid "data to store in cache" msgstr "Data som ska lagras i cacheminnet" -#: core/graphene/mutations.py:45 +#: engine/core/graphene/mutations.py:45 msgid "timeout in seconds to set the data for into the cache" msgstr "Timeout i sekunder för att lägga data i cacheminnet" -#: core/graphene/mutations.py:48 +#: engine/core/graphene/mutations.py:48 msgid "cached data" msgstr "Cachad data" -#: core/graphene/mutations.py:63 +#: engine/core/graphene/mutations.py:63 msgid "camelized JSON data from the requested URL" msgstr "Cameliserad JSON-data från den begärda URL:en" -#: core/graphene/mutations.py:68 core/views.py:232 +#: engine/core/graphene/mutations.py:68 engine/core/views.py:231 msgid "only URLs starting with http(s):// are allowed" msgstr "Endast webbadresser som börjar med http(s):// är tillåtna" -#: core/graphene/mutations.py:84 +#: engine/core/graphene/mutations.py:84 msgid "add a product to the order" msgstr "Lägg till en produkt i ordern" -#: core/graphene/mutations.py:105 core/graphene/mutations.py:132 -#: core/graphene/mutations.py:240 core/graphene/mutations.py:288 +#: engine/core/graphene/mutations.py:105 engine/core/graphene/mutations.py:132 +#: engine/core/graphene/mutations.py:240 engine/core/graphene/mutations.py:288 #, python-brace-format msgid "order {order_uuid} not found" msgstr "Order {order_uuid} hittades inte!" -#: core/graphene/mutations.py:111 core/graphene/mutations.py:160 +#: engine/core/graphene/mutations.py:111 engine/core/graphene/mutations.py:160 msgid "remove a product from the order" msgstr "Ta bort en produkt från ordern" -#: core/graphene/mutations.py:138 +#: engine/core/graphene/mutations.py:138 msgid "remove all products from the order" msgstr "Ta bort alla produkter från ordern" -#: core/graphene/mutations.py:183 +#: engine/core/graphene/mutations.py:183 msgid "buy an order" msgstr "Köpa en order" -#: core/graphene/mutations.py:212 core/graphene/mutations.py:266 +#: engine/core/graphene/mutations.py:212 engine/core/graphene/mutations.py:266 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!" -#: core/graphene/mutations.py:237 core/graphene/mutations.py:502 -#: core/graphene/mutations.py:544 core/viewsets.py:704 +#: engine/core/graphene/mutations.py:237 engine/core/graphene/mutations.py:502 +#: engine/core/graphene/mutations.py:544 engine/core/viewsets.py:704 msgid "wrong type came from order.buy() method: {type(instance)!s}" msgstr "Fel typ kom från order.buy()-metoden: {type(instance)!s}" -#: core/graphene/mutations.py:246 +#: engine/core/graphene/mutations.py:246 msgid "perform an action on a list of products in the order" msgstr "Utför en åtgärd på en lista med produkter i ordern" -#: core/graphene/mutations.py:251 +#: engine/core/graphene/mutations.py:251 msgid "remove/add" msgstr "Ta bort/lägga till" -#: core/graphene/mutations.py:283 core/graphene/mutations.py:324 +#: engine/core/graphene/mutations.py:283 engine/core/graphene/mutations.py:324 msgid "action must be either add or remove" msgstr "Åtgärden måste vara antingen \"lägg till\" eller \"ta bort\"!" -#: core/graphene/mutations.py:294 +#: engine/core/graphene/mutations.py:294 msgid "perform an action on a list of products in the wishlist" msgstr "Utför en åtgärd på en lista med produkter i önskelistan" -#: core/graphene/mutations.py:312 +#: engine/core/graphene/mutations.py:312 msgid "please provide wishlist_uuid value" msgstr "Vänligen ange värdet för `wishlist_uuid`." -#: core/graphene/mutations.py:329 core/graphene/mutations.py:405 -#: core/graphene/mutations.py:433 core/graphene/mutations.py:461 -#: core/graphene/mutations.py:505 +#: engine/core/graphene/mutations.py:329 engine/core/graphene/mutations.py:405 +#: engine/core/graphene/mutations.py:433 engine/core/graphene/mutations.py:461 +#: engine/core/graphene/mutations.py:505 #, python-brace-format msgid "wishlist {wishlist_uuid} not found" msgstr "Önskelista {wishlist_uuid} hittades inte!" -#: core/graphene/mutations.py:383 +#: engine/core/graphene/mutations.py:383 msgid "add a product to the wishlist" msgstr "Lägg till en produkt i ordern" -#: core/graphene/mutations.py:411 +#: engine/core/graphene/mutations.py:411 msgid "remove a product from the wishlist" msgstr "Ta bort en produkt från ordern" -#: core/graphene/mutations.py:439 +#: engine/core/graphene/mutations.py:439 msgid "remove all products from the wishlist" msgstr "Ta bort en produkt från ordern" -#: core/graphene/mutations.py:467 +#: engine/core/graphene/mutations.py:467 msgid "buy all products from the wishlist" msgstr "Ta bort en produkt från ordern" -#: core/graphene/mutations.py:511 +#: engine/core/graphene/mutations.py:511 msgid "buy a product" msgstr "Köpa en order" -#: core/graphene/mutations.py:517 +#: engine/core/graphene/mutations.py:517 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" -#: core/graphene/mutations.py:550 +#: engine/core/graphene/mutations.py:550 msgid "add or delete a feedback for orderproduct" msgstr "Lägg till eller ta bort en feedback för orderprodukten" -#: core/graphene/mutations.py:574 +#: engine/core/graphene/mutations.py:574 msgid "action must be either `add` or `remove`" msgstr "Åtgärden måste vara antingen `add` eller `remove`!" -#: core/graphene/mutations.py:577 +#: engine/core/graphene/mutations.py:577 #, python-brace-format msgid "order product {order_product_uuid} not found" msgstr "Orderprodukt {order_product_uuid} hittades inte!" -#: core/graphene/mutations.py:644 +#: engine/core/graphene/mutations.py:644 msgid "original address string provided by the user" msgstr "Originaladresssträng som tillhandahålls av användaren" -#: core/graphene/mutations.py:680 core/models.py:930 core/models.py:943 -#: core/models.py:1358 core/models.py:1387 core/models.py:1412 -#: core/viewsets.py:707 +#: engine/core/graphene/mutations.py:680 engine/core/models.py:941 +#: engine/core/models.py:954 engine/core/models.py:1369 +#: engine/core/models.py:1398 engine/core/models.py:1423 +#: engine/core/viewsets.py:707 #, python-brace-format msgid "{name} does not exist: {uuid}" msgstr "{name} existerar inte: {uuid}!" -#: core/graphene/mutations.py:694 +#: engine/core/graphene/mutations.py:694 msgid "limit must be between 1 and 10" msgstr "Gränsen måste vara mellan 1 och 10" -#: core/graphene/mutations.py:743 +#: engine/core/graphene/mutations.py:743 msgid "elasticsearch - works like a charm" msgstr "ElasticSearch - fungerar som en smäck" -#: core/graphene/object_types.py:82 core/graphene/object_types.py:370 -#: core/graphene/object_types.py:417 core/models.py:754 core/models.py:1225 -#: core/models.py:1823 +#: engine/core/graphene/object_types.py:82 +#: engine/core/graphene/object_types.py:370 +#: engine/core/graphene/object_types.py:417 engine/core/models.py:765 +#: engine/core/models.py:1236 engine/core/models.py:1883 msgid "attributes" msgstr "Attribut" -#: core/graphene/object_types.py:95 +#: engine/core/graphene/object_types.py:95 msgid "grouped attributes" msgstr "Grupperade attribut" -#: core/graphene/object_types.py:102 +#: engine/core/graphene/object_types.py:102 msgid "groups of attributes" msgstr "Grupper av attribut" -#: core/graphene/object_types.py:116 core/graphene/object_types.py:193 -#: core/graphene/object_types.py:223 core/models.py:426 +#: engine/core/graphene/object_types.py:116 +#: engine/core/graphene/object_types.py:193 +#: engine/core/graphene/object_types.py:223 engine/core/models.py:425 msgid "categories" msgstr "Kategorier" -#: core/graphene/object_types.py:124 core/models.py:497 +#: engine/core/graphene/object_types.py:124 engine/core/models.py:496 msgid "brands" msgstr "Brands" -#: core/graphene/object_types.py:195 +#: engine/core/graphene/object_types.py:195 msgid "category image url" msgstr "Kategorier" -#: core/graphene/object_types.py:196 core/graphene/object_types.py:317 -#: core/models.py:284 +#: engine/core/graphene/object_types.py:196 +#: engine/core/graphene/object_types.py:317 engine/core/models.py:283 msgid "markup percentage" msgstr "Procentuell påslagning" -#: core/graphene/object_types.py:199 +#: engine/core/graphene/object_types.py:199 msgid "which attributes and values can be used for filtering this category." msgstr "" "Vilka attribut och värden som kan användas för att filtrera denna kategori." -#: core/graphene/object_types.py:203 -msgid "" -"minimum and maximum prices for products in this category, if available." +#: engine/core/graphene/object_types.py:203 +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." -#: core/graphene/object_types.py:205 +#: engine/core/graphene/object_types.py:205 msgid "tags for this category" msgstr "Taggar för denna kategori" -#: core/graphene/object_types.py:206 +#: engine/core/graphene/object_types.py:206 msgid "products in this category" msgstr "Produkter i denna kategori" -#: core/graphene/object_types.py:324 core/models.py:189 +#: engine/core/graphene/object_types.py:324 engine/core/models.py:188 msgid "vendors" msgstr "Leverantörer" -#: core/graphene/object_types.py:328 +#: engine/core/graphene/object_types.py:328 msgid "Latitude (Y coordinate)" msgstr "Latitud (Y-koordinat)" -#: core/graphene/object_types.py:329 +#: engine/core/graphene/object_types.py:329 msgid "Longitude (X coordinate)" msgstr "Longitud (X-koordinat)" -#: core/graphene/object_types.py:358 +#: engine/core/graphene/object_types.py:358 msgid "comment" msgstr "Hur gör man" -#: core/graphene/object_types.py:359 core/graphene/object_types.py:483 +#: engine/core/graphene/object_types.py:359 +#: engine/core/graphene/object_types.py:483 msgid "rating value from 1 to 10, inclusive, or 0 if not set." msgstr "Ratingvärde från 1 till och med 10, eller 0 om det inte är inställt." -#: core/graphene/object_types.py:366 +#: engine/core/graphene/object_types.py:366 msgid "represents feedback from a user." msgstr "Representerar feedback från en användare." -#: core/graphene/object_types.py:371 core/graphene/object_types.py:418 -#: core/models.py:1219 +#: engine/core/graphene/object_types.py:371 +#: engine/core/graphene/object_types.py:418 engine/core/models.py:1230 msgid "notifications" msgstr "Meddelanden" -#: core/graphene/object_types.py:372 +#: engine/core/graphene/object_types.py:372 msgid "download url for this order product if applicable" msgstr "Nedladdningsadress för denna orderprodukt om tillämpligt" -#: core/graphene/object_types.py:373 core/models.py:1939 +#: engine/core/graphene/object_types.py:373 engine/core/models.py:1722 msgid "feedback" msgstr "Återkoppling" -#: core/graphene/object_types.py:407 +#: engine/core/graphene/object_types.py:407 msgid "a list of order products in this order" msgstr "En lista över orderprodukter i den här ordern" -#: core/graphene/object_types.py:409 core/models.py:1189 +#: engine/core/graphene/object_types.py:409 engine/core/models.py:1200 msgid "billing address" msgstr "Faktureringsadress" -#: core/graphene/object_types.py:412 +#: engine/core/graphene/object_types.py:412 msgid "" "shipping address for this order, leave blank if same as billing address or " "if not applicable" @@ -1289,200 +1314,209 @@ msgstr "" "Leveransadress för denna order, lämna tom om den är samma som " "faktureringsadressen eller om den inte är tillämplig" -#: core/graphene/object_types.py:414 +#: engine/core/graphene/object_types.py:414 msgid "total price of this order" msgstr "Totalpris för denna order" -#: core/graphene/object_types.py:415 +#: engine/core/graphene/object_types.py:415 msgid "total quantity of products in order" msgstr "Totalt antal produkter i ordern" -#: core/graphene/object_types.py:416 +#: engine/core/graphene/object_types.py:416 msgid "are all products in the order digital" msgstr "Är alla produkter i beställningen digitala" -#: core/graphene/object_types.py:419 +#: engine/core/graphene/object_types.py:419 msgid "transactions for this order" msgstr "Transaktioner för denna order" -#: core/graphene/object_types.py:438 core/models.py:1253 +#: engine/core/graphene/object_types.py:438 engine/core/models.py:1264 msgid "orders" msgstr "Beställningar" -#: core/graphene/object_types.py:459 +#: engine/core/graphene/object_types.py:459 msgid "image url" msgstr "URL för bild" -#: core/graphene/object_types.py:466 +#: engine/core/graphene/object_types.py:466 msgid "product's images" msgstr "Produktens bilder" -#: core/graphene/object_types.py:473 core/models.py:425 core/models.py:579 +#: engine/core/graphene/object_types.py:473 engine/core/models.py:424 +#: engine/core/models.py:579 msgid "category" msgstr "Kategori" -#: core/graphene/object_types.py:475 core/models.py:1940 +#: engine/core/graphene/object_types.py:475 engine/core/models.py:1723 msgid "feedbacks" msgstr "Återkoppling" -#: core/graphene/object_types.py:476 core/models.py:496 core/models.py:588 +#: engine/core/graphene/object_types.py:476 engine/core/models.py:495 +#: engine/core/models.py:588 msgid "brand" msgstr "Varumärke" -#: core/graphene/object_types.py:477 core/models.py:107 +#: engine/core/graphene/object_types.py:477 engine/core/models.py:106 msgid "attribute groups" msgstr "Attributgrupper" -#: core/graphene/object_types.py:478 -#: core/templates/digital_order_created_email.html:111 -#: core/templates/digital_order_delivered_email.html:109 -#: core/templates/shipped_order_created_email.html:109 -#: core/templates/shipped_order_delivered_email.html:109 +#: engine/core/graphene/object_types.py:478 +#: engine/core/templates/digital_order_created_email.html:111 +#: engine/core/templates/digital_order_delivered_email.html:109 +#: engine/core/templates/shipped_order_created_email.html:109 +#: engine/core/templates/shipped_order_delivered_email.html:109 msgid "price" msgstr "Pris" -#: core/graphene/object_types.py:479 -#: core/templates/digital_order_created_email.html:110 -#: core/templates/digital_order_delivered_email.html:108 -#: core/templates/shipped_order_created_email.html:108 -#: core/templates/shipped_order_delivered_email.html:108 +#: engine/core/graphene/object_types.py:479 +#: engine/core/templates/digital_order_created_email.html:110 +#: engine/core/templates/digital_order_delivered_email.html:108 +#: engine/core/templates/shipped_order_created_email.html:108 +#: engine/core/templates/shipped_order_delivered_email.html:108 msgid "quantity" msgstr "Kvantitet" -#: core/graphene/object_types.py:480 +#: engine/core/graphene/object_types.py:480 msgid "number of feedbacks" msgstr "Antal återkopplingar" -#: core/graphene/object_types.py:481 +#: engine/core/graphene/object_types.py:481 msgid "only available for personal orders" msgstr "Produkter endast tillgängliga för personliga beställningar" -#: core/graphene/object_types.py:507 core/models.py:651 +#: engine/core/graphene/object_types.py:484 +msgid "discount price" +msgstr "Rabatterat pris" + +#: engine/core/graphene/object_types.py:508 engine/core/models.py:651 msgid "products" msgstr "Produkter" -#: core/graphene/object_types.py:607 +#: engine/core/graphene/object_types.py:611 msgid "promocodes" msgstr "Promokoder" -#: core/graphene/object_types.py:617 +#: engine/core/graphene/object_types.py:621 msgid "products on sale" msgstr "Produkter på rea" -#: core/graphene/object_types.py:624 core/models.py:879 +#: engine/core/graphene/object_types.py:628 engine/core/models.py:890 msgid "promotions" msgstr "Kampanjer" -#: core/graphene/object_types.py:628 core/models.py:188 +#: engine/core/graphene/object_types.py:632 engine/core/models.py:187 msgid "vendor" msgstr "Leverantör" -#: core/graphene/object_types.py:629 core/models.py:650 -#: core/templates/digital_order_created_email.html:109 -#: core/templates/digital_order_delivered_email.html:107 -#: core/templates/shipped_order_created_email.html:107 -#: core/templates/shipped_order_delivered_email.html:107 +#: engine/core/graphene/object_types.py:633 engine/core/models.py:650 +#: 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 +#: engine/core/templates/shipped_order_delivered_email.html:107 msgid "product" msgstr "Produkt" -#: core/graphene/object_types.py:640 core/models.py:902 +#: engine/core/graphene/object_types.py:644 engine/core/models.py:913 msgid "wishlisted products" msgstr "Önskelistade produkter" -#: core/graphene/object_types.py:646 core/models.py:919 +#: engine/core/graphene/object_types.py:650 engine/core/models.py:930 msgid "wishlists" msgstr "Önskelistor" -#: core/graphene/object_types.py:650 +#: engine/core/graphene/object_types.py:654 msgid "tagged products" msgstr "Taggade produkter" -#: core/graphene/object_types.py:657 core/models.py:225 core/models.py:594 +#: engine/core/graphene/object_types.py:661 engine/core/models.py:224 +#: engine/core/models.py:594 msgid "product tags" msgstr "Produkttaggar" -#: core/graphene/object_types.py:661 +#: engine/core/graphene/object_types.py:665 msgid "tagged categories" msgstr "Taggade kategorier" -#: core/graphene/object_types.py:668 +#: engine/core/graphene/object_types.py:672 msgid "categories tags" msgstr "Kategoriernas taggar" -#: core/graphene/object_types.py:672 +#: engine/core/graphene/object_types.py:676 msgid "project name" msgstr "Projektets namn" -#: core/graphene/object_types.py:673 +#: engine/core/graphene/object_types.py:677 msgid "company email" msgstr "Företagets e-post" -#: core/graphene/object_types.py:674 +#: engine/core/graphene/object_types.py:678 msgid "company name" msgstr "Företagets namn" -#: core/graphene/object_types.py:675 +#: engine/core/graphene/object_types.py:679 msgid "company address" msgstr "Företagets adress" -#: core/graphene/object_types.py:676 +#: engine/core/graphene/object_types.py:680 msgid "company phone number" msgstr "Företagets telefonnummer" -#: core/graphene/object_types.py:677 +#: engine/core/graphene/object_types.py:681 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" -#: core/graphene/object_types.py:678 +#: engine/core/graphene/object_types.py:682 msgid "email host user" msgstr "E-post värd användare" -#: core/graphene/object_types.py:679 +#: engine/core/graphene/object_types.py:683 msgid "maximum amount for payment" msgstr "Högsta belopp för betalning" -#: core/graphene/object_types.py:680 +#: engine/core/graphene/object_types.py:684 msgid "minimum amount for payment" msgstr "Lägsta belopp för betalning" -#: core/graphene/object_types.py:681 +#: engine/core/graphene/object_types.py:685 msgid "analytics data" msgstr "Analysdata" -#: core/graphene/object_types.py:682 +#: engine/core/graphene/object_types.py:686 msgid "advertisement data" msgstr "Annonsdata" -#: core/graphene/object_types.py:685 +#: engine/core/graphene/object_types.py:689 msgid "company configuration" msgstr "Konfiguration" -#: core/graphene/object_types.py:689 +#: engine/core/graphene/object_types.py:693 msgid "language code" msgstr "Språkkod" -#: core/graphene/object_types.py:690 +#: engine/core/graphene/object_types.py:694 msgid "language name" msgstr "Språkets namn" -#: core/graphene/object_types.py:691 +#: engine/core/graphene/object_types.py:695 msgid "language flag, if exists :)" msgstr "Språkflagga, om sådan finns :)" -#: core/graphene/object_types.py:694 +#: engine/core/graphene/object_types.py:698 msgid "supported languages" msgstr "Hämta en lista över språk som stöds" -#: core/graphene/object_types.py:725 core/graphene/object_types.py:726 -#: core/graphene/object_types.py:727 +#: engine/core/graphene/object_types.py:729 +#: engine/core/graphene/object_types.py:730 +#: engine/core/graphene/object_types.py:731 msgid "products search results" msgstr "Sökresultat för produkter" -#: core/graphene/object_types.py:728 +#: engine/core/graphene/object_types.py:732 msgid "posts search results" msgstr "Sökresultat för produkter" -#: core/models.py:76 +#: engine/core/models.py:75 msgid "" "Represents a group of attributes, which can be hierarchical. This class is " "used to manage and organize attribute groups. An attribute group can have a " @@ -1490,28 +1524,28 @@ 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." -#: core/models.py:92 +#: engine/core/models.py:91 msgid "parent of this group" msgstr "Förälder till denna grupp" -#: core/models.py:93 +#: engine/core/models.py:92 msgid "parent attribute group" msgstr "Överordnad attributgrupp" -#: core/models.py:97 core/models.py:98 +#: engine/core/models.py:96 engine/core/models.py:97 msgid "attribute group's name" msgstr "Attributgruppens namn" -#: core/models.py:106 core/models.py:716 +#: engine/core/models.py:105 engine/core/models.py:727 msgid "attribute group" msgstr "Attributgrupp" -#: core/models.py:112 +#: engine/core/models.py:111 msgid "" "Represents a vendor entity capable of storing information about external " "vendors and their interaction requirements. The Vendor class is used to " @@ -1524,56 +1558,56 @@ 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." -#: core/models.py:125 +#: engine/core/models.py:124 msgid "stores credentials and endpoints required for vendor communication" msgstr "" "Lagrar autentiseringsuppgifter och ändpunkter som krävs för leverantörens " "API-kommunikation" -#: core/models.py:126 +#: engine/core/models.py:125 msgid "authentication info" msgstr "Autentiseringsinformation" -#: core/models.py:131 +#: engine/core/models.py:130 msgid "define the markup for products retrieved from this vendor" msgstr "" "Definiera markeringen för produkter som hämtas från den här leverantören" -#: core/models.py:132 +#: engine/core/models.py:131 msgid "vendor markup percentage" msgstr "Leverantörens påslag i procent" -#: core/models.py:136 +#: engine/core/models.py:135 msgid "name of this vendor" msgstr "Namn på denna säljare" -#: core/models.py:137 +#: engine/core/models.py:136 msgid "vendor name" msgstr "Leverantörens namn" -#: core/models.py:148 +#: engine/core/models.py:147 msgid "response file" msgstr "svarsfil" -#: core/models.py:149 +#: engine/core/models.py:148 msgid "vendor's last processing response" msgstr "säljarens senaste bearbetningssvar" -#: core/models.py:155 +#: engine/core/models.py:154 msgid "vendor's integration file path" msgstr "Sökväg till leverantörens integrationsfil" -#: core/models.py:156 +#: engine/core/models.py:155 msgid "integration path" msgstr "Integrationsväg" -#: core/models.py:198 +#: engine/core/models.py:197 msgid "" "Represents a product tag used for classifying or identifying products. The " "ProductTag class is designed to uniquely identify and classify products " @@ -1585,30 +1619,30 @@ 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." -#: core/models.py:210 core/models.py:241 +#: engine/core/models.py:209 engine/core/models.py:240 msgid "internal tag identifier for the product tag" msgstr "Intern taggidentifierare för produkttaggen" -#: core/models.py:211 core/models.py:242 +#: engine/core/models.py:210 engine/core/models.py:241 msgid "tag name" msgstr "Tagg namn" -#: core/models.py:215 core/models.py:246 +#: engine/core/models.py:214 engine/core/models.py:245 msgid "user-friendly name for the product tag" msgstr "Användarvänligt namn för produkttaggen" -#: core/models.py:216 core/models.py:247 +#: engine/core/models.py:215 engine/core/models.py:246 msgid "tag display name" msgstr "Taggens visningsnamn" -#: core/models.py:224 +#: engine/core/models.py:223 msgid "product tag" msgstr "Produktmärkning" -#: core/models.py:230 +#: engine/core/models.py:229 msgid "" "Represents a category tag used for products. This class models a category " "tag that can be used to associate and classify products. It includes " @@ -1619,15 +1653,15 @@ msgstr "" "klassificera produkter. Den innehåller attribut för en intern " "taggidentifierare och ett användarvänligt visningsnamn." -#: core/models.py:255 +#: engine/core/models.py:254 msgid "category tag" msgstr "kategori tagg" -#: core/models.py:256 core/models.py:328 +#: engine/core/models.py:255 engine/core/models.py:327 msgid "category tags" msgstr "Kategoritaggar" -#: core/models.py:261 +#: engine/core/models.py:260 msgid "" "Represents a category entity to organize and group related items in a " "hierarchical structure. Categories may have hierarchical relationships with " @@ -1645,61 +1679,60 @@ 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." -#: core/models.py:275 +#: engine/core/models.py:274 msgid "upload an image representing this category" msgstr "Ladda upp en bild som representerar denna kategori" -#: core/models.py:278 +#: engine/core/models.py:277 msgid "category image" msgstr "Kategori bild" -#: core/models.py:283 +#: engine/core/models.py:282 msgid "define a markup percentage for products in this category" msgstr "Definiera en påslagsprocent för produkter i den här kategorin" -#: core/models.py:292 +#: engine/core/models.py:291 msgid "parent of this category to form a hierarchical structure" msgstr "Förälder till denna kategori för att bilda en hierarkisk struktur" -#: core/models.py:293 +#: engine/core/models.py:292 msgid "parent category" msgstr "Föräldrakategori" -#: core/models.py:298 +#: engine/core/models.py:297 msgid "category name" msgstr "Namn på kategori" -#: core/models.py:299 +#: engine/core/models.py:298 msgid "provide a name for this category" msgstr "Ange ett namn för denna kategori" -#: core/models.py:306 +#: engine/core/models.py:305 msgid "add a detailed description for this category" msgstr "Lägg till en detaljerad beskrivning för denna kategori" -#: core/models.py:307 +#: engine/core/models.py:306 msgid "category description" msgstr "Beskrivning av kategori" -#: core/models.py:327 +#: engine/core/models.py:326 msgid "tags that help describe or group this category" msgstr "taggar som hjälper till att beskriva eller gruppera denna kategori" -#: core/models.py:334 core/models.py:489 +#: engine/core/models.py:333 engine/core/models.py:488 msgid "priority" msgstr "Prioritet" -#: core/models.py:432 +#: engine/core/models.py:431 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, " @@ -1707,50 +1740,50 @@ msgstr "" "prioritetsordning. Den gör det möjligt att organisera och representera " "varumärkesrelaterade data i applikationen." -#: core/models.py:442 +#: engine/core/models.py:441 msgid "name of this brand" msgstr "Namn på detta varumärke" -#: core/models.py:443 +#: engine/core/models.py:442 msgid "brand name" msgstr "Varumärke" -#: core/models.py:450 +#: engine/core/models.py:449 msgid "upload a logo representing this brand" msgstr "Ladda upp en logotyp som representerar detta varumärke" -#: core/models.py:452 +#: engine/core/models.py:451 msgid "brand small image" msgstr "Varumärke liten image" -#: core/models.py:458 +#: engine/core/models.py:457 msgid "upload a big logo representing this brand" msgstr "Ladda upp en stor logotyp som representerar detta varumärke" -#: core/models.py:460 +#: engine/core/models.py:459 msgid "brand big image" msgstr "Varumärke med stor image" -#: core/models.py:465 +#: engine/core/models.py:464 msgid "add a detailed description of the brand" msgstr "Lägg till en detaljerad beskrivning av varumärket" -#: core/models.py:466 +#: engine/core/models.py:465 msgid "brand description" msgstr "Varumärkesbeskrivning" -#: core/models.py:471 +#: engine/core/models.py:470 msgid "optional categories that this brand is associated with" msgstr "Valfria kategorier som detta varumärke är förknippat med" -#: core/models.py:472 +#: engine/core/models.py:471 msgid "associated categories" msgstr "Kategorier" -#: core/models.py:502 +#: engine/core/models.py:501 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 " @@ -1763,68 +1796,72 @@ msgstr "" "lagerhanteringssystemet för att möjliggöra spårning och utvärdering av " "produkter som finns tillgängliga från olika leverantörer." -#: core/models.py:514 +#: engine/core/models.py:513 msgid "the vendor supplying this product stock" msgstr "Leverantören som levererar denna produkt lager" -#: core/models.py:515 +#: engine/core/models.py:514 msgid "associated vendor" msgstr "Associerad leverantör" -#: core/models.py:519 +#: engine/core/models.py:518 msgid "final price to the customer after markups" msgstr "Slutligt pris till kunden efter påslag" -#: core/models.py:520 +#: engine/core/models.py:519 msgid "selling price" msgstr "Försäljningspris" -#: core/models.py:525 +#: engine/core/models.py:524 msgid "the product associated with this stock entry" msgstr "Produkten som är associerad med denna lagerpost" -#: core/models.py:526 core/models.py:779 core/models.py:825 -#: core/models.py:1718 +#: engine/core/models.py:525 engine/core/models.py:790 +#: engine/core/models.py:836 engine/core/models.py:1778 msgid "associated product" msgstr "Tillhörande produkt" -#: core/models.py:533 +#: engine/core/models.py:532 msgid "the price paid to the vendor for this product" msgstr "Det pris som betalats till säljaren för denna produkt" -#: core/models.py:534 +#: engine/core/models.py:533 msgid "vendor purchase price" msgstr "Leverantörens inköpspris" -#: core/models.py:538 +#: engine/core/models.py:537 msgid "available quantity of the product in stock" msgstr "Tillgänglig kvantitet av produkten i lager" -#: core/models.py:539 +#: engine/core/models.py:538 msgid "quantity in stock" msgstr "Antal i lager" -#: core/models.py:543 +#: engine/core/models.py:542 msgid "vendor-assigned SKU for identifying the product" msgstr "SKU som tilldelats av leverantören för identifiering av produkten" -#: core/models.py:544 +#: engine/core/models.py:543 msgid "vendor sku" msgstr "Leverantörens SKU" -#: core/models.py:550 +#: engine/core/models.py:549 msgid "digital file associated with this stock if applicable" msgstr "Digital fil associerad med detta lager om tillämpligt" -#: core/models.py:551 +#: engine/core/models.py:550 msgid "digital file" msgstr "Digital fil" -#: core/models.py:560 +#: engine/core/models.py:553 +msgid "system attributes" +msgstr "Systemattribut" + +#: engine/core/models.py:560 msgid "stock entries" msgstr "Lagerposter" -#: core/models.py:565 +#: engine/core/models.py:565 msgid "" "Represents a product with attributes such as category, brand, tags, digital " "status, name, description, part number, and slug. Provides related utility " @@ -1838,163 +1875,163 @@ 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 " "en applikation." -#: core/models.py:578 +#: engine/core/models.py:578 msgid "category this product belongs to" msgstr "Kategori som denna produkt tillhör" -#: core/models.py:587 +#: engine/core/models.py:587 msgid "optionally associate this product with a brand" msgstr "Möjlighet att associera produkten med ett varumärke" -#: core/models.py:593 +#: engine/core/models.py:593 msgid "tags that help describe or group this product" msgstr "Taggar som hjälper till att beskriva eller gruppera denna produkt" -#: core/models.py:598 +#: engine/core/models.py:598 msgid "indicates whether this product is digitally delivered" msgstr "Anger om denna produkt levereras digitalt" -#: core/models.py:599 +#: engine/core/models.py:599 msgid "is product digital" msgstr "Är produkten digital" -#: core/models.py:605 +#: engine/core/models.py:605 msgid "provide a clear identifying name for the product" msgstr "Tillhandahålla ett tydligt identifierande namn för produkten" -#: core/models.py:606 +#: engine/core/models.py:606 msgid "product name" msgstr "Produktens namn" -#: core/models.py:612 core/models.py:867 +#: engine/core/models.py:612 engine/core/models.py:878 msgid "add a detailed description of the product" msgstr "Lägg till en detaljerad beskrivning av produkten" -#: core/models.py:613 +#: engine/core/models.py:613 msgid "product description" msgstr "Produktbeskrivning" -#: core/models.py:620 +#: engine/core/models.py:620 msgid "part number for this product" msgstr "Artikelnummer för denna produkt" -#: core/models.py:621 +#: engine/core/models.py:621 msgid "part number" msgstr "Artikelnummer" -#: core/models.py:640 +#: engine/core/models.py:640 msgid "stock keeping unit for this product" msgstr "Lagerhållningsenhet för denna produkt" -#: core/models.py:702 +#: engine/core/models.py:713 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." -#: core/models.py:715 +#: engine/core/models.py:726 msgid "group of this attribute" msgstr "Grupp av detta attribut" -#: core/models.py:721 +#: engine/core/models.py:732 msgid "string" msgstr "Sträng" -#: core/models.py:722 +#: engine/core/models.py:733 msgid "integer" msgstr "Heltal" -#: core/models.py:723 +#: engine/core/models.py:734 msgid "float" msgstr "Flottör" -#: core/models.py:724 +#: engine/core/models.py:735 msgid "boolean" msgstr "Boolean" -#: core/models.py:725 +#: engine/core/models.py:736 msgid "array" msgstr "Array" -#: core/models.py:726 +#: engine/core/models.py:737 msgid "object" msgstr "Objekt" -#: core/models.py:728 +#: engine/core/models.py:739 msgid "type of the attribute's value" msgstr "Typ av attributets värde" -#: core/models.py:729 +#: engine/core/models.py:740 msgid "value type" msgstr "Typ av värde" -#: core/models.py:734 +#: engine/core/models.py:745 msgid "name of this attribute" msgstr "Namn på detta attribut" -#: core/models.py:735 +#: engine/core/models.py:746 msgid "attribute's name" msgstr "Attributets namn" -#: core/models.py:740 +#: engine/core/models.py:751 msgid "is filterable" msgstr "är filtrerbar" -#: core/models.py:741 +#: engine/core/models.py:752 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." -#: core/models.py:753 core/models.py:771 -#: core/templates/digital_order_delivered_email.html:134 +#: engine/core/models.py:764 engine/core/models.py:782 +#: engine/core/templates/digital_order_delivered_email.html:134 msgid "attribute" msgstr "Attribut" -#: core/models.py:759 +#: engine/core/models.py:770 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." -#: core/models.py:770 +#: engine/core/models.py:781 msgid "attribute of this value" msgstr "Attribut för detta värde" -#: core/models.py:778 +#: engine/core/models.py:789 msgid "the specific product associated with this attribute's value" msgstr "Den specifika produkt som är associerad med detta attributs värde" -#: core/models.py:784 +#: engine/core/models.py:795 msgid "the specific value for this attribute" msgstr "Det specifika värdet för detta attribut" -#: core/models.py:797 +#: engine/core/models.py:808 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 "" @@ -2004,46 +2041,46 @@ msgstr "" "produkter och bestämma deras visningsordning. Den innehåller också en " "tillgänglighetsfunktion med alternativ text för bilderna." -#: core/models.py:808 +#: engine/core/models.py:819 msgid "provide alternative text for the image for accessibility" msgstr "Tillhandahåll alternativ text för bilden för tillgänglighet" -#: core/models.py:809 +#: engine/core/models.py:820 msgid "image alt text" msgstr "Alt-text för bild" -#: core/models.py:812 +#: engine/core/models.py:823 msgid "upload the image file for this product" msgstr "Ladda upp bildfilen för den här produkten" -#: core/models.py:813 core/models.py:837 +#: engine/core/models.py:824 engine/core/models.py:848 msgid "product image" msgstr "Produktbild" -#: core/models.py:818 +#: engine/core/models.py:829 msgid "determines the order in which images are displayed" msgstr "Bestämmer i vilken ordning bilderna ska visas" -#: core/models.py:819 +#: engine/core/models.py:830 msgid "display priority" msgstr "Prioritet för visning" -#: core/models.py:824 +#: engine/core/models.py:835 msgid "the product that this image represents" msgstr "Den produkt som denna bild representerar" -#: core/models.py:838 +#: engine/core/models.py:849 msgid "product images" msgstr "Produktbilder" -#: core/models.py:843 +#: engine/core/models.py:854 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 " @@ -2052,39 +2089,39 @@ msgstr "" "tillämpliga produkterna. Den integreras med produktkatalogen för att " "fastställa vilka artiklar som påverkas av kampanjen." -#: core/models.py:855 +#: engine/core/models.py:866 msgid "percentage discount for the selected products" msgstr "Procentuell rabatt för de valda produkterna" -#: core/models.py:856 +#: engine/core/models.py:867 msgid "discount percentage" msgstr "Rabattprocent" -#: core/models.py:861 +#: engine/core/models.py:872 msgid "provide a unique name for this promotion" msgstr "Ange ett unikt namn för denna kampanj" -#: core/models.py:862 +#: engine/core/models.py:873 msgid "promotion name" msgstr "Kampanjens namn" -#: core/models.py:868 +#: engine/core/models.py:879 msgid "promotion description" msgstr "Beskrivning av kampanjen" -#: core/models.py:873 +#: engine/core/models.py:884 msgid "select which products are included in this promotion" msgstr "Välj vilka produkter som ingår i denna kampanj" -#: core/models.py:874 +#: engine/core/models.py:885 msgid "included products" msgstr "Inkluderade produkter" -#: core/models.py:878 +#: engine/core/models.py:889 msgid "promotion" msgstr "Marknadsföring" -#: core/models.py:889 +#: engine/core/models.py:900 msgid "" "Represents a user's wishlist for storing and managing desired products. The " "class provides functionality to manage a collection of products, supporting " @@ -2092,129 +2129,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." -#: core/models.py:901 +#: engine/core/models.py:912 msgid "products that the user has marked as wanted" msgstr "Produkter som användaren har markerat som önskade" -#: core/models.py:909 +#: engine/core/models.py:920 msgid "user who owns this wishlist" msgstr "Användare som äger denna önskelista" -#: core/models.py:910 +#: engine/core/models.py:921 msgid "wishlist owner" msgstr "Wishlist's ägare" -#: core/models.py:918 +#: engine/core/models.py:929 msgid "wishlist" msgstr "Önskelista" -#: core/models.py:960 +#: engine/core/models.py:971 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." -#: core/models.py:973 +#: engine/core/models.py:984 msgid "documentary" msgstr "Dokumentärfilm" -#: core/models.py:974 +#: engine/core/models.py:985 msgid "documentaries" msgstr "Dokumentärer" -#: core/models.py:984 +#: engine/core/models.py:995 msgid "unresolved" msgstr "Olöst" -#: core/models.py:989 +#: engine/core/models.py:1000 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." -#: core/models.py:1004 +#: engine/core/models.py:1015 msgid "address line for the customer" msgstr "Adressrad till kunden" -#: core/models.py:1005 +#: engine/core/models.py:1016 msgid "address line" msgstr "Adresslinje" -#: core/models.py:1007 +#: engine/core/models.py:1018 msgid "street" msgstr "Gata" -#: core/models.py:1008 +#: engine/core/models.py:1019 msgid "district" msgstr "Distrikt" -#: core/models.py:1009 +#: engine/core/models.py:1020 msgid "city" msgstr "Stad" -#: core/models.py:1010 +#: engine/core/models.py:1021 msgid "region" msgstr "Region" -#: core/models.py:1011 +#: engine/core/models.py:1022 msgid "postal code" msgstr "Postnummer" -#: core/models.py:1012 +#: engine/core/models.py:1023 msgid "country" msgstr "Land" -#: core/models.py:1019 +#: engine/core/models.py:1030 msgid "geolocation point: (longitude, latitude)" msgstr "Geolokaliseringspunkt (longitud, latitud)" -#: core/models.py:1022 +#: engine/core/models.py:1033 msgid "full JSON response from geocoder for this address" msgstr "Fullständigt JSON-svar från geokodaren för denna adress" -#: core/models.py:1027 +#: engine/core/models.py:1038 msgid "stored JSON response from the geocoding service" msgstr "Lagrad JSON-svar från geokodningstjänsten" -#: core/models.py:1035 +#: engine/core/models.py:1046 msgid "address" msgstr "Adress" -#: core/models.py:1036 +#: engine/core/models.py:1047 msgid "addresses" msgstr "Adresser" -#: core/models.py:1048 +#: engine/core/models.py:1059 msgid "" "Represents a promotional code that can be used for discounts, managing its " "validity, type of discount, and application. The PromoCode class stores " @@ -2231,94 +2268,94 @@ msgstr "" "funktioner för att validera och tillämpa kampanjkoden på en order och " "samtidigt säkerställa att begränsningarna uppfylls." -#: core/models.py:1062 +#: engine/core/models.py:1073 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" -#: core/models.py:1063 +#: engine/core/models.py:1074 msgid "promo code identifier" msgstr "Identifierare för kampanjkod" -#: core/models.py:1070 +#: engine/core/models.py:1081 msgid "fixed discount amount applied if percent is not used" msgstr "Fast rabattbelopp tillämpas om procent inte används" -#: core/models.py:1071 +#: engine/core/models.py:1082 msgid "fixed discount amount" msgstr "Fast diskonteringsbelopp" -#: core/models.py:1077 +#: engine/core/models.py:1088 msgid "percentage discount applied if fixed amount is not used" msgstr "Procentuell rabatt som tillämpas om fast belopp inte används" -#: core/models.py:1078 +#: engine/core/models.py:1089 msgid "percentage discount" msgstr "Procentuell rabatt" -#: core/models.py:1083 +#: engine/core/models.py:1094 msgid "timestamp when the promocode expires" msgstr "Tidsstämpel när kampanjkoden upphör att gälla" -#: core/models.py:1084 +#: engine/core/models.py:1095 msgid "end validity time" msgstr "Slutgiltig giltighetstid" -#: core/models.py:1089 +#: engine/core/models.py:1100 msgid "timestamp from which this promocode is valid" msgstr "Tidsstämpel från vilken denna promokod är giltig" -#: core/models.py:1090 +#: engine/core/models.py:1101 msgid "start validity time" msgstr "Start giltighetstid" -#: core/models.py:1095 +#: engine/core/models.py:1106 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" -#: core/models.py:1096 +#: engine/core/models.py:1107 msgid "usage timestamp" msgstr "Tidsstämpel för användning" -#: core/models.py:1101 +#: engine/core/models.py:1112 msgid "user assigned to this promocode if applicable" msgstr "Användare som tilldelats denna promokod om tillämpligt" -#: core/models.py:1102 +#: engine/core/models.py:1113 msgid "assigned user" msgstr "Tilldelad användare" -#: core/models.py:1109 +#: engine/core/models.py:1120 msgid "promo code" msgstr "Kampanjkod" -#: core/models.py:1110 +#: engine/core/models.py:1121 msgid "promo codes" msgstr "Kampanjkoder" -#: core/models.py:1125 +#: engine/core/models.py:1136 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." -#: core/models.py:1146 +#: engine/core/models.py:1157 msgid "promocode already used" msgstr "Promokoden har redan använts" -#: core/models.py:1162 +#: engine/core/models.py:1173 #, python-brace-format msgid "invalid discount type for promocode {self.uuid}" msgstr "Ogiltig rabattyp för promokod {self.uuid}!" -#: core/models.py:1171 +#: engine/core/models.py:1182 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 "" @@ -2330,136 +2367,137 @@ msgstr "" "faktureringsuppgifter kan uppdateras. På samma sätt stöder funktionaliteten " "hanteringen av produkterna i orderns livscykel." -#: core/models.py:1188 +#: engine/core/models.py:1199 msgid "the billing address used for this order" msgstr "Den faktureringsadress som används för denna order" -#: core/models.py:1196 +#: engine/core/models.py:1207 msgid "optional promo code applied to this order" msgstr "Valfri kampanjkod tillämpas på denna beställning" -#: core/models.py:1197 +#: engine/core/models.py:1208 msgid "applied promo code" msgstr "Tillämpad kampanjkod" -#: core/models.py:1205 +#: engine/core/models.py:1216 msgid "the shipping address used for this order" msgstr "Den leveransadress som används för denna order" -#: core/models.py:1206 +#: engine/core/models.py:1217 msgid "shipping address" msgstr "Leveransadress" -#: core/models.py:1212 +#: engine/core/models.py:1223 msgid "current status of the order in its lifecycle" msgstr "Aktuell status för ordern i dess livscykel" -#: core/models.py:1213 +#: engine/core/models.py:1224 msgid "order status" msgstr "Orderstatus" -#: core/models.py:1218 core/models.py:1695 +#: engine/core/models.py:1229 engine/core/models.py:1755 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" -#: core/models.py:1224 +#: engine/core/models.py:1235 msgid "json representation of order attributes for this order" msgstr "JSON-representation av orderattribut för denna order" -#: core/models.py:1230 +#: engine/core/models.py:1241 msgid "the user who placed the order" msgstr "Användaren som gjorde beställningen" -#: core/models.py:1231 +#: engine/core/models.py:1242 msgid "user" msgstr "Användare" -#: core/models.py:1237 +#: engine/core/models.py:1248 msgid "the timestamp when the order was finalized" msgstr "Tidsstämpel när ordern slutfördes" -#: core/models.py:1238 +#: engine/core/models.py:1249 msgid "buy time" msgstr "Köp tid" -#: core/models.py:1245 +#: engine/core/models.py:1256 msgid "a human-readable identifier for the order" msgstr "En mänskligt läsbar identifierare för ordern" -#: core/models.py:1246 +#: engine/core/models.py:1257 msgid "human readable id" msgstr "mänskligt läsbart ID" -#: core/models.py:1252 +#: engine/core/models.py:1263 msgid "order" msgstr "Beställning" -#: core/models.py:1294 +#: engine/core/models.py:1305 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!" -#: core/models.py:1326 +#: engine/core/models.py:1337 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" -#: core/models.py:1331 +#: engine/core/models.py:1342 msgid "you cannot add inactive products to order" msgstr "Du kan inte lägga till inaktiva produkter i ordern" -#: core/models.py:1348 +#: engine/core/models.py:1359 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" -#: core/models.py:1370 core/models.py:1395 core/models.py:1403 +#: engine/core/models.py:1381 engine/core/models.py:1406 +#: engine/core/models.py:1414 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" -#: core/models.py:1391 +#: engine/core/models.py:1402 #, python-brace-format msgid "{name} does not exist with query <{query}>" msgstr "{name} finns inte med frågan <{query}>!" -#: core/models.py:1423 +#: engine/core/models.py:1434 msgid "promocode does not exist" msgstr "Promokoden finns inte" -#: core/models.py:1429 +#: engine/core/models.py:1440 msgid "you can only buy physical products with shipping address specified" msgstr "Du kan bara köpa fysiska produkter med angiven leveransadress!" -#: core/models.py:1448 +#: engine/core/models.py:1459 msgid "address does not exist" msgstr "Adressen finns inte" -#: core/models.py:1469 core/models.py:1538 +#: engine/core/models.py:1480 engine/core/models.py:1549 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." -#: core/models.py:1472 core/models.py:1534 +#: engine/core/models.py:1483 engine/core/models.py:1545 msgid "invalid force value" msgstr "Ogiltigt kraftvärde" -#: core/models.py:1478 core/models.py:1541 +#: engine/core/models.py:1489 engine/core/models.py:1552 msgid "you cannot purchase an empty order!" msgstr "Du kan inte köpa en tom order!" -#: core/models.py:1497 +#: engine/core/models.py:1508 msgid "you cannot buy an order without a user" msgstr "Du kan inte köpa en order utan en användare!" -#: core/models.py:1511 +#: engine/core/models.py:1522 msgid "a user without a balance cannot buy with balance" msgstr "En användare utan balans kan inte köpa med balans!" -#: core/models.py:1516 +#: engine/core/models.py:1527 msgid "insufficient funds to complete the order" msgstr "Otillräckliga medel för att slutföra ordern" -#: core/models.py:1550 +#: engine/core/models.py:1561 msgid "" "you cannot buy without registration, please provide the following " "information: customer name, customer email, customer phone number" @@ -2467,14 +2505,55 @@ msgstr "" "du kan inte köpa utan registrering, vänligen ange följande information: " "kundens namn, kundens e-post, kundens telefonnummer" -#: core/models.py:1559 +#: engine/core/models.py:1570 #, python-brace-format msgid "" "invalid payment method: {payment_method} from {available_payment_methods}" msgstr "" "Ogiltig betalningsmetod: {payment_method} från {available_payment_methods}!" -#: core/models.py:1668 +#: engine/core/models.py:1685 +msgid "" +"Manages user feedback for products. This class is designed to capture and " +"store user feedback for specific products that they have purchased. It " +"contains attributes to store user comments, a reference to the related " +"product in the order, and a user-assigned rating. The class uses database " +"fields to effectively model and manage feedback data." +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." + +#: engine/core/models.py:1697 +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:1698 +msgid "feedback comments" +msgstr "Återkoppling av kommentarer" + +#: engine/core/models.py:1705 +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" + +#: engine/core/models.py:1706 +msgid "related order product" +msgstr "Relaterad order produkt" + +#: engine/core/models.py:1711 +msgid "user-assigned rating for the product" +msgstr "Användartilldelat betyg för produkten" + +#: engine/core/models.py:1712 +msgid "product rating" +msgstr "Produktbetyg" + +#: engine/core/models.py:1728 msgid "" "Represents products associated with orders and their attributes. The " "OrderProduct model maintains information about a product that is part of an " @@ -2490,256 +2569,211 @@ 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." -#: core/models.py:1683 +#: engine/core/models.py:1743 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" -#: core/models.py:1684 +#: engine/core/models.py:1744 msgid "purchase price at order time" msgstr "Inköpspris vid ordertillfället" -#: core/models.py:1689 +#: engine/core/models.py:1749 msgid "internal comments for admins about this ordered product" msgstr "Interna kommentarer för administratörer om denna beställda produkt" -#: core/models.py:1690 +#: engine/core/models.py:1750 msgid "internal comments" msgstr "Interna kommentarer" -#: core/models.py:1696 +#: engine/core/models.py:1756 msgid "user notifications" msgstr "Meddelanden till användare" -#: core/models.py:1701 +#: engine/core/models.py:1761 msgid "json representation of this item's attributes" msgstr "JSON-representation av detta objekts attribut" -#: core/models.py:1702 +#: engine/core/models.py:1762 msgid "ordered product attributes" msgstr "Sorterade produktattribut" -#: core/models.py:1707 +#: engine/core/models.py:1767 msgid "reference to the parent order that contains this product" msgstr "Referens till den överordnade order som innehåller denna produkt" -#: core/models.py:1708 +#: engine/core/models.py:1768 msgid "parent order" msgstr "Föräldraorder" -#: core/models.py:1717 +#: engine/core/models.py:1777 msgid "the specific product associated with this order line" msgstr "Den specifika produkt som är kopplad till denna orderrad" -#: core/models.py:1724 +#: engine/core/models.py:1784 msgid "quantity of this specific product in the order" msgstr "Antal av denna specifika produkt i ordern" -#: core/models.py:1725 +#: engine/core/models.py:1785 msgid "product quantity" msgstr "Produktens kvantitet" -#: core/models.py:1732 +#: engine/core/models.py:1792 msgid "current status of this product in the order" msgstr "Aktuell status för denna produkt i ordern" -#: core/models.py:1733 +#: engine/core/models.py:1793 msgid "product line status" msgstr "Status för produktlinje" -#: core/models.py:1798 +#: engine/core/models.py:1858 msgid "order product must have an order" msgstr "Orderprodukt måste ha en tillhörande order!" -#: core/models.py:1800 +#: engine/core/models.py:1860 #, python-brace-format msgid "wrong action specified for feedback: {action}" msgstr "Fel åtgärd angiven för återkoppling: {action}!" -#: core/models.py:1814 +#: engine/core/models.py:1874 msgid "you cannot feedback an order which is not received" msgstr "du kan inte återkoppla en order som inte mottagits" -#: core/models.py:1820 +#: engine/core/models.py:1880 msgid "name" msgstr "Namn" -#: core/models.py:1821 +#: engine/core/models.py:1881 msgid "URL of the integration" msgstr "URL för integrationen" -#: core/models.py:1822 +#: engine/core/models.py:1882 msgid "authentication credentials" msgstr "Autentiseringsuppgifter" -#: core/models.py:1844 +#: engine/core/models.py:1904 msgid "you can only have one default CRM provider" msgstr "Du kan bara ha en CRM-leverantör som standard" -#: core/models.py:1854 +#: engine/core/models.py:1914 msgid "CRM" msgstr "CRM" -#: core/models.py:1855 +#: engine/core/models.py:1915 msgid "CRMs" msgstr "CRM-system" -#: core/models.py:1867 +#: engine/core/models.py:1927 msgid "order CRM link" msgstr "Beställningens CRM-länk" -#: core/models.py:1868 +#: engine/core/models.py:1928 msgid "orders CRM links" msgstr "Beställningarnas CRM-länkar" -#: core/models.py:1873 +#: engine/core/models.py:1933 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." -#: core/models.py:1887 +#: engine/core/models.py:1947 msgid "download" msgstr "Nedladdningar" -#: core/models.py:1888 +#: engine/core/models.py:1948 msgid "downloads" msgstr "Nedladdningar" -#: core/models.py:1902 -msgid "" -"Manages user feedback for products. This class is designed to capture and " -"store user feedback for specific products that they have purchased. It " -"contains attributes to store user comments, a reference to the related " -"product in the order, and a user-assigned rating. The class uses database " -"fields to effectively model and manage feedback data." -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." - -#: core/models.py:1914 -msgid "user-provided comments about their experience with the product" -msgstr "Kommentarer från användare om deras erfarenhet av produkten" - -#: core/models.py:1915 -msgid "feedback comments" -msgstr "Återkoppling av kommentarer" - -#: core/models.py:1922 -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" - -#: core/models.py:1923 -msgid "related order product" -msgstr "Relaterad order produkt" - -#: core/models.py:1928 -msgid "user-assigned rating for the product" -msgstr "Användartilldelat betyg för produkten" - -#: core/models.py:1929 -msgid "product rating" -msgstr "Produktbetyg" - -#: core/serializers/utility.py:89 +#: engine/core/serializers/utility.py:89 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." -#: core/signals.py:73 -msgid "error during promocode creation: {e!s}" -msgstr "Fel under skapande av promokod: {e!s}" - -#: core/sitemaps.py:25 +#: engine/core/sitemaps.py:25 msgid "Home" msgstr "Hem" -#: core/sitemaps.py:30 +#: engine/core/sitemaps.py:30 msgid "Contact Us" msgstr "Kontakta oss" -#: core/sitemaps.py:35 +#: engine/core/sitemaps.py:35 msgid "About Us" msgstr "Om oss" -#: core/templates/digital_order_created_email.html:7 -#: core/templates/digital_order_created_email.html:100 -#: core/templates/digital_order_delivered_email.html:6 -#: core/templates/shipped_order_created_email.html:7 -#: core/templates/shipped_order_created_email.html:99 -#: core/templates/shipped_order_delivered_email.html:7 -#: core/templates/shipped_order_delivered_email.html:99 +#: engine/core/templates/digital_order_created_email.html:7 +#: engine/core/templates/digital_order_created_email.html:100 +#: engine/core/templates/digital_order_delivered_email.html:6 +#: engine/core/templates/shipped_order_created_email.html:7 +#: engine/core/templates/shipped_order_created_email.html:99 +#: engine/core/templates/shipped_order_delivered_email.html:7 +#: engine/core/templates/shipped_order_delivered_email.html:99 msgid "order confirmation" msgstr "Orderbekräftelse" -#: core/templates/digital_order_created_email.html:95 -#: core/templates/digital_order_delivered_email.html:94 -#: core/templates/promocode_granted_email.html:94 -#: core/templates/shipped_order_created_email.html:94 -#: core/templates/shipped_order_delivered_email.html:94 +#: engine/core/templates/digital_order_created_email.html:95 +#: engine/core/templates/digital_order_delivered_email.html:94 +#: engine/core/templates/promocode_granted_email.html:94 +#: engine/core/templates/shipped_order_created_email.html:94 +#: engine/core/templates/shipped_order_delivered_email.html:94 msgid "logo" msgstr "Logotyp" -#: core/templates/digital_order_created_email.html:101 -#: core/templates/shipped_order_created_email.html:100 -#: core/templates/shipped_order_delivered_email.html:100 +#: engine/core/templates/digital_order_created_email.html:101 +#: engine/core/templates/shipped_order_created_email.html:100 +#: engine/core/templates/shipped_order_delivered_email.html:100 #, python-format msgid "hello %(order.user.first_name)s," msgstr "Hej %(order.user.first_name)s," -#: core/templates/digital_order_created_email.html:102 +#: engine/core/templates/digital_order_created_email.html:102 #, 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 " "om att vi har tagit din beställning i arbete. Nedan följer detaljerna för " "din order:" -#: core/templates/digital_order_created_email.html:112 -#: core/templates/digital_order_delivered_email.html:110 -#: core/templates/shipped_order_created_email.html:110 -#: core/templates/shipped_order_delivered_email.html:110 +#: engine/core/templates/digital_order_created_email.html:112 +#: engine/core/templates/digital_order_delivered_email.html:110 +#: engine/core/templates/shipped_order_created_email.html:110 +#: engine/core/templates/shipped_order_delivered_email.html:110 msgid "total" msgstr "Totalt" -#: core/templates/digital_order_created_email.html:125 -#: core/templates/digital_order_delivered_email.html:157 -#: core/templates/shipped_order_created_email.html:127 -#: core/templates/shipped_order_delivered_email.html:127 +#: engine/core/templates/digital_order_created_email.html:125 +#: engine/core/templates/digital_order_delivered_email.html:157 +#: engine/core/templates/shipped_order_created_email.html:127 +#: engine/core/templates/shipped_order_delivered_email.html:127 msgid "total price" msgstr "Totalt pris" -#: core/templates/digital_order_created_email.html:131 -#: core/templates/shipped_order_created_email.html:140 -#: core/templates/shipped_order_delivered_email.html:140 +#: engine/core/templates/digital_order_created_email.html:131 +#: engine/core/templates/shipped_order_created_email.html:140 +#: engine/core/templates/shipped_order_delivered_email.html:140 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" @@ -2748,28 +2782,28 @@ msgstr "" "Om du har några frågor är du välkommen att kontakta vår support på " "%(config.EMAIL_HOST_USER)s." -#: core/templates/digital_order_created_email.html:133 +#: engine/core/templates/digital_order_created_email.html:133 #, python-format msgid "best regards,
the %(config.PROJECT_NAME)s team" msgstr "Bästa hälsningar,
teamet %(config.PROJECT_NAME)s" -#: core/templates/digital_order_created_email.html:139 -#: core/templates/digital_order_delivered_email.html:171 -#: core/templates/promocode_granted_email.html:114 +#: engine/core/templates/digital_order_created_email.html:139 +#: engine/core/templates/digital_order_delivered_email.html:171 +#: engine/core/templates/promocode_granted_email.html:114 msgid "all rights reserved" msgstr "Alla rättigheter förbehålls" -#: core/templates/digital_order_delivered_email.html:99 +#: engine/core/templates/digital_order_delivered_email.html:99 msgid "order delivered" msgstr "Beställning levererad" -#: core/templates/digital_order_delivered_email.html:100 -#: core/templates/promocode_granted_email.html:100 +#: engine/core/templates/digital_order_delivered_email.html:100 +#: engine/core/templates/promocode_granted_email.html:100 #, python-format msgid "hello %(user_first_name)s," msgstr "Hej %(user_first_name)s," -#: core/templates/digital_order_delivered_email.html:101 +#: engine/core/templates/digital_order_delivered_email.html:101 #, python-format msgid "" "we have successfully processed your order №%(order_uuid)s! below are the\n" @@ -2778,7 +2812,7 @@ msgstr "" "Vi har framgångsrikt behandlat din beställning №%(order_uuid)s! Nedan finns " "detaljerna i din beställning:" -#: core/templates/digital_order_delivered_email.html:128 +#: engine/core/templates/digital_order_delivered_email.html:128 msgid "" "additional\n" " information" @@ -2786,13 +2820,13 @@ msgstr "" "ytterligare\n" " information" -#: core/templates/digital_order_delivered_email.html:137 -#: core/templates/json_table_widget.html:6 +#: engine/core/templates/digital_order_delivered_email.html:137 +#: engine/core/templates/json_table_widget.html:6 msgid "value" msgstr "Värde" -#: core/templates/digital_order_delivered_email.html:163 -#: core/templates/promocode_granted_email.html:106 +#: engine/core/templates/digital_order_delivered_email.html:163 +#: engine/core/templates/promocode_granted_email.html:106 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" @@ -2801,26 +2835,26 @@ msgstr "" "Om du har några frågor är du välkommen att kontakta vår support på " "%(contact_email)s." -#: core/templates/digital_order_delivered_email.html:165 -#: core/templates/promocode_granted_email.html:108 +#: engine/core/templates/digital_order_delivered_email.html:165 +#: engine/core/templates/promocode_granted_email.html:108 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "Bästa hälsningar,
teamet %(project_name)s" -#: core/templates/json_table_widget.html:5 +#: engine/core/templates/json_table_widget.html:5 msgid "key" msgstr "Nyckel" -#: core/templates/json_table_widget.html:40 +#: engine/core/templates/json_table_widget.html:40 msgid "Add Row" msgstr "Lägg till rad" -#: core/templates/promocode_granted_email.html:6 -#: core/templates/promocode_granted_email.html:99 +#: engine/core/templates/promocode_granted_email.html:6 +#: engine/core/templates/promocode_granted_email.html:99 msgid "promocode granted" msgstr "Promokod beviljad" -#: core/templates/promocode_granted_email.html:101 +#: engine/core/templates/promocode_granted_email.html:101 msgid "" "Thank you for staying with us! We have granted you with a promocode\n" " for " @@ -2828,33 +2862,34 @@ msgstr "" "Tack för att du stannar hos oss! Vi har gett dig en promokod\n" " för" -#: core/templates/shipped_order_created_email.html:101 -#: core/templates/shipped_order_delivered_email.html:101 +#: 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 " "följer detaljerna för din beställning:" -#: core/templates/shipped_order_created_email.html:123 -#: core/templates/shipped_order_delivered_email.html:123 +#: engine/core/templates/shipped_order_created_email.html:123 +#: engine/core/templates/shipped_order_delivered_email.html:123 msgid "shipping price" msgstr "Fraktpris" -#: core/templates/shipped_order_created_email.html:133 -#: core/templates/shipped_order_delivered_email.html:133 +#: engine/core/templates/shipped_order_created_email.html:133 +#: engine/core/templates/shipped_order_delivered_email.html:133 msgid "your order will be delivered to the following address:" msgstr "Din beställning kommer att levereras till följande adress:" -#: core/templates/shipped_order_created_email.html:142 -#: core/templates/shipped_order_delivered_email.html:142 +#: engine/core/templates/shipped_order_created_email.html:142 +#: engine/core/templates/shipped_order_delivered_email.html:142 #, python-format msgid "best regards,
The %(config.PROJECT_NAME)s team" msgstr "Bästa hälsningar,
The %(config.PROJECT_NAME)s team" -#: core/templates/shipped_order_created_email.html:147 -#: core/templates/shipped_order_delivered_email.html:147 +#: engine/core/templates/shipped_order_created_email.html:147 +#: engine/core/templates/shipped_order_delivered_email.html:147 msgid "" "all rights\n" " reserved" @@ -2862,48 +2897,48 @@ msgstr "" "Alla rättigheter\n" " reserverade" -#: core/utils/caching.py:44 +#: engine/core/utils/caching.py:44 msgid "both data and timeout are required" msgstr "Både data och timeout krävs" -#: core/utils/caching.py:46 +#: engine/core/utils/caching.py:46 msgid "invalid timeout value, it must be between 0 and 216000 seconds" msgstr "Ogiltigt timeout-värde, det måste vara mellan 0 och 216000 sekunder" -#: core/utils/emailing.py:27 +#: engine/core/utils/emailing.py:27 #, python-brace-format msgid "{config.PROJECT_NAME} | contact us initiated" msgstr "{config.PROJECT_NAME} | kontakta oss initierad" -#: core/utils/emailing.py:73 +#: engine/core/utils/emailing.py:73 #, python-brace-format msgid "{config.PROJECT_NAME} | order confirmation" msgstr "{config.PROJECT_NAME} | Orderbekräftelse" -#: core/utils/emailing.py:105 +#: engine/core/utils/emailing.py:105 #, python-brace-format msgid "{config.PROJECT_NAME} | order delivered" msgstr "{config.PROJECT_NAME} | Beställning levererad" -#: core/utils/emailing.py:188 +#: engine/core/utils/emailing.py:188 #, python-brace-format msgid "{config.PROJECT_NAME} | promocode granted" msgstr "{config.PROJECT_NAME} | promocode beviljad" -#: core/utils/messages.py:3 +#: engine/core/utils/messages.py:3 msgid "you do not have permission to perform this action." msgstr "Du har inte behörighet att utföra den här åtgärden." -#: core/utils/nominatim.py:8 +#: engine/core/utils/nominatim.py:8 msgid "NOMINATIM_URL must be configured." msgstr "Parametern NOMINATIM_URL måste konfigureras!" -#: core/validators.py:16 +#: engine/core/validators.py:16 #, python-brace-format msgid "image dimensions should not exceed w{max_width} x h{max_height} pixels" msgstr "Bildmåtten får inte överstiga w{max_width} x h{max_height} pixlar!" -#: core/views.py:72 +#: engine/core/views.py:71 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." @@ -2911,7 +2946,7 @@ msgstr "" "Hanterar begäran om index för webbplatskartan och returnerar ett XML-svar. " "Den ser till att svaret innehåller rätt innehållstypshuvud för XML." -#: core/views.py:87 +#: engine/core/views.py:86 msgid "" "Handles the detailed view response for a sitemap. This function processes " "the request, fetches the appropriate sitemap detail response, and sets the " @@ -2921,16 +2956,16 @@ msgstr "" "bearbetar begäran, hämtar det lämpliga detaljerade svaret för " "webbplatskartan och ställer in Content-Type-huvudet för XML." -#: core/views.py:116 +#: engine/core/views.py:115 msgid "" "Returns a list of supported languages and their corresponding information." msgstr "Returnerar en lista över språk som stöds och motsvarande information." -#: core/views.py:148 +#: engine/core/views.py:147 msgid "Returns the parameters of the website as a JSON object." msgstr "Returnerar webbplatsens parametrar som ett JSON-objekt." -#: core/views.py:167 +#: engine/core/views.py:166 msgid "" "Handles cache operations such as reading and setting cache data with a " "specified key and timeout." @@ -2938,11 +2973,11 @@ msgstr "" "Hanterar cacheoperationer som att läsa och ställa in cachedata med en " "angiven nyckel och timeout." -#: core/views.py:194 +#: engine/core/views.py:193 msgid "Handles `contact us` form submissions." msgstr "Hanterar formulärinlämningar för `kontakta oss`." -#: core/views.py:215 +#: engine/core/views.py:214 msgid "" "Handles requests for processing and validating URLs from incoming POST " "requests." @@ -2950,54 +2985,62 @@ msgstr "" "Hanterar förfrågningar om bearbetning och validering av URL:er från " "inkommande POST-förfrågningar." -#: core/views.py:255 +#: engine/core/views.py:254 msgid "Handles global search queries." msgstr "Hanterar globala sökfrågor." -#: core/views.py:270 +#: engine/core/views.py:269 msgid "Handles the logic of buying as a business without registration." msgstr "Hanterar logiken i att köpa som ett företag utan registrering." -#: core/views.py:306 +#: engine/core/views.py:305 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." -#: core/views.py:316 +#: engine/core/views.py:315 msgid "order_product_uuid is required" msgstr "order_product_uuid är obligatoriskt" -#: core/views.py:322 +#: engine/core/views.py:321 msgid "you can only download the digital asset once" msgstr "Du kan bara ladda ner den digitala tillgången en gång" -#: core/views.py:325 +#: engine/core/views.py:324 msgid "the order must be paid before downloading the digital asset" msgstr "beställningen måste betalas innan den digitala tillgången laddas ner" -#: core/views.py:331 +#: engine/core/views.py:330 msgid "the order product does not have a product" msgstr "Beställningens produkt har ingen produkt" -#: core/views.py:369 +#: engine/core/views.py:368 msgid "favicon not found" msgstr "favicon hittades inte" -#: core/views.py:374 +#: engine/core/views.py:373 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." -#: core/views.py:386 +#: engine/core/views.py:385 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 " @@ -3005,11 +3048,11 @@ msgstr "" "admin-gränssnitt. Den använder Djangos `redirect`-funktion för att hantera " "HTTP-omdirigeringen." -#: core/views.py:399 +#: engine/core/views.py:398 msgid "Returns current version of the eVibes. " msgstr "Returnerar aktuell version av eVibes." -#: core/viewsets.py:137 +#: engine/core/viewsets.py:137 msgid "" "Defines a viewset for managing Evibes-related operations. The EvibesViewSet " "class inherits from ModelViewSet and provides functionality for handling " @@ -3018,26 +3061,25 @@ msgid "" "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 " +"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, " "anpassningsbara behörigheter och renderingsformat." -#: core/viewsets.py:157 +#: engine/core/viewsets.py:157 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." -#: core/viewsets.py:176 +#: engine/core/viewsets.py:176 msgid "" "Handles operations related to Attribute objects within the application. " "Provides a set of API endpoints to interact with Attribute data. This class " @@ -3053,13 +3095,13 @@ msgstr "" "returneras, t.ex. filtrering efter specifika fält eller hämtning av " "detaljerad eller förenklad information beroende på begäran." -#: core/viewsets.py:195 +#: engine/core/viewsets.py:195 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 " @@ -3067,7 +3109,7 @@ msgstr "" "viewset-mekanismer och använder lämpliga serializers för olika åtgärder. " "Filtreringsfunktioner tillhandahålls genom DjangoFilterBackend." -#: core/viewsets.py:214 +#: engine/core/viewsets.py:214 msgid "" "Manages views for Category-related operations. The CategoryViewSet class is " "responsible for handling operations related to the Category model in the " @@ -3081,7 +3123,7 @@ msgstr "" "kategoridata. Vyuppsättningen tillämpar också behörigheter för att " "säkerställa att endast behöriga användare kan komma åt specifika data." -#: core/viewsets.py:326 +#: engine/core/viewsets.py:326 msgid "" "Represents a viewset for managing Brand instances. This class provides " "functionality for querying, filtering, and serializing Brand objects. It " @@ -3089,11 +3131,11 @@ 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." -#: core/viewsets.py:438 +#: engine/core/viewsets.py:438 msgid "" "Manages operations related to the `Product` model in the system. This class " "provides a viewset for managing products, including their filtering, " @@ -3104,14 +3146,14 @@ msgid "" "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 " +"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 " "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." -#: core/viewsets.py:568 +#: engine/core/viewsets.py:568 msgid "" "Represents a viewset for managing Vendor objects. This viewset allows " "fetching, filtering, and serializing Vendor data. It defines the queryset, " @@ -3119,54 +3161,54 @@ 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." -#: core/viewsets.py:588 +#: engine/core/viewsets.py:588 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 `EvibesViewSet` 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 " "data." -#: core/viewsets.py:615 +#: engine/core/viewsets.py:615 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 " "interaktion med orderdata." -#: core/viewsets.py:813 +#: engine/core/viewsets.py:813 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 " @@ -3176,11 +3218,11 @@ msgstr "" "åtgärden. Dessutom innehåller den en detaljerad åtgärd för att hantera " "feedback på OrderProduct-instanser" -#: core/viewsets.py:867 +#: engine/core/viewsets.py:867 msgid "Manages operations related to Product images in the application. " msgstr "Hanterar åtgärder relaterade till produktbilder i applikationen." -#: core/viewsets.py:880 +#: engine/core/viewsets.py:880 msgid "" "Manages the retrieval and handling of PromoCode instances through various " "API actions." @@ -3188,20 +3230,20 @@ msgstr "" "Hanterar hämtning och hantering av PromoCode-instanser genom olika API-" "åtgärder." -#: core/viewsets.py:902 +#: engine/core/viewsets.py:902 msgid "Represents a view set for managing promotions. " msgstr "Representerar en vyuppsättning för hantering av kampanjer." -#: core/viewsets.py:915 +#: engine/core/viewsets.py:915 msgid "Handles operations related to Stock data in the system." msgstr "Hanterar åtgärder relaterade till lagerdata i systemet." -#: core/viewsets.py:929 +#: engine/core/viewsets.py:929 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." @@ -3214,7 +3256,7 @@ msgstr "" "integrerade för att säkerställa att användare endast kan hantera sina egna " "önskelistor om inte uttryckliga behörigheter beviljas." -#: core/viewsets.py:1044 +#: engine/core/viewsets.py:1044 msgid "" "This class provides viewset functionality for managing `Address` objects. " "The AddressViewSet class enables CRUD operations, filtering, and custom " @@ -3228,12 +3270,12 @@ msgstr "" "innehåller specialiserade beteenden för olika HTTP-metoder, serializer-" "överskrivningar och behörighetshantering baserat på förfrågningskontexten." -#: core/viewsets.py:1111 +#: engine/core/viewsets.py:1111 #, python-brace-format msgid "Geocoding error: {e}" msgstr "Fel i geokodningen: {e}" -#: core/viewsets.py:1119 +#: engine/core/viewsets.py:1119 msgid "" "Handles operations related to Product Tags within the application. This " "class provides functionality for retrieving, filtering, and serializing " @@ -3244,5 +3286,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 new file mode 100644 index 00000000..ed9a39dc Binary files /dev/null and b/engine/core/locale/th_TH/LC_MESSAGES/django.mo differ diff --git a/core/locale/th_TH/LC_MESSAGES/django.po b/engine/core/locale/th_TH/LC_MESSAGES/django.po similarity index 64% rename from core/locale/th_TH/LC_MESSAGES/django.po rename to engine/core/locale/th_TH/LC_MESSAGES/django.po index 1fba55c7..0fb49455 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,1265 +13,1246 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: core/abstract.py:12 +#: engine/core/abstract.py:12 msgid "unique id" msgstr "รหัสประจำตัวที่ไม่ซ้ำกัน" -#: core/abstract.py:13 +#: engine/core/abstract.py:13 msgid "unique id is used to surely identify any database object" msgstr "รหัสประจำตัวที่ไม่ซ้ำกันใช้เพื่อระบุวัตถุฐานข้อมูลใด ๆ อย่างแน่นอน" -#: core/abstract.py:20 +#: engine/core/abstract.py:20 msgid "is active" msgstr "กำลังใช้งานอยู่" -#: core/abstract.py:21 +#: engine/core/abstract.py:21 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, วัตถุนี้ไม่สามารถมองเห็นได้โดยผู้ใช้ที่ไม่มีสิทธิ์ที่ต้องการ" -#: core/abstract.py:23 core/choices.py:18 +#: engine/core/abstract.py:23 engine/core/choices.py:18 msgid "created" msgstr "สร้างขึ้น" -#: core/abstract.py:23 +#: engine/core/abstract.py:23 msgid "when the object first appeared on the database" msgstr "เมื่อวัตถุปรากฏขึ้นครั้งแรกในฐานข้อมูล" -#: core/abstract.py:24 +#: engine/core/abstract.py:24 msgid "modified" msgstr "แก้ไขแล้ว" -#: core/abstract.py:24 +#: engine/core/abstract.py:24 msgid "when the object was last modified" msgstr "เมื่อครั้งล่าสุดที่มีการแก้ไขวัตถุ" -#: core/admin.py:68 +#: engine/core/admin.py:68 msgid "translations" msgstr "การแปล" -#: core/admin.py:72 +#: engine/core/admin.py:72 msgid "general" msgstr "ทั่วไป" -#: core/admin.py:74 +#: engine/core/admin.py:74 msgid "relations" msgstr "ความสัมพันธ์" -#: core/admin.py:76 +#: engine/core/admin.py:76 msgid "additional info" msgstr "ข้อมูลเพิ่มเติม" -#: core/admin.py:94 +#: engine/core/admin.py:94 msgid "metadata" msgstr "เมตาดาตา" -#: core/admin.py:101 +#: engine/core/admin.py:101 msgid "timestamps" msgstr "เวลาที่บันทึก" -#: core/admin.py:116 +#: engine/core/admin.py:116 #, python-format msgid "activate selected %(verbose_name_plural)s" msgstr "เปิดใช้งานที่เลือกไว้ %(verbose_name_plural)s" -#: core/admin.py:121 +#: engine/core/admin.py:121 msgid "selected items have been activated." msgstr "รายการที่เลือกไว้ได้รับการเปิดใช้งานแล้ว!" -#: core/admin.py:127 +#: engine/core/admin.py:127 #, python-format msgid "deactivate selected %(verbose_name_plural)s" msgstr "ยกเลิกการใช้งานที่เลือกไว้ %(verbose_name_plural)s" -#: core/admin.py:132 +#: engine/core/admin.py:132 msgid "selected items have been deactivated." msgstr "รายการที่เลือกถูกยกเลิกการใช้งานแล้ว!" -#: core/admin.py:144 core/graphene/object_types.py:582 -#: core/graphene/object_types.py:589 core/models.py:783 core/models.py:791 +#: engine/core/admin.py:144 engine/core/graphene/object_types.py:586 +#: engine/core/graphene/object_types.py:593 engine/core/models.py:794 +#: engine/core/models.py:802 msgid "attribute value" msgstr "ค่าคุณสมบัติ" -#: core/admin.py:145 core/graphene/object_types.py:75 core/models.py:792 +#: engine/core/admin.py:145 engine/core/graphene/object_types.py:75 +#: engine/core/models.py:803 msgid "attribute values" msgstr "ค่าของแอตทริบิวต์" -#: core/admin.py:156 +#: engine/core/admin.py:156 msgid "image" msgstr "ภาพ" -#: core/admin.py:157 core/graphene/object_types.py:474 +#: engine/core/admin.py:157 engine/core/graphene/object_types.py:474 msgid "images" msgstr "รูปภาพ" -#: core/admin.py:168 core/models.py:559 +#: engine/core/admin.py:169 engine/core/models.py:559 msgid "stock" msgstr "สต็อก" -#: core/admin.py:169 core/graphene/object_types.py:636 +#: engine/core/admin.py:170 engine/core/graphene/object_types.py:640 msgid "stocks" msgstr "หุ้น" -#: core/admin.py:182 core/models.py:1744 +#: engine/core/admin.py:183 engine/core/models.py:1804 msgid "order product" msgstr "สั่งซื้อสินค้า" -#: core/admin.py:183 core/graphene/object_types.py:389 core/models.py:1745 +#: engine/core/admin.py:184 engine/core/graphene/object_types.py:389 +#: engine/core/models.py:1805 msgid "order products" msgstr "สั่งซื้อสินค้า" -#: core/admin.py:196 core/admin.py:197 +#: engine/core/admin.py:197 engine/core/admin.py:198 msgid "children" msgstr "เด็ก" -#: core/admin.py:965 +#: engine/core/admin.py:969 msgid "Config" msgstr "การกำหนดค่า" -#: core/apps.py:8 +#: engine/core/apps.py:8 msgid "core" msgstr "แกนหลัก" -#: core/choices.py:4 core/choices.py:20 +#: engine/core/choices.py:4 engine/core/choices.py:20 msgid "finished" msgstr "เสร็จแล้ว" -#: core/choices.py:5 core/choices.py:19 +#: engine/core/choices.py:5 engine/core/choices.py:19 msgid "delivering" msgstr "การส่งมอบ" -#: core/choices.py:6 +#: engine/core/choices.py:6 msgid "delivered" msgstr "ส่งมอบแล้ว" -#: core/choices.py:7 +#: engine/core/choices.py:7 msgid "canceled" msgstr "ยกเลิก" -#: core/choices.py:8 core/choices.py:16 core/choices.py:24 +#: engine/core/choices.py:8 engine/core/choices.py:16 engine/core/choices.py:24 msgid "failed" msgstr "ล้มเหลว" -#: core/choices.py:9 core/choices.py:15 +#: engine/core/choices.py:9 engine/core/choices.py:15 msgid "pending" msgstr "รอดำเนินการ" -#: core/choices.py:10 +#: engine/core/choices.py:10 msgid "accepted" msgstr "ได้รับการยอมรับ" -#: core/choices.py:11 +#: engine/core/choices.py:11 msgid "money returned" msgstr "เงินคืน" -#: core/choices.py:17 +#: engine/core/choices.py:17 msgid "payment" msgstr "การชำระเงิน" -#: core/choices.py:21 +#: engine/core/choices.py:21 msgid "momental" msgstr "ชั่วขณะหนึ่ง" -#: core/choices.py:24 +#: engine/core/choices.py:24 msgid "successful" msgstr "ประสบความสำเร็จ" -#: core/docs/drf/views.py:17 core/graphene/mutations.py:38 +#: engine/core/docs/drf/views.py:17 engine/core/graphene/mutations.py:38 msgid "cache I/O" msgstr "แคช I/O" -#: core/docs/drf/views.py:19 +#: engine/core/docs/drf/views.py:19 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 "" -"ใช้เฉพาะคีย์เพื่ออ่านข้อมูลที่ได้รับอนุญาตจากแคช ใช้คีย์ ข้อมูล " -"และระยะเวลาหมดอายุ พร้อมการยืนยันตัวตนเพื่อเขียนข้อมูลลงในแคช" +"ใช้เฉพาะคีย์เพื่ออ่านข้อมูลที่ได้รับอนุญาตจากแคช ใช้คีย์ ข้อมูล และระยะเวลาหมดอายุ " +"พร้อมการยืนยันตัวตนเพื่อเขียนข้อมูลลงในแคช" -#: core/docs/drf/views.py:32 +#: engine/core/docs/drf/views.py:32 msgid "get a list of supported languages" msgstr "รับรายการภาษาที่รองรับ" -#: core/docs/drf/views.py:41 +#: engine/core/docs/drf/views.py:41 msgid "get application's exposable parameters" msgstr "รับพารามิเตอร์ที่สามารถเปิดเผยได้ของแอปพลิเคชัน" -#: core/docs/drf/views.py:48 +#: engine/core/docs/drf/views.py:48 msgid "send a message to the support team" msgstr "ส่งข้อความถึงทีมสนับสนุน" -#: core/docs/drf/views.py:59 core/graphene/mutations.py:58 +#: engine/core/docs/drf/views.py:59 engine/core/graphene/mutations.py:58 msgid "request a CORSed URL" msgstr "ขอ URL ที่รองรับ CORS เท่านั้น อนุญาตเฉพาะ https" -#: core/docs/drf/views.py:85 +#: engine/core/docs/drf/views.py:85 msgid "global search endpoint to query across project's tables" msgstr "จุดสิ้นสุดการค้นหาทั่วโลกเพื่อค้นหาข้ามตารางของโครงการ" -#: core/docs/drf/views.py:91 +#: engine/core/docs/drf/views.py:91 msgid "purchase an order as a business" msgstr "ซื้อสินค้าเป็นธุรกิจ" -#: core/docs/drf/views.py:98 +#: engine/core/docs/drf/views.py:98 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`" -#: core/docs/drf/viewsets.py:58 +#: engine/core/docs/drf/viewsets.py:58 msgid "list all attribute groups (simple view)" msgstr "แสดงกลุ่มแอตทริบิวต์ทั้งหมด (มุมมองแบบง่าย)" -#: core/docs/drf/viewsets.py:62 +#: engine/core/docs/drf/viewsets.py:62 msgid "retrieve a single attribute group (detailed view)" msgstr "ดึงกลุ่มแอตทริบิวต์เดียว (มุมมองรายละเอียด)" -#: core/docs/drf/viewsets.py:66 +#: engine/core/docs/drf/viewsets.py:66 msgid "create an attribute group" msgstr "สร้างกลุ่มคุณลักษณะ" -#: core/docs/drf/viewsets.py:70 +#: engine/core/docs/drf/viewsets.py:70 msgid "delete an attribute group" msgstr "ลบกลุ่มแอตทริบิวต์" -#: core/docs/drf/viewsets.py:74 +#: engine/core/docs/drf/viewsets.py:74 msgid "rewrite an existing attribute group saving non-editables" -msgstr "" -"เขียนกลุ่มคุณลักษณะที่มีอยู่ใหม่โดยเก็บรักษาข้อมูลที่ไม่สามารถแก้ไขได้" +msgstr "เขียนกลุ่มคุณลักษณะที่มีอยู่ใหม่โดยเก็บรักษาข้อมูลที่ไม่สามารถแก้ไขได้" -#: core/docs/drf/viewsets.py:78 -msgid "" -"rewrite some fields of an existing attribute group saving non-editables" -msgstr "" -"เขียนฟิลด์บางส่วนของกลุ่มแอตทริบิวต์ที่มีอยู่ใหม่ " -"โดยเก็บรักษาข้อมูลที่ไม่สามารถแก้ไขได้" +#: engine/core/docs/drf/viewsets.py:78 +msgid "rewrite some fields of an existing attribute group saving non-editables" +msgstr "เขียนฟิลด์บางส่วนของกลุ่มแอตทริบิวต์ที่มีอยู่ใหม่ โดยเก็บรักษาข้อมูลที่ไม่สามารถแก้ไขได้" -#: core/docs/drf/viewsets.py:85 +#: engine/core/docs/drf/viewsets.py:85 msgid "list all attributes (simple view)" msgstr "แสดงรายการคุณลักษณะทั้งหมด (มุมมองแบบง่าย)" -#: core/docs/drf/viewsets.py:89 +#: engine/core/docs/drf/viewsets.py:89 msgid "retrieve a single attribute (detailed view)" msgstr "ดึงข้อมูลคุณลักษณะเดียว (มุมมองรายละเอียด)" -#: core/docs/drf/viewsets.py:93 +#: engine/core/docs/drf/viewsets.py:93 msgid "create an attribute" msgstr "สร้างแอตทริบิวต์" -#: core/docs/drf/viewsets.py:97 +#: engine/core/docs/drf/viewsets.py:97 msgid "delete an attribute" msgstr "ลบแอตทริบิวต์" -#: core/docs/drf/viewsets.py:101 +#: engine/core/docs/drf/viewsets.py:101 msgid "rewrite an existing attribute saving non-editables" msgstr "เขียนแอตทริบิวต์ที่มีอยู่ใหม่โดยบันทึกเฉพาะส่วนที่ไม่สามารถแก้ไขได้" -#: core/docs/drf/viewsets.py:105 +#: engine/core/docs/drf/viewsets.py:105 msgid "rewrite some fields of an existing attribute saving non-editables" -msgstr "" -"เขียนฟิลด์บางส่วนของแอตทริบิวต์ที่มีอยู่ใหม่ " -"โดยบันทึกเฉพาะข้อมูลที่ไม่มีการแก้ไข" +msgstr "เขียนฟิลด์บางส่วนของแอตทริบิวต์ที่มีอยู่ใหม่ โดยบันทึกเฉพาะข้อมูลที่ไม่มีการแก้ไข" -#: core/docs/drf/viewsets.py:112 +#: engine/core/docs/drf/viewsets.py:112 msgid "list all attribute values (simple view)" msgstr "แสดงรายการค่าของแอตทริบิวต์ทั้งหมด (มุมมองแบบง่าย)" -#: core/docs/drf/viewsets.py:116 +#: engine/core/docs/drf/viewsets.py:116 msgid "retrieve a single attribute value (detailed view)" msgstr "ดึงค่าแอตทริบิวต์เดียว (มุมมองรายละเอียด)" -#: core/docs/drf/viewsets.py:120 +#: engine/core/docs/drf/viewsets.py:120 msgid "create an attribute value" msgstr "สร้างค่าแอตทริบิวต์" -#: core/docs/drf/viewsets.py:124 +#: engine/core/docs/drf/viewsets.py:124 msgid "delete an attribute value" msgstr "ลบค่าของแอตทริบิวต์" -#: core/docs/drf/viewsets.py:128 +#: engine/core/docs/drf/viewsets.py:128 msgid "rewrite an existing attribute value saving non-editables" msgstr "เขียนค่าแอตทริบิวต์ที่มีอยู่ใหม่โดยเก็บค่าที่ไม่สามารถแก้ไขได้" -#: core/docs/drf/viewsets.py:132 -msgid "" -"rewrite some fields of an existing attribute value saving non-editables" -msgstr "" -"เขียนฟิลด์บางส่วนของค่าแอตทริบิวต์ที่มีอยู่ใหม่ " -"โดยเก็บค่าที่ไม่สามารถแก้ไขได้ไว้" +#: engine/core/docs/drf/viewsets.py:132 +msgid "rewrite some fields of an existing attribute value saving non-editables" +msgstr "เขียนฟิลด์บางส่วนของค่าแอตทริบิวต์ที่มีอยู่ใหม่ โดยเก็บค่าที่ไม่สามารถแก้ไขได้ไว้" -#: core/docs/drf/viewsets.py:139 core/docs/drf/viewsets.py:140 +#: engine/core/docs/drf/viewsets.py:139 engine/core/docs/drf/viewsets.py:140 msgid "list all categories (simple view)" msgstr "แสดงรายการหมวดหมู่ทั้งหมด (มุมมองแบบง่าย)" -#: core/docs/drf/viewsets.py:144 core/docs/drf/viewsets.py:145 +#: engine/core/docs/drf/viewsets.py:144 engine/core/docs/drf/viewsets.py:145 msgid "retrieve a single category (detailed view)" msgstr "ดึงข้อมูลหมวดหมู่เดียว (มุมมองรายละเอียด)" -#: core/docs/drf/viewsets.py:149 core/docs/drf/viewsets.py:150 -msgid "create a category" -msgstr "สร้างหมวดหมู่" - -#: core/docs/drf/viewsets.py:154 core/docs/drf/viewsets.py:155 -msgid "delete a category" -msgstr "ลบหมวดหมู่" - -#: core/docs/drf/viewsets.py:159 core/docs/drf/viewsets.py:160 -msgid "rewrite an existing category saving non-editables" -msgstr "เขียนหมวดหมู่ที่มีอยู่ใหม่โดยเก็บรักษาข้อมูลที่ไม่สามารถแก้ไขได้" - -#: core/docs/drf/viewsets.py:164 core/docs/drf/viewsets.py:165 -msgid "rewrite some fields of an existing category saving non-editables" -msgstr "" -"เขียนฟิลด์บางส่วนของหมวดหมู่ที่มีอยู่แล้วใหม่ " -"โดยบันทึกเฉพาะข้อมูลที่ไม่สามารถแก้ไขได้" - -#: core/docs/drf/viewsets.py:169 core/docs/drf/viewsets.py:501 -#: core/graphene/object_types.py:117 core/graphene/object_types.py:207 -#: core/graphene/object_types.py:482 -msgid "SEO Meta snapshot" -msgstr "SEO Meta snapshot" - -#: core/docs/drf/viewsets.py:170 -msgid "returns a snapshot of the category's SEO meta data" -msgstr "ส่งคืนภาพรวมของข้อมูลเมตา SEO ของหมวดหมู่" - -#: core/docs/drf/viewsets.py:175 +#: engine/core/docs/drf/viewsets.py:150 engine/core/docs/drf/viewsets.py:183 msgid "Category UUID or slug" msgstr "หมวดหมู่ UUID หรือ slug" -#: core/docs/drf/viewsets.py:188 +#: engine/core/docs/drf/viewsets.py:157 engine/core/docs/drf/viewsets.py:158 +msgid "create a category" +msgstr "สร้างหมวดหมู่" + +#: engine/core/docs/drf/viewsets.py:162 engine/core/docs/drf/viewsets.py:163 +msgid "delete a category" +msgstr "ลบหมวดหมู่" + +#: engine/core/docs/drf/viewsets.py:167 engine/core/docs/drf/viewsets.py:168 +msgid "rewrite an existing category saving non-editables" +msgstr "เขียนหมวดหมู่ที่มีอยู่ใหม่โดยเก็บรักษาข้อมูลที่ไม่สามารถแก้ไขได้" + +#: engine/core/docs/drf/viewsets.py:172 engine/core/docs/drf/viewsets.py:173 +msgid "rewrite some fields of an existing category saving non-editables" +msgstr "เขียนฟิลด์บางส่วนของหมวดหมู่ที่มีอยู่แล้วใหม่ โดยบันทึกเฉพาะข้อมูลที่ไม่สามารถแก้ไขได้" + +#: engine/core/docs/drf/viewsets.py:177 engine/core/docs/drf/viewsets.py:517 +#: engine/core/graphene/object_types.py:117 +#: engine/core/graphene/object_types.py:207 +#: engine/core/graphene/object_types.py:482 +msgid "SEO Meta snapshot" +msgstr "SEO Meta snapshot" + +#: engine/core/docs/drf/viewsets.py:178 +msgid "returns a snapshot of the category's SEO meta data" +msgstr "ส่งคืนภาพรวมของข้อมูลเมตา SEO ของหมวดหมู่" + +#: engine/core/docs/drf/viewsets.py:196 msgid "list all orders (simple view)" msgstr "แสดงรายการหมวดหมู่ทั้งหมด (มุมมองแบบง่าย)" -#: core/docs/drf/viewsets.py:189 +#: engine/core/docs/drf/viewsets.py:197 msgid "for non-staff users, only their own orders are returned." msgstr "สำหรับผู้ใช้ที่ไม่ใช่พนักงาน จะแสดงเฉพาะคำสั่งซื้อของตนเองเท่านั้น" -#: core/docs/drf/viewsets.py:195 +#: engine/core/docs/drf/viewsets.py:203 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" -#: core/docs/drf/viewsets.py:202 +#: engine/core/docs/drf/viewsets.py:210 msgid "Filter orders with buy_time >= this ISO 8601 datetime" msgstr "กรองคำสั่งซื้อที่มี buy_time >= วันที่และเวลาตามมาตรฐาน ISO 8601 นี้" -#: core/docs/drf/viewsets.py:207 +#: engine/core/docs/drf/viewsets.py:215 msgid "Filter orders with buy_time <= this ISO 8601 datetime" msgstr "กรองคำสั่งซื้อที่มี buy_time <= วันที่และเวลาตามมาตรฐาน ISO 8601 นี้" -#: core/docs/drf/viewsets.py:212 +#: engine/core/docs/drf/viewsets.py:220 msgid "Filter by exact order UUID" msgstr "กรองตาม UUID ของคำสั่งซื้อที่ตรงกัน" -#: core/docs/drf/viewsets.py:217 +#: engine/core/docs/drf/viewsets.py:225 msgid "Filter by exact human-readable order ID" msgstr "กรองตามหมายเลขคำสั่งซื้อที่อ่านได้โดยมนุษย์อย่างถูกต้อง" -#: core/docs/drf/viewsets.py:222 +#: engine/core/docs/drf/viewsets.py:230 msgid "Filter by user's email (case-insensitive exact match)" -msgstr "" -"กรองตามอีเมลของผู้ใช้ (ตรงตามตัวอักษรโดยไม่คำนึงถึงตัวพิมพ์ใหญ่หรือเล็ก)" +msgstr "กรองตามอีเมลของผู้ใช้ (ตรงตามตัวอักษรโดยไม่คำนึงถึงตัวพิมพ์ใหญ่หรือเล็ก)" -#: core/docs/drf/viewsets.py:227 +#: engine/core/docs/drf/viewsets.py:235 msgid "Filter by user's UUID" msgstr "กรองตาม UUID ของผู้ใช้" -#: core/docs/drf/viewsets.py:232 +#: engine/core/docs/drf/viewsets.py:240 msgid "Filter by order status (case-insensitive substring match)" -msgstr "" -"กรองตามสถานะคำสั่งซื้อ (การจับคู่สตริงย่อยโดยไม่คำนึงตัวพิมพ์ใหญ่/เล็ก)" +msgstr "กรองตามสถานะคำสั่งซื้อ (การจับคู่สตริงย่อยโดยไม่คำนึงตัวพิมพ์ใหญ่/เล็ก)" -#: core/docs/drf/viewsets.py:238 +#: engine/core/docs/drf/viewsets.py:246 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')." -#: core/docs/drf/viewsets.py:247 +#: engine/core/docs/drf/viewsets.py:255 msgid "retrieve a single order (detailed view)" msgstr "ดึงข้อมูลหมวดหมู่เดียว (มุมมองรายละเอียด)" -#: core/docs/drf/viewsets.py:251 +#: engine/core/docs/drf/viewsets.py:260 +msgid "Order UUID or human-readable id" +msgstr "ลำดับ UUID หรือรหัสที่มนุษย์อ่านได้" + +#: engine/core/docs/drf/viewsets.py:267 msgid "create an order" msgstr "สร้างแอตทริบิวต์" -#: core/docs/drf/viewsets.py:252 +#: engine/core/docs/drf/viewsets.py:268 msgid "doesn't work for non-staff users." msgstr "ไม่สามารถใช้งานได้สำหรับผู้ใช้ที่ไม่ใช่พนักงาน" -#: core/docs/drf/viewsets.py:256 +#: engine/core/docs/drf/viewsets.py:272 msgid "delete an order" msgstr "ลบแอตทริบิวต์" -#: core/docs/drf/viewsets.py:260 +#: engine/core/docs/drf/viewsets.py:276 msgid "rewrite an existing order saving non-editables" msgstr "เขียนหมวดหมู่ที่มีอยู่ใหม่โดยเก็บรักษาข้อมูลที่ไม่สามารถแก้ไขได้" -#: core/docs/drf/viewsets.py:264 +#: engine/core/docs/drf/viewsets.py:280 msgid "rewrite some fields of an existing order saving non-editables" -msgstr "" -"เขียนฟิลด์บางส่วนของหมวดหมู่ที่มีอยู่แล้วใหม่ " -"โดยบันทึกเฉพาะข้อมูลที่ไม่สามารถแก้ไขได้" +msgstr "เขียนฟิลด์บางส่วนของหมวดหมู่ที่มีอยู่แล้วใหม่ โดยบันทึกเฉพาะข้อมูลที่ไม่สามารถแก้ไขได้" -#: core/docs/drf/viewsets.py:268 +#: engine/core/docs/drf/viewsets.py:284 msgid "purchase an order" msgstr "ราคาซื้อ ณ เวลาที่สั่งซื้อ" -#: core/docs/drf/viewsets.py:270 +#: engine/core/docs/drf/viewsets.py:286 msgid "" "finalizes the order purchase. if `force_balance` is used, the purchase is " "completed using the user's balance; if `force_payment` is used, a " "transaction is initiated." msgstr "" "สรุปการสั่งซื้อสินค้า หากใช้ `force_balance` " -"การสั่งซื้อจะเสร็จสมบูรณ์โดยใช้ยอดเงินคงเหลือของผู้ใช้ หากใช้ " -"`force_payment` จะเริ่มการทำธุรกรรม" +"การสั่งซื้อจะเสร็จสมบูรณ์โดยใช้ยอดเงินคงเหลือของผู้ใช้ หากใช้ `force_payment` " +"จะเริ่มการทำธุรกรรม" -#: core/docs/drf/viewsets.py:282 core/graphene/mutations.py:335 +#: engine/core/docs/drf/viewsets.py:298 engine/core/graphene/mutations.py:335 msgid "purchase an order without account creation" msgstr "ซื้อสินค้าโดยไม่ต้องสร้างบัญชี" -#: core/docs/drf/viewsets.py:283 +#: engine/core/docs/drf/viewsets.py:299 msgid "finalizes the order purchase for a non-registered user." msgstr "สรุปการสั่งซื้อสินค้าสำหรับผู้ใช้ที่ไม่ได้ลงทะเบียน" -#: core/docs/drf/viewsets.py:291 +#: engine/core/docs/drf/viewsets.py:307 msgid "add product to order" msgstr "เพิ่มสินค้าในคำสั่งซื้อ" -#: core/docs/drf/viewsets.py:292 +#: engine/core/docs/drf/viewsets.py:308 msgid "" "adds a product to an order using the provided `product_uuid` and " "`attributes`." -msgstr "" -"เพิ่มสินค้าไปยังคำสั่งซื้อโดยใช้ `product_uuid` และ `attributes` ที่ให้มา" +msgstr "เพิ่มสินค้าไปยังคำสั่งซื้อโดยใช้ `product_uuid` และ `attributes` ที่ให้มา" -#: core/docs/drf/viewsets.py:297 +#: engine/core/docs/drf/viewsets.py:313 msgid "add a list of products to order, quantities will not count" msgstr "เพิ่มรายการสินค้าที่ต้องการสั่งซื้อ โดยจำนวนจะไม่ถูกนับ" -#: core/docs/drf/viewsets.py:298 +#: engine/core/docs/drf/viewsets.py:314 msgid "" "adds a list of products to an order using the provided `product_uuid` and " "`attributes`." -msgstr "" -"เพิ่มรายการสินค้าไปยังคำสั่งซื้อโดยใช้ `product_uuid` และ `attributes` " -"ที่ให้มา" +msgstr "เพิ่มรายการสินค้าไปยังคำสั่งซื้อโดยใช้ `product_uuid` และ `attributes` ที่ให้มา" -#: core/docs/drf/viewsets.py:303 +#: engine/core/docs/drf/viewsets.py:319 msgid "remove product from order" msgstr "ลบสินค้าออกจากคำสั่งซื้อ" -#: core/docs/drf/viewsets.py:304 +#: engine/core/docs/drf/viewsets.py:320 msgid "" "removes a product from an order using the provided `product_uuid` and " "`attributes`." -msgstr "" -"ลบผลิตภัณฑ์ออกจากคำสั่งซื้อโดยใช้ `product_uuid` และ `attributes` ที่ให้มา" +msgstr "ลบผลิตภัณฑ์ออกจากคำสั่งซื้อโดยใช้ `product_uuid` และ `attributes` ที่ให้มา" -#: core/docs/drf/viewsets.py:309 +#: engine/core/docs/drf/viewsets.py:325 msgid "remove product from order, quantities will not count" msgstr "นำสินค้าออกจากคำสั่งซื้อ, จำนวนจะไม่ถูกนับ" -#: core/docs/drf/viewsets.py:310 +#: engine/core/docs/drf/viewsets.py:326 msgid "" "removes a list of products from an order using the provided `product_uuid` " "and `attributes`" -msgstr "" -"ลบรายการสินค้าออกจากคำสั่งซื้อโดยใช้ `product_uuid` และ `attributes` " -"ที่ให้มา" +msgstr "ลบรายการสินค้าออกจากคำสั่งซื้อโดยใช้ `product_uuid` และ `attributes` ที่ให้มา" -#: core/docs/drf/viewsets.py:318 +#: engine/core/docs/drf/viewsets.py:334 msgid "list all wishlists (simple view)" msgstr "แสดงรายการคุณลักษณะทั้งหมด (มุมมองแบบง่าย)" -#: core/docs/drf/viewsets.py:319 +#: engine/core/docs/drf/viewsets.py:335 msgid "for non-staff users, only their own wishlists are returned." -msgstr "" -"สำหรับผู้ใช้ที่ไม่ใช่บุคลากร " -"จะแสดงเฉพาะรายการที่อยู่ในรายการสิ่งที่ต้องการของตนเองเท่านั้น" +msgstr "สำหรับผู้ใช้ที่ไม่ใช่บุคลากร จะแสดงเฉพาะรายการที่อยู่ในรายการสิ่งที่ต้องการของตนเองเท่านั้น" -#: core/docs/drf/viewsets.py:323 +#: engine/core/docs/drf/viewsets.py:339 msgid "retrieve a single wishlist (detailed view)" msgstr "ดึงข้อมูลคุณลักษณะเดียว (มุมมองรายละเอียด)" -#: core/docs/drf/viewsets.py:327 +#: engine/core/docs/drf/viewsets.py:343 msgid "create an wishlist" msgstr "สร้างแอตทริบิวต์" -#: core/docs/drf/viewsets.py:328 +#: engine/core/docs/drf/viewsets.py:344 msgid "Doesn't work for non-staff users." msgstr "ไม่สามารถใช้งานได้สำหรับผู้ใช้ที่ไม่ใช่พนักงาน" -#: core/docs/drf/viewsets.py:332 +#: engine/core/docs/drf/viewsets.py:348 msgid "delete an wishlist" msgstr "ลบแอตทริบิวต์" -#: core/docs/drf/viewsets.py:336 +#: engine/core/docs/drf/viewsets.py:352 msgid "rewrite an existing wishlist saving non-editables" msgstr "เขียนแอตทริบิวต์ที่มีอยู่ใหม่โดยบันทึกเฉพาะส่วนที่ไม่สามารถแก้ไขได้" -#: core/docs/drf/viewsets.py:340 +#: engine/core/docs/drf/viewsets.py:356 msgid "rewrite some fields of an existing wishlist saving non-editables" -msgstr "" -"เขียนฟิลด์บางส่วนของแอตทริบิวต์ที่มีอยู่ใหม่ " -"โดยบันทึกเฉพาะข้อมูลที่ไม่มีการแก้ไข" +msgstr "เขียนฟิลด์บางส่วนของแอตทริบิวต์ที่มีอยู่ใหม่ โดยบันทึกเฉพาะข้อมูลที่ไม่มีการแก้ไข" -#: core/docs/drf/viewsets.py:344 +#: engine/core/docs/drf/viewsets.py:360 msgid "add product to wishlist" msgstr "เพิ่มสินค้าในคำสั่งซื้อ" -#: core/docs/drf/viewsets.py:345 +#: engine/core/docs/drf/viewsets.py:361 msgid "adds a product to an wishlist using the provided `product_uuid`" msgstr "เพิ่มสินค้าไปยังรายการที่ต้องการโดยใช้ `product_uuid` ที่ให้มา" -#: core/docs/drf/viewsets.py:350 +#: engine/core/docs/drf/viewsets.py:366 msgid "remove product from wishlist" msgstr "นำสินค้าออกจากรายการที่อยากได้" -#: core/docs/drf/viewsets.py:351 +#: engine/core/docs/drf/viewsets.py:367 msgid "removes a product from an wishlist using the provided `product_uuid`" msgstr "ลบผลิตภัณฑ์ออกจากรายการที่ต้องการโดยใช้ `product_uuid` ที่ให้มา" -#: core/docs/drf/viewsets.py:356 +#: engine/core/docs/drf/viewsets.py:372 msgid "add many products to wishlist" msgstr "เพิ่มสินค้าหลายรายการลงในรายการที่ต้องการ" -#: core/docs/drf/viewsets.py:357 +#: engine/core/docs/drf/viewsets.py:373 msgid "adds many products to an wishlist using the provided `product_uuids`" -msgstr "" -"เพิ่มสินค้าหลายรายการลงในรายการสินค้าที่ต้องการโดยใช้ `product_uuids` " -"ที่ให้มา" +msgstr "เพิ่มสินค้าหลายรายการลงในรายการสินค้าที่ต้องการโดยใช้ `product_uuids` ที่ให้มา" -#: core/docs/drf/viewsets.py:362 +#: engine/core/docs/drf/viewsets.py:378 msgid "remove many products from wishlist" msgstr "ลบสินค้าออกจากคำสั่งซื้อ" -#: core/docs/drf/viewsets.py:363 +#: engine/core/docs/drf/viewsets.py:379 msgid "" "removes many products from an wishlist using the provided `product_uuids`" -msgstr "" -"ลบผลิตภัณฑ์หลายรายการออกจากรายการที่ต้องการโดยใช้ `product_uuids` ที่ให้มา" +msgstr "ลบผลิตภัณฑ์หลายรายการออกจากรายการที่ต้องการโดยใช้ `product_uuids` ที่ให้มา" -#: core/docs/drf/viewsets.py:370 +#: engine/core/docs/drf/viewsets.py:386 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`" -#: core/docs/drf/viewsets.py:386 core/docs/drf/viewsets.py:387 +#: engine/core/docs/drf/viewsets.py:402 engine/core/docs/drf/viewsets.py:403 msgid "list all products (simple view)" msgstr "รายการสินค้าทั้งหมด (มุมมองแบบง่าย)" -#: core/docs/drf/viewsets.py:392 +#: engine/core/docs/drf/viewsets.py:408 msgid "(exact) Product UUID" msgstr "(exact) รหัส UUID ของผลิตภัณฑ์" -#: core/docs/drf/viewsets.py:399 +#: engine/core/docs/drf/viewsets.py:415 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" -#: core/docs/drf/viewsets.py:413 core/docs/drf/viewsets.py:414 +#: engine/core/docs/drf/viewsets.py:429 engine/core/docs/drf/viewsets.py:430 msgid "retrieve a single product (detailed view)" msgstr "ดึงข้อมูลสินค้าเพียงรายการเดียว (มุมมองรายละเอียด)" -#: core/docs/drf/viewsets.py:419 core/docs/drf/viewsets.py:443 -#: core/docs/drf/viewsets.py:459 core/docs/drf/viewsets.py:475 -#: core/docs/drf/viewsets.py:491 core/docs/drf/viewsets.py:507 +#: engine/core/docs/drf/viewsets.py:435 engine/core/docs/drf/viewsets.py:459 +#: engine/core/docs/drf/viewsets.py:475 engine/core/docs/drf/viewsets.py:491 +#: engine/core/docs/drf/viewsets.py:507 engine/core/docs/drf/viewsets.py:523 msgid "Product UUID or slug" msgstr "รหัส UUID ของผลิตภัณฑ์ หรือชื่อเรียก" -#: core/docs/drf/viewsets.py:429 core/docs/drf/viewsets.py:430 +#: engine/core/docs/drf/viewsets.py:445 engine/core/docs/drf/viewsets.py:446 msgid "create a product" msgstr "สร้างผลิตภัณฑ์" -#: core/docs/drf/viewsets.py:437 core/docs/drf/viewsets.py:438 +#: engine/core/docs/drf/viewsets.py:453 engine/core/docs/drf/viewsets.py:454 msgid "rewrite an existing product, preserving non-editable fields" msgstr "เขียนใหม่ผลิตภัณฑ์ที่มีอยู่ โดยรักษาฟิลด์ที่ไม่สามารถแก้ไขได้" -#: core/docs/drf/viewsets.py:453 core/docs/drf/viewsets.py:454 +#: engine/core/docs/drf/viewsets.py:469 engine/core/docs/drf/viewsets.py:470 msgid "" "update some fields of an existing product, preserving non-editable fields" -msgstr "" -"อัปเดตบางฟิลด์ของสินค้าที่มีอยู่แล้ว โดยคงฟิลด์ที่ไม่สามารถแก้ไขได้ไว้" +msgstr "อัปเดตบางฟิลด์ของสินค้าที่มีอยู่แล้ว โดยคงฟิลด์ที่ไม่สามารถแก้ไขได้ไว้" -#: core/docs/drf/viewsets.py:469 core/docs/drf/viewsets.py:470 +#: engine/core/docs/drf/viewsets.py:485 engine/core/docs/drf/viewsets.py:486 msgid "delete a product" msgstr "ลบผลิตภัณฑ์" -#: core/docs/drf/viewsets.py:485 core/docs/drf/viewsets.py:486 +#: engine/core/docs/drf/viewsets.py:501 engine/core/docs/drf/viewsets.py:502 msgid "lists all permitted feedbacks for a product" msgstr "แสดงรายการข้อเสนอแนะที่ได้รับอนุญาตทั้งหมดสำหรับผลิตภัณฑ์" -#: core/docs/drf/viewsets.py:502 +#: engine/core/docs/drf/viewsets.py:518 msgid "returns a snapshot of the product's SEO meta data" msgstr "ส่งคืนภาพรวมของข้อมูลเมตา SEO ของผลิตภัณฑ์" -#: core/docs/drf/viewsets.py:520 +#: engine/core/docs/drf/viewsets.py:536 msgid "list all addresses" msgstr "รายการที่อยู่ทั้งหมด" -#: core/docs/drf/viewsets.py:527 +#: engine/core/docs/drf/viewsets.py:543 msgid "retrieve a single address" msgstr "ดึงที่อยู่เดียว" -#: core/docs/drf/viewsets.py:534 +#: engine/core/docs/drf/viewsets.py:550 msgid "create a new address" msgstr "สร้างที่อยู่ใหม่" -#: core/docs/drf/viewsets.py:542 +#: engine/core/docs/drf/viewsets.py:558 msgid "delete an address" msgstr "ลบที่อยู่" -#: core/docs/drf/viewsets.py:549 +#: engine/core/docs/drf/viewsets.py:565 msgid "update an entire address" msgstr "อัปเดตที่อยู่ทั้งหมด" -#: core/docs/drf/viewsets.py:557 +#: engine/core/docs/drf/viewsets.py:573 msgid "partially update an address" msgstr "อัปเดตที่อยู่บางส่วน" -#: core/docs/drf/viewsets.py:565 +#: engine/core/docs/drf/viewsets.py:581 msgid "autocomplete address suggestions" msgstr "การเติมที่อยู่โดยอัตโนมัติ" -#: core/docs/drf/viewsets.py:570 +#: engine/core/docs/drf/viewsets.py:586 msgid "raw data query string, please append with data from geo-IP endpoint" msgstr "ข้อมูลดิบสำหรับคำค้นหา กรุณาเพิ่มข้อมูลจากจุดสิ้นสุด geo-IP" -#: core/docs/drf/viewsets.py:576 +#: engine/core/docs/drf/viewsets.py:592 msgid "limit the results amount, 1 < limit < 10, default: 5" msgstr "จำกัดจำนวนผลลัพธ์, 1 < limit < 10, ค่าเริ่มต้น: 5" -#: core/docs/drf/viewsets.py:589 +#: engine/core/docs/drf/viewsets.py:605 msgid "list all feedbacks (simple view)" msgstr "แสดงความคิดเห็นทั้งหมด (มุมมองแบบง่าย)" -#: core/docs/drf/viewsets.py:593 +#: engine/core/docs/drf/viewsets.py:609 msgid "retrieve a single feedback (detailed view)" msgstr "ดึงข้อมูลความคิดเห็นหนึ่งรายการ (มุมมองแบบละเอียด)" -#: core/docs/drf/viewsets.py:597 +#: engine/core/docs/drf/viewsets.py:613 msgid "create a feedback" msgstr "สร้างข้อเสนอแนะ" -#: core/docs/drf/viewsets.py:601 +#: engine/core/docs/drf/viewsets.py:617 msgid "delete a feedback" msgstr "ลบความคิดเห็น" -#: core/docs/drf/viewsets.py:605 +#: engine/core/docs/drf/viewsets.py:621 msgid "rewrite an existing feedback saving non-editables" msgstr "เขียนใหม่ข้อเสนอแนะที่มีอยู่โดยไม่แก้ไขส่วนที่ไม่สามารถแก้ไขได้" -#: core/docs/drf/viewsets.py:609 +#: engine/core/docs/drf/viewsets.py:625 msgid "rewrite some fields of an existing feedback saving non-editables" -msgstr "" -"เขียนข้อมูลบางส่วนของฟิลด์ในข้อเสนอแนะที่มีอยู่ใหม่ " -"โดยเก็บรักษาข้อมูลที่ไม่สามารถแก้ไขได้" +msgstr "เขียนข้อมูลบางส่วนของฟิลด์ในข้อเสนอแนะที่มีอยู่ใหม่ โดยเก็บรักษาข้อมูลที่ไม่สามารถแก้ไขได้" -#: core/docs/drf/viewsets.py:616 +#: engine/core/docs/drf/viewsets.py:632 msgid "list all order–product relations (simple view)" msgstr "แสดงความสัมพันธ์ระหว่างคำสั่งซื้อและผลิตภัณฑ์ทั้งหมด (มุมมองแบบง่าย)" -#: core/docs/drf/viewsets.py:623 +#: engine/core/docs/drf/viewsets.py:639 msgid "retrieve a single order–product relation (detailed view)" -msgstr "" -"ดึงความสัมพันธ์ระหว่างคำสั่งซื้อและผลิตภัณฑ์เพียงรายการเดียว " -"(มุมมองรายละเอียด)" +msgstr "ดึงความสัมพันธ์ระหว่างคำสั่งซื้อและผลิตภัณฑ์เพียงรายการเดียว (มุมมองรายละเอียด)" -#: core/docs/drf/viewsets.py:630 +#: engine/core/docs/drf/viewsets.py:646 msgid "create a new order–product relation" msgstr "สร้างความสัมพันธ์ระหว่างคำสั่งซื้อและผลิตภัณฑ์ใหม่" -#: core/docs/drf/viewsets.py:637 +#: engine/core/docs/drf/viewsets.py:653 msgid "replace an existing order–product relation" msgstr "แทนที่ความสัมพันธ์ระหว่างคำสั่งซื้อและผลิตภัณฑ์ที่มีอยู่" -#: core/docs/drf/viewsets.py:644 +#: engine/core/docs/drf/viewsets.py:660 msgid "partially update an existing order–product relation" msgstr "อัปเดตบางส่วนของความสัมพันธ์ระหว่างคำสั่งซื้อและผลิตภัณฑ์ที่มีอยู่" -#: core/docs/drf/viewsets.py:651 +#: engine/core/docs/drf/viewsets.py:667 msgid "delete an order–product relation" msgstr "ลบความสัมพันธ์ระหว่างคำสั่งซื้อและสินค้า" -#: core/docs/drf/viewsets.py:658 +#: engine/core/docs/drf/viewsets.py:674 msgid "add or remove feedback on an order–product relation" -msgstr "" -"เพิ่มหรือลบความคิดเห็นเกี่ยวกับความสัมพันธ์ระหว่างคำสั่งซื้อและผลิตภัณฑ์" +msgstr "เพิ่มหรือลบความคิดเห็นเกี่ยวกับความสัมพันธ์ระหว่างคำสั่งซื้อและผลิตภัณฑ์" -#: core/docs/drf/viewsets.py:672 +#: engine/core/docs/drf/viewsets.py:688 msgid "list all brands (simple view)" msgstr "แสดงรายการทั้งหมดของแบรนด์ (มุมมองแบบง่าย)" -#: core/docs/drf/viewsets.py:676 +#: engine/core/docs/drf/viewsets.py:692 msgid "retrieve a single brand (detailed view)" msgstr "ดึงข้อมูลแบรนด์เดียว (มุมมองรายละเอียด)" -#: core/docs/drf/viewsets.py:680 +#: engine/core/docs/drf/viewsets.py:697 engine/core/docs/drf/viewsets.py:725 +msgid "Brand UUID or slug" +msgstr "แบรนด์ UUID หรือ slug" + +#: engine/core/docs/drf/viewsets.py:704 msgid "create a brand" msgstr "สร้างแบรนด์" -#: core/docs/drf/viewsets.py:684 +#: engine/core/docs/drf/viewsets.py:708 msgid "delete a brand" msgstr "ลบแบรนด์" -#: core/docs/drf/viewsets.py:688 +#: engine/core/docs/drf/viewsets.py:712 msgid "rewrite an existing brand saving non-editables" msgstr "เขียนใหม่แบรนด์ที่มีอยู่โดยไม่แก้ไขส่วนที่ไม่สามารถแก้ไขได้" -#: core/docs/drf/viewsets.py:692 +#: engine/core/docs/drf/viewsets.py:716 msgid "rewrite some fields of an existing brand saving non-editables" -msgstr "" -"เขียนข้อมูลในบางช่องของแบรนด์ที่มีอยู่ใหม่ " -"โดยเก็บรักษาข้อมูลที่ไม่สามารถแก้ไขได้" +msgstr "เขียนข้อมูลในบางช่องของแบรนด์ที่มีอยู่ใหม่ โดยเก็บรักษาข้อมูลที่ไม่สามารถแก้ไขได้" -#: core/docs/drf/viewsets.py:696 +#: engine/core/docs/drf/viewsets.py:720 msgid "SEO Meta snapshot for brand" msgstr "SEO Meta snapshot สำหรับแบรนด์" -#: core/docs/drf/viewsets.py:703 +#: engine/core/docs/drf/viewsets.py:735 msgid "list all vendors (simple view)" msgstr "แสดงรายชื่อผู้จำหน่ายทั้งหมด (มุมมองแบบง่าย)" -#: core/docs/drf/viewsets.py:707 +#: engine/core/docs/drf/viewsets.py:739 msgid "retrieve a single vendor (detailed view)" msgstr "ดึงข้อมูลผู้ขายรายเดียว (มุมมองรายละเอียด)" -#: core/docs/drf/viewsets.py:711 +#: engine/core/docs/drf/viewsets.py:743 msgid "create a vendor" msgstr "สร้างผู้ขาย" -#: core/docs/drf/viewsets.py:715 +#: engine/core/docs/drf/viewsets.py:747 msgid "delete a vendor" msgstr "ลบผู้ขาย" -#: core/docs/drf/viewsets.py:719 +#: engine/core/docs/drf/viewsets.py:751 msgid "rewrite an existing vendor saving non-editables" msgstr "เขียนใหม่ผู้ขายที่มีอยู่โดยเก็บรักษาข้อมูลที่ไม่สามารถแก้ไขได้" -#: core/docs/drf/viewsets.py:723 +#: engine/core/docs/drf/viewsets.py:755 msgid "rewrite some fields of an existing vendor saving non-editables" -msgstr "" -"เขียนข้อมูลในบางช่องของซัพพลายเออร์ที่มีอยู่แล้วใหม่ " -"โดยเก็บค่าที่ไม่สามารถแก้ไขได้ไว้" +msgstr "เขียนข้อมูลในบางช่องของซัพพลายเออร์ที่มีอยู่แล้วใหม่ โดยเก็บค่าที่ไม่สามารถแก้ไขได้ไว้" -#: core/docs/drf/viewsets.py:730 +#: engine/core/docs/drf/viewsets.py:762 msgid "list all product images (simple view)" msgstr "แสดงภาพสินค้าทั้งหมด (มุมมองแบบง่าย)" -#: core/docs/drf/viewsets.py:734 +#: engine/core/docs/drf/viewsets.py:766 msgid "retrieve a single product image (detailed view)" msgstr "ดึงภาพสินค้าเพียงหนึ่งรายการ (มุมมองรายละเอียด)" -#: core/docs/drf/viewsets.py:738 +#: engine/core/docs/drf/viewsets.py:770 msgid "create a product image" msgstr "สร้างภาพสินค้า" -#: core/docs/drf/viewsets.py:742 +#: engine/core/docs/drf/viewsets.py:774 msgid "delete a product image" msgstr "ลบรูปภาพสินค้า" -#: core/docs/drf/viewsets.py:746 +#: engine/core/docs/drf/viewsets.py:778 msgid "rewrite an existing product image saving non-editables" msgstr "เขียนภาพสินค้าที่มีอยู่ใหม่โดยเก็บส่วนที่ไม่สามารถแก้ไขได้" -#: core/docs/drf/viewsets.py:750 +#: engine/core/docs/drf/viewsets.py:782 msgid "rewrite some fields of an existing product image saving non-editables" -msgstr "" -"เขียนข้อมูลบางส่วนของภาพสินค้าที่มีอยู่ใหม่ " -"โดยเก็บรักษาข้อมูลที่ไม่สามารถแก้ไขได้" +msgstr "เขียนข้อมูลบางส่วนของภาพสินค้าที่มีอยู่ใหม่ โดยเก็บรักษาข้อมูลที่ไม่สามารถแก้ไขได้" -#: core/docs/drf/viewsets.py:757 +#: engine/core/docs/drf/viewsets.py:789 msgid "list all promo codes (simple view)" msgstr "แสดงรายการรหัสโปรโมชั่นทั้งหมด (มุมมองแบบง่าย)" -#: core/docs/drf/viewsets.py:761 +#: engine/core/docs/drf/viewsets.py:793 msgid "retrieve a single promo code (detailed view)" msgstr "ดึงรหัสโปรโมชั่นเพียงหนึ่งรายการ (มุมมองแบบละเอียด)" -#: core/docs/drf/viewsets.py:765 +#: engine/core/docs/drf/viewsets.py:797 msgid "create a promo code" msgstr "สร้างรหัสโปรโมชั่น" -#: core/docs/drf/viewsets.py:769 +#: engine/core/docs/drf/viewsets.py:801 msgid "delete a promo code" msgstr "ลบโค้ดโปรโมชั่น" -#: core/docs/drf/viewsets.py:773 +#: engine/core/docs/drf/viewsets.py:805 msgid "rewrite an existing promo code saving non-editables" msgstr "เขียนโค้ดโปรโมชั่นใหม่โดยคงส่วนที่ไม่สามารถแก้ไขได้ไว้" -#: core/docs/drf/viewsets.py:777 +#: engine/core/docs/drf/viewsets.py:809 msgid "rewrite some fields of an existing promo code saving non-editables" -msgstr "" -"เขียนฟิลด์บางส่วนของรหัสโปรโมชั่นที่มีอยู่ใหม่ " -"โดยคงค่าที่ไม่สามารถแก้ไขได้ไว้" +msgstr "เขียนฟิลด์บางส่วนของรหัสโปรโมชั่นที่มีอยู่ใหม่ โดยคงค่าที่ไม่สามารถแก้ไขได้ไว้" -#: core/docs/drf/viewsets.py:784 +#: engine/core/docs/drf/viewsets.py:816 msgid "list all promotions (simple view)" msgstr "รายการโปรโมชั่นทั้งหมด (มุมมองแบบง่าย)" -#: core/docs/drf/viewsets.py:788 +#: engine/core/docs/drf/viewsets.py:820 msgid "retrieve a single promotion (detailed view)" msgstr "ดึงข้อมูลโปรโมชั่นเดียว (มุมมองรายละเอียด)" -#: core/docs/drf/viewsets.py:792 +#: engine/core/docs/drf/viewsets.py:824 msgid "create a promotion" msgstr "สร้างโปรโมชั่น" -#: core/docs/drf/viewsets.py:796 +#: engine/core/docs/drf/viewsets.py:828 msgid "delete a promotion" msgstr "ลบโปรโมชั่น" -#: core/docs/drf/viewsets.py:800 +#: engine/core/docs/drf/viewsets.py:832 msgid "rewrite an existing promotion saving non-editables" msgstr "เขียนโปรโมชั่นใหม่โดยคงส่วนที่ไม่สามารถแก้ไขได้ไว้" -#: core/docs/drf/viewsets.py:804 +#: engine/core/docs/drf/viewsets.py:836 msgid "rewrite some fields of an existing promotion saving non-editables" -msgstr "" -"เขียนข้อมูลบางส่วนของโปรโมชั่นที่มีอยู่ใหม่ " -"โดยเก็บรักษาข้อมูลที่ไม่สามารถแก้ไขได้" +msgstr "เขียนข้อมูลบางส่วนของโปรโมชั่นที่มีอยู่ใหม่ โดยเก็บรักษาข้อมูลที่ไม่สามารถแก้ไขได้" -#: core/docs/drf/viewsets.py:811 +#: engine/core/docs/drf/viewsets.py:843 msgid "list all stocks (simple view)" msgstr "แสดงรายการหุ้นทั้งหมด (มุมมองแบบง่าย)" -#: core/docs/drf/viewsets.py:815 +#: engine/core/docs/drf/viewsets.py:847 msgid "retrieve a single stock (detailed view)" msgstr "ดึงข้อมูลสินค้าคงคลังหนึ่งรายการ (มุมมองรายละเอียด)" -#: core/docs/drf/viewsets.py:819 +#: engine/core/docs/drf/viewsets.py:851 msgid "create a stock record" msgstr "สร้างบันทึกสินค้าคงคลัง" -#: core/docs/drf/viewsets.py:823 +#: engine/core/docs/drf/viewsets.py:855 msgid "delete a stock record" msgstr "ลบข้อมูลสินค้าคงคลัง" -#: core/docs/drf/viewsets.py:827 +#: engine/core/docs/drf/viewsets.py:859 msgid "rewrite an existing stock record saving non-editables" msgstr "เขียนบันทึกสต็อกที่มีอยู่ใหม่โดยบันทึกข้อมูลที่ไม่สามารถแก้ไขได้" -#: core/docs/drf/viewsets.py:831 +#: engine/core/docs/drf/viewsets.py:863 msgid "rewrite some fields of an existing stock record saving non-editables" -msgstr "" -"เขียนฟิลด์บางส่วนของบันทึกสต็อกที่มีอยู่ใหม่ " -"โดยบันทึกข้อมูลที่ไม่สามารถแก้ไขได้" +msgstr "เขียนฟิลด์บางส่วนของบันทึกสต็อกที่มีอยู่ใหม่ โดยบันทึกข้อมูลที่ไม่สามารถแก้ไขได้" -#: core/docs/drf/viewsets.py:838 +#: engine/core/docs/drf/viewsets.py:870 msgid "list all product tags (simple view)" msgstr "แสดงแท็กสินค้าทั้งหมด (มุมมองแบบง่าย)" -#: core/docs/drf/viewsets.py:842 +#: engine/core/docs/drf/viewsets.py:874 msgid "retrieve a single product tag (detailed view)" msgstr "ดึงแท็กสินค้าหนึ่งรายการ (มุมมองรายละเอียด)" -#: core/docs/drf/viewsets.py:846 +#: engine/core/docs/drf/viewsets.py:878 msgid "create a product tag" msgstr "สร้างแท็กสินค้า" -#: core/docs/drf/viewsets.py:850 +#: engine/core/docs/drf/viewsets.py:882 msgid "delete a product tag" msgstr "ลบแท็กสินค้า" -#: core/docs/drf/viewsets.py:854 +#: engine/core/docs/drf/viewsets.py:886 msgid "rewrite an existing product tag saving non-editables" msgstr "เขียนแท็กสินค้าที่มีอยู่ใหม่โดยเก็บส่วนที่ไม่สามารถแก้ไขได้" -#: core/docs/drf/viewsets.py:858 +#: engine/core/docs/drf/viewsets.py:890 msgid "rewrite some fields of an existing product tag saving non-editables" -msgstr "" -"เขียนข้อมูลบางส่วนของแท็กสินค้าที่มีอยู่แล้วใหม่ " -"โดยบันทึกข้อมูลที่ไม่สามารถแก้ไขได้" +msgstr "เขียนข้อมูลบางส่วนของแท็กสินค้าที่มีอยู่แล้วใหม่ โดยบันทึกข้อมูลที่ไม่สามารถแก้ไขได้" -#: core/elasticsearch/__init__.py:118 core/elasticsearch/__init__.py:550 +#: engine/core/elasticsearch/__init__.py:122 +#: engine/core/elasticsearch/__init__.py:570 msgid "no search term provided." msgstr "ไม่พบคำค้นหา" -#: core/filters.py:69 core/filters.py:412 core/filters.py:539 +#: engine/core/filters.py:69 engine/core/filters.py:426 +#: engine/core/filters.py:553 msgid "Search" msgstr "ค้นหา" -#: core/filters.py:70 core/filters.py:569 core/filters.py:598 +#: engine/core/filters.py:70 engine/core/filters.py:583 +#: engine/core/filters.py:612 msgid "UUID" msgstr "ยูไอไอดี" -#: core/filters.py:71 core/filters.py:414 core/filters.py:541 +#: engine/core/filters.py:71 engine/core/filters.py:428 +#: engine/core/filters.py:555 msgid "Name" msgstr "ชื่อ" -#: core/filters.py:72 core/filters.py:543 +#: engine/core/filters.py:72 engine/core/filters.py:557 msgid "Categories" msgstr "หมวดหมู่" -#: core/filters.py:74 +#: engine/core/filters.py:74 msgid "Categories Slugs" msgstr "หมวดหมู่ slug" -#: core/filters.py:75 core/filters.py:422 +#: engine/core/filters.py:75 engine/core/filters.py:436 msgid "Tags" msgstr "แท็ก" -#: core/filters.py:76 +#: engine/core/filters.py:76 msgid "Min Price" msgstr "ราคาต่ำสุด" -#: core/filters.py:77 +#: engine/core/filters.py:77 msgid "Max Price" msgstr "ราคาสูงสุด" -#: core/filters.py:78 +#: engine/core/filters.py:78 msgid "Is Active" msgstr "กำลังใช้งานอยู่" -#: core/filters.py:79 +#: engine/core/filters.py:79 msgid "Brand" msgstr "แบรนด์" -#: core/filters.py:80 +#: engine/core/filters.py:80 msgid "Attributes" msgstr "คุณลักษณะ" -#: core/filters.py:81 +#: engine/core/filters.py:81 msgid "Quantity" msgstr "ปริมาณ" -#: core/filters.py:82 core/filters.py:416 core/filters.py:542 -#: core/models.py:322 core/models.py:483 core/models.py:637 +#: engine/core/filters.py:82 engine/core/filters.py:430 +#: engine/core/filters.py:556 engine/core/models.py:321 +#: engine/core/models.py:482 engine/core/models.py:637 msgid "Slug" msgstr "ทาก" -#: core/filters.py:83 +#: engine/core/filters.py:83 msgid "Is Digital" msgstr "คือ ดิจิทัล" -#: core/filters.py:84 +#: engine/core/filters.py:84 msgid "Include sub-categories" msgstr "รวมหมวดหมู่ย่อย" -#: core/filters.py:87 +#: engine/core/filters.py:87 msgid "Include personal ordered" msgstr "รวมสินค้าสั่งทำส่วนตัว" -#: core/filters.py:89 core/models.py:641 +#: engine/core/filters.py:89 engine/core/models.py:641 msgid "SKU" msgstr "SKU" -#: core/filters.py:173 +#: engine/core/filters.py:184 msgid "there must be a category_uuid to use include_subcategories flag" msgstr "ต้องมี category_uuid เพื่อใช้แฟล็ก include_subcategories" -#: core/filters.py:339 +#: engine/core/filters.py:353 msgid "Search (ID, product name or part number)" msgstr "ค้นหา (รหัส, ชื่อผลิตภัณฑ์ หรือหมายเลขชิ้นส่วน)" -#: core/filters.py:342 +#: engine/core/filters.py:356 msgid "Bought after (inclusive)" msgstr "ซื้อหลังจาก (รวมแล้ว)" -#: core/filters.py:343 +#: engine/core/filters.py:357 msgid "Bought before (inclusive)" msgstr "ซื้อมาก่อน (รวมแล้ว)" -#: core/filters.py:346 core/filters.py:393 core/filters.py:600 +#: engine/core/filters.py:360 engine/core/filters.py:407 +#: engine/core/filters.py:614 msgid "User email" msgstr "อีเมลผู้ใช้" -#: core/filters.py:347 core/filters.py:394 core/filters.py:578 -#: core/filters.py:599 +#: engine/core/filters.py:361 engine/core/filters.py:408 +#: engine/core/filters.py:592 engine/core/filters.py:613 msgid "User UUID" msgstr "รหัสผู้ใช้ UUID" -#: core/filters.py:348 +#: engine/core/filters.py:362 msgid "Status" msgstr "สถานะ" -#: core/filters.py:352 +#: engine/core/filters.py:366 msgid "Human Readable ID" msgstr "รหัสที่มนุษย์อ่านได้" -#: core/filters.py:415 +#: engine/core/filters.py:429 msgid "Parent" msgstr "ผู้ปกครอง" -#: core/filters.py:419 +#: engine/core/filters.py:433 msgid "Whole category(has at least 1 product or not)" msgstr "หมวดหมู่ทั้งหมด (มีอย่างน้อย 1 ผลิตภัณฑ์หรือไม่)" -#: core/filters.py:423 +#: engine/core/filters.py:437 msgid "Level" msgstr "ระดับ" -#: core/filters.py:573 +#: engine/core/filters.py:587 msgid "Product UUID" msgstr "รหัส UUID ของผลิตภัณฑ์" -#: core/graphene/mutations.py:41 +#: engine/core/graphene/mutations.py:41 msgid "key to look for in or set into the cache" msgstr "กุญแจที่ต้องค้นหาหรือติดตั้งไว้ในแคช" -#: core/graphene/mutations.py:42 +#: engine/core/graphene/mutations.py:42 msgid "data to store in cache" msgstr "ข้อมูลที่จะเก็บไว้ในแคช" -#: core/graphene/mutations.py:45 +#: engine/core/graphene/mutations.py:45 msgid "timeout in seconds to set the data for into the cache" msgstr "เวลาหมดในวินาทีเพื่อตั้งค่าข้อมูลสำหรับเก็บในแคช" -#: core/graphene/mutations.py:48 +#: engine/core/graphene/mutations.py:48 msgid "cached data" msgstr "ข้อมูลที่เก็บไว้ในแคช" -#: core/graphene/mutations.py:63 +#: engine/core/graphene/mutations.py:63 msgid "camelized JSON data from the requested URL" msgstr "ข้อมูล JSON ที่ผ่านการคาราเมลไลซ์จาก URL ที่ร้องขอ" -#: core/graphene/mutations.py:68 core/views.py:232 +#: engine/core/graphene/mutations.py:68 engine/core/views.py:231 msgid "only URLs starting with http(s):// are allowed" msgstr "อนุญาตเฉพาะ URL ที่ขึ้นต้นด้วย http(s):// เท่านั้น" -#: core/graphene/mutations.py:84 +#: engine/core/graphene/mutations.py:84 msgid "add a product to the order" msgstr "เพิ่มสินค้าในคำสั่งซื้อ" -#: core/graphene/mutations.py:105 core/graphene/mutations.py:132 -#: core/graphene/mutations.py:240 core/graphene/mutations.py:288 +#: engine/core/graphene/mutations.py:105 engine/core/graphene/mutations.py:132 +#: engine/core/graphene/mutations.py:240 engine/core/graphene/mutations.py:288 #, python-brace-format msgid "order {order_uuid} not found" msgstr "ไม่พบคำสั่งซื้อ {order_uuid}!" -#: core/graphene/mutations.py:111 core/graphene/mutations.py:160 +#: engine/core/graphene/mutations.py:111 engine/core/graphene/mutations.py:160 msgid "remove a product from the order" msgstr "ลบสินค้าออกจากคำสั่งซื้อ" -#: core/graphene/mutations.py:138 +#: engine/core/graphene/mutations.py:138 msgid "remove all products from the order" msgstr "นำสินค้าทั้งหมดออกจากคำสั่งซื้อ" -#: core/graphene/mutations.py:183 +#: engine/core/graphene/mutations.py:183 msgid "buy an order" msgstr "ซื้อคำสั่ง" -#: core/graphene/mutations.py:212 core/graphene/mutations.py:266 +#: engine/core/graphene/mutations.py:212 engine/core/graphene/mutations.py:266 msgid "please provide either order_uuid or order_hr_id - mutually exclusive" -msgstr "" -"กรุณาให้ order_uuid หรือ order_hr_id - ต้องเลือกอย่างใดอย่างหนึ่งเท่านั้น!" +msgstr "กรุณาให้ order_uuid หรือ order_hr_id - ต้องเลือกอย่างใดอย่างหนึ่งเท่านั้น!" -#: core/graphene/mutations.py:237 core/graphene/mutations.py:502 -#: core/graphene/mutations.py:544 core/viewsets.py:704 +#: engine/core/graphene/mutations.py:237 engine/core/graphene/mutations.py:502 +#: engine/core/graphene/mutations.py:544 engine/core/viewsets.py:704 msgid "wrong type came from order.buy() method: {type(instance)!s}" msgstr "ประเภทไม่ถูกต้องมาจากเมธอด order.buy(): {type(instance)!s}" -#: core/graphene/mutations.py:246 +#: engine/core/graphene/mutations.py:246 msgid "perform an action on a list of products in the order" msgstr "ดำเนินการกับรายการสินค้าในลำดับ" -#: core/graphene/mutations.py:251 +#: engine/core/graphene/mutations.py:251 msgid "remove/add" msgstr "ลบ/เพิ่ม" -#: core/graphene/mutations.py:283 core/graphene/mutations.py:324 +#: engine/core/graphene/mutations.py:283 engine/core/graphene/mutations.py:324 msgid "action must be either add or remove" msgstr "การกระทำต้องเป็น \"เพิ่ม\" หรือ \"ลบ\"!" -#: core/graphene/mutations.py:294 +#: engine/core/graphene/mutations.py:294 msgid "perform an action on a list of products in the wishlist" msgstr "ดำเนินการกับรายการสินค้าในรายการสินค้าที่ต้องการ" -#: core/graphene/mutations.py:312 +#: engine/core/graphene/mutations.py:312 msgid "please provide wishlist_uuid value" msgstr "กรุณาให้ค่า `wishlist_uuid`" -#: core/graphene/mutations.py:329 core/graphene/mutations.py:405 -#: core/graphene/mutations.py:433 core/graphene/mutations.py:461 -#: core/graphene/mutations.py:505 +#: engine/core/graphene/mutations.py:329 engine/core/graphene/mutations.py:405 +#: engine/core/graphene/mutations.py:433 engine/core/graphene/mutations.py:461 +#: engine/core/graphene/mutations.py:505 #, python-brace-format msgid "wishlist {wishlist_uuid} not found" msgstr "รายการที่อยากได้ {wishlist_uuid} ไม่พบ!" -#: core/graphene/mutations.py:383 +#: engine/core/graphene/mutations.py:383 msgid "add a product to the wishlist" msgstr "เพิ่มสินค้าในคำสั่งซื้อ" -#: core/graphene/mutations.py:411 +#: engine/core/graphene/mutations.py:411 msgid "remove a product from the wishlist" msgstr "ลบสินค้าออกจากคำสั่งซื้อ" -#: core/graphene/mutations.py:439 +#: engine/core/graphene/mutations.py:439 msgid "remove all products from the wishlist" msgstr "ลบสินค้าออกจากคำสั่งซื้อ" -#: core/graphene/mutations.py:467 +#: engine/core/graphene/mutations.py:467 msgid "buy all products from the wishlist" msgstr "ลบสินค้าออกจากคำสั่งซื้อ" -#: core/graphene/mutations.py:511 +#: engine/core/graphene/mutations.py:511 msgid "buy a product" msgstr "ซื้อคำสั่ง" -#: core/graphene/mutations.py:517 +#: engine/core/graphene/mutations.py:517 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" -#: core/graphene/mutations.py:550 +#: engine/core/graphene/mutations.py:550 msgid "add or delete a feedback for orderproduct" msgstr "เพิ่มหรือลบความคิดเห็นสำหรับสินค้าที่สั่งซื้อ" -#: core/graphene/mutations.py:574 +#: engine/core/graphene/mutations.py:574 msgid "action must be either `add` or `remove`" msgstr "การกระทำต้องเป็น `add` หรือ `remove` เท่านั้น!" -#: core/graphene/mutations.py:577 +#: engine/core/graphene/mutations.py:577 #, python-brace-format msgid "order product {order_product_uuid} not found" msgstr "ไม่พบคำสั่งซื้อสินค้า {order_product_uuid}!" -#: core/graphene/mutations.py:644 +#: engine/core/graphene/mutations.py:644 msgid "original address string provided by the user" msgstr "สตริงที่อยู่ต้นฉบับที่ผู้ใช้ให้มา" -#: core/graphene/mutations.py:680 core/models.py:930 core/models.py:943 -#: core/models.py:1358 core/models.py:1387 core/models.py:1412 -#: core/viewsets.py:707 +#: engine/core/graphene/mutations.py:680 engine/core/models.py:941 +#: engine/core/models.py:954 engine/core/models.py:1369 +#: engine/core/models.py:1398 engine/core/models.py:1423 +#: engine/core/viewsets.py:707 #, python-brace-format msgid "{name} does not exist: {uuid}" msgstr "{name} ไม่พบ: {uuid}!" -#: core/graphene/mutations.py:694 +#: engine/core/graphene/mutations.py:694 msgid "limit must be between 1 and 10" msgstr "ต้องอยู่ระหว่าง 1 ถึง 10" -#: core/graphene/mutations.py:743 +#: engine/core/graphene/mutations.py:743 msgid "elasticsearch - works like a charm" msgstr "ElasticSearch - ทำงานได้อย่างยอดเยี่ยม" -#: core/graphene/object_types.py:82 core/graphene/object_types.py:370 -#: core/graphene/object_types.py:417 core/models.py:754 core/models.py:1225 -#: core/models.py:1823 +#: engine/core/graphene/object_types.py:82 +#: engine/core/graphene/object_types.py:370 +#: engine/core/graphene/object_types.py:417 engine/core/models.py:765 +#: engine/core/models.py:1236 engine/core/models.py:1883 msgid "attributes" msgstr "คุณลักษณะ" -#: core/graphene/object_types.py:95 +#: engine/core/graphene/object_types.py:95 msgid "grouped attributes" msgstr "กลุ่มคุณสมบัติ" -#: core/graphene/object_types.py:102 +#: engine/core/graphene/object_types.py:102 msgid "groups of attributes" msgstr "กลุ่มของลักษณะ" -#: core/graphene/object_types.py:116 core/graphene/object_types.py:193 -#: core/graphene/object_types.py:223 core/models.py:426 +#: engine/core/graphene/object_types.py:116 +#: engine/core/graphene/object_types.py:193 +#: engine/core/graphene/object_types.py:223 engine/core/models.py:425 msgid "categories" msgstr "หมวดหมู่" -#: core/graphene/object_types.py:124 core/models.py:497 +#: engine/core/graphene/object_types.py:124 engine/core/models.py:496 msgid "brands" msgstr "แบรนด์" -#: core/graphene/object_types.py:195 +#: engine/core/graphene/object_types.py:195 msgid "category image url" msgstr "หมวดหมู่" -#: core/graphene/object_types.py:196 core/graphene/object_types.py:317 -#: core/models.py:284 +#: engine/core/graphene/object_types.py:196 +#: engine/core/graphene/object_types.py:317 engine/core/models.py:283 msgid "markup percentage" msgstr "เปอร์เซ็นต์มาร์กอัป" -#: core/graphene/object_types.py:199 +#: engine/core/graphene/object_types.py:199 msgid "which attributes and values can be used for filtering this category." msgstr "คุณลักษณะและคุณค่าใดที่สามารถใช้สำหรับกรองหมวดหมู่นี้ได้" -#: core/graphene/object_types.py:203 -msgid "" -"minimum and maximum prices for products in this category, if available." +#: engine/core/graphene/object_types.py:203 +msgid "minimum and maximum prices for products in this category, if available." msgstr "ราคาต่ำสุดและราคาสูงสุดสำหรับสินค้าในหมวดนี้ (หากมี)" -#: core/graphene/object_types.py:205 +#: engine/core/graphene/object_types.py:205 msgid "tags for this category" msgstr "แท็กสำหรับหมวดหมู่นี้" -#: core/graphene/object_types.py:206 +#: engine/core/graphene/object_types.py:206 msgid "products in this category" msgstr "สินค้าในหมวดหมู่" -#: core/graphene/object_types.py:324 core/models.py:189 +#: engine/core/graphene/object_types.py:324 engine/core/models.py:188 msgid "vendors" msgstr "ผู้ขาย" -#: core/graphene/object_types.py:328 +#: engine/core/graphene/object_types.py:328 msgid "Latitude (Y coordinate)" msgstr "ละติจูด (พิกัด Y)" -#: core/graphene/object_types.py:329 +#: engine/core/graphene/object_types.py:329 msgid "Longitude (X coordinate)" msgstr "ลองจิจูด (พิกัด X)" -#: core/graphene/object_types.py:358 +#: engine/core/graphene/object_types.py:358 msgid "comment" msgstr "อย่างไร" -#: core/graphene/object_types.py:359 core/graphene/object_types.py:483 +#: engine/core/graphene/object_types.py:359 +#: engine/core/graphene/object_types.py:483 msgid "rating value from 1 to 10, inclusive, or 0 if not set." msgstr "ให้คะแนนตั้งแต่ 1 ถึง 10 รวมทั้งสองค่า หรือ 0 หากไม่ได้กำหนด" -#: core/graphene/object_types.py:366 +#: engine/core/graphene/object_types.py:366 msgid "represents feedback from a user." msgstr "แสดงความคิดเห็นจากผู้ใช้" -#: core/graphene/object_types.py:371 core/graphene/object_types.py:418 -#: core/models.py:1219 +#: engine/core/graphene/object_types.py:371 +#: engine/core/graphene/object_types.py:418 engine/core/models.py:1230 msgid "notifications" msgstr "การแจ้งเตือน" -#: core/graphene/object_types.py:372 +#: engine/core/graphene/object_types.py:372 msgid "download url for this order product if applicable" msgstr "ดาวน์โหลด url สำหรับคำสั่งซื้อสินค้านี้ หากมี" -#: core/graphene/object_types.py:373 core/models.py:1939 +#: engine/core/graphene/object_types.py:373 engine/core/models.py:1722 msgid "feedback" msgstr "ข้อเสนอแนะ" -#: core/graphene/object_types.py:407 +#: engine/core/graphene/object_types.py:407 msgid "a list of order products in this order" msgstr "รายการสินค้าที่สั่งซื้อในคำสั่งซื้อนี้" -#: core/graphene/object_types.py:409 core/models.py:1189 +#: engine/core/graphene/object_types.py:409 engine/core/models.py:1200 msgid "billing address" msgstr "ที่อยู่สำหรับออกใบแจ้งหนี้" -#: core/graphene/object_types.py:412 +#: engine/core/graphene/object_types.py:412 msgid "" "shipping address for this order, leave blank if same as billing address or " "if not applicable" @@ -1279,228 +1260,235 @@ msgstr "" "ที่อยู่สำหรับจัดส่งสำหรับคำสั่งซื้อนี้, " "ปล่อยว่างไว้หากเป็นที่อยู่เดียวกับที่อยู่สำหรับเรียกเก็บเงินหรือหากไม่เกี่ยวข้อง" -#: core/graphene/object_types.py:414 +#: engine/core/graphene/object_types.py:414 msgid "total price of this order" msgstr "ราคาทั้งหมดของคำสั่งซื้อนี้" -#: core/graphene/object_types.py:415 +#: engine/core/graphene/object_types.py:415 msgid "total quantity of products in order" msgstr "จำนวนรวมของผลิตภัณฑ์ในคำสั่งซื้อ" -#: core/graphene/object_types.py:416 +#: engine/core/graphene/object_types.py:416 msgid "are all products in the order digital" msgstr "สินค้าทั้งหมดในคำสั่งซื้อนี้เป็นสินค้าดิจิทัลหรือไม่" -#: core/graphene/object_types.py:419 +#: engine/core/graphene/object_types.py:419 msgid "transactions for this order" msgstr "รายการธุรกรรมสำหรับคำสั่งนี้" -#: core/graphene/object_types.py:438 core/models.py:1253 +#: engine/core/graphene/object_types.py:438 engine/core/models.py:1264 msgid "orders" msgstr "คำสั่ง" -#: core/graphene/object_types.py:459 +#: engine/core/graphene/object_types.py:459 msgid "image url" msgstr "URL ของรูปภาพ" -#: core/graphene/object_types.py:466 +#: engine/core/graphene/object_types.py:466 msgid "product's images" msgstr "รูปภาพของสินค้า" -#: core/graphene/object_types.py:473 core/models.py:425 core/models.py:579 +#: engine/core/graphene/object_types.py:473 engine/core/models.py:424 +#: engine/core/models.py:579 msgid "category" msgstr "หมวดหมู่" -#: core/graphene/object_types.py:475 core/models.py:1940 +#: engine/core/graphene/object_types.py:475 engine/core/models.py:1723 msgid "feedbacks" msgstr "ข้อเสนอแนะ" -#: core/graphene/object_types.py:476 core/models.py:496 core/models.py:588 +#: engine/core/graphene/object_types.py:476 engine/core/models.py:495 +#: engine/core/models.py:588 msgid "brand" msgstr "แบรนด์" -#: core/graphene/object_types.py:477 core/models.py:107 +#: engine/core/graphene/object_types.py:477 engine/core/models.py:106 msgid "attribute groups" msgstr "กลุ่มคุณลักษณะ" -#: core/graphene/object_types.py:478 -#: core/templates/digital_order_created_email.html:111 -#: core/templates/digital_order_delivered_email.html:109 -#: core/templates/shipped_order_created_email.html:109 -#: core/templates/shipped_order_delivered_email.html:109 +#: engine/core/graphene/object_types.py:478 +#: engine/core/templates/digital_order_created_email.html:111 +#: engine/core/templates/digital_order_delivered_email.html:109 +#: engine/core/templates/shipped_order_created_email.html:109 +#: engine/core/templates/shipped_order_delivered_email.html:109 msgid "price" msgstr "ราคา" -#: core/graphene/object_types.py:479 -#: core/templates/digital_order_created_email.html:110 -#: core/templates/digital_order_delivered_email.html:108 -#: core/templates/shipped_order_created_email.html:108 -#: core/templates/shipped_order_delivered_email.html:108 +#: engine/core/graphene/object_types.py:479 +#: engine/core/templates/digital_order_created_email.html:110 +#: engine/core/templates/digital_order_delivered_email.html:108 +#: engine/core/templates/shipped_order_created_email.html:108 +#: engine/core/templates/shipped_order_delivered_email.html:108 msgid "quantity" msgstr "ปริมาณ" -#: core/graphene/object_types.py:480 +#: engine/core/graphene/object_types.py:480 msgid "number of feedbacks" msgstr "จำนวนความคิดเห็น" -#: core/graphene/object_types.py:481 +#: engine/core/graphene/object_types.py:481 msgid "only available for personal orders" msgstr "สินค้าที่มีจำหน่ายเฉพาะการสั่งซื้อส่วนบุคคลเท่านั้น" -#: core/graphene/object_types.py:507 core/models.py:651 +#: engine/core/graphene/object_types.py:484 +msgid "discount price" +msgstr "ราคาลดพิเศษ" + +#: engine/core/graphene/object_types.py:508 engine/core/models.py:651 msgid "products" msgstr "ผลิตภัณฑ์" -#: core/graphene/object_types.py:607 +#: engine/core/graphene/object_types.py:611 msgid "promocodes" msgstr "รหัสส่งเสริมการขาย" -#: core/graphene/object_types.py:617 +#: engine/core/graphene/object_types.py:621 msgid "products on sale" msgstr "สินค้าลดราคา" -#: core/graphene/object_types.py:624 core/models.py:879 +#: engine/core/graphene/object_types.py:628 engine/core/models.py:890 msgid "promotions" msgstr "โปรโมชั่น" -#: core/graphene/object_types.py:628 core/models.py:188 +#: engine/core/graphene/object_types.py:632 engine/core/models.py:187 msgid "vendor" msgstr "ผู้ขาย" -#: core/graphene/object_types.py:629 core/models.py:650 -#: core/templates/digital_order_created_email.html:109 -#: core/templates/digital_order_delivered_email.html:107 -#: core/templates/shipped_order_created_email.html:107 -#: core/templates/shipped_order_delivered_email.html:107 +#: engine/core/graphene/object_types.py:633 engine/core/models.py:650 +#: 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 +#: engine/core/templates/shipped_order_delivered_email.html:107 msgid "product" msgstr "สินค้า" -#: core/graphene/object_types.py:640 core/models.py:902 +#: engine/core/graphene/object_types.py:644 engine/core/models.py:913 msgid "wishlisted products" msgstr "สินค้าที่อยู่ในรายการต้องการ" -#: core/graphene/object_types.py:646 core/models.py:919 +#: engine/core/graphene/object_types.py:650 engine/core/models.py:930 msgid "wishlists" msgstr "รายการสิ่งที่ต้องการ" -#: core/graphene/object_types.py:650 +#: engine/core/graphene/object_types.py:654 msgid "tagged products" msgstr "สินค้าที่ติดแท็ก" -#: core/graphene/object_types.py:657 core/models.py:225 core/models.py:594 +#: engine/core/graphene/object_types.py:661 engine/core/models.py:224 +#: engine/core/models.py:594 msgid "product tags" msgstr "แท็กสินค้า" -#: core/graphene/object_types.py:661 +#: engine/core/graphene/object_types.py:665 msgid "tagged categories" msgstr "หมวดหมู่ที่ถูกติดแท็ก" -#: core/graphene/object_types.py:668 +#: engine/core/graphene/object_types.py:672 msgid "categories tags" msgstr "หมวดหมู่' แท็ก" -#: core/graphene/object_types.py:672 +#: engine/core/graphene/object_types.py:676 msgid "project name" msgstr "ชื่อโครงการ" -#: core/graphene/object_types.py:673 +#: engine/core/graphene/object_types.py:677 msgid "company email" msgstr "อีเมลบริษัท" -#: core/graphene/object_types.py:674 +#: engine/core/graphene/object_types.py:678 msgid "company name" msgstr "ชื่อบริษัท" -#: core/graphene/object_types.py:675 +#: engine/core/graphene/object_types.py:679 msgid "company address" msgstr "ที่อยู่บริษัท" -#: core/graphene/object_types.py:676 +#: engine/core/graphene/object_types.py:680 msgid "company phone number" msgstr "หมายเลขโทรศัพท์บริษัท" -#: core/graphene/object_types.py:677 +#: engine/core/graphene/object_types.py:681 msgid "email from, sometimes it must be used instead of host user value" msgstr "'อีเมลจาก', บางครั้งจำเป็นต้องใช้แทนค่าผู้ใช้โฮสต์" -#: core/graphene/object_types.py:678 +#: engine/core/graphene/object_types.py:682 msgid "email host user" msgstr "ผู้ใช้โฮสต์อีเมล" -#: core/graphene/object_types.py:679 +#: engine/core/graphene/object_types.py:683 msgid "maximum amount for payment" msgstr "จำนวนเงินสูงสุดสำหรับการชำระเงิน" -#: core/graphene/object_types.py:680 +#: engine/core/graphene/object_types.py:684 msgid "minimum amount for payment" msgstr "จำนวนเงินขั้นต่ำสำหรับการชำระเงิน" -#: core/graphene/object_types.py:681 +#: engine/core/graphene/object_types.py:685 msgid "analytics data" msgstr "ข้อมูลการวิเคราะห์" -#: core/graphene/object_types.py:682 +#: engine/core/graphene/object_types.py:686 msgid "advertisement data" msgstr "ข้อมูลโฆษณา" -#: core/graphene/object_types.py:685 +#: engine/core/graphene/object_types.py:689 msgid "company configuration" msgstr "การกำหนดค่า" -#: core/graphene/object_types.py:689 +#: engine/core/graphene/object_types.py:693 msgid "language code" msgstr "รหัสภาษา" -#: core/graphene/object_types.py:690 +#: engine/core/graphene/object_types.py:694 msgid "language name" msgstr "ชื่อภาษา" -#: core/graphene/object_types.py:691 +#: engine/core/graphene/object_types.py:695 msgid "language flag, if exists :)" msgstr "ธงภาษา, หากมีอยู่ :)" -#: core/graphene/object_types.py:694 +#: engine/core/graphene/object_types.py:698 msgid "supported languages" msgstr "รับรายการภาษาที่รองรับ" -#: core/graphene/object_types.py:725 core/graphene/object_types.py:726 -#: core/graphene/object_types.py:727 +#: engine/core/graphene/object_types.py:729 +#: engine/core/graphene/object_types.py:730 +#: engine/core/graphene/object_types.py:731 msgid "products search results" msgstr "ผลการค้นหาสินค้า" -#: core/graphene/object_types.py:728 +#: engine/core/graphene/object_types.py:732 msgid "posts search results" msgstr "ผลการค้นหาสินค้า" -#: core/models.py:76 +#: engine/core/models.py:75 msgid "" "Represents a group of attributes, which can be hierarchical. This class is " "used to manage and organize attribute groups. An attribute group can have a " "parent group, forming a hierarchical structure. This can be useful for " "categorizing and managing attributes more effectively in acomplex system." msgstr "" -"แทนกลุ่มของแอตทริบิวต์ ซึ่งสามารถมีลำดับชั้นได้ " -"คลาสนี้ใช้เพื่อจัดการและจัดระเบียบกลุ่มแอตทริบิวต์ " +"แทนกลุ่มของแอตทริบิวต์ ซึ่งสามารถมีลำดับชั้นได้ คลาสนี้ใช้เพื่อจัดการและจัดระเบียบกลุ่มแอตทริบิวต์ " "กลุ่มแอตทริบิวต์สามารถมีกลุ่มแม่ได้ ทำให้เกิดโครงสร้างลำดับชั้น " "ซึ่งสามารถมีประโยชน์ในการจัดหมวดหมู่และจัดการแอตทริบิวต์ได้อย่างมีประสิทธิภาพมากขึ้นในระบบที่ซับซ้อน" -#: core/models.py:92 +#: engine/core/models.py:91 msgid "parent of this group" msgstr "ผู้ปกครองของกลุ่มนี้" -#: core/models.py:93 +#: engine/core/models.py:92 msgid "parent attribute group" msgstr "กลุ่มแอตทริบิวต์ของพ่อแม่" -#: core/models.py:97 core/models.py:98 +#: engine/core/models.py:96 engine/core/models.py:97 msgid "attribute group's name" msgstr "ชื่อกลุ่มคุณสมบัติ" -#: core/models.py:106 core/models.py:716 +#: engine/core/models.py:105 engine/core/models.py:727 msgid "attribute group" msgstr "กลุ่มคุณลักษณะ" -#: core/models.py:112 +#: engine/core/models.py:111 msgid "" "Represents a vendor entity capable of storing information about external " "vendors and their interaction requirements. The Vendor class is used to " @@ -1510,55 +1498,54 @@ msgid "" "also maintains additional metadata and constraints, making it suitable for " "use in systems that interact with third-party vendors." msgstr "" -"แทนหน่วยงานผู้ขายที่สามารถจัดเก็บข้อมูลเกี่ยวกับผู้ขายภายนอกและข้อกำหนดในการโต้ตอบของพวกเขาได้" -" คลาสผู้ขายถูกใช้เพื่อกำหนดและจัดการข้อมูลที่เกี่ยวข้องกับผู้ขายภายนอก " -"มันจัดเก็บชื่อผู้ขาย รายละเอียดการตรวจสอบสิทธิ์ที่จำเป็นสำหรับการสื่อสาร " +"แทนหน่วยงานผู้ขายที่สามารถจัดเก็บข้อมูลเกี่ยวกับผู้ขายภายนอกและข้อกำหนดในการโต้ตอบของพวกเขาได้ " +"คลาสผู้ขายถูกใช้เพื่อกำหนดและจัดการข้อมูลที่เกี่ยวข้องกับผู้ขายภายนอก มันจัดเก็บชื่อผู้ขาย " +"รายละเอียดการตรวจสอบสิทธิ์ที่จำเป็นสำหรับการสื่อสาร " "และเปอร์เซ็นต์การเพิ่มราคาที่นำไปใช้กับสินค้าที่นำมาจากผู้ขาย " "โมเดลนี้ยังรักษาข้อมูลเมตาเพิ่มเติมและข้อจำกัด " "ทำให้เหมาะสำหรับการใช้งานในระบบที่มีการโต้ตอบกับผู้ขายภายนอก" -#: core/models.py:125 +#: engine/core/models.py:124 msgid "stores credentials and endpoints required for vendor communication" -msgstr "" -"เก็บรักษาข้อมูลประจำตัวและจุดสิ้นสุดที่จำเป็นสำหรับการสื่อสาร API ของผู้ขาย" +msgstr "เก็บรักษาข้อมูลประจำตัวและจุดสิ้นสุดที่จำเป็นสำหรับการสื่อสาร API ของผู้ขาย" -#: core/models.py:126 +#: engine/core/models.py:125 msgid "authentication info" msgstr "ข้อมูลการยืนยันตัวตน" -#: core/models.py:131 +#: engine/core/models.py:130 msgid "define the markup for products retrieved from this vendor" msgstr "กำหนดมาร์กอัปสำหรับสินค้าที่ดึงมาจากผู้ขายรายนี้" -#: core/models.py:132 +#: engine/core/models.py:131 msgid "vendor markup percentage" msgstr "เปอร์เซ็นต์การบวกกำไรของผู้ขาย" -#: core/models.py:136 +#: engine/core/models.py:135 msgid "name of this vendor" msgstr "ชื่อของผู้ขายนี้" -#: core/models.py:137 +#: engine/core/models.py:136 msgid "vendor name" msgstr "ชื่อผู้ขาย" -#: core/models.py:148 +#: engine/core/models.py:147 msgid "response file" msgstr "ไฟล์การตอบสนอง" -#: core/models.py:149 +#: engine/core/models.py:148 msgid "vendor's last processing response" msgstr "การตอบกลับการประมวลผลครั้งสุดท้ายของผู้ขาย" -#: core/models.py:155 +#: engine/core/models.py:154 msgid "vendor's integration file path" msgstr "เส้นทางไฟล์การรวมของผู้ขาย" -#: core/models.py:156 +#: engine/core/models.py:155 msgid "integration path" msgstr "เส้นทางการบูรณาการ" -#: core/models.py:198 +#: engine/core/models.py:197 msgid "" "Represents a product tag used for classifying or identifying products. The " "ProductTag class is designed to uniquely identify and classify products " @@ -1567,31 +1554,31 @@ msgid "" "metadata customization for administrative purposes." msgstr "" "แทนแท็กผลิตภัณฑ์ที่ใช้ในการจัดประเภทหรือระบุผลิตภัณฑ์ คลาส ProductTag " -"ถูกออกแบบมาเพื่อระบุและจัดประเภทผลิตภัณฑ์อย่างเป็นเอกลักษณ์ผ่านการรวมกันของตัวระบุแท็กภายในและชื่อแสดงผลที่ใช้งานง่าย" -" รองรับการดำเนินการที่ส่งออกผ่าน mixins " +"ถูกออกแบบมาเพื่อระบุและจัดประเภทผลิตภัณฑ์อย่างเป็นเอกลักษณ์ผ่านการรวมกันของตัวระบุแท็กภายในและชื่อแสดงผลที่ใช้งานง่าย " +"รองรับการดำเนินการที่ส่งออกผ่าน mixins " "และให้การปรับแต่งเมตาดาต้าสำหรับวัตถุประสงค์ในการบริหารจัดการ" -#: core/models.py:210 core/models.py:241 +#: engine/core/models.py:209 engine/core/models.py:240 msgid "internal tag identifier for the product tag" msgstr "ตัวระบุแท็กภายในสำหรับแท็กสินค้า" -#: core/models.py:211 core/models.py:242 +#: engine/core/models.py:210 engine/core/models.py:241 msgid "tag name" msgstr "ชื่อวัน" -#: core/models.py:215 core/models.py:246 +#: engine/core/models.py:214 engine/core/models.py:245 msgid "user-friendly name for the product tag" msgstr "ชื่อที่เป็นมิตรกับผู้ใช้สำหรับแท็กสินค้า" -#: core/models.py:216 core/models.py:247 +#: engine/core/models.py:215 engine/core/models.py:246 msgid "tag display name" msgstr "แสดงชื่อแท็ก" -#: core/models.py:224 +#: engine/core/models.py:223 msgid "product tag" msgstr "แท็กสินค้า" -#: core/models.py:230 +#: engine/core/models.py:229 msgid "" "Represents a category tag used for products. This class models a category " "tag that can be used to associate and classify products. It includes " @@ -1601,15 +1588,15 @@ msgstr "" "คลาสนี้จำลองแท็กหมวดหมู่ที่สามารถใช้เพื่อเชื่อมโยงและจัดประเภทผลิตภัณฑ์ได้ " "รวมถึงแอตทริบิวต์สำหรับตัวระบุแท็กภายในและชื่อแสดงผลที่เป็นมิตรกับผู้ใช้" -#: core/models.py:255 +#: engine/core/models.py:254 msgid "category tag" msgstr "แท็กหมวดหมู่" -#: core/models.py:256 core/models.py:328 +#: engine/core/models.py:255 engine/core/models.py:327 msgid "category tags" msgstr "แท็กหมวดหมู่" -#: core/models.py:261 +#: engine/core/models.py:260 msgid "" "Represents a category entity to organize and group related items in a " "hierarchical structure. Categories may have hierarchical relationships with " @@ -1621,188 +1608,190 @@ msgid "" "hierarchy of categories, as well as assign attributes like images, tags, or " "priority." msgstr "" -"แทนถึงเอนทิตีประเภทเพื่อจัดระเบียบและจัดกลุ่มรายการที่เกี่ยวข้องในโครงสร้างลำดับชั้น" -" หมวดหมู่สามารถมีความสัมพันธ์ลำดับชั้นกับหมวดหมู่อื่น ๆ ได้ " -"ซึ่งสนับสนุนความสัมพันธ์แบบพ่อแม่-ลูกคลาสนี้ประกอบด้วยฟิลด์สำหรับข้อมูลเมตาและตัวแทนภาพ" -" ซึ่งทำหน้าที่เป็นพื้นฐานสำหรับคุณสมบัติที่เกี่ยวข้องกับหมวดหมู่ " -"คลาสนี้มักใช้เพื่อกำหนดและจัดการหมวดหมู่สินค้าหรือการจัดกลุ่มที่คล้ายกันภายในแอปพลิเคชัน" -" ช่วยให้ผู้ใช้หรือผู้ดูแลระบบสามารถระบุชื่อ คำอธิบาย และลำดับชั้นของหมวดหมู่" -" รวมถึงกำหนดคุณลักษณะต่างๆ เช่น รูปภาพ แท็ก หรือความสำคัญ" +"แทนถึงเอนทิตีประเภทเพื่อจัดระเบียบและจัดกลุ่มรายการที่เกี่ยวข้องในโครงสร้างลำดับชั้น " +"หมวดหมู่สามารถมีความสัมพันธ์ลำดับชั้นกับหมวดหมู่อื่น ๆ ได้ ซึ่งสนับสนุนความสัมพันธ์แบบพ่อแม่-" +"ลูกคลาสนี้ประกอบด้วยฟิลด์สำหรับข้อมูลเมตาและตัวแทนภาพ " +"ซึ่งทำหน้าที่เป็นพื้นฐานสำหรับคุณสมบัติที่เกี่ยวข้องกับหมวดหมู่ " +"คลาสนี้มักใช้เพื่อกำหนดและจัดการหมวดหมู่สินค้าหรือการจัดกลุ่มที่คล้ายกันภายในแอปพลิเคชัน " +"ช่วยให้ผู้ใช้หรือผู้ดูแลระบบสามารถระบุชื่อ คำอธิบาย และลำดับชั้นของหมวดหมู่ " +"รวมถึงกำหนดคุณลักษณะต่างๆ เช่น รูปภาพ แท็ก หรือความสำคัญ" -#: core/models.py:275 +#: engine/core/models.py:274 msgid "upload an image representing this category" msgstr "อัปโหลดรูปภาพที่แสดงถึงหมวดหมู่นี้" -#: core/models.py:278 +#: engine/core/models.py:277 msgid "category image" msgstr "ภาพหมวดหมู่" -#: core/models.py:283 +#: engine/core/models.py:282 msgid "define a markup percentage for products in this category" msgstr "กำหนดเปอร์เซ็นต์มาร์กอัปสำหรับสินค้าในหมวดหมู่นี้" -#: core/models.py:292 +#: engine/core/models.py:291 msgid "parent of this category to form a hierarchical structure" msgstr "ผู้ปกครองของหมวดหมู่นี้เพื่อสร้างโครงสร้างลำดับชั้น" -#: core/models.py:293 +#: engine/core/models.py:292 msgid "parent category" msgstr "หมวดหมู่หลัก" -#: core/models.py:298 +#: engine/core/models.py:297 msgid "category name" msgstr "ชื่อหมวดหมู่" -#: core/models.py:299 +#: engine/core/models.py:298 msgid "provide a name for this category" msgstr "กรุณาตั้งชื่อสำหรับหมวดหมู่นี้" -#: core/models.py:306 +#: engine/core/models.py:305 msgid "add a detailed description for this category" msgstr "เพิ่มคำอธิบายโดยละเอียดสำหรับหมวดหมู่นี้" -#: core/models.py:307 +#: engine/core/models.py:306 msgid "category description" msgstr "หมวดหมู่คำอธิบาย" -#: core/models.py:327 +#: engine/core/models.py:326 msgid "tags that help describe or group this category" msgstr "แท็กที่ช่วยอธิบายหรือจัดกลุ่มหมวดหมู่นี้" -#: core/models.py:334 core/models.py:489 +#: engine/core/models.py:333 engine/core/models.py:488 msgid "priority" msgstr "ลำดับความสำคัญ" -#: core/models.py:432 +#: engine/core/models.py:431 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 "" -"แทนวัตถุแบรนด์ในระบบ คลาสนี้จัดการข้อมูลและคุณลักษณะที่เกี่ยวข้องกับแบรนด์ " -"รวมถึงชื่อ โลโก้ คำอธิบาย หมวดหมู่ที่เกี่ยวข้อง สลักเฉพาะ และลำดับความสำคัญ " +"แทนวัตถุแบรนด์ในระบบ คลาสนี้จัดการข้อมูลและคุณลักษณะที่เกี่ยวข้องกับแบรนด์ รวมถึงชื่อ โลโก้ " +"คำอธิบาย หมวดหมู่ที่เกี่ยวข้อง สลักเฉพาะ และลำดับความสำคัญ " "ช่วยให้สามารถจัดระเบียบและแสดงข้อมูลที่เกี่ยวข้องกับแบรนด์ภายในแอปพลิเคชันได้" -#: core/models.py:442 +#: engine/core/models.py:441 msgid "name of this brand" msgstr "ชื่อของแบรนด์นี้" -#: core/models.py:443 +#: engine/core/models.py:442 msgid "brand name" msgstr "ชื่อแบรนด์" -#: core/models.py:450 +#: engine/core/models.py:449 msgid "upload a logo representing this brand" msgstr "อัปโหลดโลโก้ที่เป็นตัวแทนของแบรนด์นี้" -#: core/models.py:452 +#: engine/core/models.py:451 msgid "brand small image" msgstr "แบรนด์รูปภาพขนาดเล็ก" -#: core/models.py:458 +#: engine/core/models.py:457 msgid "upload a big logo representing this brand" msgstr "อัปโหลดโลโก้ขนาดใหญ่ที่เป็นตัวแทนของแบรนด์นี้" -#: core/models.py:460 +#: engine/core/models.py:459 msgid "brand big image" msgstr "แบรนด์ภาพใหญ่" -#: core/models.py:465 +#: engine/core/models.py:464 msgid "add a detailed description of the brand" msgstr "เพิ่มคำอธิบายรายละเอียดของแบรนด์" -#: core/models.py:466 +#: engine/core/models.py:465 msgid "brand description" msgstr "คำอธิบายแบรนด์" -#: core/models.py:471 +#: engine/core/models.py:470 msgid "optional categories that this brand is associated with" msgstr "หมวดหมู่เพิ่มเติมที่แบรนด์นี้เกี่ยวข้อง" -#: core/models.py:472 +#: engine/core/models.py:471 msgid "associated categories" msgstr "หมวดหมู่" -#: core/models.py:502 +#: engine/core/models.py:501 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), และสินทรัพย์ดิจิทัล " +"เป็นส่วนหนึ่งของระบบการจัดการสินค้าคงคลังเพื่อให้สามารถติดตามและประเมินสินค้าที่มีจากผู้จำหน่ายต่างๆ " +"ได้" -#: core/models.py:514 +#: engine/core/models.py:513 msgid "the vendor supplying this product stock" msgstr "ผู้จัดจำหน่ายที่จัดหาสินค้าคงคลังนี้" -#: core/models.py:515 +#: engine/core/models.py:514 msgid "associated vendor" msgstr "ผู้ขายที่เกี่ยวข้อง" -#: core/models.py:519 +#: engine/core/models.py:518 msgid "final price to the customer after markups" msgstr "ราคาสุดท้ายที่ลูกค้าต้องชำระหลังจากการบวกกำไร" -#: core/models.py:520 +#: engine/core/models.py:519 msgid "selling price" msgstr "ราคาขาย" -#: core/models.py:525 +#: engine/core/models.py:524 msgid "the product associated with this stock entry" msgstr "สินค้าที่เกี่ยวข้องกับรายการสินค้าคงคลังนี้" -#: core/models.py:526 core/models.py:779 core/models.py:825 -#: core/models.py:1718 +#: engine/core/models.py:525 engine/core/models.py:790 +#: engine/core/models.py:836 engine/core/models.py:1778 msgid "associated product" msgstr "ผลิตภัณฑ์ที่เกี่ยวข้อง" -#: core/models.py:533 +#: engine/core/models.py:532 msgid "the price paid to the vendor for this product" msgstr "ราคาที่จ่ายให้กับผู้ขายสำหรับสินค้านี้" -#: core/models.py:534 +#: engine/core/models.py:533 msgid "vendor purchase price" msgstr "ราคาซื้อจากผู้ขาย" -#: core/models.py:538 +#: engine/core/models.py:537 msgid "available quantity of the product in stock" msgstr "จำนวนสินค้าที่มีในสต็อก" -#: core/models.py:539 +#: engine/core/models.py:538 msgid "quantity in stock" msgstr "จำนวนในสต็อก" -#: core/models.py:543 +#: engine/core/models.py:542 msgid "vendor-assigned SKU for identifying the product" msgstr "รหัสสินค้าที่ผู้ขายกำหนดเพื่อระบุตัวผลิตภัณฑ์" -#: core/models.py:544 +#: engine/core/models.py:543 msgid "vendor sku" msgstr "รหัสสินค้าของผู้ขาย" -#: core/models.py:550 +#: engine/core/models.py:549 msgid "digital file associated with this stock if applicable" msgstr "ไฟล์ดิจิทัลที่เกี่ยวข้องกับสต็อกนี้ หากมี" -#: core/models.py:551 +#: engine/core/models.py:550 msgid "digital file" msgstr "ไฟล์ดิจิทัล" -#: core/models.py:560 +#: engine/core/models.py:553 +msgid "system attributes" +msgstr "คุณลักษณะของระบบ" + +#: engine/core/models.py:560 msgid "stock entries" msgstr "รายการสินค้าคงคลัง" -#: core/models.py:565 +#: engine/core/models.py:565 msgid "" "Represents a product with attributes such as category, brand, tags, digital " "status, name, description, part number, and slug. Provides related utility " @@ -1813,382 +1802,373 @@ msgid "" "properties to improve performance. It is used to define and manipulate " "product data and its associated information within an application." msgstr "" -"แสดงถึงผลิตภัณฑ์ที่มีคุณลักษณะต่างๆ เช่น หมวดหมู่, แบรนด์, แท็ก, " -"สถานะดิจิทัล, ชื่อ, คำอธิบาย, หมายเลขชิ้นส่วน, และ slug " -"ให้คุณสมบัติประโยชน์ที่เกี่ยวข้องเพื่อดึงคะแนน, จำนวนความคิดเห็น, ราคา, " -"จำนวนสินค้า, และยอดสั่งซื้อทั้งหมด " +"แสดงถึงผลิตภัณฑ์ที่มีคุณลักษณะต่างๆ เช่น หมวดหมู่, แบรนด์, แท็ก, สถานะดิจิทัล, ชื่อ, คำอธิบาย, " +"หมายเลขชิ้นส่วน, และ slug ให้คุณสมบัติประโยชน์ที่เกี่ยวข้องเพื่อดึงคะแนน, จำนวนความคิดเห็น, " +"ราคา, จำนวนสินค้า, และยอดสั่งซื้อทั้งหมด " "ออกแบบมาเพื่อใช้ในระบบที่จัดการอีคอมเมิร์ซหรือการจัดการสินค้าคงคลัง " -"คลาสนี้โต้ตอบกับโมเดลที่เกี่ยวข้อง (เช่น หมวดหมู่, แบรนด์, และแท็กผลิตภัณฑ์)" -" " +"คลาสนี้โต้ตอบกับโมเดลที่เกี่ยวข้อง (เช่น หมวดหมู่, แบรนด์, และแท็กผลิตภัณฑ์) " "และจัดการการแคชสำหรับคุณสมบัติที่เข้าถึงบ่อยเพื่อปรับปรุงประสิทธิภาพใช้เพื่อกำหนดและจัดการข้อมูลผลิตภัณฑ์และข้อมูลที่เกี่ยวข้องภายในแอปพลิเคชัน" -#: core/models.py:578 +#: engine/core/models.py:578 msgid "category this product belongs to" msgstr "หมวดหมู่ที่สินค้านี้จัดอยู่ใน" -#: core/models.py:587 +#: engine/core/models.py:587 msgid "optionally associate this product with a brand" msgstr "เลือกเชื่อมโยงผลิตภัณฑ์นี้กับแบรนด์" -#: core/models.py:593 +#: engine/core/models.py:593 msgid "tags that help describe or group this product" msgstr "แท็กที่ช่วยอธิบายหรือจัดกลุ่มผลิตภัณฑ์นี้" -#: core/models.py:598 +#: engine/core/models.py:598 msgid "indicates whether this product is digitally delivered" msgstr "บ่งชี้ว่าสินค้านี้จัดส่งในรูปแบบดิจิทัลหรือไม่" -#: core/models.py:599 +#: engine/core/models.py:599 msgid "is product digital" msgstr "สินค้าเป็นดิจิทัล" -#: core/models.py:605 +#: engine/core/models.py:605 msgid "provide a clear identifying name for the product" msgstr "ระบุชื่อที่ชัดเจนสำหรับผลิตภัณฑ์" -#: core/models.py:606 +#: engine/core/models.py:606 msgid "product name" msgstr "ชื่อสินค้า" -#: core/models.py:612 core/models.py:867 +#: engine/core/models.py:612 engine/core/models.py:878 msgid "add a detailed description of the product" msgstr "เพิ่มคำอธิบายรายละเอียดของสินค้า" -#: core/models.py:613 +#: engine/core/models.py:613 msgid "product description" msgstr "รายละเอียดสินค้า" -#: core/models.py:620 +#: engine/core/models.py:620 msgid "part number for this product" msgstr "หมายเลขชิ้นส่วนสำหรับสินค้านี้" -#: core/models.py:621 +#: engine/core/models.py:621 msgid "part number" msgstr "หมายเลขชิ้นส่วน" -#: core/models.py:640 +#: engine/core/models.py:640 msgid "stock keeping unit for this product" msgstr "หน่วยเก็บสินค้าสำหรับสินค้านี้" -#: core/models.py:702 +#: engine/core/models.py:713 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 "" "แทนคุณสมบัติในระบบ. คลาสนี้ใช้เพื่อกำหนดและจัดการคุณสมบัติ " -"ซึ่งเป็นข้อมูลที่สามารถปรับแต่งได้ซึ่งสามารถเชื่อมโยงกับเอนทิตีอื่น ๆ ได้. " -"คุณสมบัติมีหมวดหมู่, กลุ่ม, ประเภทค่า, และชื่อที่เกี่ยวข้อง. " -"แบบจำลองรองรับหลายประเภทของค่า รวมถึงสตริง, จำนวนเต็ม, จำนวนทศนิยม, บูลีน, " -"อาร์เรย์, และออบเจ็กต์. " +"ซึ่งเป็นข้อมูลที่สามารถปรับแต่งได้ซึ่งสามารถเชื่อมโยงกับเอนทิตีอื่น ๆ ได้. คุณสมบัติมีหมวดหมู่, กลุ่ม, " +"ประเภทค่า, และชื่อที่เกี่ยวข้อง. แบบจำลองรองรับหลายประเภทของค่า รวมถึงสตริง, จำนวนเต็ม, " +"จำนวนทศนิยม, บูลีน, อาร์เรย์, และออบเจ็กต์. " "ซึ่งช่วยให้สามารถจัดโครงสร้างข้อมูลได้ไดนามิกและยืดหยุ่น." -#: core/models.py:715 +#: engine/core/models.py:726 msgid "group of this attribute" msgstr "กลุ่มของแอตทริบิวต์นี้" -#: core/models.py:721 +#: engine/core/models.py:732 msgid "string" msgstr "สตริง" -#: core/models.py:722 +#: engine/core/models.py:733 msgid "integer" msgstr "ความซื่อสัตย์" -#: core/models.py:723 +#: engine/core/models.py:734 msgid "float" msgstr "ลอย" -#: core/models.py:724 +#: engine/core/models.py:735 msgid "boolean" msgstr "บูลีน" -#: core/models.py:725 +#: engine/core/models.py:736 msgid "array" msgstr "อาร์เรย์" -#: core/models.py:726 +#: engine/core/models.py:737 msgid "object" msgstr "วัตถุ" -#: core/models.py:728 +#: engine/core/models.py:739 msgid "type of the attribute's value" msgstr "ประเภทของค่าของแอตทริบิวต์" -#: core/models.py:729 +#: engine/core/models.py:740 msgid "value type" msgstr "ประเภทของค่า" -#: core/models.py:734 +#: engine/core/models.py:745 msgid "name of this attribute" msgstr "ชื่อของแอตทริบิวต์นี้" -#: core/models.py:735 +#: engine/core/models.py:746 msgid "attribute's name" msgstr "ชื่อของแอตทริบิวต์" -#: core/models.py:740 +#: engine/core/models.py:751 msgid "is filterable" msgstr "สามารถกรองได้" -#: core/models.py:741 +#: engine/core/models.py:752 msgid "designates whether this attribute can be used for filtering or not" msgstr "กำหนดว่าแอตทริบิวต์นี้สามารถใช้สำหรับการกรองหรือไม่" -#: core/models.py:753 core/models.py:771 -#: core/templates/digital_order_delivered_email.html:134 +#: engine/core/models.py:764 engine/core/models.py:782 +#: engine/core/templates/digital_order_delivered_email.html:134 msgid "attribute" msgstr "คุณสมบัติ" -#: core/models.py:759 +#: engine/core/models.py:770 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 "" -"แทนค่าเฉพาะสำหรับคุณลักษณะที่เชื่อมโยงกับผลิตภัณฑ์ มันเชื่อมโยง 'คุณลักษณะ' " -"กับ 'ค่า' ที่ไม่ซ้ำกัน " +"แทนค่าเฉพาะสำหรับคุณลักษณะที่เชื่อมโยงกับผลิตภัณฑ์ มันเชื่อมโยง 'คุณลักษณะ' กับ 'ค่า' ที่ไม่ซ้ำกัน " "ทำให้การจัดระเบียบและการแสดงลักษณะของผลิตภัณฑ์เป็นไปอย่างมีประสิทธิภาพและยืดหยุ่นมากขึ้น" -#: core/models.py:770 +#: engine/core/models.py:781 msgid "attribute of this value" msgstr "คุณลักษณะของค่านี้" -#: core/models.py:778 +#: engine/core/models.py:789 msgid "the specific product associated with this attribute's value" msgstr "ผลิตภัณฑ์เฉพาะที่เกี่ยวข้องกับค่าของแอตทริบิวต์นี้" -#: core/models.py:784 +#: engine/core/models.py:795 msgid "the specific value for this attribute" msgstr "ค่าเฉพาะสำหรับคุณสมบัตินี้" -#: core/models.py:797 +#: engine/core/models.py:808 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 "" -"แสดงภาพสินค้าที่เกี่ยวข้องกับสินค้าในระบบ. " -"คลาสนี้ออกแบบมาเพื่อจัดการภาพสำหรับสินค้า " +"แสดงภาพสินค้าที่เกี่ยวข้องกับสินค้าในระบบ. คลาสนี้ออกแบบมาเพื่อจัดการภาพสำหรับสินค้า " "รวมถึงฟังก์ชันสำหรับการอัปโหลดไฟล์ภาพ, การเชื่อมโยงกับสินค้าเฉพาะ, " -"และการกำหนดลำดับการแสดงผล. " -"นอกจากนี้ยังมีคุณสมบัติการเข้าถึงสำหรับผู้ใช้ที่มีความต้องการพิเศษ " +"และการกำหนดลำดับการแสดงผล. นอกจากนี้ยังมีคุณสมบัติการเข้าถึงสำหรับผู้ใช้ที่มีความต้องการพิเศษ " "โดยให้ข้อความทางเลือกสำหรับภาพ." -#: core/models.py:808 +#: engine/core/models.py:819 msgid "provide alternative text for the image for accessibility" msgstr "ให้ข้อความทางเลือกสำหรับภาพเพื่อการเข้าถึง" -#: core/models.py:809 +#: engine/core/models.py:820 msgid "image alt text" msgstr "ข้อความแสดงแทนภาพ" -#: core/models.py:812 +#: engine/core/models.py:823 msgid "upload the image file for this product" msgstr "อัปโหลดไฟล์รูปภาพสำหรับสินค้านี้" -#: core/models.py:813 core/models.py:837 +#: engine/core/models.py:824 engine/core/models.py:848 msgid "product image" msgstr "รูปภาพสินค้า" -#: core/models.py:818 +#: engine/core/models.py:829 msgid "determines the order in which images are displayed" msgstr "กำหนดลำดับการแสดงผลของภาพ" -#: core/models.py:819 +#: engine/core/models.py:830 msgid "display priority" msgstr "ลำดับความสำคัญในการแสดงผล" -#: core/models.py:824 +#: engine/core/models.py:835 msgid "the product that this image represents" msgstr "สินค้าที่ภาพนี้แทน" -#: core/models.py:838 +#: engine/core/models.py:849 msgid "product images" msgstr "รูปภาพสินค้า" -#: core/models.py:843 +#: engine/core/models.py:854 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 "" "แสดงถึงแคมเปญส่งเสริมการขายสำหรับสินค้าที่มีส่วนลด. " -"คลาสนี้ใช้เพื่อกำหนดและจัดการแคมเปญส่งเสริมการขายที่มอบส่วนลดเป็นเปอร์เซ็นต์สำหรับสินค้า." -" คลาสนี้ประกอบด้วยคุณสมบัติสำหรับการตั้งค่าอัตราส่วนลด, " -"ให้รายละเอียดเกี่ยวกับโปรโมชั่น, และเชื่อมโยงกับสินค้าที่เกี่ยวข้อง. " +"คลาสนี้ใช้เพื่อกำหนดและจัดการแคมเปญส่งเสริมการขายที่มอบส่วนลดเป็นเปอร์เซ็นต์สำหรับสินค้า. " +"คลาสนี้ประกอบด้วยคุณสมบัติสำหรับการตั้งค่าอัตราส่วนลด, ให้รายละเอียดเกี่ยวกับโปรโมชั่น, " +"และเชื่อมโยงกับสินค้าที่เกี่ยวข้อง. " "คลาสนี้ผสานการทำงานกับแคตตาล็อกสินค้าเพื่อกำหนดสินค้าที่ได้รับผลกระทบในแคมเปญ." -#: core/models.py:855 +#: engine/core/models.py:866 msgid "percentage discount for the selected products" msgstr "เปอร์เซ็นต์ส่วนลดสำหรับสินค้าที่เลือก" -#: core/models.py:856 +#: engine/core/models.py:867 msgid "discount percentage" msgstr "เปอร์เซ็นต์ส่วนลด" -#: core/models.py:861 +#: engine/core/models.py:872 msgid "provide a unique name for this promotion" msgstr "กรุณาตั้งชื่อที่ไม่ซ้ำกันสำหรับการส่งเสริมการขายนี้" -#: core/models.py:862 +#: engine/core/models.py:873 msgid "promotion name" msgstr "ชื่อโปรโมชั่น" -#: core/models.py:868 +#: engine/core/models.py:879 msgid "promotion description" msgstr "รายละเอียดโปรโมชั่น" -#: core/models.py:873 +#: engine/core/models.py:884 msgid "select which products are included in this promotion" msgstr "เลือกผลิตภัณฑ์ที่รวมอยู่ในโปรโมชั่นนี้" -#: core/models.py:874 +#: engine/core/models.py:885 msgid "included products" msgstr "สินค้าที่รวมอยู่" -#: core/models.py:878 +#: engine/core/models.py:889 msgid "promotion" msgstr "โปรโมชั่น" -#: core/models.py:889 +#: engine/core/models.py:900 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 "" -"แสดงรายการสินค้าที่ผู้ใช้ต้องการเก็บไว้เพื่อจัดการและค้นหาสินค้าที่ต้องการในอนาคต" -" คลาสนี้ให้บริการฟังก์ชันสำหรับการจัดการคอลเลกชันของสินค้า " -"ซึ่งรวมถึงการเพิ่มและลบสินค้าออกจากคอลเลกชัน " -"ตลอดจนการเพิ่มและลบสินค้าหลายรายการพร้อมกัน" +"แสดงรายการสินค้าที่ผู้ใช้ต้องการเก็บไว้เพื่อจัดการและค้นหาสินค้าที่ต้องการในอนาคต " +"คลาสนี้ให้บริการฟังก์ชันสำหรับการจัดการคอลเลกชันของสินค้า " +"ซึ่งรวมถึงการเพิ่มและลบสินค้าออกจากคอลเลกชัน ตลอดจนการเพิ่มและลบสินค้าหลายรายการพร้อมกัน" -#: core/models.py:901 +#: engine/core/models.py:912 msgid "products that the user has marked as wanted" msgstr "สินค้าที่ผู้ใช้ได้ทำเครื่องหมายว่าต้องการ" -#: core/models.py:909 +#: engine/core/models.py:920 msgid "user who owns this wishlist" msgstr "ผู้ใช้ที่เป็นเจ้าของรายการความปรารถนา" -#: core/models.py:910 +#: engine/core/models.py:921 msgid "wishlist owner" msgstr "เจ้าของรายการที่อยากได้" -#: core/models.py:918 +#: engine/core/models.py:929 msgid "wishlist" msgstr "รายการสิ่งที่ต้องการ" -#: core/models.py:960 +#: engine/core/models.py:971 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 "" "แทนเอกสารบันทึกที่เกี่ยวข้องกับผลิตภัณฑ์. " "คลาสนี้ใช้เพื่อเก็บข้อมูลเกี่ยวกับเอกสารที่เกี่ยวข้องกับผลิตภัณฑ์เฉพาะ " "รวมถึงการอัปโหลดไฟล์และข้อมูลเมตาของไฟล์. " -"คลาสนี้มีเมธอดและคุณสมบัติเพื่อจัดการกับประเภทไฟล์และเส้นทางจัดเก็บสำหรับไฟล์เอกสาร." -" คลาสนี้ขยายฟังก์ชันการทำงานจากมิกซ์อินเฉพาะ " -"และให้คุณสมบัติเพิ่มเติมตามความต้องการ." +"คลาสนี้มีเมธอดและคุณสมบัติเพื่อจัดการกับประเภทไฟล์และเส้นทางจัดเก็บสำหรับไฟล์เอกสาร. " +"คลาสนี้ขยายฟังก์ชันการทำงานจากมิกซ์อินเฉพาะ และให้คุณสมบัติเพิ่มเติมตามความต้องการ." -#: core/models.py:973 +#: engine/core/models.py:984 msgid "documentary" msgstr "สารคดี" -#: core/models.py:974 +#: engine/core/models.py:985 msgid "documentaries" msgstr "สารคดี" -#: core/models.py:984 +#: engine/core/models.py:995 msgid "unresolved" msgstr "ยังไม่ได้รับการแก้ไข" -#: core/models.py:989 +#: engine/core/models.py:1000 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 " +"ดิบเพื่อการประมวลผลหรือตรวจสอบเพิ่มเติมได้คลาสนี้ยังอนุญาตให้เชื่อมโยงที่อยู่กับผู้ใช้ได้ " +"ซึ่งช่วยให้การจัดการข้อมูลส่วนบุคคลเป็นไปอย่างสะดวก" -#: core/models.py:1004 +#: engine/core/models.py:1015 msgid "address line for the customer" msgstr "ที่อยู่สำหรับลูกค้า" -#: core/models.py:1005 +#: engine/core/models.py:1016 msgid "address line" msgstr "บรรทัดที่อยู่" -#: core/models.py:1007 +#: engine/core/models.py:1018 msgid "street" msgstr "ถนน" -#: core/models.py:1008 +#: engine/core/models.py:1019 msgid "district" msgstr "เขต" -#: core/models.py:1009 +#: engine/core/models.py:1020 msgid "city" msgstr "เมือง" -#: core/models.py:1010 +#: engine/core/models.py:1021 msgid "region" msgstr "ภูมิภาค" -#: core/models.py:1011 +#: engine/core/models.py:1022 msgid "postal code" msgstr "รหัสไปรษณีย์" -#: core/models.py:1012 +#: engine/core/models.py:1023 msgid "country" msgstr "ประเทศ" -#: core/models.py:1019 +#: engine/core/models.py:1030 msgid "geolocation point: (longitude, latitude)" msgstr "จุดพิกัดภูมิศาสตร์ (ลองจิจูด, ละติจูด)" -#: core/models.py:1022 +#: engine/core/models.py:1033 msgid "full JSON response from geocoder for this address" msgstr "การตอบกลับ JSON แบบเต็มจากตัวแปลงที่อยู่ทางภูมิศาสตร์สำหรับที่อยู่นี้" -#: core/models.py:1027 +#: engine/core/models.py:1038 msgid "stored JSON response from the geocoding service" msgstr "เก็บคำตอบ JSON จากบริการการแปลงที่อยู่ทางภูมิศาสตร์" -#: core/models.py:1035 +#: engine/core/models.py:1046 msgid "address" msgstr "ที่อยู่" -#: core/models.py:1036 +#: engine/core/models.py:1047 msgid "addresses" msgstr "ที่อยู่" -#: core/models.py:1048 +#: engine/core/models.py:1059 msgid "" "Represents a promotional code that can be used for discounts, managing its " "validity, type of discount, and application. The PromoCode class stores " @@ -2197,79 +2177,78 @@ 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 จัดเก็บรายละเอียดเกี่ยวกับรหัสโปรโมชั่น รวมถึงตัวระบุที่ไม่ซ้ำกัน " +"คุณสมบัติของส่วนลด (จำนวนหรือเปอร์เซ็นต์) ระยะเวลาการใช้งาน ผู้ใช้ที่เกี่ยวข้อง (ถ้ามี) " +"และสถานะการใช้งาน " +"รวมถึงฟังก์ชันการทำงานเพื่อตรวจสอบและใช้รหัสโปรโมชั่นกับคำสั่งซื้อในขณะที่ตรวจสอบให้แน่ใจว่าข้อจำกัดต่างๆ " +"ได้รับการปฏิบัติตาม" -#: core/models.py:1062 +#: engine/core/models.py:1073 msgid "unique code used by a user to redeem a discount" msgstr "รหัสเฉพาะที่ผู้ใช้ใช้เพื่อแลกรับส่วนลด" -#: core/models.py:1063 +#: engine/core/models.py:1074 msgid "promo code identifier" msgstr "รหัสโปรโมชั่น" -#: core/models.py:1070 +#: engine/core/models.py:1081 msgid "fixed discount amount applied if percent is not used" msgstr "จำนวนส่วนลดคงที่ที่ใช้หากไม่ได้ใช้เปอร์เซ็นต์" -#: core/models.py:1071 +#: engine/core/models.py:1082 msgid "fixed discount amount" msgstr "จำนวนส่วนลดคงที่" -#: core/models.py:1077 +#: engine/core/models.py:1088 msgid "percentage discount applied if fixed amount is not used" msgstr "ส่วนลดเป็นเปอร์เซ็นต์ที่ใช้เมื่อไม่ได้ใช้จำนวนเงินคงที่" -#: core/models.py:1078 +#: engine/core/models.py:1089 msgid "percentage discount" msgstr "เปอร์เซ็นต์ส่วนลด" -#: core/models.py:1083 +#: engine/core/models.py:1094 msgid "timestamp when the promocode expires" msgstr "เวลาที่โค้ดโปรโมชั่นหมดอายุ" -#: core/models.py:1084 +#: engine/core/models.py:1095 msgid "end validity time" msgstr "เวลาสิ้นสุดความถูกต้อง" -#: core/models.py:1089 +#: engine/core/models.py:1100 msgid "timestamp from which this promocode is valid" msgstr "เวลาที่ตราไว้ซึ่งรหัสโปรโมชั่นนี้ใช้ได้" -#: core/models.py:1090 +#: engine/core/models.py:1101 msgid "start validity time" msgstr "เวลาเริ่มต้นความถูกต้อง" -#: core/models.py:1095 +#: engine/core/models.py:1106 msgid "timestamp when the promocode was used, blank if not used yet" msgstr "เวลาที่ตราประทับเมื่อใช้รหัสโปรโมชั่น, ว่างเปล่าหากยังไม่ได้ใช้" -#: core/models.py:1096 +#: engine/core/models.py:1107 msgid "usage timestamp" msgstr "เวลาการใช้งาน" -#: core/models.py:1101 +#: engine/core/models.py:1112 msgid "user assigned to this promocode if applicable" msgstr "ผู้ใช้ที่ได้รับมอบหมายให้ใช้รหัสโปรโมชั่นนี้ หากมี" -#: core/models.py:1102 +#: engine/core/models.py:1113 msgid "assigned user" msgstr "ผู้ใช้ที่ได้รับมอบหมาย" -#: core/models.py:1109 +#: engine/core/models.py:1120 msgid "promo code" msgstr "รหัสโปรโมชั่น" -#: core/models.py:1110 +#: engine/core/models.py:1121 msgid "promo codes" msgstr "รหัสส่งเสริมการขาย" -#: core/models.py:1125 +#: engine/core/models.py:1136 msgid "" "only one type of discount should be defined (amount or percent), but not " "both or neither." @@ -2277,180 +2256,211 @@ msgstr "" "ควรกำหนดประเภทส่วนลดเพียงประเภทเดียว (จำนวนเงินหรือเปอร์เซ็นต์) เท่านั้น " "ไม่ควรกำหนดทั้งสองประเภทหรือไม่ได้กำหนดเลย" -#: core/models.py:1146 +#: engine/core/models.py:1157 msgid "promocode already used" msgstr "รหัสโปรโมชั่นถูกใช้ไปแล้ว" -#: core/models.py:1162 +#: engine/core/models.py:1173 #, python-brace-format msgid "invalid discount type for promocode {self.uuid}" msgstr "ประเภทส่วนลดไม่ถูกต้องสำหรับรหัสโปรโมชั่น {self.uuid}!" -#: core/models.py:1171 +#: engine/core/models.py:1182 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 "" -"แทนคำสั่งซื้อที่ผู้ใช้ได้ทำการสั่งซื้อไว้ " -"คลาสนี้จำลองคำสั่งซื้อภายในแอปพลิเคชัน รวมถึงคุณสมบัติต่าง ๆ เช่น " -"ข้อมูลการเรียกเก็บเงิน ข้อมูลการจัดส่ง สถานะ ผู้ใช้ที่เกี่ยวข้อง " -"การแจ้งเตือน และการดำเนินการที่เกี่ยวข้อง " -"คำสั่งซื้อสามารถมีสินค้าที่เกี่ยวข้องได้ โปรโมชั่นสามารถนำมาใช้ได้ " -"ที่อยู่สามารถตั้งค่าได้ " -"และรายละเอียดการจัดส่งหรือการเรียกเก็บเงินสามารถอัปเดตได้เช่นกัน นอกจากนี้ " -"ฟังก์ชันการทำงานยังรองรับการจัดการสินค้าในวงจรชีวิตของคำสั่งซื้อ" +"แทนคำสั่งซื้อที่ผู้ใช้ได้ทำการสั่งซื้อไว้ คลาสนี้จำลองคำสั่งซื้อภายในแอปพลิเคชัน รวมถึงคุณสมบัติต่าง ๆ " +"เช่น ข้อมูลการเรียกเก็บเงิน ข้อมูลการจัดส่ง สถานะ ผู้ใช้ที่เกี่ยวข้อง การแจ้งเตือน " +"และการดำเนินการที่เกี่ยวข้อง คำสั่งซื้อสามารถมีสินค้าที่เกี่ยวข้องได้ โปรโมชั่นสามารถนำมาใช้ได้ " +"ที่อยู่สามารถตั้งค่าได้ และรายละเอียดการจัดส่งหรือการเรียกเก็บเงินสามารถอัปเดตได้เช่นกัน " +"นอกจากนี้ ฟังก์ชันการทำงานยังรองรับการจัดการสินค้าในวงจรชีวิตของคำสั่งซื้อ" -#: core/models.py:1188 +#: engine/core/models.py:1199 msgid "the billing address used for this order" msgstr "ที่อยู่สำหรับเรียกเก็บเงินที่ใช้สำหรับคำสั่งซื้อนี้" -#: core/models.py:1196 +#: engine/core/models.py:1207 msgid "optional promo code applied to this order" msgstr "รหัสโปรโมชั่นเสริมใช้กับคำสั่งซื้อนี้แล้ว" -#: core/models.py:1197 +#: engine/core/models.py:1208 msgid "applied promo code" msgstr "ใช้รหัสโปรโมชั่น" -#: core/models.py:1205 +#: engine/core/models.py:1216 msgid "the shipping address used for this order" msgstr "ที่อยู่สำหรับจัดส่งที่ใช้สำหรับคำสั่งซื้อนี้" -#: core/models.py:1206 +#: engine/core/models.py:1217 msgid "shipping address" msgstr "ที่อยู่สำหรับจัดส่ง" -#: core/models.py:1212 +#: engine/core/models.py:1223 msgid "current status of the order in its lifecycle" msgstr "สถานะปัจจุบันของคำสั่งซื้อในวงจรชีวิต" -#: core/models.py:1213 +#: engine/core/models.py:1224 msgid "order status" msgstr "สถานะการสั่งซื้อ" -#: core/models.py:1218 core/models.py:1695 +#: engine/core/models.py:1229 engine/core/models.py:1755 msgid "json structure of notifications to display to users" msgstr "" "โครงสร้าง JSON ของการแจ้งเตือนที่จะแสดงให้ผู้ใช้เห็น ใน UI " "ของผู้ดูแลระบบจะใช้การแสดงผลแบบตาราง" -#: core/models.py:1224 +#: engine/core/models.py:1235 msgid "json representation of order attributes for this order" msgstr "การแสดงผล JSON ของคุณลักษณะคำสั่งซื้อสำหรับคำสั่งซื้อนี้" -#: core/models.py:1230 +#: engine/core/models.py:1241 msgid "the user who placed the order" msgstr "ผู้ใช้ที่ทำการสั่งซื้อ" -#: core/models.py:1231 +#: engine/core/models.py:1242 msgid "user" msgstr "ผู้ใช้" -#: core/models.py:1237 +#: engine/core/models.py:1248 msgid "the timestamp when the order was finalized" msgstr "เวลาที่คำสั่งซื้อได้รับการยืนยัน" -#: core/models.py:1238 +#: engine/core/models.py:1249 msgid "buy time" msgstr "ซื้อเวลา" -#: core/models.py:1245 +#: engine/core/models.py:1256 msgid "a human-readable identifier for the order" msgstr "ตัวระบุที่มนุษย์อ่านได้สำหรับคำสั่ง" -#: core/models.py:1246 +#: engine/core/models.py:1257 msgid "human readable id" msgstr "รหัสที่สามารถอ่านได้โดยมนุษย์" -#: core/models.py:1252 +#: engine/core/models.py:1263 msgid "order" msgstr "คำสั่ง" -#: core/models.py:1294 +#: engine/core/models.py:1305 msgid "a user must have only one pending order at a time" -msgstr "" -"ผู้ใช้ต้องมีคำสั่งซื้อที่รอดำเนินการเพียงหนึ่งรายการเท่านั้นในแต่ละครั้ง!" +msgstr "ผู้ใช้ต้องมีคำสั่งซื้อที่รอดำเนินการเพียงหนึ่งรายการเท่านั้นในแต่ละครั้ง!" -#: core/models.py:1326 +#: engine/core/models.py:1337 msgid "you cannot add products to an order that is not a pending one" -msgstr "" -"คุณไม่สามารถเพิ่มสินค้าในคำสั่งซื้อที่ไม่ใช่คำสั่งซื้อที่รอดำเนินการได้" +msgstr "คุณไม่สามารถเพิ่มสินค้าในคำสั่งซื้อที่ไม่ใช่คำสั่งซื้อที่รอดำเนินการได้" -#: core/models.py:1331 +#: engine/core/models.py:1342 msgid "you cannot add inactive products to order" msgstr "คุณไม่สามารถเพิ่มสินค้าที่ไม่ใช้งานในคำสั่งซื้อได้" -#: core/models.py:1348 +#: engine/core/models.py:1359 msgid "you cannot add more products than available in stock" msgstr "คุณไม่สามารถเพิ่มสินค้าได้มากกว่าที่มีในสต็อก" -#: core/models.py:1370 core/models.py:1395 core/models.py:1403 +#: engine/core/models.py:1381 engine/core/models.py:1406 +#: engine/core/models.py:1414 msgid "you cannot remove products from an order that is not a pending one" -msgstr "" -"คุณไม่สามารถลบสินค้าออกจากคำสั่งซื้อที่ไม่ใช่คำสั่งซื้อที่อยู่ในสถานะรอดำเนินการได้" +msgstr "คุณไม่สามารถลบสินค้าออกจากคำสั่งซื้อที่ไม่ใช่คำสั่งซื้อที่อยู่ในสถานะรอดำเนินการได้" -#: core/models.py:1391 +#: engine/core/models.py:1402 #, python-brace-format msgid "{name} does not exist with query <{query}>" msgstr "{name} ไม่มีอยู่จริงกับคำค้นหา <{query}>!" -#: core/models.py:1423 +#: engine/core/models.py:1434 msgid "promocode does not exist" msgstr "รหัสโปรโมชั่นไม่มีอยู่" -#: core/models.py:1429 +#: engine/core/models.py:1440 msgid "you can only buy physical products with shipping address specified" -msgstr "" -"คุณสามารถซื้อได้เฉพาะสินค้าทางกายภาพที่มีที่อยู่สำหรับจัดส่งระบุไว้เท่านั้น!" +msgstr "คุณสามารถซื้อได้เฉพาะสินค้าทางกายภาพที่มีที่อยู่สำหรับจัดส่งระบุไว้เท่านั้น!" -#: core/models.py:1448 +#: engine/core/models.py:1459 msgid "address does not exist" msgstr "ไม่มีที่อยู่" -#: core/models.py:1469 core/models.py:1538 +#: engine/core/models.py:1480 engine/core/models.py:1549 msgid "you can not buy at this moment, please try again in a few minutes" msgstr "ขณะนี้คุณไม่สามารถซื้อได้ กรุณาลองใหม่อีกครั้งในอีกไม่กี่นาที" -#: core/models.py:1472 core/models.py:1534 +#: engine/core/models.py:1483 engine/core/models.py:1545 msgid "invalid force value" msgstr "ค่าแรงบังคับไม่ถูกต้อง" -#: core/models.py:1478 core/models.py:1541 +#: engine/core/models.py:1489 engine/core/models.py:1552 msgid "you cannot purchase an empty order!" msgstr "คุณไม่สามารถซื้อคำสั่งซื้อที่ว่างเปล่าได้!" -#: core/models.py:1497 +#: engine/core/models.py:1508 msgid "you cannot buy an order without a user" msgstr "คุณไม่สามารถซื้อคำสั่งซื้อได้หากไม่มีผู้ใช้!" -#: core/models.py:1511 +#: engine/core/models.py:1522 msgid "a user without a balance cannot buy with balance" msgstr "ผู้ใช้ที่ไม่มียอดคงเหลือไม่สามารถซื้อด้วยยอดคงเหลือได้!" -#: core/models.py:1516 +#: engine/core/models.py:1527 msgid "insufficient funds to complete the order" msgstr "เงินไม่เพียงพอในการทำรายการให้เสร็จสมบูรณ์" -#: core/models.py:1550 +#: engine/core/models.py:1561 msgid "" "you cannot buy without registration, please provide the following " "information: customer name, customer email, customer phone number" msgstr "" -"คุณไม่สามารถซื้อได้หากไม่มีการลงทะเบียน กรุณาให้ข้อมูลต่อไปนี้: ชื่อลูกค้า, " -"อีเมลลูกค้า, หมายเลขโทรศัพท์ลูกค้า" +"คุณไม่สามารถซื้อได้หากไม่มีการลงทะเบียน กรุณาให้ข้อมูลต่อไปนี้: ชื่อลูกค้า, อีเมลลูกค้า, " +"หมายเลขโทรศัพท์ลูกค้า" -#: core/models.py:1559 +#: engine/core/models.py:1570 #, 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}!" -#: core/models.py:1668 +#: engine/core/models.py:1685 +msgid "" +"Manages user feedback for products. This class is designed to capture and " +"store user feedback for specific products that they have purchased. It " +"contains attributes to store user comments, a reference to the related " +"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:1697 +msgid "user-provided comments about their experience with the product" +msgstr "ความคิดเห็นที่ผู้ใช้ให้ไว้เกี่ยวกับประสบการณ์ของพวกเขาต่อผลิตภัณฑ์" + +#: engine/core/models.py:1698 +msgid "feedback comments" +msgstr "ความคิดเห็นจากผู้ตอบแบบสอบถาม" + +#: engine/core/models.py:1705 +msgid "references the specific product in an order that this feedback is about" +msgstr "อ้างอิงถึงผลิตภัณฑ์เฉพาะในคำสั่งซื้อที่ความคิดเห็นนี้เกี่ยวข้อง" + +#: engine/core/models.py:1706 +msgid "related order product" +msgstr "สินค้าที่เกี่ยวข้อง" + +#: engine/core/models.py:1711 +msgid "user-assigned rating for the product" +msgstr "คะแนนที่ผู้ใช้กำหนดให้กับผลิตภัณฑ์" + +#: engine/core/models.py:1712 +msgid "product rating" +msgstr "การให้คะแนนสินค้า" + +#: engine/core/models.py:1728 msgid "" "Represents products associated with orders and their attributes. The " "OrderProduct model maintains information about a product that is part of an " @@ -2462,285 +2472,237 @@ 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 " "และเก็บการอ้างอิงถึงโมเดลเหล่านี้ไว้" -#: core/models.py:1683 +#: engine/core/models.py:1743 msgid "the price paid by the customer for this product at purchase time" msgstr "ราคาที่ลูกค้าชำระสำหรับสินค้านี้ ณ เวลาที่ซื้อ" -#: core/models.py:1684 +#: engine/core/models.py:1744 msgid "purchase price at order time" msgstr "ราคาซื้อ ณ เวลาที่สั่งซื้อ" -#: core/models.py:1689 +#: engine/core/models.py:1749 msgid "internal comments for admins about this ordered product" msgstr "ความคิดเห็นภายในสำหรับผู้ดูแลระบบเกี่ยวกับสินค้าที่สั่งซื้อ" -#: core/models.py:1690 +#: engine/core/models.py:1750 msgid "internal comments" msgstr "ความคิดเห็นภายใน" -#: core/models.py:1696 +#: engine/core/models.py:1756 msgid "user notifications" msgstr "การแจ้งเตือนผู้ใช้" -#: core/models.py:1701 +#: engine/core/models.py:1761 msgid "json representation of this item's attributes" msgstr "การแสดงผล JSON ของคุณลักษณะของรายการนี้" -#: core/models.py:1702 +#: engine/core/models.py:1762 msgid "ordered product attributes" msgstr "จัดเรียงคุณลักษณะของสินค้า" -#: core/models.py:1707 +#: engine/core/models.py:1767 msgid "reference to the parent order that contains this product" msgstr "การอ้างอิงถึงคำสั่งซื้อหลักที่มีสินค้านี้อยู่" -#: core/models.py:1708 +#: engine/core/models.py:1768 msgid "parent order" msgstr "ลำดับของผู้ปกครอง" -#: core/models.py:1717 +#: engine/core/models.py:1777 msgid "the specific product associated with this order line" msgstr "สินค้าเฉพาะที่เกี่ยวข้องกับรายการคำสั่งซื้อนี้" -#: core/models.py:1724 +#: engine/core/models.py:1784 msgid "quantity of this specific product in the order" msgstr "ปริมาณของสินค้าชนิดนี้ในคำสั่งซื้อ" -#: core/models.py:1725 +#: engine/core/models.py:1785 msgid "product quantity" msgstr "จำนวนสินค้า" -#: core/models.py:1732 +#: engine/core/models.py:1792 msgid "current status of this product in the order" msgstr "สถานะปัจจุบันของสินค้านี้ในคำสั่งซื้อ" -#: core/models.py:1733 +#: engine/core/models.py:1793 msgid "product line status" msgstr "สถานะสายผลิตภัณฑ์" -#: core/models.py:1798 +#: engine/core/models.py:1858 msgid "order product must have an order" msgstr "Orderproduct ต้องมีการสั่งซื้อที่เกี่ยวข้อง!" -#: core/models.py:1800 +#: engine/core/models.py:1860 #, python-brace-format msgid "wrong action specified for feedback: {action}" msgstr "ระบุการกระทำที่ไม่ถูกต้องสำหรับข้อเสนอแนะ: {action}!" -#: core/models.py:1814 +#: engine/core/models.py:1874 msgid "you cannot feedback an order which is not received" msgstr "คุณไม่สามารถให้ข้อเสนอแนะเกี่ยวกับคำสั่งซื้อที่ไม่ได้รับ" -#: core/models.py:1820 +#: engine/core/models.py:1880 msgid "name" msgstr "ชื่อ" -#: core/models.py:1821 +#: engine/core/models.py:1881 msgid "URL of the integration" msgstr "URL ของการผสานรวม" -#: core/models.py:1822 +#: engine/core/models.py:1882 msgid "authentication credentials" msgstr "ข้อมูลประจำตัวสำหรับการยืนยันตัวตน" -#: core/models.py:1844 +#: engine/core/models.py:1904 msgid "you can only have one default CRM provider" msgstr "คุณสามารถมีผู้ให้บริการ CRM เริ่มต้นได้เพียงรายเดียวเท่านั้น" -#: core/models.py:1854 +#: engine/core/models.py:1914 msgid "CRM" msgstr "ระบบบริหารความสัมพันธ์ลูกค้า" -#: core/models.py:1855 +#: engine/core/models.py:1915 msgid "CRMs" msgstr "ระบบบริหารความสัมพันธ์ลูกค้า" -#: core/models.py:1867 +#: engine/core/models.py:1927 msgid "order CRM link" msgstr "ลิงก์ CRM ของคำสั่ง" -#: core/models.py:1868 +#: engine/core/models.py:1928 msgid "orders CRM links" msgstr "ลิงก์ CRM ของคำสั่งซื้อ" -#: core/models.py:1873 +#: engine/core/models.py:1933 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 " "สำหรับการดาวน์โหลดสินทรัพย์เมื่อคำสั่งซื้อที่เกี่ยวข้องอยู่ในสถานะเสร็จสมบูรณ์" -#: core/models.py:1887 +#: engine/core/models.py:1947 msgid "download" msgstr "ดาวน์โหลด" -#: core/models.py:1888 +#: engine/core/models.py:1948 msgid "downloads" msgstr "ดาวน์โหลด" -#: core/models.py:1902 -msgid "" -"Manages user feedback for products. This class is designed to capture and " -"store user feedback for specific products that they have purchased. It " -"contains attributes to store user comments, a reference to the related " -"product in the order, and a user-assigned rating. The class uses database " -"fields to effectively model and manage feedback data." -msgstr "" -"จัดการข้อเสนอแนะของผู้ใช้สำหรับผลิตภัณฑ์ " -"คลาสนี้ถูกออกแบบมาเพื่อรวบรวมและจัดเก็บข้อมูลข้อเสนอแนะของผู้ใช้สำหรับผลิตภัณฑ์เฉพาะที่พวกเขาได้ซื้อ" -" ประกอบด้วยแอตทริบิวต์สำหรับจัดเก็บความคิดเห็นของผู้ใช้ " -"การอ้างอิงถึงผลิตภัณฑ์ที่เกี่ยวข้องในคำสั่งซื้อ และคะแนนที่ผู้ใช้กำหนด " -"คลาสนี้ใช้ฟิลด์ในฐานข้อมูลเพื่อสร้างแบบจำลองและจัดการข้อมูลข้อเสนอแนะอย่างมีประสิทธิภาพ" - -#: core/models.py:1914 -msgid "user-provided comments about their experience with the product" -msgstr "ความคิดเห็นที่ผู้ใช้ให้ไว้เกี่ยวกับประสบการณ์ของพวกเขาต่อผลิตภัณฑ์" - -#: core/models.py:1915 -msgid "feedback comments" -msgstr "ความคิดเห็นจากผู้ตอบแบบสอบถาม" - -#: core/models.py:1922 -msgid "" -"references the specific product in an order that this feedback is about" -msgstr "อ้างอิงถึงผลิตภัณฑ์เฉพาะในคำสั่งซื้อที่ความคิดเห็นนี้เกี่ยวข้อง" - -#: core/models.py:1923 -msgid "related order product" -msgstr "สินค้าที่เกี่ยวข้อง" - -#: core/models.py:1928 -msgid "user-assigned rating for the product" -msgstr "คะแนนที่ผู้ใช้กำหนดให้กับผลิตภัณฑ์" - -#: core/models.py:1929 -msgid "product rating" -msgstr "การให้คะแนนสินค้า" - -#: core/serializers/utility.py:89 +#: engine/core/serializers/utility.py:89 msgid "" "you must provide a comment, rating, and order product uuid to add feedback." -msgstr "" -"คุณต้องแสดงความคิดเห็น, ให้คะแนน, และระบุ uuid ของสินค้าเพื่อเพิ่มคำแนะนำ" +msgstr "คุณต้องแสดงความคิดเห็น, ให้คะแนน, และระบุ uuid ของสินค้าเพื่อเพิ่มคำแนะนำ" -#: core/signals.py:73 -msgid "error during promocode creation: {e!s}" -msgstr "เกิดข้อผิดพลาดระหว่างการสร้างรหัสโปรโมชั่น: {e!s}" - -#: core/sitemaps.py:25 +#: engine/core/sitemaps.py:25 msgid "Home" msgstr "หน้าแรก" -#: core/sitemaps.py:30 +#: engine/core/sitemaps.py:30 msgid "Contact Us" msgstr "ติดต่อเรา" -#: core/sitemaps.py:35 +#: engine/core/sitemaps.py:35 msgid "About Us" msgstr "เกี่ยวกับเรา" -#: core/templates/digital_order_created_email.html:7 -#: core/templates/digital_order_created_email.html:100 -#: core/templates/digital_order_delivered_email.html:6 -#: core/templates/shipped_order_created_email.html:7 -#: core/templates/shipped_order_created_email.html:99 -#: core/templates/shipped_order_delivered_email.html:7 -#: core/templates/shipped_order_delivered_email.html:99 +#: engine/core/templates/digital_order_created_email.html:7 +#: engine/core/templates/digital_order_created_email.html:100 +#: engine/core/templates/digital_order_delivered_email.html:6 +#: engine/core/templates/shipped_order_created_email.html:7 +#: engine/core/templates/shipped_order_created_email.html:99 +#: engine/core/templates/shipped_order_delivered_email.html:7 +#: engine/core/templates/shipped_order_delivered_email.html:99 msgid "order confirmation" msgstr "การยืนยันคำสั่งซื้อ" -#: core/templates/digital_order_created_email.html:95 -#: core/templates/digital_order_delivered_email.html:94 -#: core/templates/promocode_granted_email.html:94 -#: core/templates/shipped_order_created_email.html:94 -#: core/templates/shipped_order_delivered_email.html:94 +#: engine/core/templates/digital_order_created_email.html:95 +#: engine/core/templates/digital_order_delivered_email.html:94 +#: engine/core/templates/promocode_granted_email.html:94 +#: engine/core/templates/shipped_order_created_email.html:94 +#: engine/core/templates/shipped_order_delivered_email.html:94 msgid "logo" msgstr "โลโก้" -#: core/templates/digital_order_created_email.html:101 -#: core/templates/shipped_order_created_email.html:100 -#: core/templates/shipped_order_delivered_email.html:100 +#: engine/core/templates/digital_order_created_email.html:101 +#: engine/core/templates/shipped_order_created_email.html:100 +#: engine/core/templates/shipped_order_delivered_email.html:100 #, python-format msgid "hello %(order.user.first_name)s," msgstr "สวัสดีครับ/ค่ะ %(order.user.first_name)s," -#: core/templates/digital_order_created_email.html:102 +#: engine/core/templates/digital_order_created_email.html:102 #, 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! " -"เราขอแจ้งให้คุณทราบว่าเราได้ดำเนินการตามคำสั่งซื้อของคุณแล้ว " -"รายละเอียดของคำสั่งซื้อของคุณมีดังนี้:" +"เราขอแจ้งให้คุณทราบว่าเราได้ดำเนินการตามคำสั่งซื้อของคุณแล้ว รายละเอียดของคำสั่งซื้อของคุณมีดังนี้:" -#: core/templates/digital_order_created_email.html:112 -#: core/templates/digital_order_delivered_email.html:110 -#: core/templates/shipped_order_created_email.html:110 -#: core/templates/shipped_order_delivered_email.html:110 +#: engine/core/templates/digital_order_created_email.html:112 +#: engine/core/templates/digital_order_delivered_email.html:110 +#: engine/core/templates/shipped_order_created_email.html:110 +#: engine/core/templates/shipped_order_delivered_email.html:110 msgid "total" msgstr "รวม" -#: core/templates/digital_order_created_email.html:125 -#: core/templates/digital_order_delivered_email.html:157 -#: core/templates/shipped_order_created_email.html:127 -#: core/templates/shipped_order_delivered_email.html:127 +#: engine/core/templates/digital_order_created_email.html:125 +#: engine/core/templates/digital_order_delivered_email.html:157 +#: engine/core/templates/shipped_order_created_email.html:127 +#: engine/core/templates/shipped_order_delivered_email.html:127 msgid "total price" msgstr "ราคาทั้งหมด" -#: core/templates/digital_order_created_email.html:131 -#: core/templates/shipped_order_created_email.html:140 -#: core/templates/shipped_order_delivered_email.html:140 +#: engine/core/templates/digital_order_created_email.html:131 +#: engine/core/templates/shipped_order_created_email.html:140 +#: engine/core/templates/shipped_order_delivered_email.html:140 #, python-format 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" -#: core/templates/digital_order_created_email.html:133 +#: engine/core/templates/digital_order_created_email.html:133 #, python-format msgid "best regards,
the %(config.PROJECT_NAME)s team" msgstr "ขอแสดงความนับถือ
ทีมงาน %(config.PROJECT_NAME)s" -#: core/templates/digital_order_created_email.html:139 -#: core/templates/digital_order_delivered_email.html:171 -#: core/templates/promocode_granted_email.html:114 +#: engine/core/templates/digital_order_created_email.html:139 +#: engine/core/templates/digital_order_delivered_email.html:171 +#: engine/core/templates/promocode_granted_email.html:114 msgid "all rights reserved" msgstr "สงวนลิขสิทธิ์" -#: core/templates/digital_order_delivered_email.html:99 +#: engine/core/templates/digital_order_delivered_email.html:99 msgid "order delivered" msgstr "คำสั่งซื้อจัดส่งแล้ว" -#: core/templates/digital_order_delivered_email.html:100 -#: core/templates/promocode_granted_email.html:100 +#: engine/core/templates/digital_order_delivered_email.html:100 +#: engine/core/templates/promocode_granted_email.html:100 #, python-format msgid "hello %(user_first_name)s," msgstr "สวัสดีครับ/ค่ะ %(user_first_name)s," -#: core/templates/digital_order_delivered_email.html:101 +#: engine/core/templates/digital_order_delivered_email.html:101 #, python-format msgid "" "we have successfully processed your order №%(order_uuid)s! below are the\n" @@ -2749,124 +2711,125 @@ msgstr "" "เราได้ดำเนินการคำสั่งซื้อของคุณหมายเลข %(order_uuid)s สำเร็จแล้ว! " "รายละเอียดของคำสั่งซื้อของคุณมีดังนี้:" -#: core/templates/digital_order_delivered_email.html:128 +#: engine/core/templates/digital_order_delivered_email.html:128 msgid "" "additional\n" " information" msgstr "ข้อมูลเพิ่มเติม" -#: core/templates/digital_order_delivered_email.html:137 -#: core/templates/json_table_widget.html:6 +#: engine/core/templates/digital_order_delivered_email.html:137 +#: engine/core/templates/json_table_widget.html:6 msgid "value" msgstr "มูลค่า" -#: core/templates/digital_order_delivered_email.html:163 -#: core/templates/promocode_granted_email.html:106 +#: engine/core/templates/digital_order_delivered_email.html:163 +#: engine/core/templates/promocode_granted_email.html:106 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" " %(contact_email)s." msgstr "หากคุณมีคำถามใด ๆ โปรดติดต่อทีมสนับสนุนของเราได้ที่ %(contact_email)s" -#: core/templates/digital_order_delivered_email.html:165 -#: core/templates/promocode_granted_email.html:108 +#: engine/core/templates/digital_order_delivered_email.html:165 +#: engine/core/templates/promocode_granted_email.html:108 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "ขอแสดงความนับถือ
ทีมงาน %(project_name)s" -#: core/templates/json_table_widget.html:5 +#: engine/core/templates/json_table_widget.html:5 msgid "key" msgstr "คีย์" -#: core/templates/json_table_widget.html:40 +#: engine/core/templates/json_table_widget.html:40 msgid "Add Row" msgstr "เพิ่มแถว" -#: core/templates/promocode_granted_email.html:6 -#: core/templates/promocode_granted_email.html:99 +#: engine/core/templates/promocode_granted_email.html:6 +#: engine/core/templates/promocode_granted_email.html:99 msgid "promocode granted" msgstr "รหัสส่งเสริมการขายได้รับแล้ว" -#: core/templates/promocode_granted_email.html:101 +#: engine/core/templates/promocode_granted_email.html:101 msgid "" "Thank you for staying with us! We have granted you with a promocode\n" " for " msgstr "ขอบคุณที่เข้าพักกับเรา! เราได้มอบรหัสโปรโมชั่นให้คุณสำหรับ" -#: core/templates/shipped_order_created_email.html:101 -#: core/templates/shipped_order_delivered_email.html:101 +#: 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 "" -"ขอบคุณสำหรับการสั่งซื้อของคุณ! เราขอแจ้งยืนยันการสั่งซื้อของคุณเรียบร้อยแล้ว" -" รายละเอียดการสั่งซื้อของคุณมีดังนี้:" +"ขอบคุณสำหรับการสั่งซื้อของคุณ! เราขอแจ้งยืนยันการสั่งซื้อของคุณเรียบร้อยแล้ว " +"รายละเอียดการสั่งซื้อของคุณมีดังนี้:" -#: core/templates/shipped_order_created_email.html:123 -#: core/templates/shipped_order_delivered_email.html:123 +#: engine/core/templates/shipped_order_created_email.html:123 +#: engine/core/templates/shipped_order_delivered_email.html:123 msgid "shipping price" msgstr "ราคาค่าจัดส่ง" -#: core/templates/shipped_order_created_email.html:133 -#: core/templates/shipped_order_delivered_email.html:133 +#: engine/core/templates/shipped_order_created_email.html:133 +#: engine/core/templates/shipped_order_delivered_email.html:133 msgid "your order will be delivered to the following address:" msgstr "คำสั่งซื้อของคุณจะถูกจัดส่งไปยังที่อยู่ต่อไปนี้:" -#: core/templates/shipped_order_created_email.html:142 -#: core/templates/shipped_order_delivered_email.html:142 +#: engine/core/templates/shipped_order_created_email.html:142 +#: engine/core/templates/shipped_order_delivered_email.html:142 #, python-format msgid "best regards,
The %(config.PROJECT_NAME)s team" msgstr "ขอแสดงความนับถือ
ทีมงาน %(config.PROJECT_NAME)s" -#: core/templates/shipped_order_created_email.html:147 -#: core/templates/shipped_order_delivered_email.html:147 +#: engine/core/templates/shipped_order_created_email.html:147 +#: engine/core/templates/shipped_order_delivered_email.html:147 msgid "" "all rights\n" " reserved" msgstr "สงวนลิขสิทธิ์" -#: core/utils/caching.py:44 +#: engine/core/utils/caching.py:44 msgid "both data and timeout are required" msgstr "จำเป็นต้องมีทั้งข้อมูลและเวลาหมดอายุ" -#: core/utils/caching.py:46 +#: engine/core/utils/caching.py:46 msgid "invalid timeout value, it must be between 0 and 216000 seconds" msgstr "ค่าหมดเวลาไม่ถูกต้อง ต้องอยู่ระหว่าง 0 ถึง 216000 วินาที" -#: core/utils/emailing.py:27 +#: engine/core/utils/emailing.py:27 #, python-brace-format msgid "{config.PROJECT_NAME} | contact us initiated" msgstr "{config.PROJECT_NAME} | ติดต่อเรา เริ่มต้น" -#: core/utils/emailing.py:73 +#: engine/core/utils/emailing.py:73 #, python-brace-format msgid "{config.PROJECT_NAME} | order confirmation" msgstr "{config.PROJECT_NAME} | ยืนยันการสั่งซื้อ" -#: core/utils/emailing.py:105 +#: engine/core/utils/emailing.py:105 #, python-brace-format msgid "{config.PROJECT_NAME} | order delivered" msgstr "{config.PROJECT_NAME} | จัดส่งเรียบร้อย" -#: core/utils/emailing.py:188 +#: engine/core/utils/emailing.py:188 #, python-brace-format msgid "{config.PROJECT_NAME} | promocode granted" msgstr "{config.PROJECT_NAME} | รหัสโปรโมชั่นได้รับแล้ว" -#: core/utils/messages.py:3 +#: engine/core/utils/messages.py:3 msgid "you do not have permission to perform this action." msgstr "คุณไม่มีสิทธิ์ดำเนินการนี้" -#: core/utils/nominatim.py:8 +#: engine/core/utils/nominatim.py:8 msgid "NOMINATIM_URL must be configured." msgstr "ต้องกำหนดค่าพารามิเตอร์ NOMINATIM_URL!" -#: core/validators.py:16 +#: engine/core/validators.py:16 #, 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} พิกเซล!" -#: core/views.py:72 +#: engine/core/views.py:71 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." @@ -2874,106 +2837,107 @@ msgstr "" "จัดการคำขอสำหรับดัชนีแผนผังเว็บไซต์และส่งคืนการตอบสนองในรูปแบบ XML " "โดยตรวจสอบให้แน่ใจว่าการตอบสนองมีหัวข้อประเภทเนื้อหาที่เหมาะสมสำหรับ XML" -#: core/views.py:87 +#: engine/core/views.py:86 msgid "" "Handles the detailed view response for a sitemap. This function processes " "the request, fetches the appropriate sitemap detail response, and sets the " "Content-Type header for XML." msgstr "" -"จัดการการตอบสนองมุมมองรายละเอียดสำหรับแผนผังเว็บไซต์ ฟังก์ชันนี้ประมวลผลคำขอ" -" ดึงการตอบสนองรายละเอียดแผนผังเว็บไซต์ที่เหมาะสม และตั้งค่าส่วนหัว Content-" -"Type สำหรับ XML" +"จัดการการตอบสนองมุมมองรายละเอียดสำหรับแผนผังเว็บไซต์ ฟังก์ชันนี้ประมวลผลคำขอ " +"ดึงการตอบสนองรายละเอียดแผนผังเว็บไซต์ที่เหมาะสม และตั้งค่าส่วนหัว Content-Type สำหรับ XML" -#: core/views.py:116 +#: engine/core/views.py:115 msgid "" "Returns a list of supported languages and their corresponding information." msgstr "ส่งคืนรายการของภาษาที่รองรับและข้อมูลที่เกี่ยวข้อง" -#: core/views.py:148 +#: engine/core/views.py:147 msgid "Returns the parameters of the website as a JSON object." msgstr "ส่งคืนพารามิเตอร์ของเว็บไซต์ในรูปแบบอ็อบเจ็กต์ JSON" -#: core/views.py:167 +#: engine/core/views.py:166 msgid "" "Handles cache operations such as reading and setting cache data with a " "specified key and timeout." msgstr "" -"จัดการการดำเนินการแคช เช่น " -"การอ่านและการตั้งค่าข้อมูลแคชด้วยคีย์ที่กำหนดและเวลาหมดอายุ" +"จัดการการดำเนินการแคช เช่น การอ่านและการตั้งค่าข้อมูลแคชด้วยคีย์ที่กำหนดและเวลาหมดอายุ" -#: core/views.py:194 +#: engine/core/views.py:193 msgid "Handles `contact us` form submissions." msgstr "จัดการการส่งแบบฟอร์ม 'ติดต่อเรา'" -#: core/views.py:215 +#: engine/core/views.py:214 msgid "" "Handles requests for processing and validating URLs from incoming POST " "requests." msgstr "" -"จัดการคำขอสำหรับการประมวลผลและตรวจสอบความถูกต้องของ URL จากคำขอ POST " -"ที่เข้ามา" +"จัดการคำขอสำหรับการประมวลผลและตรวจสอบความถูกต้องของ URL จากคำขอ POST ที่เข้ามา" -#: core/views.py:255 +#: engine/core/views.py:254 msgid "Handles global search queries." msgstr "จัดการคำค้นหาทั่วโลก" -#: core/views.py:270 +#: engine/core/views.py:269 msgid "Handles the logic of buying as a business without registration." msgstr "จัดการตรรกะของการซื้อในฐานะธุรกิจโดยไม่ต้องจดทะเบียน" -#: core/views.py:306 +#: engine/core/views.py:305 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 เพื่อระบุว่าทรัพยากรไม่พร้อมใช้งาน" -#: core/views.py:316 +#: engine/core/views.py:315 msgid "order_product_uuid is required" msgstr "order_product_uuid เป็นข้อมูลที่จำเป็น" -#: core/views.py:322 +#: engine/core/views.py:321 msgid "you can only download the digital asset once" msgstr "คุณสามารถดาวน์โหลดสินทรัพย์ดิจิทัลได้เพียงครั้งเดียวเท่านั้น" -#: core/views.py:325 +#: engine/core/views.py:324 msgid "the order must be paid before downloading the digital asset" msgstr "คำสั่งซื้อจะต้องชำระเงินก่อนดาวน์โหลดสินทรัพย์ดิจิทัล" -#: core/views.py:331 +#: engine/core/views.py:330 msgid "the order product does not have a product" msgstr "สินค้าตามคำสั่งซื้อไม่มีสินค้า" -#: core/views.py:369 +#: engine/core/views.py:368 msgid "favicon not found" msgstr "ไม่พบไอคอนเว็บไซต์" -#: core/views.py:374 +#: engine/core/views.py:373 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 " +"เพื่อแสดงว่าทรัพยากรไม่พร้อมใช้งาน" -#: core/views.py:386 +#: engine/core/views.py:385 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" -#: core/views.py:399 +#: engine/core/views.py:398 msgid "Returns current version of the eVibes. " msgstr "ส่งคืนเวอร์ชันปัจจุบันของ eVibes" -#: core/viewsets.py:137 +#: engine/core/viewsets.py:137 msgid "" "Defines a viewset for managing Evibes-related operations. The EvibesViewSet " "class inherits from ModelViewSet and provides functionality for handling " @@ -2981,27 +2945,25 @@ msgid "" "serializer classes based on the current action, customizable permissions, " "and rendering formats." msgstr "" -"กำหนดชุดมุมมองสำหรับการจัดการการดำเนินการที่เกี่ยวข้องกับ Evibes คลาส " -"EvibesViewSet สืบทอดมาจาก ModelViewSet " -"และให้ฟังก์ชันการทำงานสำหรับการจัดการการกระทำและการดำเนินการบนเอนทิตีของ " -"Evibes รวมถึงการรองรับคลาสตัวแปลงแบบไดนามิกตามการกระทำปัจจุบัน " -"การอนุญาตที่ปรับแต่งได้ และรูปแบบการแสดงผล" +"กำหนดชุดมุมมองสำหรับการจัดการการดำเนินการที่เกี่ยวข้องกับ Evibes คลาส EvibesViewSet " +"สืบทอดมาจาก ModelViewSet " +"และให้ฟังก์ชันการทำงานสำหรับการจัดการการกระทำและการดำเนินการบนเอนทิตีของ Evibes " +"รวมถึงการรองรับคลาสตัวแปลงแบบไดนามิกตามการกระทำปัจจุบัน การอนุญาตที่ปรับแต่งได้ " +"และรูปแบบการแสดงผล" -#: core/viewsets.py:157 +#: engine/core/viewsets.py:157 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" -#: core/viewsets.py:176 +#: engine/core/viewsets.py:176 msgid "" "Handles operations related to Attribute objects within the application. " "Provides a set of API endpoints to interact with Attribute data. This class " @@ -3010,28 +2972,26 @@ msgid "" "specific fields or retrieving detailed versus simplified information " "depending on the request." msgstr "" -"จัดการการดำเนินการที่เกี่ยวข้องกับวัตถุ Attribute ภายในแอปพลิเคชัน " -"ให้ชุดของจุดสิ้นสุด API สำหรับการโต้ตอบกับข้อมูล Attribute " -"คลาสนี้จัดการการค้นหา การกรอง และการแปลงวัตถุ Attribute เป็นรูปแบบที่อ่านได้" -" ช่วยให้สามารถควบคุมข้อมูลที่ส่งคืนได้อย่างยืดหยุ่น เช่น " -"การกรองตามฟิลด์เฉพาะ หรือการดึงข้อมูลแบบละเอียดหรือแบบย่อ " -"ขึ้นอยู่กับความต้องการของคำขอ" +"จัดการการดำเนินการที่เกี่ยวข้องกับวัตถุ Attribute ภายในแอปพลิเคชัน ให้ชุดของจุดสิ้นสุด API " +"สำหรับการโต้ตอบกับข้อมูล Attribute คลาสนี้จัดการการค้นหา การกรอง และการแปลงวัตถุ " +"Attribute เป็นรูปแบบที่อ่านได้ ช่วยให้สามารถควบคุมข้อมูลที่ส่งคืนได้อย่างยืดหยุ่น เช่น " +"การกรองตามฟิลด์เฉพาะ หรือการดึงข้อมูลแบบละเอียดหรือแบบย่อ ขึ้นอยู่กับความต้องการของคำขอ" -#: core/viewsets.py:195 +#: engine/core/viewsets.py:195 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" -#: core/viewsets.py:214 +#: engine/core/viewsets.py:214 msgid "" "Manages views for Category-related operations. The CategoryViewSet class is " "responsible for handling operations related to the Category model in the " @@ -3040,25 +3000,22 @@ msgid "" "can access specific data." msgstr "" "จัดการมุมมองสำหรับการดำเนินการที่เกี่ยวข้องกับหมวดหมู่ คลาส CategoryViewSet " -"รับผิดชอบในการจัดการการดำเนินการที่เกี่ยวข้องกับโมเดลหมวดหมู่ในระบบ " -"มันรองรับการดึงข้อมูล การกรอง และการแปลงข้อมูลหมวดหมู่เป็นรูปแบบที่ส่งต่อได้" -" " +"รับผิดชอบในการจัดการการดำเนินการที่เกี่ยวข้องกับโมเดลหมวดหมู่ในระบบ มันรองรับการดึงข้อมูล " +"การกรอง และการแปลงข้อมูลหมวดหมู่เป็นรูปแบบที่ส่งต่อได้ " "ชุดมุมมองนี้ยังบังคับใช้สิทธิ์การเข้าถึงเพื่อให้แน่ใจว่าเฉพาะผู้ใช้ที่ได้รับอนุญาตเท่านั้นที่สามารถเข้าถึงข้อมูลเฉพาะได้" -#: core/viewsets.py:326 +#: engine/core/viewsets.py:326 msgid "" "Represents a viewset for managing Brand instances. This class provides " "functionality for querying, filtering, and serializing Brand objects. It " "uses Django's ViewSet framework to simplify the implementation of API " "endpoints for Brand objects." msgstr "" -"แทนชุดมุมมองสำหรับการจัดการอินสแตนซ์ของแบรนด์ " -"คลาสนี้ให้ฟังก์ชันการทำงานสำหรับการค้นหา การกรอง " -"และการแปลงออบเจ็กต์แบรนด์เป็นรูปแบบที่ส่งผ่านได้ โดยใช้เฟรมเวิร์ก ViewSet " -"ของ Django เพื่อทำให้การพัฒนาระบบจุดสิ้นสุด API " -"สำหรับออบเจ็กต์แบรนด์เป็นเรื่องง่ายขึ้น" +"แทนชุดมุมมองสำหรับการจัดการอินสแตนซ์ของแบรนด์ คลาสนี้ให้ฟังก์ชันการทำงานสำหรับการค้นหา " +"การกรอง และการแปลงออบเจ็กต์แบรนด์เป็นรูปแบบที่ส่งผ่านได้ โดยใช้เฟรมเวิร์ก ViewSet ของ " +"Django เพื่อทำให้การพัฒนาระบบจุดสิ้นสุด API สำหรับออบเจ็กต์แบรนด์เป็นเรื่องง่ายขึ้น" -#: core/viewsets.py:438 +#: engine/core/viewsets.py:438 msgid "" "Manages operations related to the `Product` model in the system. This class " "provides a viewset for managing products, including their filtering, " @@ -3071,11 +3028,11 @@ msgstr "" "จัดการการดำเนินงานที่เกี่ยวข้องกับโมเดล `Product` ในระบบ " "คลาสนี้ให้ชุดมุมมองสำหรับการจัดการผลิตภัณฑ์ รวมถึงการกรอง การแปลงเป็นลำดับ " "และปฏิบัติการบนอินสแตนซ์เฉพาะ มันขยายจาก `EvibesViewSet` " -"เพื่อใช้ฟังก์ชันทั่วไปและผสานรวมกับเฟรมเวิร์ก Django REST สำหรับการดำเนินการ" -" API แบบ RESTful รวมถึงวิธีการสำหรับการดึงรายละเอียดผลิตภัณฑ์ การใช้สิทธิ์ " +"เพื่อใช้ฟังก์ชันทั่วไปและผสานรวมกับเฟรมเวิร์ก Django REST สำหรับการดำเนินการ API แบบ " +"RESTful รวมถึงวิธีการสำหรับการดึงรายละเอียดผลิตภัณฑ์ การใช้สิทธิ์ " "และการเข้าถึงข้อเสนอแนะที่เกี่ยวข้องของผลิตภัณฑ์" -#: core/viewsets.py:568 +#: engine/core/viewsets.py:568 msgid "" "Represents a viewset for managing Vendor objects. This viewset allows " "fetching, filtering, and serializing Vendor data. It defines the queryset, " @@ -3083,99 +3040,93 @@ 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" -#: core/viewsets.py:588 +#: engine/core/viewsets.py:588 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 `EvibesViewSet` and makes " "use of Django's filtering system for querying data." msgstr "" -"การแสดงชุดมุมมองที่จัดการวัตถุข้อเสนอแนะ " -"คลาสนี้จัดการการดำเนินการที่เกี่ยวข้องกับวัตถุข้อเสนอแนะ รวมถึงการแสดงรายการ" -" การกรอง และการดึงรายละเอียด " -"วัตถุประสงค์ของชุดมุมมองนี้คือการจัดเตรียมตัวแปลงอนุกรมที่แตกต่างกันสำหรับการดำเนินการต่างๆ" -" และจัดการวัตถุข้อเสนอแนะที่เข้าถึงได้บนพื้นฐานของสิทธิ์ มันขยายคลาสพื้นฐาน " -"`EvibesViewSet` และใช้ระบบกรองของ Django สำหรับการสืบค้นข้อมูล" +"การแสดงชุดมุมมองที่จัดการวัตถุข้อเสนอแนะ คลาสนี้จัดการการดำเนินการที่เกี่ยวข้องกับวัตถุข้อเสนอแนะ " +"รวมถึงการแสดงรายการ การกรอง และการดึงรายละเอียด " +"วัตถุประสงค์ของชุดมุมมองนี้คือการจัดเตรียมตัวแปลงอนุกรมที่แตกต่างกันสำหรับการดำเนินการต่างๆ " +"และจัดการวัตถุข้อเสนอแนะที่เข้าถึงได้บนพื้นฐานของสิทธิ์ มันขยายคลาสพื้นฐาน `EvibesViewSet` " +"และใช้ระบบกรองของ Django สำหรับการสืบค้นข้อมูล" -#: core/viewsets.py:615 +#: engine/core/viewsets.py:615 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 " "ใช้ตัวแปลงข้อมูลหลายแบบตามการกระทำที่เฉพาะเจาะจงและบังคับใช้สิทธิ์การเข้าถึงอย่างเหมาะสมขณะโต้ตอบกับข้อมูลคำสั่งซื้อ" -#: core/viewsets.py:813 +#: engine/core/viewsets.py:813 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" -#: core/viewsets.py:867 +#: engine/core/viewsets.py:867 msgid "Manages operations related to Product images in the application. " msgstr "จัดการการดำเนินงานที่เกี่ยวข้องกับภาพผลิตภัณฑ์ในแอปพลิเคชัน" -#: core/viewsets.py:880 +#: engine/core/viewsets.py:880 msgid "" "Manages the retrieval and handling of PromoCode instances through various " "API actions." -msgstr "" -"จัดการการดึงและการจัดการของตัวอย่าง PromoCode ผ่านการกระทำของ API ต่าง ๆ" +msgstr "จัดการการดึงและการจัดการของตัวอย่าง PromoCode ผ่านการกระทำของ API ต่าง ๆ" -#: core/viewsets.py:902 +#: engine/core/viewsets.py:902 msgid "Represents a view set for managing promotions. " msgstr "แสดงมุมมองที่ตั้งค่าไว้สำหรับการจัดการโปรโมชั่น" -#: core/viewsets.py:915 +#: engine/core/viewsets.py:915 msgid "Handles operations related to Stock data in the system." msgstr "จัดการการดำเนินงานที่เกี่ยวข้องกับข้อมูลสต็อกในระบบ" -#: core/viewsets.py:929 +#: engine/core/viewsets.py:929 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 นี้อำนวยความสะดวกในการทำงาน เช่น " +"การเพิ่ม การลบ และการดำเนินการแบบกลุ่มสำหรับผลิตภัณฑ์ในรายการที่ต้องการ " +"มีการตรวจสอบสิทธิ์เพื่อรับรองว่าผู้ใช้สามารถจัดการรายการที่ต้องการของตนเองเท่านั้น " +"เว้นแต่จะได้รับสิทธิ์อนุญาตอย่างชัดเจน" -#: core/viewsets.py:1044 +#: engine/core/viewsets.py:1044 msgid "" "This class provides viewset functionality for managing `Address` objects. " "The AddressViewSet class enables CRUD operations, filtering, and custom " @@ -3185,16 +3136,15 @@ msgid "" msgstr "" "คลาสนี้ให้ฟังก์ชันการทำงานของ viewset สำหรับจัดการออบเจ็กต์ `Address` คลาส " "AddressViewSet ช่วยให้สามารถดำเนินการ CRUD การกรอง " -"และการดำเนินการที่กำหนดเองที่เกี่ยวข้องกับเอนทิตีที่อยู่ " -"รวมถึงพฤติกรรมเฉพาะสำหรับวิธีการ HTTP ที่แตกต่างกัน การแทนที่ตัวแปลงข้อมูล " -"และการจัดการสิทธิ์ตามบริบทของคำขอ" +"และการดำเนินการที่กำหนดเองที่เกี่ยวข้องกับเอนทิตีที่อยู่ รวมถึงพฤติกรรมเฉพาะสำหรับวิธีการ HTTP " +"ที่แตกต่างกัน การแทนที่ตัวแปลงข้อมูล และการจัดการสิทธิ์ตามบริบทของคำขอ" -#: core/viewsets.py:1111 +#: engine/core/viewsets.py:1111 #, python-brace-format msgid "Geocoding error: {e}" msgstr "ข้อผิดพลาดในการแปลงพิกัดภูมิศาสตร์: {e}" -#: core/viewsets.py:1119 +#: engine/core/viewsets.py:1119 msgid "" "Handles operations related to Product Tags within the application. This " "class provides functionality for retrieving, filtering, and serializing " diff --git a/engine/core/locale/tr_TR/LC_MESSAGES/django.mo b/engine/core/locale/tr_TR/LC_MESSAGES/django.mo new file mode 100644 index 00000000..187e9a0b Binary files /dev/null and b/engine/core/locale/tr_TR/LC_MESSAGES/django.mo differ diff --git a/core/locale/tr_TR/LC_MESSAGES/django.po b/engine/core/locale/tr_TR/LC_MESSAGES/django.po similarity index 68% rename from core/locale/tr_TR/LC_MESSAGES/django.po rename to engine/core/locale/tr_TR/LC_MESSAGES/django.po index 29d71014..a7a2d194 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,213 +13,216 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: core/abstract.py:12 +#: engine/core/abstract.py:12 msgid "unique id" msgstr "Benzersiz Kimlik" -#: core/abstract.py:13 +#: engine/core/abstract.py:13 msgid "unique id is used to surely identify any database object" msgstr "" "Benzersiz kimlik, herhangi bir veritabanı nesnesini kesin olarak tanımlamak " "için kullanılır" -#: core/abstract.py:20 +#: engine/core/abstract.py:20 msgid "is active" msgstr "Aktif mi" -#: core/abstract.py:21 +#: engine/core/abstract.py:21 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" -#: core/abstract.py:23 core/choices.py:18 +#: engine/core/abstract.py:23 engine/core/choices.py:18 msgid "created" msgstr "Oluşturuldu" -#: core/abstract.py:23 +#: engine/core/abstract.py:23 msgid "when the object first appeared on the database" msgstr "Nesne veritabanında ilk kez göründüğünde" -#: core/abstract.py:24 +#: engine/core/abstract.py:24 msgid "modified" msgstr "Değiştirilmiş" -#: core/abstract.py:24 +#: engine/core/abstract.py:24 msgid "when the object was last modified" msgstr "Nesne en son ne zaman düzenlendi" -#: core/admin.py:68 +#: engine/core/admin.py:68 msgid "translations" msgstr "Çeviriler" -#: core/admin.py:72 +#: engine/core/admin.py:72 msgid "general" msgstr "Genel" -#: core/admin.py:74 +#: engine/core/admin.py:74 msgid "relations" msgstr "İlişkiler" -#: core/admin.py:76 +#: engine/core/admin.py:76 msgid "additional info" msgstr "EK BİLGİ" -#: core/admin.py:94 +#: engine/core/admin.py:94 msgid "metadata" msgstr "Metadata" -#: core/admin.py:101 +#: engine/core/admin.py:101 msgid "timestamps" msgstr "Zaman Damgaları" -#: core/admin.py:116 +#: engine/core/admin.py:116 #, python-format msgid "activate selected %(verbose_name_plural)s" msgstr "Seçili %(verbose_name_plural)s'ı etkinleştirin" -#: core/admin.py:121 +#: engine/core/admin.py:121 msgid "selected items have been activated." msgstr "Seçilen öğeler etkinleştirildi!" -#: core/admin.py:127 +#: engine/core/admin.py:127 #, python-format msgid "deactivate selected %(verbose_name_plural)s" msgstr "Seçili %(verbose_name_plural)s'ı devre dışı bırak" -#: core/admin.py:132 +#: engine/core/admin.py:132 msgid "selected items have been deactivated." msgstr "Seçilen öğeler devre dışı bırakıldı!" -#: core/admin.py:144 core/graphene/object_types.py:582 -#: core/graphene/object_types.py:589 core/models.py:783 core/models.py:791 +#: engine/core/admin.py:144 engine/core/graphene/object_types.py:586 +#: engine/core/graphene/object_types.py:593 engine/core/models.py:794 +#: engine/core/models.py:802 msgid "attribute value" msgstr "Öznitelik Değeri" -#: core/admin.py:145 core/graphene/object_types.py:75 core/models.py:792 +#: engine/core/admin.py:145 engine/core/graphene/object_types.py:75 +#: engine/core/models.py:803 msgid "attribute values" msgstr "Öznitelik Değerleri" -#: core/admin.py:156 +#: engine/core/admin.py:156 msgid "image" msgstr "Resim" -#: core/admin.py:157 core/graphene/object_types.py:474 +#: engine/core/admin.py:157 engine/core/graphene/object_types.py:474 msgid "images" msgstr "Görüntüler" -#: core/admin.py:168 core/models.py:559 +#: engine/core/admin.py:169 engine/core/models.py:559 msgid "stock" msgstr "Stok" -#: core/admin.py:169 core/graphene/object_types.py:636 +#: engine/core/admin.py:170 engine/core/graphene/object_types.py:640 msgid "stocks" msgstr "Stoklar" -#: core/admin.py:182 core/models.py:1744 +#: engine/core/admin.py:183 engine/core/models.py:1804 msgid "order product" msgstr "Ürün Siparişi" -#: core/admin.py:183 core/graphene/object_types.py:389 core/models.py:1745 +#: engine/core/admin.py:184 engine/core/graphene/object_types.py:389 +#: engine/core/models.py:1805 msgid "order products" msgstr "Sipariş Ürünleri" -#: core/admin.py:196 core/admin.py:197 +#: engine/core/admin.py:197 engine/core/admin.py:198 msgid "children" msgstr "Çocuklar" -#: core/admin.py:965 +#: engine/core/admin.py:969 msgid "Config" msgstr "Konfigürasyon" -#: core/apps.py:8 +#: engine/core/apps.py:8 msgid "core" msgstr "Çekirdek" -#: core/choices.py:4 core/choices.py:20 +#: engine/core/choices.py:4 engine/core/choices.py:20 msgid "finished" msgstr "Bitti" -#: core/choices.py:5 core/choices.py:19 +#: engine/core/choices.py:5 engine/core/choices.py:19 msgid "delivering" msgstr "Teslimat" -#: core/choices.py:6 +#: engine/core/choices.py:6 msgid "delivered" msgstr "Teslim edildi" -#: core/choices.py:7 +#: engine/core/choices.py:7 msgid "canceled" msgstr "İptal edildi" -#: core/choices.py:8 core/choices.py:16 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" -#: core/choices.py:9 core/choices.py:15 +#: engine/core/choices.py:9 engine/core/choices.py:15 msgid "pending" msgstr "Beklemede" -#: core/choices.py:10 +#: engine/core/choices.py:10 msgid "accepted" msgstr "Kabul Edildi" -#: core/choices.py:11 +#: engine/core/choices.py:11 msgid "money returned" msgstr "İade Edilen Para" -#: core/choices.py:17 +#: engine/core/choices.py:17 msgid "payment" msgstr "Ödeme" -#: core/choices.py:21 +#: engine/core/choices.py:21 msgid "momental" msgstr "Momental" -#: core/choices.py:24 +#: engine/core/choices.py:24 msgid "successful" msgstr "Başarılı" -#: core/docs/drf/views.py:17 core/graphene/mutations.py:38 +#: engine/core/docs/drf/views.py:17 engine/core/graphene/mutations.py:38 msgid "cache I/O" msgstr "Önbellek I/O" -#: core/docs/drf/views.py:19 +#: engine/core/docs/drf/views.py:19 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." -#: core/docs/drf/views.py:32 +#: engine/core/docs/drf/views.py:32 msgid "get a list of supported languages" msgstr "Desteklenen dillerin bir listesini alın" -#: core/docs/drf/views.py:41 +#: engine/core/docs/drf/views.py:41 msgid "get application's exposable parameters" msgstr "Uygulamanın açığa çıkarılabilir parametrelerini alın" -#: core/docs/drf/views.py:48 +#: engine/core/docs/drf/views.py:48 msgid "send a message to the support team" msgstr "Destek ekibine bir mesaj gönderin" -#: core/docs/drf/views.py:59 core/graphene/mutations.py:58 +#: engine/core/docs/drf/views.py:59 engine/core/graphene/mutations.py:58 msgid "request a CORSed URL" msgstr "CORS'lu bir URL isteyin. Yalnızca https'ye izin verilir." -#: core/docs/drf/views.py:85 +#: engine/core/docs/drf/views.py:85 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ı" -#: core/docs/drf/views.py:91 +#: engine/core/docs/drf/views.py:91 msgid "purchase an order as a business" msgstr "İşletme olarak bir sipariş satın alın" -#: core/docs/drf/views.py:98 +#: engine/core/docs/drf/views.py:98 msgid "" "purchase an order as a business, using the provided `products` with " "`product_uuid` and `attributes`." @@ -227,242 +230,244 @@ msgstr "" "Sağlanan `products` ile `product_uuid` ve `attributes` öğelerini kullanarak " "bir siparişi işletme olarak satın alın." -#: core/docs/drf/viewsets.py:58 +#: engine/core/docs/drf/viewsets.py:58 msgid "list all attribute groups (simple view)" msgstr "Tüm öznitelik gruplarını listeleme (basit görünüm)" -#: core/docs/drf/viewsets.py:62 +#: engine/core/docs/drf/viewsets.py:62 msgid "retrieve a single attribute group (detailed view)" msgstr "Tek bir öznitelik grubunu alma (ayrıntılı görünüm)" -#: core/docs/drf/viewsets.py:66 +#: engine/core/docs/drf/viewsets.py:66 msgid "create an attribute group" msgstr "Öznitelik grubu oluşturma" -#: core/docs/drf/viewsets.py:70 +#: engine/core/docs/drf/viewsets.py:70 msgid "delete an attribute group" msgstr "Öznitelik grubunu silme" -#: core/docs/drf/viewsets.py:74 +#: engine/core/docs/drf/viewsets.py:74 msgid "rewrite an existing attribute group saving non-editables" msgstr "" "Düzenlenemeyenleri kaydederek mevcut bir öznitelik grubunu yeniden yazma" -#: core/docs/drf/viewsets.py:78 -msgid "" -"rewrite some fields of an existing attribute group saving non-editables" +#: engine/core/docs/drf/viewsets.py:78 +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" -#: core/docs/drf/viewsets.py:85 +#: engine/core/docs/drf/viewsets.py:85 msgid "list all attributes (simple view)" msgstr "Tüm öznitelikleri listele (basit görünüm)" -#: core/docs/drf/viewsets.py:89 +#: engine/core/docs/drf/viewsets.py:89 msgid "retrieve a single attribute (detailed view)" msgstr "Tek bir özniteliği alma (ayrıntılı görünüm)" -#: core/docs/drf/viewsets.py:93 +#: engine/core/docs/drf/viewsets.py:93 msgid "create an attribute" msgstr "Öznitelik oluşturma" -#: core/docs/drf/viewsets.py:97 +#: engine/core/docs/drf/viewsets.py:97 msgid "delete an attribute" msgstr "Bir özniteliği silme" -#: core/docs/drf/viewsets.py:101 +#: engine/core/docs/drf/viewsets.py:101 msgid "rewrite an existing attribute saving non-editables" msgstr "Düzenlenemeyenleri kaydederek mevcut bir niteliği yeniden yazma" -#: core/docs/drf/viewsets.py:105 +#: engine/core/docs/drf/viewsets.py:105 msgid "rewrite some fields of an existing attribute saving non-editables" msgstr "" "Mevcut bir özniteliğin bazı alanlarını düzenlenemez olarak kaydederek " "yeniden yazın" -#: core/docs/drf/viewsets.py:112 +#: engine/core/docs/drf/viewsets.py:112 msgid "list all attribute values (simple view)" msgstr "Tüm öznitelik değerlerini listeleme (basit görünüm)" -#: core/docs/drf/viewsets.py:116 +#: engine/core/docs/drf/viewsets.py:116 msgid "retrieve a single attribute value (detailed view)" msgstr "Tek bir öznitelik değerini alma (ayrıntılı görünüm)" -#: core/docs/drf/viewsets.py:120 +#: engine/core/docs/drf/viewsets.py:120 msgid "create an attribute value" msgstr "Öznitelik değeri oluşturma" -#: core/docs/drf/viewsets.py:124 +#: engine/core/docs/drf/viewsets.py:124 msgid "delete an attribute value" msgstr "Öznitelik değerini silme" -#: core/docs/drf/viewsets.py:128 +#: engine/core/docs/drf/viewsets.py:128 msgid "rewrite an existing attribute value saving non-editables" msgstr "" "Düzenlenemeyenleri kaydederek mevcut bir öznitelik değerini yeniden yazma" -#: core/docs/drf/viewsets.py:132 -msgid "" -"rewrite some fields of an existing attribute value saving non-editables" +#: engine/core/docs/drf/viewsets.py:132 +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" -#: core/docs/drf/viewsets.py:139 core/docs/drf/viewsets.py:140 +#: engine/core/docs/drf/viewsets.py:139 engine/core/docs/drf/viewsets.py:140 msgid "list all categories (simple view)" msgstr "Tüm kategorileri listele (basit görünüm)" -#: core/docs/drf/viewsets.py:144 core/docs/drf/viewsets.py:145 +#: engine/core/docs/drf/viewsets.py:144 engine/core/docs/drf/viewsets.py:145 msgid "retrieve a single category (detailed view)" msgstr "Tek bir kategoriyi alma (ayrıntılı görünüm)" -#: core/docs/drf/viewsets.py:149 core/docs/drf/viewsets.py:150 +#: engine/core/docs/drf/viewsets.py:150 engine/core/docs/drf/viewsets.py:183 +msgid "Category UUID or slug" +msgstr "Kategori UUID'si veya slug" + +#: engine/core/docs/drf/viewsets.py:157 engine/core/docs/drf/viewsets.py:158 msgid "create a category" msgstr "Bir kategori oluşturun" -#: core/docs/drf/viewsets.py:154 core/docs/drf/viewsets.py:155 +#: engine/core/docs/drf/viewsets.py:162 engine/core/docs/drf/viewsets.py:163 msgid "delete a category" msgstr "Kategori silme" -#: core/docs/drf/viewsets.py:159 core/docs/drf/viewsets.py:160 +#: engine/core/docs/drf/viewsets.py:167 engine/core/docs/drf/viewsets.py:168 msgid "rewrite an existing category saving non-editables" msgstr "Düzenlenemeyenleri kaydederek mevcut bir kategoriyi yeniden yazın" -#: core/docs/drf/viewsets.py:164 core/docs/drf/viewsets.py:165 +#: engine/core/docs/drf/viewsets.py:172 engine/core/docs/drf/viewsets.py:173 msgid "rewrite some fields of an existing category saving non-editables" msgstr "" "Mevcut bir kategorinin bazı alanlarını düzenlenemez olarak kaydederek " "yeniden yazın" -#: core/docs/drf/viewsets.py:169 core/docs/drf/viewsets.py:501 -#: core/graphene/object_types.py:117 core/graphene/object_types.py:207 -#: core/graphene/object_types.py:482 +#: engine/core/docs/drf/viewsets.py:177 engine/core/docs/drf/viewsets.py:517 +#: engine/core/graphene/object_types.py:117 +#: engine/core/graphene/object_types.py:207 +#: engine/core/graphene/object_types.py:482 msgid "SEO Meta snapshot" msgstr "SEO Meta anlık görüntüsü" -#: core/docs/drf/viewsets.py:170 +#: engine/core/docs/drf/viewsets.py:178 msgid "returns a snapshot of the category's SEO meta data" msgstr "Kategorinin SEO meta verilerinin anlık görüntüsünü döndürür" -#: core/docs/drf/viewsets.py:175 -msgid "Category UUID or slug" -msgstr "Kategori UUID'si veya slug" - -#: core/docs/drf/viewsets.py:188 +#: engine/core/docs/drf/viewsets.py:196 msgid "list all orders (simple view)" msgstr "Tüm kategorileri listele (basit görünüm)" -#: core/docs/drf/viewsets.py:189 +#: engine/core/docs/drf/viewsets.py:197 msgid "for non-staff users, only their own orders are returned." msgstr "" "Personel olmayan kullanıcılar için sadece kendi siparişleri iade edilir." -#: core/docs/drf/viewsets.py:195 +#: engine/core/docs/drf/viewsets.py:203 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ı" -#: core/docs/drf/viewsets.py:202 +#: engine/core/docs/drf/viewsets.py:210 msgid "Filter orders with buy_time >= this ISO 8601 datetime" msgstr "Buy_time >= this ISO 8601 datetime içeren siparişleri filtreleyin" -#: core/docs/drf/viewsets.py:207 +#: engine/core/docs/drf/viewsets.py:215 msgid "Filter orders with buy_time <= this ISO 8601 datetime" msgstr "Buy_time <= this ISO 8601 datetime ile siparişleri filtreleyin" -#: core/docs/drf/viewsets.py:212 +#: engine/core/docs/drf/viewsets.py:220 msgid "Filter by exact order UUID" msgstr "Tam sipariş UUID'sine göre filtreleme" -#: core/docs/drf/viewsets.py:217 +#: engine/core/docs/drf/viewsets.py:225 msgid "Filter by exact human-readable order ID" msgstr "" "Tam olarak insan tarafından okunabilir sipariş kimliğine göre filtreleme" -#: core/docs/drf/viewsets.py:222 +#: engine/core/docs/drf/viewsets.py:230 msgid "Filter by user's email (case-insensitive exact match)" msgstr "" "Kullanıcının e-postasına göre filtreleme (büyük/küçük harfe duyarlı olmayan " "tam eşleşme)" -#: core/docs/drf/viewsets.py:227 +#: engine/core/docs/drf/viewsets.py:235 msgid "Filter by user's UUID" msgstr "Kullanıcının UUID'sine göre filtreleme" -#: core/docs/drf/viewsets.py:232 +#: engine/core/docs/drf/viewsets.py:240 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)" -#: core/docs/drf/viewsets.py:238 +#: engine/core/docs/drf/viewsets.py:246 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 " "(örn. '-buy_time')." -#: core/docs/drf/viewsets.py:247 +#: engine/core/docs/drf/viewsets.py:255 msgid "retrieve a single order (detailed view)" msgstr "Tek bir kategoriyi alma (ayrıntılı görünüm)" -#: core/docs/drf/viewsets.py:251 +#: engine/core/docs/drf/viewsets.py:260 +msgid "Order UUID or human-readable id" +msgstr "Sipariş UUID'si veya insan tarafından okunabilir kimlik" + +#: engine/core/docs/drf/viewsets.py:267 msgid "create an order" msgstr "Öznitelik oluşturma" -#: core/docs/drf/viewsets.py:252 +#: engine/core/docs/drf/viewsets.py:268 msgid "doesn't work for non-staff users." msgstr "Personel olmayan kullanıcılar için çalışmaz." -#: core/docs/drf/viewsets.py:256 +#: engine/core/docs/drf/viewsets.py:272 msgid "delete an order" msgstr "Bir özniteliği silme" -#: core/docs/drf/viewsets.py:260 +#: engine/core/docs/drf/viewsets.py:276 msgid "rewrite an existing order saving non-editables" msgstr "Düzenlenemeyenleri kaydederek mevcut bir kategoriyi yeniden yazın" -#: core/docs/drf/viewsets.py:264 +#: engine/core/docs/drf/viewsets.py:280 msgid "rewrite some fields of an existing order saving non-editables" msgstr "" "Mevcut bir kategorinin bazı alanlarını düzenlenemez olarak kaydederek " "yeniden yazın" -#: core/docs/drf/viewsets.py:268 +#: engine/core/docs/drf/viewsets.py:284 msgid "purchase an order" msgstr "Sipariş anındaki satın alma fiyatı" -#: core/docs/drf/viewsets.py:270 +#: engine/core/docs/drf/viewsets.py:286 msgid "" "finalizes the order purchase. if `force_balance` is used, the purchase is " "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." -#: core/docs/drf/viewsets.py:282 core/graphene/mutations.py:335 +#: engine/core/docs/drf/viewsets.py:298 engine/core/graphene/mutations.py:335 msgid "purchase an order without account creation" msgstr "hesap oluşturmadan sipariş satın alma" -#: core/docs/drf/viewsets.py:283 +#: engine/core/docs/drf/viewsets.py:299 msgid "finalizes the order purchase for a non-registered user." msgstr "Kayıtlı olmayan bir kullanıcı için sipariş alımını sonuçlandırır." -#: core/docs/drf/viewsets.py:291 +#: engine/core/docs/drf/viewsets.py:307 msgid "add product to order" msgstr "Siparişe ürün ekleme" -#: core/docs/drf/viewsets.py:292 +#: engine/core/docs/drf/viewsets.py:308 msgid "" "adds a product to an order using the provided `product_uuid` and " "`attributes`." @@ -470,12 +475,12 @@ msgstr "" "Verilen `product_uuid` ve `attributes` öğelerini kullanarak siparişe bir " "ürün ekler." -#: core/docs/drf/viewsets.py:297 +#: engine/core/docs/drf/viewsets.py:313 msgid "add a list of products to order, quantities will not count" msgstr "" "Sipariş edilecek ürünlerin bir listesini ekleyin, miktarlar sayılmayacaktır" -#: core/docs/drf/viewsets.py:298 +#: engine/core/docs/drf/viewsets.py:314 msgid "" "adds a list of products to an order using the provided `product_uuid` and " "`attributes`." @@ -483,11 +488,11 @@ msgstr "" "Sağlanan `product_uuid` ve `attributes` öğelerini kullanarak bir siparişe " "ürün listesi ekler." -#: core/docs/drf/viewsets.py:303 +#: engine/core/docs/drf/viewsets.py:319 msgid "remove product from order" msgstr "Siparişten bir ürünü kaldırma" -#: core/docs/drf/viewsets.py:304 +#: engine/core/docs/drf/viewsets.py:320 msgid "" "removes a product from an order using the provided `product_uuid` and " "`attributes`." @@ -495,11 +500,11 @@ msgstr "" "Sağlanan `product_uuid` ve `attributes` öğelerini kullanarak bir ürünü " "siparişten kaldırır." -#: core/docs/drf/viewsets.py:309 +#: engine/core/docs/drf/viewsets.py:325 msgid "remove product from order, quantities will not count" msgstr "Siparişten bir ürünü kaldırın, miktarlar sayılmayacaktır" -#: core/docs/drf/viewsets.py:310 +#: engine/core/docs/drf/viewsets.py:326 msgid "" "removes a list of products from an order using the provided `product_uuid` " "and `attributes`" @@ -507,796 +512,821 @@ msgstr "" "Sağlanan `product_uuid` ve `attributes` öğelerini kullanarak bir siparişten " "ürün listesini kaldırır." -#: core/docs/drf/viewsets.py:318 +#: engine/core/docs/drf/viewsets.py:334 msgid "list all wishlists (simple view)" msgstr "Tüm öznitelikleri listele (basit görünüm)" -#: core/docs/drf/viewsets.py:319 +#: engine/core/docs/drf/viewsets.py:335 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." -#: core/docs/drf/viewsets.py:323 +#: engine/core/docs/drf/viewsets.py:339 msgid "retrieve a single wishlist (detailed view)" msgstr "Tek bir özniteliği alma (ayrıntılı görünüm)" -#: core/docs/drf/viewsets.py:327 +#: engine/core/docs/drf/viewsets.py:343 msgid "create an wishlist" msgstr "Öznitelik oluşturma" -#: core/docs/drf/viewsets.py:328 +#: engine/core/docs/drf/viewsets.py:344 msgid "Doesn't work for non-staff users." msgstr "Personel olmayan kullanıcılar için çalışmaz." -#: core/docs/drf/viewsets.py:332 +#: engine/core/docs/drf/viewsets.py:348 msgid "delete an wishlist" msgstr "Bir özniteliği silme" -#: core/docs/drf/viewsets.py:336 +#: engine/core/docs/drf/viewsets.py:352 msgid "rewrite an existing wishlist saving non-editables" msgstr "Düzenlenemeyenleri kaydederek mevcut bir niteliği yeniden yazma" -#: core/docs/drf/viewsets.py:340 +#: engine/core/docs/drf/viewsets.py:356 msgid "rewrite some fields of an existing wishlist saving non-editables" msgstr "" "Mevcut bir özniteliğin bazı alanlarını düzenlenemez olarak kaydederek " "yeniden yazın" -#: core/docs/drf/viewsets.py:344 +#: engine/core/docs/drf/viewsets.py:360 msgid "add product to wishlist" msgstr "Siparişe ürün ekleme" -#: core/docs/drf/viewsets.py:345 +#: engine/core/docs/drf/viewsets.py:361 msgid "adds a product to an wishlist using the provided `product_uuid`" msgstr "" "Sağlanan `product_uuid` öğesini kullanarak bir ürünü istek listesine ekler" -#: core/docs/drf/viewsets.py:350 +#: engine/core/docs/drf/viewsets.py:366 msgid "remove product from wishlist" msgstr "İstek listesinden bir ürünü kaldırma" -#: core/docs/drf/viewsets.py:351 +#: engine/core/docs/drf/viewsets.py:367 msgid "removes a product from an wishlist using the provided `product_uuid`" msgstr "" "Sağlanan `product_uuid` öğesini kullanarak bir ürünü istek listesinden " "kaldırır" -#: core/docs/drf/viewsets.py:356 +#: engine/core/docs/drf/viewsets.py:372 msgid "add many products to wishlist" msgstr "İstek listesine birçok ürün ekleyin" -#: core/docs/drf/viewsets.py:357 +#: engine/core/docs/drf/viewsets.py:373 msgid "adds many products to an wishlist using the provided `product_uuids`" msgstr "" "Sağlanan `product_uuids` öğesini kullanarak bir istek listesine birçok ürün " "ekler" -#: core/docs/drf/viewsets.py:362 +#: engine/core/docs/drf/viewsets.py:378 msgid "remove many products from wishlist" msgstr "Siparişten bir ürünü kaldırma" -#: core/docs/drf/viewsets.py:363 +#: engine/core/docs/drf/viewsets.py:379 msgid "" "removes many products from an wishlist using the provided `product_uuids`" msgstr "" "Sağlanan `product_uuids` öğesini kullanarak bir istek listesinden birçok " "ürünü kaldırır" -#: core/docs/drf/viewsets.py:370 +#: engine/core/docs/drf/viewsets.py:386 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`" -#: core/docs/drf/viewsets.py:386 core/docs/drf/viewsets.py:387 +#: engine/core/docs/drf/viewsets.py:402 engine/core/docs/drf/viewsets.py:403 msgid "list all products (simple view)" msgstr "Tüm ürünleri listele (basit görünüm)" -#: core/docs/drf/viewsets.py:392 +#: engine/core/docs/drf/viewsets.py:408 msgid "(exact) Product UUID" msgstr "(tam) Ürün UUID'si" -#: core/docs/drf/viewsets.py:399 +#: engine/core/docs/drf/viewsets.py:415 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" -#: core/docs/drf/viewsets.py:413 core/docs/drf/viewsets.py:414 +#: engine/core/docs/drf/viewsets.py:429 engine/core/docs/drf/viewsets.py:430 msgid "retrieve a single product (detailed view)" msgstr "Tek bir ürünü alma (ayrıntılı görünüm)" -#: core/docs/drf/viewsets.py:419 core/docs/drf/viewsets.py:443 -#: core/docs/drf/viewsets.py:459 core/docs/drf/viewsets.py:475 -#: core/docs/drf/viewsets.py:491 core/docs/drf/viewsets.py:507 +#: engine/core/docs/drf/viewsets.py:435 engine/core/docs/drf/viewsets.py:459 +#: engine/core/docs/drf/viewsets.py:475 engine/core/docs/drf/viewsets.py:491 +#: engine/core/docs/drf/viewsets.py:507 engine/core/docs/drf/viewsets.py:523 msgid "Product UUID or slug" msgstr "Ürün UUID'si veya Slug" -#: core/docs/drf/viewsets.py:429 core/docs/drf/viewsets.py:430 +#: engine/core/docs/drf/viewsets.py:445 engine/core/docs/drf/viewsets.py:446 msgid "create a product" msgstr "Bir ürün oluşturun" -#: core/docs/drf/viewsets.py:437 core/docs/drf/viewsets.py:438 +#: engine/core/docs/drf/viewsets.py:453 engine/core/docs/drf/viewsets.py:454 msgid "rewrite an existing product, preserving non-editable fields" msgstr "Düzenlenemeyen alanları koruyarak mevcut bir ürünü yeniden yazın" -#: core/docs/drf/viewsets.py:453 core/docs/drf/viewsets.py:454 +#: engine/core/docs/drf/viewsets.py:469 engine/core/docs/drf/viewsets.py:470 msgid "" "update some fields of an existing product, preserving non-editable fields" msgstr "" "Düzenlenemeyen alanları koruyarak mevcut bir ürünün bazı alanlarını " "güncelleme" -#: core/docs/drf/viewsets.py:469 core/docs/drf/viewsets.py:470 +#: engine/core/docs/drf/viewsets.py:485 engine/core/docs/drf/viewsets.py:486 msgid "delete a product" msgstr "Ürün silme" -#: core/docs/drf/viewsets.py:485 core/docs/drf/viewsets.py:486 +#: engine/core/docs/drf/viewsets.py:501 engine/core/docs/drf/viewsets.py:502 msgid "lists all permitted feedbacks for a product" msgstr "bir ürün için izin verilen tüm geri bildirimleri listeler" -#: core/docs/drf/viewsets.py:502 +#: engine/core/docs/drf/viewsets.py:518 msgid "returns a snapshot of the product's SEO meta data" msgstr "Ürünün SEO meta verilerinin anlık görüntüsünü döndürür" -#: core/docs/drf/viewsets.py:520 +#: engine/core/docs/drf/viewsets.py:536 msgid "list all addresses" msgstr "Tüm adresleri listeleyin" -#: core/docs/drf/viewsets.py:527 +#: engine/core/docs/drf/viewsets.py:543 msgid "retrieve a single address" msgstr "Tek bir adres alma" -#: core/docs/drf/viewsets.py:534 +#: engine/core/docs/drf/viewsets.py:550 msgid "create a new address" msgstr "Yeni bir adres oluşturun" -#: core/docs/drf/viewsets.py:542 +#: engine/core/docs/drf/viewsets.py:558 msgid "delete an address" msgstr "Adres silme" -#: core/docs/drf/viewsets.py:549 +#: engine/core/docs/drf/viewsets.py:565 msgid "update an entire address" msgstr "Adresin tamamını güncelleme" -#: core/docs/drf/viewsets.py:557 +#: engine/core/docs/drf/viewsets.py:573 msgid "partially update an address" msgstr "Bir adresi kısmen güncelleme" -#: core/docs/drf/viewsets.py:565 +#: engine/core/docs/drf/viewsets.py:581 msgid "autocomplete address suggestions" msgstr "Otomatik tamamlanan adres girişi" -#: core/docs/drf/viewsets.py:570 +#: engine/core/docs/drf/viewsets.py:586 msgid "raw data query string, please append with data from geo-IP endpoint" msgstr "" "Ham veri sorgu dizesi, lütfen geo-IP uç noktasından gelen verilerle ekleyin" -#: core/docs/drf/viewsets.py:576 +#: engine/core/docs/drf/viewsets.py:592 msgid "limit the results amount, 1 < limit < 10, default: 5" msgstr "sonuç miktarını sınırlar, 1 < limit < 10, varsayılan: 5" -#: core/docs/drf/viewsets.py:589 +#: engine/core/docs/drf/viewsets.py:605 msgid "list all feedbacks (simple view)" msgstr "tüm geri bildirimleri listele (basit görünüm)" -#: core/docs/drf/viewsets.py:593 +#: engine/core/docs/drf/viewsets.py:609 msgid "retrieve a single feedback (detailed view)" msgstr "tek bir geri bildirim alma (ayrıntılı görünüm)" -#: core/docs/drf/viewsets.py:597 +#: engine/core/docs/drf/viewsets.py:613 msgid "create a feedback" msgstr "bir geri bildirim oluşturun" -#: core/docs/drf/viewsets.py:601 +#: engine/core/docs/drf/viewsets.py:617 msgid "delete a feedback" msgstr "bir geri bildirimi silme" -#: core/docs/drf/viewsets.py:605 +#: engine/core/docs/drf/viewsets.py:621 msgid "rewrite an existing feedback saving non-editables" msgstr "düzenlenemeyenleri kaydederek mevcut bir geri bildirimi yeniden yazın" -#: core/docs/drf/viewsets.py:609 +#: engine/core/docs/drf/viewsets.py:625 msgid "rewrite some fields of an existing feedback saving non-editables" msgstr "" "mevcut bir geri bildirimin bazı alanlarını yeniden yazarak düzenlenemezleri " "kaydetme" -#: core/docs/drf/viewsets.py:616 +#: engine/core/docs/drf/viewsets.py:632 msgid "list all order–product relations (simple view)" msgstr "tüm sipariş-ürün ilişkilerini listeler (basit görünüm)" -#: core/docs/drf/viewsets.py:623 +#: engine/core/docs/drf/viewsets.py:639 msgid "retrieve a single order–product relation (detailed view)" msgstr "tek bir sipariş-ürün ilişkisi alma (ayrıntılı görünüm)" -#: core/docs/drf/viewsets.py:630 +#: engine/core/docs/drf/viewsets.py:646 msgid "create a new order–product relation" msgstr "yeni bir sipariş-ürün ilişkisi oluşturun" -#: core/docs/drf/viewsets.py:637 +#: engine/core/docs/drf/viewsets.py:653 msgid "replace an existing order–product relation" msgstr "mevcut bir sipariş-ürün ilişkisini değiştirir" -#: core/docs/drf/viewsets.py:644 +#: engine/core/docs/drf/viewsets.py:660 msgid "partially update an existing order–product relation" msgstr "mevcut bir sipariş-ürün ilişkisini kısmen güncelleme" -#: core/docs/drf/viewsets.py:651 +#: engine/core/docs/drf/viewsets.py:667 msgid "delete an order–product relation" msgstr "sipariş-ürün ilişkisini silme" -#: core/docs/drf/viewsets.py:658 +#: engine/core/docs/drf/viewsets.py:674 msgid "add or remove feedback on an order–product relation" msgstr "sipariş-ürün ilişkisine geri bildirim ekleme veya kaldırma" -#: core/docs/drf/viewsets.py:672 +#: engine/core/docs/drf/viewsets.py:688 msgid "list all brands (simple view)" msgstr "Tüm markaları listele (basit görünüm)" -#: core/docs/drf/viewsets.py:676 +#: engine/core/docs/drf/viewsets.py:692 msgid "retrieve a single brand (detailed view)" msgstr "Tek bir markayı alma (ayrıntılı görünüm)" -#: core/docs/drf/viewsets.py:680 +#: engine/core/docs/drf/viewsets.py:697 engine/core/docs/drf/viewsets.py:725 +msgid "Brand UUID or slug" +msgstr "Marka UUID'si veya sümüklü böcek" + +#: engine/core/docs/drf/viewsets.py:704 msgid "create a brand" msgstr "Bir marka yaratın" -#: core/docs/drf/viewsets.py:684 +#: engine/core/docs/drf/viewsets.py:708 msgid "delete a brand" msgstr "Bir markayı silme" -#: core/docs/drf/viewsets.py:688 +#: engine/core/docs/drf/viewsets.py:712 msgid "rewrite an existing brand saving non-editables" msgstr "Mevcut bir markayı yeniden yazarak düzenlenemeyenleri kaydedin" -#: core/docs/drf/viewsets.py:692 +#: engine/core/docs/drf/viewsets.py:716 msgid "rewrite some fields of an existing brand saving non-editables" msgstr "" "Mevcut bir kategorinin bazı alanlarını düzenlenemez olarak kaydederek " "yeniden yazın" -#: core/docs/drf/viewsets.py:696 +#: engine/core/docs/drf/viewsets.py:720 msgid "SEO Meta snapshot for brand" msgstr "Marka için SEO Meta anlık görüntüsü" -#: core/docs/drf/viewsets.py:703 +#: engine/core/docs/drf/viewsets.py:735 msgid "list all vendors (simple view)" msgstr "Tüm satıcıları listeleyin (basit görünüm)" -#: core/docs/drf/viewsets.py:707 +#: engine/core/docs/drf/viewsets.py:739 msgid "retrieve a single vendor (detailed view)" msgstr "Tek bir satıcıyı alma (ayrıntılı görünüm)" -#: core/docs/drf/viewsets.py:711 +#: engine/core/docs/drf/viewsets.py:743 msgid "create a vendor" msgstr "Bir satıcı oluşturun" -#: core/docs/drf/viewsets.py:715 +#: engine/core/docs/drf/viewsets.py:747 msgid "delete a vendor" msgstr "Satıcı silme" -#: core/docs/drf/viewsets.py:719 +#: engine/core/docs/drf/viewsets.py:751 msgid "rewrite an existing vendor saving non-editables" msgstr "Düzenlenemeyenleri kaydederek mevcut bir satıcıyı yeniden yazın" -#: core/docs/drf/viewsets.py:723 +#: engine/core/docs/drf/viewsets.py:755 msgid "rewrite some fields of an existing vendor saving non-editables" msgstr "" "Mevcut bir kategorinin bazı alanlarını düzenlenemez olarak kaydederek " "yeniden yazın" -#: core/docs/drf/viewsets.py:730 +#: engine/core/docs/drf/viewsets.py:762 msgid "list all product images (simple view)" msgstr "Tüm ürün görsellerini listeleme (basit görünüm)" -#: core/docs/drf/viewsets.py:734 +#: engine/core/docs/drf/viewsets.py:766 msgid "retrieve a single product image (detailed view)" msgstr "Tek bir ürün resmini alma (ayrıntılı görünüm)" -#: core/docs/drf/viewsets.py:738 +#: engine/core/docs/drf/viewsets.py:770 msgid "create a product image" msgstr "Bir ürün görseli oluşturun" -#: core/docs/drf/viewsets.py:742 +#: engine/core/docs/drf/viewsets.py:774 msgid "delete a product image" msgstr "Ürün görselini silme" -#: core/docs/drf/viewsets.py:746 +#: engine/core/docs/drf/viewsets.py:778 msgid "rewrite an existing product image saving non-editables" msgstr "Düzenlenemeyenleri kaydederek mevcut bir ürün resmini yeniden yazın" -#: core/docs/drf/viewsets.py:750 +#: engine/core/docs/drf/viewsets.py:782 msgid "rewrite some fields of an existing product image saving non-editables" msgstr "" "Mevcut bir kategorinin bazı alanlarını düzenlenemez olarak kaydederek " "yeniden yazın" -#: core/docs/drf/viewsets.py:757 +#: engine/core/docs/drf/viewsets.py:789 msgid "list all promo codes (simple view)" msgstr "Tüm promosyon kodlarını listele (basit görünüm)" -#: core/docs/drf/viewsets.py:761 +#: engine/core/docs/drf/viewsets.py:793 msgid "retrieve a single promo code (detailed view)" msgstr "Tek bir promosyon kodunu alma (ayrıntılı görünüm)" -#: core/docs/drf/viewsets.py:765 +#: engine/core/docs/drf/viewsets.py:797 msgid "create a promo code" msgstr "Promosyon kodu oluşturun" -#: core/docs/drf/viewsets.py:769 +#: engine/core/docs/drf/viewsets.py:801 msgid "delete a promo code" msgstr "Promosyon kodunu silme" -#: core/docs/drf/viewsets.py:773 +#: engine/core/docs/drf/viewsets.py:805 msgid "rewrite an existing promo code saving non-editables" msgstr "" "Düzenlenemeyenleri kaydederek mevcut bir promosyon kodunu yeniden yazın" -#: core/docs/drf/viewsets.py:777 +#: engine/core/docs/drf/viewsets.py:809 msgid "rewrite some fields of an existing promo code saving non-editables" msgstr "" "Mevcut bir kategorinin bazı alanlarını düzenlenemez olarak kaydederek " "yeniden yazın" -#: core/docs/drf/viewsets.py:784 +#: engine/core/docs/drf/viewsets.py:816 msgid "list all promotions (simple view)" msgstr "Tüm promosyonları listele (basit görünüm)" -#: core/docs/drf/viewsets.py:788 +#: engine/core/docs/drf/viewsets.py:820 msgid "retrieve a single promotion (detailed view)" msgstr "Tek bir promosyonu alma (ayrıntılı görünüm)" -#: core/docs/drf/viewsets.py:792 +#: engine/core/docs/drf/viewsets.py:824 msgid "create a promotion" msgstr "Bir promosyon oluşturun" -#: core/docs/drf/viewsets.py:796 +#: engine/core/docs/drf/viewsets.py:828 msgid "delete a promotion" msgstr "Bir promosyonu silme" -#: core/docs/drf/viewsets.py:800 +#: engine/core/docs/drf/viewsets.py:832 msgid "rewrite an existing promotion saving non-editables" msgstr "Düzenlenemeyenleri kaydederek mevcut bir promosyonu yeniden yazma" -#: core/docs/drf/viewsets.py:804 +#: engine/core/docs/drf/viewsets.py:836 msgid "rewrite some fields of an existing promotion saving non-editables" msgstr "" "Mevcut bir kategorinin bazı alanlarını düzenlenemez olarak kaydederek " "yeniden yazın" -#: core/docs/drf/viewsets.py:811 +#: engine/core/docs/drf/viewsets.py:843 msgid "list all stocks (simple view)" msgstr "Tüm hisse senetlerini listele (basit görünüm)" -#: core/docs/drf/viewsets.py:815 +#: engine/core/docs/drf/viewsets.py:847 msgid "retrieve a single stock (detailed view)" msgstr "Tek bir stoku alma (ayrıntılı görünüm)" -#: core/docs/drf/viewsets.py:819 +#: engine/core/docs/drf/viewsets.py:851 msgid "create a stock record" msgstr "Stok kaydı oluşturma" -#: core/docs/drf/viewsets.py:823 +#: engine/core/docs/drf/viewsets.py:855 msgid "delete a stock record" msgstr "Stok kaydını silme" -#: core/docs/drf/viewsets.py:827 +#: engine/core/docs/drf/viewsets.py:859 msgid "rewrite an existing stock record saving non-editables" msgstr "Düzenlenemeyenleri kaydederek mevcut bir stok kaydını yeniden yazma" -#: core/docs/drf/viewsets.py:831 +#: engine/core/docs/drf/viewsets.py:863 msgid "rewrite some fields of an existing stock record saving non-editables" msgstr "" "Mevcut bir kategorinin bazı alanlarını düzenlenemez olarak kaydederek " "yeniden yazın" -#: core/docs/drf/viewsets.py:838 +#: engine/core/docs/drf/viewsets.py:870 msgid "list all product tags (simple view)" msgstr "Tüm ürün etiketlerini listeleme (basit görünüm)" -#: core/docs/drf/viewsets.py:842 +#: engine/core/docs/drf/viewsets.py:874 msgid "retrieve a single product tag (detailed view)" msgstr "Tek bir ürün etiketini alma (ayrıntılı görünüm)" -#: core/docs/drf/viewsets.py:846 +#: engine/core/docs/drf/viewsets.py:878 msgid "create a product tag" msgstr "Ürün etiketi oluşturma" -#: core/docs/drf/viewsets.py:850 +#: engine/core/docs/drf/viewsets.py:882 msgid "delete a product tag" msgstr "Ürün etiketini silme" -#: core/docs/drf/viewsets.py:854 +#: engine/core/docs/drf/viewsets.py:886 msgid "rewrite an existing product tag saving non-editables" msgstr "Düzenlenemeyenleri kaydederek mevcut bir ürün etiketini yeniden yazma" -#: core/docs/drf/viewsets.py:858 +#: engine/core/docs/drf/viewsets.py:890 msgid "rewrite some fields of an existing product tag saving non-editables" msgstr "" "Mevcut bir kategorinin bazı alanlarını düzenlenemez olarak kaydederek " "yeniden yazın" -#: core/elasticsearch/__init__.py:118 core/elasticsearch/__init__.py:550 +#: engine/core/elasticsearch/__init__.py:122 +#: engine/core/elasticsearch/__init__.py:570 msgid "no search term provided." msgstr "Arama terimi belirtilmemiştir." -#: core/filters.py:69 core/filters.py:412 core/filters.py:539 +#: engine/core/filters.py:69 engine/core/filters.py:426 +#: engine/core/filters.py:553 msgid "Search" msgstr "Arama" -#: core/filters.py:70 core/filters.py:569 core/filters.py:598 +#: engine/core/filters.py:70 engine/core/filters.py:583 +#: engine/core/filters.py:612 msgid "UUID" msgstr "UUID" -#: core/filters.py:71 core/filters.py:414 core/filters.py:541 +#: engine/core/filters.py:71 engine/core/filters.py:428 +#: engine/core/filters.py:555 msgid "Name" msgstr "İsim" -#: core/filters.py:72 core/filters.py:543 +#: engine/core/filters.py:72 engine/core/filters.py:557 msgid "Categories" msgstr "Kategoriler" -#: core/filters.py:74 +#: engine/core/filters.py:74 msgid "Categories Slugs" msgstr "Kategoriler Sümüklüböcekler" -#: core/filters.py:75 core/filters.py:422 +#: engine/core/filters.py:75 engine/core/filters.py:436 msgid "Tags" msgstr "Etiketler" -#: core/filters.py:76 +#: engine/core/filters.py:76 msgid "Min Price" msgstr "Min Fiyat" -#: core/filters.py:77 +#: engine/core/filters.py:77 msgid "Max Price" msgstr "Maksimum Fiyat" -#: core/filters.py:78 +#: engine/core/filters.py:78 msgid "Is Active" msgstr "Aktif mi" -#: core/filters.py:79 +#: engine/core/filters.py:79 msgid "Brand" msgstr "Marka" -#: core/filters.py:80 +#: engine/core/filters.py:80 msgid "Attributes" msgstr "Nitelikler" -#: core/filters.py:81 +#: engine/core/filters.py:81 msgid "Quantity" msgstr "Miktar" -#: core/filters.py:82 core/filters.py:416 core/filters.py:542 -#: core/models.py:322 core/models.py:483 core/models.py:637 +#: engine/core/filters.py:82 engine/core/filters.py:430 +#: engine/core/filters.py:556 engine/core/models.py:321 +#: engine/core/models.py:482 engine/core/models.py:637 msgid "Slug" msgstr "Sümüklüböcek" -#: core/filters.py:83 +#: engine/core/filters.py:83 msgid "Is Digital" msgstr "Dijital mi" -#: core/filters.py:84 +#: engine/core/filters.py:84 msgid "Include sub-categories" msgstr "Alt kategorileri dahil edin" -#: core/filters.py:87 +#: engine/core/filters.py:87 msgid "Include personal ordered" msgstr "Kişisel sipariş edilen ürünleri dahil edin" -#: core/filters.py:89 core/models.py:641 +#: engine/core/filters.py:89 engine/core/models.py:641 msgid "SKU" msgstr "SKU" -#: core/filters.py:173 +#: engine/core/filters.py:184 msgid "there must be a category_uuid to use include_subcategories flag" msgstr "" "include_subcategories bayrağını kullanmak için bir category_uuid olmalıdır" -#: core/filters.py:339 +#: engine/core/filters.py:353 msgid "Search (ID, product name or part number)" msgstr "Arama (ID, ürün adı veya parça numarası)" -#: core/filters.py:342 +#: engine/core/filters.py:356 msgid "Bought after (inclusive)" msgstr "Sonra satın alındı (dahil)" -#: core/filters.py:343 +#: engine/core/filters.py:357 msgid "Bought before (inclusive)" msgstr "Daha önce satın alındı (dahil)" -#: core/filters.py:346 core/filters.py:393 core/filters.py:600 +#: engine/core/filters.py:360 engine/core/filters.py:407 +#: engine/core/filters.py:614 msgid "User email" msgstr "Kullanıcı e-postası" -#: core/filters.py:347 core/filters.py:394 core/filters.py:578 -#: core/filters.py:599 +#: engine/core/filters.py:361 engine/core/filters.py:408 +#: engine/core/filters.py:592 engine/core/filters.py:613 msgid "User UUID" msgstr "Kullanıcı UUID'si" -#: core/filters.py:348 +#: engine/core/filters.py:362 msgid "Status" msgstr "Durum" -#: core/filters.py:352 +#: engine/core/filters.py:366 msgid "Human Readable ID" msgstr "İnsan Tarafından Okunabilir Kimlik" -#: core/filters.py:415 +#: engine/core/filters.py:429 msgid "Parent" msgstr "Ebeveyn" -#: core/filters.py:419 +#: engine/core/filters.py:433 msgid "Whole category(has at least 1 product or not)" msgstr "Tüm kategori (en az 1 ürün var veya yok)" -#: core/filters.py:423 +#: engine/core/filters.py:437 msgid "Level" msgstr "Seviye" -#: core/filters.py:573 +#: engine/core/filters.py:587 msgid "Product UUID" msgstr "Ürün UUID'si" -#: core/graphene/mutations.py:41 +#: engine/core/graphene/mutations.py:41 msgid "key to look for in or set into the cache" msgstr "Önbellekte aranacak veya önbelleğe yerleştirilecek anahtar" -#: core/graphene/mutations.py:42 +#: engine/core/graphene/mutations.py:42 msgid "data to store in cache" msgstr "Önbellekte depolanacak veriler" -#: core/graphene/mutations.py:45 +#: engine/core/graphene/mutations.py:45 msgid "timeout in seconds to set the data for into the cache" msgstr "Verileri önbelleğe almak için saniye cinsinden zaman aşımı" -#: core/graphene/mutations.py:48 +#: engine/core/graphene/mutations.py:48 msgid "cached data" msgstr "Önbelleğe alınmış veriler" -#: core/graphene/mutations.py:63 +#: engine/core/graphene/mutations.py:63 msgid "camelized JSON data from the requested URL" msgstr "İstenen URL'den kameleştirilmiş JSON verileri" -#: core/graphene/mutations.py:68 core/views.py:232 +#: engine/core/graphene/mutations.py:68 engine/core/views.py:231 msgid "only URLs starting with http(s):// are allowed" msgstr "Yalnızca http(s):// ile başlayan URL'lere izin verilir" -#: core/graphene/mutations.py:84 +#: engine/core/graphene/mutations.py:84 msgid "add a product to the order" msgstr "Siparişe ürün ekleme" -#: core/graphene/mutations.py:105 core/graphene/mutations.py:132 -#: core/graphene/mutations.py:240 core/graphene/mutations.py:288 +#: engine/core/graphene/mutations.py:105 engine/core/graphene/mutations.py:132 +#: engine/core/graphene/mutations.py:240 engine/core/graphene/mutations.py:288 #, python-brace-format msgid "order {order_uuid} not found" msgstr "Sipariş {order_uuid} bulunamadı!" -#: core/graphene/mutations.py:111 core/graphene/mutations.py:160 +#: engine/core/graphene/mutations.py:111 engine/core/graphene/mutations.py:160 msgid "remove a product from the order" msgstr "Siparişten bir ürünü kaldırma" -#: core/graphene/mutations.py:138 +#: engine/core/graphene/mutations.py:138 msgid "remove all products from the order" msgstr "Siparişten tüm ürünleri kaldırın" -#: core/graphene/mutations.py:183 +#: engine/core/graphene/mutations.py:183 msgid "buy an order" msgstr "Bir sipariş satın alın" -#: core/graphene/mutations.py:212 core/graphene/mutations.py:266 +#: engine/core/graphene/mutations.py:212 engine/core/graphene/mutations.py:266 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!" -#: core/graphene/mutations.py:237 core/graphene/mutations.py:502 -#: core/graphene/mutations.py:544 core/viewsets.py:704 +#: engine/core/graphene/mutations.py:237 engine/core/graphene/mutations.py:502 +#: engine/core/graphene/mutations.py:544 engine/core/viewsets.py:704 msgid "wrong type came from order.buy() method: {type(instance)!s}" msgstr "order.buy() metodundan yanlış tip geldi: {type(instance)!s}" -#: core/graphene/mutations.py:246 +#: engine/core/graphene/mutations.py:246 msgid "perform an action on a list of products in the order" msgstr "Siparişteki ürünlerin listesi üzerinde bir eylem gerçekleştirin" -#: core/graphene/mutations.py:251 +#: engine/core/graphene/mutations.py:251 msgid "remove/add" msgstr "Kaldır/Ekle" -#: core/graphene/mutations.py:283 core/graphene/mutations.py:324 +#: engine/core/graphene/mutations.py:283 engine/core/graphene/mutations.py:324 msgid "action must be either add or remove" msgstr "Eylem ya \"ekle\" ya da \"kaldır\" olmalıdır!" -#: core/graphene/mutations.py:294 +#: engine/core/graphene/mutations.py:294 msgid "perform an action on a list of products in the wishlist" msgstr "İstek listesindeki bir ürün listesi üzerinde eylem gerçekleştirme" -#: core/graphene/mutations.py:312 +#: engine/core/graphene/mutations.py:312 msgid "please provide wishlist_uuid value" msgstr "Lütfen `wishlist_uuid` değerini girin." -#: core/graphene/mutations.py:329 core/graphene/mutations.py:405 -#: core/graphene/mutations.py:433 core/graphene/mutations.py:461 -#: core/graphene/mutations.py:505 +#: engine/core/graphene/mutations.py:329 engine/core/graphene/mutations.py:405 +#: engine/core/graphene/mutations.py:433 engine/core/graphene/mutations.py:461 +#: engine/core/graphene/mutations.py:505 #, python-brace-format msgid "wishlist {wishlist_uuid} not found" msgstr "İstek listesi {wishlist_uuid} bulunamadı!" -#: core/graphene/mutations.py:383 +#: engine/core/graphene/mutations.py:383 msgid "add a product to the wishlist" msgstr "Siparişe ürün ekleme" -#: core/graphene/mutations.py:411 +#: engine/core/graphene/mutations.py:411 msgid "remove a product from the wishlist" msgstr "Siparişten bir ürünü kaldırma" -#: core/graphene/mutations.py:439 +#: engine/core/graphene/mutations.py:439 msgid "remove all products from the wishlist" msgstr "Siparişten bir ürünü kaldırma" -#: core/graphene/mutations.py:467 +#: engine/core/graphene/mutations.py:467 msgid "buy all products from the wishlist" msgstr "Siparişten bir ürünü kaldırma" -#: core/graphene/mutations.py:511 +#: engine/core/graphene/mutations.py:511 msgid "buy a product" msgstr "Bir sipariş satın alın" -#: core/graphene/mutations.py:517 +#: engine/core/graphene/mutations.py:517 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" -#: core/graphene/mutations.py:550 +#: engine/core/graphene/mutations.py:550 msgid "add or delete a feedback for orderproduct" msgstr "Orderproduct için bir geri bildirim ekleme veya silme" -#: core/graphene/mutations.py:574 +#: engine/core/graphene/mutations.py:574 msgid "action must be either `add` or `remove`" msgstr "Eylem ya `ekle` ya da `kaldır` olmalıdır!" -#: core/graphene/mutations.py:577 +#: engine/core/graphene/mutations.py:577 #, python-brace-format msgid "order product {order_product_uuid} not found" msgstr "Orderproduct {order_product_uuid} bulunamadı!" -#: core/graphene/mutations.py:644 +#: engine/core/graphene/mutations.py:644 msgid "original address string provided by the user" msgstr "Kullanıcı tarafından sağlanan orijinal adres dizesi" -#: core/graphene/mutations.py:680 core/models.py:930 core/models.py:943 -#: core/models.py:1358 core/models.py:1387 core/models.py:1412 -#: core/viewsets.py:707 +#: engine/core/graphene/mutations.py:680 engine/core/models.py:941 +#: engine/core/models.py:954 engine/core/models.py:1369 +#: engine/core/models.py:1398 engine/core/models.py:1423 +#: engine/core/viewsets.py:707 #, python-brace-format msgid "{name} does not exist: {uuid}" msgstr "{name} mevcut değil: {uuid}!" -#: core/graphene/mutations.py:694 +#: engine/core/graphene/mutations.py:694 msgid "limit must be between 1 and 10" msgstr "Limit 1 ile 10 arasında olmalıdır" -#: core/graphene/mutations.py:743 +#: engine/core/graphene/mutations.py:743 msgid "elasticsearch - works like a charm" msgstr "ElasticSearch - bir cazibe gibi çalışır" -#: core/graphene/object_types.py:82 core/graphene/object_types.py:370 -#: core/graphene/object_types.py:417 core/models.py:754 core/models.py:1225 -#: core/models.py:1823 +#: engine/core/graphene/object_types.py:82 +#: engine/core/graphene/object_types.py:370 +#: engine/core/graphene/object_types.py:417 engine/core/models.py:765 +#: engine/core/models.py:1236 engine/core/models.py:1883 msgid "attributes" msgstr "Nitelikler" -#: core/graphene/object_types.py:95 +#: engine/core/graphene/object_types.py:95 msgid "grouped attributes" msgstr "Gruplandırılmış nitelikler" -#: core/graphene/object_types.py:102 +#: engine/core/graphene/object_types.py:102 msgid "groups of attributes" msgstr "Nitelik grupları" -#: core/graphene/object_types.py:116 core/graphene/object_types.py:193 -#: core/graphene/object_types.py:223 core/models.py:426 +#: engine/core/graphene/object_types.py:116 +#: engine/core/graphene/object_types.py:193 +#: engine/core/graphene/object_types.py:223 engine/core/models.py:425 msgid "categories" msgstr "Kategoriler" -#: core/graphene/object_types.py:124 core/models.py:497 +#: engine/core/graphene/object_types.py:124 engine/core/models.py:496 msgid "brands" msgstr "Markalar" -#: core/graphene/object_types.py:195 +#: engine/core/graphene/object_types.py:195 msgid "category image url" msgstr "Kategoriler" -#: core/graphene/object_types.py:196 core/graphene/object_types.py:317 -#: core/models.py:284 +#: engine/core/graphene/object_types.py:196 +#: engine/core/graphene/object_types.py:317 engine/core/models.py:283 msgid "markup percentage" msgstr "İşaretleme Yüzdesi" -#: core/graphene/object_types.py:199 +#: engine/core/graphene/object_types.py:199 msgid "which attributes and values can be used for filtering this category." msgstr "" "Bu kategoriyi filtrelemek için hangi nitelikler ve değerler kullanılabilir." -#: core/graphene/object_types.py:203 -msgid "" -"minimum and maximum prices for products in this category, if available." +#: engine/core/graphene/object_types.py:203 +msgid "minimum and maximum prices for products in this category, if available." msgstr "Varsa, bu kategorideki ürünler için minimum ve maksimum fiyatlar." -#: core/graphene/object_types.py:205 +#: engine/core/graphene/object_types.py:205 msgid "tags for this category" msgstr "Bu kategori için etiketler" -#: core/graphene/object_types.py:206 +#: engine/core/graphene/object_types.py:206 msgid "products in this category" msgstr "Bu kategorideki ürünler" -#: core/graphene/object_types.py:324 core/models.py:189 +#: engine/core/graphene/object_types.py:324 engine/core/models.py:188 msgid "vendors" msgstr "Satıcılar" -#: core/graphene/object_types.py:328 +#: engine/core/graphene/object_types.py:328 msgid "Latitude (Y coordinate)" msgstr "Enlem (Y koordinatı)" -#: core/graphene/object_types.py:329 +#: engine/core/graphene/object_types.py:329 msgid "Longitude (X coordinate)" msgstr "Boylam (X koordinatı)" -#: core/graphene/object_types.py:358 +#: engine/core/graphene/object_types.py:358 msgid "comment" msgstr "Nasıl yapılır" -#: core/graphene/object_types.py:359 core/graphene/object_types.py:483 +#: engine/core/graphene/object_types.py:359 +#: engine/core/graphene/object_types.py:483 msgid "rating value from 1 to 10, inclusive, or 0 if not set." msgstr "1'den 10'a kadar (dahil) derecelendirme değeri veya ayarlanmamışsa 0." -#: core/graphene/object_types.py:366 +#: engine/core/graphene/object_types.py:366 msgid "represents feedback from a user." msgstr "Bir kullanıcıdan gelen geri bildirimi temsil eder." -#: core/graphene/object_types.py:371 core/graphene/object_types.py:418 -#: core/models.py:1219 +#: engine/core/graphene/object_types.py:371 +#: engine/core/graphene/object_types.py:418 engine/core/models.py:1230 msgid "notifications" msgstr "Bildirimler" -#: core/graphene/object_types.py:372 +#: engine/core/graphene/object_types.py:372 msgid "download url for this order product if applicable" msgstr "Varsa, bu sipariş ürünü için URL'yi indirin" -#: core/graphene/object_types.py:373 core/models.py:1939 +#: engine/core/graphene/object_types.py:373 engine/core/models.py:1722 msgid "feedback" msgstr "Geri bildirim" -#: core/graphene/object_types.py:407 +#: engine/core/graphene/object_types.py:407 msgid "a list of order products in this order" msgstr "Bu siparişteki sipariş ürünlerinin bir listesi" -#: core/graphene/object_types.py:409 core/models.py:1189 +#: engine/core/graphene/object_types.py:409 engine/core/models.py:1200 msgid "billing address" msgstr "Fatura adresi" -#: core/graphene/object_types.py:412 +#: engine/core/graphene/object_types.py:412 msgid "" "shipping address for this order, leave blank if same as billing address or " "if not applicable" @@ -1304,200 +1334,208 @@ msgstr "" "Bu sipariş için sevkiyat adresi, fatura adresi ile aynıysa veya geçerli " "değilse boş bırakın" -#: core/graphene/object_types.py:414 +#: engine/core/graphene/object_types.py:414 msgid "total price of this order" msgstr "Bu siparişin toplam fiyatı" -#: core/graphene/object_types.py:415 +#: engine/core/graphene/object_types.py:415 msgid "total quantity of products in order" msgstr "Siparişteki toplam ürün miktarı" -#: core/graphene/object_types.py:416 +#: engine/core/graphene/object_types.py:416 msgid "are all products in the order digital" msgstr "Siparişteki tüm ürünler dijital mi" -#: core/graphene/object_types.py:419 +#: engine/core/graphene/object_types.py:419 msgid "transactions for this order" msgstr "Bu sipariş için işlemler" -#: core/graphene/object_types.py:438 core/models.py:1253 +#: engine/core/graphene/object_types.py:438 engine/core/models.py:1264 msgid "orders" msgstr "Siparişler" -#: core/graphene/object_types.py:459 +#: engine/core/graphene/object_types.py:459 msgid "image url" msgstr "Resim URL'si" -#: core/graphene/object_types.py:466 +#: engine/core/graphene/object_types.py:466 msgid "product's images" msgstr "Ürün görselleri" -#: core/graphene/object_types.py:473 core/models.py:425 core/models.py:579 +#: engine/core/graphene/object_types.py:473 engine/core/models.py:424 +#: engine/core/models.py:579 msgid "category" msgstr "Kategori" -#: core/graphene/object_types.py:475 core/models.py:1940 +#: engine/core/graphene/object_types.py:475 engine/core/models.py:1723 msgid "feedbacks" msgstr "Geri Bildirimler" -#: core/graphene/object_types.py:476 core/models.py:496 core/models.py:588 +#: engine/core/graphene/object_types.py:476 engine/core/models.py:495 +#: engine/core/models.py:588 msgid "brand" msgstr "Marka" -#: core/graphene/object_types.py:477 core/models.py:107 +#: engine/core/graphene/object_types.py:477 engine/core/models.py:106 msgid "attribute groups" msgstr "Öznitelik grupları" -#: core/graphene/object_types.py:478 -#: core/templates/digital_order_created_email.html:111 -#: core/templates/digital_order_delivered_email.html:109 -#: core/templates/shipped_order_created_email.html:109 -#: core/templates/shipped_order_delivered_email.html:109 +#: engine/core/graphene/object_types.py:478 +#: engine/core/templates/digital_order_created_email.html:111 +#: engine/core/templates/digital_order_delivered_email.html:109 +#: engine/core/templates/shipped_order_created_email.html:109 +#: engine/core/templates/shipped_order_delivered_email.html:109 msgid "price" msgstr "Fiyat" -#: core/graphene/object_types.py:479 -#: core/templates/digital_order_created_email.html:110 -#: core/templates/digital_order_delivered_email.html:108 -#: core/templates/shipped_order_created_email.html:108 -#: core/templates/shipped_order_delivered_email.html:108 +#: engine/core/graphene/object_types.py:479 +#: engine/core/templates/digital_order_created_email.html:110 +#: engine/core/templates/digital_order_delivered_email.html:108 +#: engine/core/templates/shipped_order_created_email.html:108 +#: engine/core/templates/shipped_order_delivered_email.html:108 msgid "quantity" msgstr "Miktar" -#: core/graphene/object_types.py:480 +#: engine/core/graphene/object_types.py:480 msgid "number of feedbacks" msgstr "Geri bildirim sayısı" -#: core/graphene/object_types.py:481 +#: engine/core/graphene/object_types.py:481 msgid "only available for personal orders" msgstr "Ürünler sadece kişisel siparişler için mevcuttur" -#: core/graphene/object_types.py:507 core/models.py:651 +#: engine/core/graphene/object_types.py:484 +msgid "discount price" +msgstr "İndirimli fiyat" + +#: engine/core/graphene/object_types.py:508 engine/core/models.py:651 msgid "products" msgstr "Ürünler" -#: core/graphene/object_types.py:607 +#: engine/core/graphene/object_types.py:611 msgid "promocodes" msgstr "Promosyon Kodları" -#: core/graphene/object_types.py:617 +#: engine/core/graphene/object_types.py:621 msgid "products on sale" msgstr "Satıştaki ürünler" -#: core/graphene/object_types.py:624 core/models.py:879 +#: engine/core/graphene/object_types.py:628 engine/core/models.py:890 msgid "promotions" msgstr "Promosyonlar" -#: core/graphene/object_types.py:628 core/models.py:188 +#: engine/core/graphene/object_types.py:632 engine/core/models.py:187 msgid "vendor" msgstr "Satıcı" -#: core/graphene/object_types.py:629 core/models.py:650 -#: core/templates/digital_order_created_email.html:109 -#: core/templates/digital_order_delivered_email.html:107 -#: core/templates/shipped_order_created_email.html:107 -#: core/templates/shipped_order_delivered_email.html:107 +#: engine/core/graphene/object_types.py:633 engine/core/models.py:650 +#: 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 +#: engine/core/templates/shipped_order_delivered_email.html:107 msgid "product" msgstr "Ürün" -#: core/graphene/object_types.py:640 core/models.py:902 +#: engine/core/graphene/object_types.py:644 engine/core/models.py:913 msgid "wishlisted products" msgstr "İstek listesindeki ürünler" -#: core/graphene/object_types.py:646 core/models.py:919 +#: engine/core/graphene/object_types.py:650 engine/core/models.py:930 msgid "wishlists" msgstr "Dilek Listeleri" -#: core/graphene/object_types.py:650 +#: engine/core/graphene/object_types.py:654 msgid "tagged products" msgstr "Etiketlenmiş ürünler" -#: core/graphene/object_types.py:657 core/models.py:225 core/models.py:594 +#: engine/core/graphene/object_types.py:661 engine/core/models.py:224 +#: engine/core/models.py:594 msgid "product tags" msgstr "Ürün etiketleri" -#: core/graphene/object_types.py:661 +#: engine/core/graphene/object_types.py:665 msgid "tagged categories" msgstr "Etiketlenmiş kategoriler" -#: core/graphene/object_types.py:668 +#: engine/core/graphene/object_types.py:672 msgid "categories tags" msgstr "Kategoriler' etiketleri" -#: core/graphene/object_types.py:672 +#: engine/core/graphene/object_types.py:676 msgid "project name" msgstr "Proje adı" -#: core/graphene/object_types.py:673 +#: engine/core/graphene/object_types.py:677 msgid "company email" msgstr "Şirket E-postası" -#: core/graphene/object_types.py:674 +#: engine/core/graphene/object_types.py:678 msgid "company name" msgstr "Şirket Adı" -#: core/graphene/object_types.py:675 +#: engine/core/graphene/object_types.py:679 msgid "company address" msgstr "Şirket Adresi" -#: core/graphene/object_types.py:676 +#: engine/core/graphene/object_types.py:680 msgid "company phone number" msgstr "Şirket Telefon Numarası" -#: core/graphene/object_types.py:677 +#: engine/core/graphene/object_types.py:681 msgid "email from, sometimes it must be used instead of host user value" msgstr "'email from', bazen ana kullanıcı değeri yerine kullanılmalıdır" -#: core/graphene/object_types.py:678 +#: engine/core/graphene/object_types.py:682 msgid "email host user" msgstr "E-posta ana kullanıcısı" -#: core/graphene/object_types.py:679 +#: engine/core/graphene/object_types.py:683 msgid "maximum amount for payment" msgstr "Ödeme için maksimum tutar" -#: core/graphene/object_types.py:680 +#: engine/core/graphene/object_types.py:684 msgid "minimum amount for payment" msgstr "Ödeme için minimum tutar" -#: core/graphene/object_types.py:681 +#: engine/core/graphene/object_types.py:685 msgid "analytics data" msgstr "Analitik veriler" -#: core/graphene/object_types.py:682 +#: engine/core/graphene/object_types.py:686 msgid "advertisement data" msgstr "Reklam verileri" -#: core/graphene/object_types.py:685 +#: engine/core/graphene/object_types.py:689 msgid "company configuration" msgstr "Konfigürasyon" -#: core/graphene/object_types.py:689 +#: engine/core/graphene/object_types.py:693 msgid "language code" msgstr "Dil kodu" -#: core/graphene/object_types.py:690 +#: engine/core/graphene/object_types.py:694 msgid "language name" msgstr "Dil adı" -#: core/graphene/object_types.py:691 +#: engine/core/graphene/object_types.py:695 msgid "language flag, if exists :)" msgstr "Dil bayrağı, eğer varsa :)" -#: core/graphene/object_types.py:694 +#: engine/core/graphene/object_types.py:698 msgid "supported languages" msgstr "Desteklenen dillerin bir listesini alın" -#: core/graphene/object_types.py:725 core/graphene/object_types.py:726 -#: core/graphene/object_types.py:727 +#: engine/core/graphene/object_types.py:729 +#: engine/core/graphene/object_types.py:730 +#: engine/core/graphene/object_types.py:731 msgid "products search results" msgstr "Ürünler arama sonuçları" -#: core/graphene/object_types.py:728 +#: engine/core/graphene/object_types.py:732 msgid "posts search results" msgstr "Ürünler arama sonuçları" -#: core/models.py:76 +#: engine/core/models.py:75 msgid "" "Represents a group of attributes, which can be hierarchical. This class is " "used to manage and organize attribute groups. An attribute group can have a " @@ -1506,27 +1544,27 @@ 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." -#: core/models.py:92 +#: engine/core/models.py:91 msgid "parent of this group" msgstr "Bu grubun ebeveyni" -#: core/models.py:93 +#: engine/core/models.py:92 msgid "parent attribute group" msgstr "Üst öznitelik grubu" -#: core/models.py:97 core/models.py:98 +#: engine/core/models.py:96 engine/core/models.py:97 msgid "attribute group's name" msgstr "Öznitelik grubunun adı" -#: core/models.py:106 core/models.py:716 +#: engine/core/models.py:105 engine/core/models.py:727 msgid "attribute group" msgstr "Öznitelik grubu" -#: core/models.py:112 +#: engine/core/models.py:111 msgid "" "Represents a vendor entity capable of storing information about external " "vendors and their interaction requirements. The Vendor class is used to " @@ -1538,55 +1576,55 @@ 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." -#: core/models.py:125 +#: engine/core/models.py:124 msgid "stores credentials and endpoints required for vendor communication" msgstr "" "Satıcının API iletişimi için gerekli kimlik bilgilerini ve uç noktaları " "depolar" -#: core/models.py:126 +#: engine/core/models.py:125 msgid "authentication info" msgstr "Kimlik doğrulama bilgisi" -#: core/models.py:131 +#: engine/core/models.py:130 msgid "define the markup for products retrieved from this vendor" msgstr "Bu satıcıdan alınan ürünler için işaretlemeyi tanımlayın" -#: core/models.py:132 +#: engine/core/models.py:131 msgid "vendor markup percentage" msgstr "Satıcı kar payı yüzdesi" -#: core/models.py:136 +#: engine/core/models.py:135 msgid "name of this vendor" msgstr "Bu satıcının adı" -#: core/models.py:137 +#: engine/core/models.py:136 msgid "vendor name" msgstr "Satıcı adı" -#: core/models.py:148 +#: engine/core/models.py:147 msgid "response file" msgstr "yanıt dosyası" -#: core/models.py:149 +#: engine/core/models.py:148 msgid "vendor's last processing response" msgstr "satıcının son işlem yanıtı" -#: core/models.py:155 +#: engine/core/models.py:154 msgid "vendor's integration file path" msgstr "Satıcının entegrasyon dosya yolu" -#: core/models.py:156 +#: engine/core/models.py:155 msgid "integration path" msgstr "Entegrasyon yolu" -#: core/models.py:198 +#: engine/core/models.py:197 msgid "" "Represents a product tag used for classifying or identifying products. The " "ProductTag class is designed to uniquely identify and classify products " @@ -1595,33 +1633,33 @@ 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." -#: core/models.py:210 core/models.py:241 +#: engine/core/models.py:209 engine/core/models.py:240 msgid "internal tag identifier for the product tag" msgstr "Ürün etiketi için dahili etiket tanımlayıcısı" -#: core/models.py:211 core/models.py:242 +#: engine/core/models.py:210 engine/core/models.py:241 msgid "tag name" msgstr "Etiket adı" -#: core/models.py:215 core/models.py:246 +#: engine/core/models.py:214 engine/core/models.py:245 msgid "user-friendly name for the product tag" msgstr "Ürün etiketi için kullanıcı dostu ad" -#: core/models.py:216 core/models.py:247 +#: engine/core/models.py:215 engine/core/models.py:246 msgid "tag display name" msgstr "Etiket görünen adı" -#: core/models.py:224 +#: engine/core/models.py:223 msgid "product tag" msgstr "Ürün etiketi" -#: core/models.py:230 +#: engine/core/models.py:229 msgid "" "Represents a category tag used for products. This class models a category " "tag that can be used to associate and classify products. It includes " @@ -1632,15 +1670,15 @@ msgstr "" "kategori etiketini modeller. Dahili bir etiket tanımlayıcısı ve kullanıcı " "dostu bir ekran adı için öznitelikler içerir." -#: core/models.py:255 +#: engine/core/models.py:254 msgid "category tag" msgstr "kategori etiketi" -#: core/models.py:256 core/models.py:328 +#: engine/core/models.py:255 engine/core/models.py:327 msgid "category tags" msgstr "kategori etiketleri" -#: core/models.py:261 +#: engine/core/models.py:260 msgid "" "Represents a category entity to organize and group related items in a " "hierarchical structure. Categories may have hierarchical relationships with " @@ -1654,65 +1692,64 @@ 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ı, " "açıklamasını ve hiyerarşisini belirlemesinin yanı sıra resimler, etiketler " "veya öncelik gibi öznitelikler atamasına olanak tanır." -#: core/models.py:275 +#: engine/core/models.py:274 msgid "upload an image representing this category" msgstr "Bu kategoriyi temsil eden bir resim yükleyin" -#: core/models.py:278 +#: engine/core/models.py:277 msgid "category image" msgstr "Kategori görüntüsü" -#: core/models.py:283 +#: engine/core/models.py:282 msgid "define a markup percentage for products in this category" msgstr "Bu kategorideki ürünler için bir fiyatlandırma yüzdesi tanımlayın" -#: core/models.py:292 +#: engine/core/models.py:291 msgid "parent of this category to form a hierarchical structure" msgstr "Hiyerarşik bir yapı oluşturmak için bu kategorinin üst öğesi" -#: core/models.py:293 +#: engine/core/models.py:292 msgid "parent category" msgstr "Ana kategori" -#: core/models.py:298 +#: engine/core/models.py:297 msgid "category name" msgstr "Kategori adı" -#: core/models.py:299 +#: engine/core/models.py:298 msgid "provide a name for this category" msgstr "Bu kategori için bir ad girin" -#: core/models.py:306 +#: engine/core/models.py:305 msgid "add a detailed description for this category" msgstr "Bu kategori için ayrıntılı bir açıklama ekleyin" -#: core/models.py:307 +#: engine/core/models.py:306 msgid "category description" msgstr "Kategori açıklaması" -#: core/models.py:327 +#: engine/core/models.py:326 msgid "tags that help describe or group this category" msgstr "bu kategoriyi tanımlamaya veya gruplandırmaya yardımcı olan etiketler" -#: core/models.py:334 core/models.py:489 +#: engine/core/models.py:333 engine/core/models.py:488 msgid "priority" msgstr "Öncelik" -#: core/models.py:432 +#: engine/core/models.py:431 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ı " @@ -1720,50 +1757,50 @@ msgstr "" "Uygulama içinde markayla ilgili verilerin düzenlenmesini ve temsil " "edilmesini sağlar." -#: core/models.py:442 +#: engine/core/models.py:441 msgid "name of this brand" msgstr "Bu markanın adı" -#: core/models.py:443 +#: engine/core/models.py:442 msgid "brand name" msgstr "Marka adı" -#: core/models.py:450 +#: engine/core/models.py:449 msgid "upload a logo representing this brand" msgstr "Bu markayı temsil eden bir logo yükleyin" -#: core/models.py:452 +#: engine/core/models.py:451 msgid "brand small image" msgstr "Marka küçük imajı" -#: core/models.py:458 +#: engine/core/models.py:457 msgid "upload a big logo representing this brand" msgstr "Bu markayı temsil eden büyük bir logo yükleyin" -#: core/models.py:460 +#: engine/core/models.py:459 msgid "brand big image" msgstr "Marka büyük imaj" -#: core/models.py:465 +#: engine/core/models.py:464 msgid "add a detailed description of the brand" msgstr "Markanın ayrıntılı bir açıklamasını ekleyin" -#: core/models.py:466 +#: engine/core/models.py:465 msgid "brand description" msgstr "Marka açıklaması" -#: core/models.py:471 +#: engine/core/models.py:470 msgid "optional categories that this brand is associated with" msgstr "Bu markanın ilişkili olduğu isteğe bağlı kategoriler" -#: core/models.py:472 +#: engine/core/models.py:471 msgid "associated categories" msgstr "Kategoriler" -#: core/models.py:502 +#: engine/core/models.py:501 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 " @@ -1772,72 +1809,76 @@ 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." -#: core/models.py:514 +#: engine/core/models.py:513 msgid "the vendor supplying this product stock" msgstr "Bu ürün stokunu tedarik eden satıcı" -#: core/models.py:515 +#: engine/core/models.py:514 msgid "associated vendor" msgstr "İlişkili satıcı" -#: core/models.py:519 +#: engine/core/models.py:518 msgid "final price to the customer after markups" msgstr "Fiyat artışlarından sonra müşteriye verilen nihai fiyat" -#: core/models.py:520 +#: engine/core/models.py:519 msgid "selling price" msgstr "Satış fiyatı" -#: core/models.py:525 +#: engine/core/models.py:524 msgid "the product associated with this stock entry" msgstr "Bu stok girişi ile ilişkili ürün" -#: core/models.py:526 core/models.py:779 core/models.py:825 -#: core/models.py:1718 +#: engine/core/models.py:525 engine/core/models.py:790 +#: engine/core/models.py:836 engine/core/models.py:1778 msgid "associated product" msgstr "İlişkili ürün" -#: core/models.py:533 +#: engine/core/models.py:532 msgid "the price paid to the vendor for this product" msgstr "Bu ürün için satıcıya ödenen fiyat" -#: core/models.py:534 +#: engine/core/models.py:533 msgid "vendor purchase price" msgstr "Satıcı satın alma fiyatı" -#: core/models.py:538 +#: engine/core/models.py:537 msgid "available quantity of the product in stock" msgstr "Stoktaki mevcut ürün miktarı" -#: core/models.py:539 +#: engine/core/models.py:538 msgid "quantity in stock" msgstr "Stoktaki miktar" -#: core/models.py:543 +#: engine/core/models.py:542 msgid "vendor-assigned SKU for identifying the product" msgstr "Ürünü tanımlamak için satıcı tarafından atanan SKU" -#: core/models.py:544 +#: engine/core/models.py:543 msgid "vendor sku" msgstr "Satıcının SKU'su" -#: core/models.py:550 +#: engine/core/models.py:549 msgid "digital file associated with this stock if applicable" msgstr "Varsa bu stokla ilişkili dijital dosya" -#: core/models.py:551 +#: engine/core/models.py:550 msgid "digital file" msgstr "Dijital dosya" -#: core/models.py:560 +#: engine/core/models.py:553 +msgid "system attributes" +msgstr "Sistem nitelikleri" + +#: engine/core/models.py:560 msgid "stock entries" msgstr "Stok girişleri" -#: core/models.py:565 +#: engine/core/models.py:565 msgid "" "Represents a product with attributes such as category, brand, tags, digital " "status, name, description, part number, and slug. Provides related utility " @@ -1858,61 +1899,61 @@ msgstr "" "yönetir. Bir uygulama içinde ürün verilerini ve ilişkili bilgileri " "tanımlamak ve işlemek için kullanılır." -#: core/models.py:578 +#: engine/core/models.py:578 msgid "category this product belongs to" msgstr "Bu ürünün ait olduğu kategori" -#: core/models.py:587 +#: engine/core/models.py:587 msgid "optionally associate this product with a brand" msgstr "İsteğe bağlı olarak bu ürünü bir marka ile ilişkilendirin" -#: core/models.py:593 +#: engine/core/models.py:593 msgid "tags that help describe or group this product" msgstr "Bu ürünü tanımlamaya veya gruplandırmaya yardımcı olan etiketler" -#: core/models.py:598 +#: engine/core/models.py:598 msgid "indicates whether this product is digitally delivered" msgstr "Bu ürünün dijital olarak teslim edilip edilmediğini belirtir" -#: core/models.py:599 +#: engine/core/models.py:599 msgid "is product digital" msgstr "Ürün dijital mi" -#: core/models.py:605 +#: engine/core/models.py:605 msgid "provide a clear identifying name for the product" msgstr "Ürün için net bir tanımlayıcı isim sağlayın" -#: core/models.py:606 +#: engine/core/models.py:606 msgid "product name" msgstr "Ürün adı" -#: core/models.py:612 core/models.py:867 +#: engine/core/models.py:612 engine/core/models.py:878 msgid "add a detailed description of the product" msgstr "Ürünün ayrıntılı bir açıklamasını ekleyin" -#: core/models.py:613 +#: engine/core/models.py:613 msgid "product description" msgstr "Ürün Açıklaması" -#: core/models.py:620 +#: engine/core/models.py:620 msgid "part number for this product" msgstr "Bu ürün için parça numarası" -#: core/models.py:621 +#: engine/core/models.py:621 msgid "part number" msgstr "Parça numarası" -#: core/models.py:640 +#: engine/core/models.py:640 msgid "stock keeping unit for this product" msgstr "Bu ürün için Stok Tutma Birimi" -#: core/models.py:702 +#: engine/core/models.py:713 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 " @@ -1922,140 +1963,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." -#: core/models.py:715 +#: engine/core/models.py:726 msgid "group of this attribute" msgstr "Bu niteliğin grubu" -#: core/models.py:721 +#: engine/core/models.py:732 msgid "string" msgstr "String" -#: core/models.py:722 +#: engine/core/models.py:733 msgid "integer" msgstr "Tamsayı" -#: core/models.py:723 +#: engine/core/models.py:734 msgid "float" msgstr "Yüzer" -#: core/models.py:724 +#: engine/core/models.py:735 msgid "boolean" msgstr "Boolean" -#: core/models.py:725 +#: engine/core/models.py:736 msgid "array" msgstr "Dizi" -#: core/models.py:726 +#: engine/core/models.py:737 msgid "object" msgstr "Nesne" -#: core/models.py:728 +#: engine/core/models.py:739 msgid "type of the attribute's value" msgstr "Özniteliğin değerinin türü" -#: core/models.py:729 +#: engine/core/models.py:740 msgid "value type" msgstr "Değer türü" -#: core/models.py:734 +#: engine/core/models.py:745 msgid "name of this attribute" msgstr "Bu niteliğin adı" -#: core/models.py:735 +#: engine/core/models.py:746 msgid "attribute's name" msgstr "Özniteliğin adı" -#: core/models.py:740 +#: engine/core/models.py:751 msgid "is filterable" msgstr "filtrelenebilir" -#: core/models.py:741 +#: engine/core/models.py:752 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." -#: core/models.py:753 core/models.py:771 -#: core/templates/digital_order_delivered_email.html:134 +#: engine/core/models.py:764 engine/core/models.py:782 +#: engine/core/templates/digital_order_delivered_email.html:134 msgid "attribute" msgstr "Öznitelik" -#: core/models.py:759 +#: engine/core/models.py:770 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." -#: core/models.py:770 +#: engine/core/models.py:781 msgid "attribute of this value" msgstr "Bu değerin niteliği" -#: core/models.py:778 +#: engine/core/models.py:789 msgid "the specific product associated with this attribute's value" msgstr "Bu özniteliğin değeriyle ilişkili belirli ürün" -#: core/models.py:784 +#: engine/core/models.py:795 msgid "the specific value for this attribute" msgstr "Bu öznitelik için özel değer" -#: core/models.py:797 +#: engine/core/models.py:808 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." -#: core/models.py:808 +#: engine/core/models.py:819 msgid "provide alternative text for the image for accessibility" msgstr "Erişilebilirlik için görüntü için alternatif metin sağlayın" -#: core/models.py:809 +#: engine/core/models.py:820 msgid "image alt text" msgstr "Resim alt metni" -#: core/models.py:812 +#: engine/core/models.py:823 msgid "upload the image file for this product" msgstr "Bu ürün için resim dosyasını yükleyin" -#: core/models.py:813 core/models.py:837 +#: engine/core/models.py:824 engine/core/models.py:848 msgid "product image" msgstr "Ürün görseli" -#: core/models.py:818 +#: engine/core/models.py:829 msgid "determines the order in which images are displayed" msgstr "Görüntülerin görüntülenme sırasını belirler" -#: core/models.py:819 +#: engine/core/models.py:830 msgid "display priority" msgstr "Ekran önceliği" -#: core/models.py:824 +#: engine/core/models.py:835 msgid "the product that this image represents" msgstr "Bu görselin temsil ettiği ürün" -#: core/models.py:838 +#: engine/core/models.py:849 msgid "product images" msgstr "Ürün görselleri" -#: core/models.py:843 +#: engine/core/models.py:854 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ı " @@ -2064,167 +2105,167 @@ msgstr "" "öznitelikler içerir. Kampanyadaki etkilenen ürünleri belirlemek için ürün " "kataloğu ile entegre olur." -#: core/models.py:855 +#: engine/core/models.py:866 msgid "percentage discount for the selected products" msgstr "Seçilen ürünler için yüzde indirim" -#: core/models.py:856 +#: engine/core/models.py:867 msgid "discount percentage" msgstr "İndirim yüzdesi" -#: core/models.py:861 +#: engine/core/models.py:872 msgid "provide a unique name for this promotion" msgstr "Bu promosyon için benzersiz bir ad girin" -#: core/models.py:862 +#: engine/core/models.py:873 msgid "promotion name" msgstr "Promosyon adı" -#: core/models.py:868 +#: engine/core/models.py:879 msgid "promotion description" msgstr "Promosyon açıklaması" -#: core/models.py:873 +#: engine/core/models.py:884 msgid "select which products are included in this promotion" msgstr "Bu promosyona hangi ürünlerin dahil olduğunu seçin" -#: core/models.py:874 +#: engine/core/models.py:885 msgid "included products" msgstr "Dahil olan ürünler" -#: core/models.py:878 +#: engine/core/models.py:889 msgid "promotion" msgstr "Promosyon" -#: core/models.py:889 +#: engine/core/models.py:900 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." -#: core/models.py:901 +#: engine/core/models.py:912 msgid "products that the user has marked as wanted" msgstr "Kullanıcının aranıyor olarak işaretlediği ürünler" -#: core/models.py:909 +#: engine/core/models.py:920 msgid "user who owns this wishlist" msgstr "Bu istek listesine sahip olan kullanıcı" -#: core/models.py:910 +#: engine/core/models.py:921 msgid "wishlist owner" msgstr "Dilek Listesi Sahibi" -#: core/models.py:918 +#: engine/core/models.py:929 msgid "wishlist" msgstr "İstek Listesi" -#: core/models.py:960 +#: engine/core/models.py:971 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." -#: core/models.py:973 +#: engine/core/models.py:984 msgid "documentary" msgstr "Belgesel" -#: core/models.py:974 +#: engine/core/models.py:985 msgid "documentaries" msgstr "Belgeseller" -#: core/models.py:984 +#: engine/core/models.py:995 msgid "unresolved" msgstr "Çözümlenmemiş" -#: core/models.py:989 +#: engine/core/models.py:1000 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." -#: core/models.py:1004 +#: engine/core/models.py:1015 msgid "address line for the customer" msgstr "Müşteri için adres satırı" -#: core/models.py:1005 +#: engine/core/models.py:1016 msgid "address line" msgstr "Adres hattı" -#: core/models.py:1007 +#: engine/core/models.py:1018 msgid "street" msgstr "Sokak" -#: core/models.py:1008 +#: engine/core/models.py:1019 msgid "district" msgstr "Bölge" -#: core/models.py:1009 +#: engine/core/models.py:1020 msgid "city" msgstr "Şehir" -#: core/models.py:1010 +#: engine/core/models.py:1021 msgid "region" msgstr "Bölge" -#: core/models.py:1011 +#: engine/core/models.py:1022 msgid "postal code" msgstr "Posta kodu" -#: core/models.py:1012 +#: engine/core/models.py:1023 msgid "country" msgstr "Ülke" -#: core/models.py:1019 +#: engine/core/models.py:1030 msgid "geolocation point: (longitude, latitude)" msgstr "Coğrafi Konum Noktası(Boylam, Enlem)" -#: core/models.py:1022 +#: engine/core/models.py:1033 msgid "full JSON response from geocoder for this address" msgstr "Bu adres için geocoder'dan alınan tam JSON yanıtı" -#: core/models.py:1027 +#: engine/core/models.py:1038 msgid "stored JSON response from the geocoding service" msgstr "Coğrafi kodlama hizmetinden depolanan JSON yanıtı" -#: core/models.py:1035 +#: engine/core/models.py:1046 msgid "address" msgstr "Adres" -#: core/models.py:1036 +#: engine/core/models.py:1047 msgid "addresses" msgstr "Adresler" -#: core/models.py:1048 +#: engine/core/models.py:1059 msgid "" "Represents a promotional code that can be used for discounts, managing its " "validity, type of discount, and application. The PromoCode class stores " @@ -2241,74 +2282,73 @@ msgstr "" "karşılandığından emin olurken promosyon kodunu doğrulamak ve siparişe " "uygulamak için işlevsellik içerir." -#: core/models.py:1062 +#: engine/core/models.py:1073 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" -#: core/models.py:1063 +#: engine/core/models.py:1074 msgid "promo code identifier" msgstr "Promosyon kodu tanımlayıcı" -#: core/models.py:1070 +#: engine/core/models.py:1081 msgid "fixed discount amount applied if percent is not used" msgstr "Yüzde kullanılmazsa uygulanan sabit indirim tutarı" -#: core/models.py:1071 +#: engine/core/models.py:1082 msgid "fixed discount amount" msgstr "Sabit iskonto tutarı" -#: core/models.py:1077 +#: engine/core/models.py:1088 msgid "percentage discount applied if fixed amount is not used" msgstr "Sabit tutar kullanılmazsa uygulanan yüzde indirimi" -#: core/models.py:1078 +#: engine/core/models.py:1089 msgid "percentage discount" msgstr "Yüzde indirim" -#: core/models.py:1083 +#: engine/core/models.py:1094 msgid "timestamp when the promocode expires" msgstr "Promosyon kodunun sona erdiği zaman damgası" -#: core/models.py:1084 +#: engine/core/models.py:1095 msgid "end validity time" msgstr "Geçerlilik süresi sonu" -#: core/models.py:1089 +#: engine/core/models.py:1100 msgid "timestamp from which this promocode is valid" msgstr "Bu promosyon kodunun geçerli olduğu zaman damgası" -#: core/models.py:1090 +#: engine/core/models.py:1101 msgid "start validity time" msgstr "Geçerlilik süresini başlat" -#: core/models.py:1095 +#: engine/core/models.py:1106 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ş" -#: core/models.py:1096 +#: engine/core/models.py:1107 msgid "usage timestamp" msgstr "Kullanım zaman damgası" -#: core/models.py:1101 +#: engine/core/models.py:1112 msgid "user assigned to this promocode if applicable" msgstr "Varsa bu promosyon koduna atanan kullanıcı" -#: core/models.py:1102 +#: engine/core/models.py:1113 msgid "assigned user" msgstr "Atanmış kullanıcı" -#: core/models.py:1109 +#: engine/core/models.py:1120 msgid "promo code" msgstr "Promosyon kodu" -#: core/models.py:1110 +#: engine/core/models.py:1121 msgid "promo codes" msgstr "Promosyon kodları" -#: core/models.py:1125 +#: engine/core/models.py:1136 msgid "" "only one type of discount should be defined (amount or percent), but not " "both or neither." @@ -2316,162 +2356,162 @@ msgstr "" "Sadece bir indirim türü (tutar veya yüzde) tanımlanmalı, ikisi birden veya " "hiçbiri tanımlanmamalıdır." -#: core/models.py:1146 +#: engine/core/models.py:1157 msgid "promocode already used" msgstr "Promosyon kodu zaten kullanılmış" -#: core/models.py:1162 +#: engine/core/models.py:1173 #, python-brace-format msgid "invalid discount type for promocode {self.uuid}" msgstr "Promosyon kodu {self.uuid} için geçersiz indirim türü!" -#: core/models.py:1171 +#: engine/core/models.py:1182 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." -#: core/models.py:1188 +#: engine/core/models.py:1199 msgid "the billing address used for this order" msgstr "Bu sipariş için kullanılan fatura adresi" -#: core/models.py:1196 +#: engine/core/models.py:1207 msgid "optional promo code applied to this order" msgstr "Bu siparişe isteğe bağlı promosyon kodu uygulanır" -#: core/models.py:1197 +#: engine/core/models.py:1208 msgid "applied promo code" msgstr "Uygulanan promosyon kodu" -#: core/models.py:1205 +#: engine/core/models.py:1216 msgid "the shipping address used for this order" msgstr "Bu sipariş için kullanılan gönderim adresi" -#: core/models.py:1206 +#: engine/core/models.py:1217 msgid "shipping address" msgstr "Nakliye adresi" -#: core/models.py:1212 +#: engine/core/models.py:1223 msgid "current status of the order in its lifecycle" msgstr "Siparişin yaşam döngüsündeki mevcut durumu" -#: core/models.py:1213 +#: engine/core/models.py:1224 msgid "order status" msgstr "Sipariş durumu" -#: core/models.py:1218 core/models.py:1695 +#: engine/core/models.py:1229 engine/core/models.py:1755 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" -#: core/models.py:1224 +#: engine/core/models.py:1235 msgid "json representation of order attributes for this order" msgstr "Bu sipariş için sipariş özniteliklerinin JSON gösterimi" -#: core/models.py:1230 +#: engine/core/models.py:1241 msgid "the user who placed the order" msgstr "Siparişi veren kullanıcı" -#: core/models.py:1231 +#: engine/core/models.py:1242 msgid "user" msgstr "Kullanıcı" -#: core/models.py:1237 +#: engine/core/models.py:1248 msgid "the timestamp when the order was finalized" msgstr "Siparişin sonlandırıldığı zaman damgası" -#: core/models.py:1238 +#: engine/core/models.py:1249 msgid "buy time" msgstr "Zaman satın alın" -#: core/models.py:1245 +#: engine/core/models.py:1256 msgid "a human-readable identifier for the order" msgstr "Sipariş için insan tarafından okunabilir bir tanımlayıcı" -#: core/models.py:1246 +#: engine/core/models.py:1257 msgid "human readable id" msgstr "insan tarafından okunabilir kimlik" -#: core/models.py:1252 +#: engine/core/models.py:1263 msgid "order" msgstr "Sipariş" -#: core/models.py:1294 +#: engine/core/models.py:1305 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!" -#: core/models.py:1326 +#: engine/core/models.py:1337 msgid "you cannot add products to an order that is not a pending one" msgstr "Beklemede olmayan bir siparişe ürün ekleyemezsiniz" -#: core/models.py:1331 +#: engine/core/models.py:1342 msgid "you cannot add inactive products to order" msgstr "Aktif olmayan ürünleri siparişe ekleyemezsiniz" -#: core/models.py:1348 +#: engine/core/models.py:1359 msgid "you cannot add more products than available in stock" msgstr "Stokta mevcut olandan daha fazla ürün ekleyemezsiniz" -#: core/models.py:1370 core/models.py:1395 core/models.py:1403 +#: engine/core/models.py:1381 engine/core/models.py:1406 +#: engine/core/models.py:1414 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" -#: core/models.py:1391 +#: engine/core/models.py:1402 #, python-brace-format msgid "{name} does not exist with query <{query}>" msgstr "{name} <{query}> sorgusu ile mevcut değil!" -#: core/models.py:1423 +#: engine/core/models.py:1434 msgid "promocode does not exist" msgstr "Promosyon kodu mevcut değil" -#: core/models.py:1429 +#: engine/core/models.py:1440 msgid "you can only buy physical products with shipping address specified" msgstr "" "Fiziksel ürünleri yalnızca gönderim adresi belirtilerek satın alabilirsiniz!" -#: core/models.py:1448 +#: engine/core/models.py:1459 msgid "address does not exist" msgstr "Adres mevcut değil" -#: core/models.py:1469 core/models.py:1538 +#: engine/core/models.py:1480 engine/core/models.py:1549 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." -#: core/models.py:1472 core/models.py:1534 +#: engine/core/models.py:1483 engine/core/models.py:1545 msgid "invalid force value" msgstr "Geçersiz kuvvet değeri" -#: core/models.py:1478 core/models.py:1541 +#: engine/core/models.py:1489 engine/core/models.py:1552 msgid "you cannot purchase an empty order!" msgstr "Boş bir sipariş satın alamazsınız!" -#: core/models.py:1497 +#: engine/core/models.py:1508 msgid "you cannot buy an order without a user" msgstr "Kullanıcı olmadan sipariş alamazsınız!" -#: core/models.py:1511 +#: engine/core/models.py:1522 msgid "a user without a balance cannot buy with balance" msgstr "Bakiyesi olmayan bir kullanıcı bakiye ile satın alamaz!" -#: core/models.py:1516 +#: engine/core/models.py:1527 msgid "insufficient funds to complete the order" msgstr "Siparişi tamamlamak için yeterli fon yok" -#: core/models.py:1550 +#: engine/core/models.py:1561 msgid "" "you cannot buy without registration, please provide the following " "information: customer name, customer email, customer phone number" @@ -2479,14 +2519,55 @@ 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ı" -#: core/models.py:1559 +#: engine/core/models.py:1570 #, 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}!" -#: core/models.py:1668 +#: engine/core/models.py:1685 +msgid "" +"Manages user feedback for products. This class is designed to capture and " +"store user feedback for specific products that they have purchased. It " +"contains attributes to store user comments, a reference to the related " +"product in the order, and a user-assigned rating. The class uses database " +"fields to effectively model and manage feedback data." +msgstr "" +"Ürünler için kullanıcı geri bildirimlerini yönetir. Bu sınıf, satın " +"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." + +#: engine/core/models.py:1697 +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:1698 +msgid "feedback comments" +msgstr "Geri bildirim yorumları" + +#: engine/core/models.py:1705 +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" + +#: engine/core/models.py:1706 +msgid "related order product" +msgstr "İlgili sipariş ürünü" + +#: engine/core/models.py:1711 +msgid "user-assigned rating for the product" +msgstr "Ürün için kullanıcı tarafından atanan derecelendirme" + +#: engine/core/models.py:1712 +msgid "product rating" +msgstr "Ürün değerlendirmesi" + +#: engine/core/models.py:1728 msgid "" "Represents products associated with orders and their attributes. The " "OrderProduct model maintains information about a product that is part of an " @@ -2508,250 +2589,204 @@ msgstr "" "destekleyen yöntemler ve özellikler sağlar. Model, Sipariş ve Ürün " "modelleriyle entegre olur ve bunlara referans depolar." -#: core/models.py:1683 +#: engine/core/models.py:1743 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" -#: core/models.py:1684 +#: engine/core/models.py:1744 msgid "purchase price at order time" msgstr "Sipariş anındaki satın alma fiyatı" -#: core/models.py:1689 +#: engine/core/models.py:1749 msgid "internal comments for admins about this ordered product" msgstr "Sipariş edilen bu ürün hakkında yöneticiler için dahili yorumlar" -#: core/models.py:1690 +#: engine/core/models.py:1750 msgid "internal comments" msgstr "Dahili yorumlar" -#: core/models.py:1696 +#: engine/core/models.py:1756 msgid "user notifications" msgstr "Kullanıcı bildirimleri" -#: core/models.py:1701 +#: engine/core/models.py:1761 msgid "json representation of this item's attributes" msgstr "Bu öğenin özniteliklerinin JSON gösterimi" -#: core/models.py:1702 +#: engine/core/models.py:1762 msgid "ordered product attributes" msgstr "Sıralı ürün özellikleri" -#: core/models.py:1707 +#: engine/core/models.py:1767 msgid "reference to the parent order that contains this product" msgstr "Bu ürünü içeren ana siparişe referans" -#: core/models.py:1708 +#: engine/core/models.py:1768 msgid "parent order" msgstr "Ana sipariş" -#: core/models.py:1717 +#: engine/core/models.py:1777 msgid "the specific product associated with this order line" msgstr "Bu sipariş satırıyla ilişkili belirli ürün" -#: core/models.py:1724 +#: engine/core/models.py:1784 msgid "quantity of this specific product in the order" msgstr "Siparişteki bu belirli ürünün miktarı" -#: core/models.py:1725 +#: engine/core/models.py:1785 msgid "product quantity" msgstr "Ürün miktarı" -#: core/models.py:1732 +#: engine/core/models.py:1792 msgid "current status of this product in the order" msgstr "Bu ürünün siparişteki mevcut durumu" -#: core/models.py:1733 +#: engine/core/models.py:1793 msgid "product line status" msgstr "Ürün hattı durumu" -#: core/models.py:1798 +#: engine/core/models.py:1858 msgid "order product must have an order" msgstr "Orderproduct ilişkili bir siparişe sahip olmalıdır!" -#: core/models.py:1800 +#: engine/core/models.py:1860 #, python-brace-format msgid "wrong action specified for feedback: {action}" msgstr "Geri bildirim için yanlış eylem belirtildi: {action}!" -#: core/models.py:1814 +#: engine/core/models.py:1874 msgid "you cannot feedback an order which is not received" msgstr "alınmamış bir siparişe geri bildirim yapamazsınız" -#: core/models.py:1820 +#: engine/core/models.py:1880 msgid "name" msgstr "İsim" -#: core/models.py:1821 +#: engine/core/models.py:1881 msgid "URL of the integration" msgstr "Entegrasyonun URL'si" -#: core/models.py:1822 +#: engine/core/models.py:1882 msgid "authentication credentials" msgstr "Kimlik doğrulama bilgileri" -#: core/models.py:1844 +#: engine/core/models.py:1904 msgid "you can only have one default CRM provider" msgstr "Yalnızca bir varsayılan CRM sağlayıcınız olabilir" -#: core/models.py:1854 +#: engine/core/models.py:1914 msgid "CRM" msgstr "CRM" -#: core/models.py:1855 +#: engine/core/models.py:1915 msgid "CRMs" msgstr "CRM'ler" -#: core/models.py:1867 +#: engine/core/models.py:1927 msgid "order CRM link" msgstr "Siparişin CRM bağlantısı" -#: core/models.py:1868 +#: engine/core/models.py:1928 msgid "orders CRM links" msgstr "Siparişlerin CRM bağlantıları" -#: core/models.py:1873 +#: engine/core/models.py:1933 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." -#: core/models.py:1887 +#: engine/core/models.py:1947 msgid "download" msgstr "İndir" -#: core/models.py:1888 +#: engine/core/models.py:1948 msgid "downloads" msgstr "İndirmeler" -#: core/models.py:1902 -msgid "" -"Manages user feedback for products. This class is designed to capture and " -"store user feedback for specific products that they have purchased. It " -"contains attributes to store user comments, a reference to the related " -"product in the order, and a user-assigned rating. The class uses database " -"fields to effectively model and manage feedback data." -msgstr "" -"Ürünler için kullanıcı geri bildirimlerini yönetir. Bu sınıf, satın " -"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." - -#: core/models.py:1914 -msgid "user-provided comments about their experience with the product" -msgstr "" -"Ürünle ilgili deneyimleri hakkında kullanıcı tarafından sağlanan yorumlar" - -#: core/models.py:1915 -msgid "feedback comments" -msgstr "Geri bildirim yorumları" - -#: core/models.py:1922 -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" - -#: core/models.py:1923 -msgid "related order product" -msgstr "İlgili sipariş ürünü" - -#: core/models.py:1928 -msgid "user-assigned rating for the product" -msgstr "Ürün için kullanıcı tarafından atanan derecelendirme" - -#: core/models.py:1929 -msgid "product rating" -msgstr "Ürün değerlendirmesi" - -#: core/serializers/utility.py:89 +#: engine/core/serializers/utility.py:89 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." -#: core/signals.py:73 -msgid "error during promocode creation: {e!s}" -msgstr "Promosyon kodu oluşturma sırasında hata: {e!s}" - -#: core/sitemaps.py:25 +#: engine/core/sitemaps.py:25 msgid "Home" msgstr "Ev" -#: core/sitemaps.py:30 +#: engine/core/sitemaps.py:30 msgid "Contact Us" msgstr "Bize Ulaşın" -#: core/sitemaps.py:35 +#: engine/core/sitemaps.py:35 msgid "About Us" msgstr "Hakkımızda" -#: core/templates/digital_order_created_email.html:7 -#: core/templates/digital_order_created_email.html:100 -#: core/templates/digital_order_delivered_email.html:6 -#: core/templates/shipped_order_created_email.html:7 -#: core/templates/shipped_order_created_email.html:99 -#: core/templates/shipped_order_delivered_email.html:7 -#: core/templates/shipped_order_delivered_email.html:99 +#: engine/core/templates/digital_order_created_email.html:7 +#: engine/core/templates/digital_order_created_email.html:100 +#: engine/core/templates/digital_order_delivered_email.html:6 +#: engine/core/templates/shipped_order_created_email.html:7 +#: engine/core/templates/shipped_order_created_email.html:99 +#: engine/core/templates/shipped_order_delivered_email.html:7 +#: engine/core/templates/shipped_order_delivered_email.html:99 msgid "order confirmation" msgstr "Sipariş Onayı" -#: core/templates/digital_order_created_email.html:95 -#: core/templates/digital_order_delivered_email.html:94 -#: core/templates/promocode_granted_email.html:94 -#: core/templates/shipped_order_created_email.html:94 -#: core/templates/shipped_order_delivered_email.html:94 +#: engine/core/templates/digital_order_created_email.html:95 +#: engine/core/templates/digital_order_delivered_email.html:94 +#: engine/core/templates/promocode_granted_email.html:94 +#: engine/core/templates/shipped_order_created_email.html:94 +#: engine/core/templates/shipped_order_delivered_email.html:94 msgid "logo" msgstr "Logo" -#: core/templates/digital_order_created_email.html:101 -#: core/templates/shipped_order_created_email.html:100 -#: core/templates/shipped_order_delivered_email.html:100 +#: engine/core/templates/digital_order_created_email.html:101 +#: engine/core/templates/shipped_order_created_email.html:100 +#: engine/core/templates/shipped_order_delivered_email.html:100 #, python-format msgid "hello %(order.user.first_name)s," msgstr "Merhaba %(order.user.first_name)s," -#: core/templates/digital_order_created_email.html:102 +#: engine/core/templates/digital_order_created_email.html:102 #, 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 " "aldığımızı bildirmekten memnuniyet duyarız. Siparişinizin detayları " "aşağıdadır:" -#: core/templates/digital_order_created_email.html:112 -#: core/templates/digital_order_delivered_email.html:110 -#: core/templates/shipped_order_created_email.html:110 -#: core/templates/shipped_order_delivered_email.html:110 +#: engine/core/templates/digital_order_created_email.html:112 +#: engine/core/templates/digital_order_delivered_email.html:110 +#: engine/core/templates/shipped_order_created_email.html:110 +#: engine/core/templates/shipped_order_delivered_email.html:110 msgid "total" msgstr "Toplam" -#: core/templates/digital_order_created_email.html:125 -#: core/templates/digital_order_delivered_email.html:157 -#: core/templates/shipped_order_created_email.html:127 -#: core/templates/shipped_order_delivered_email.html:127 +#: engine/core/templates/digital_order_created_email.html:125 +#: engine/core/templates/digital_order_delivered_email.html:157 +#: engine/core/templates/shipped_order_created_email.html:127 +#: engine/core/templates/shipped_order_delivered_email.html:127 msgid "total price" msgstr "Toplam Fiyat" -#: core/templates/digital_order_created_email.html:131 -#: core/templates/shipped_order_created_email.html:140 -#: core/templates/shipped_order_delivered_email.html:140 +#: engine/core/templates/digital_order_created_email.html:131 +#: engine/core/templates/shipped_order_created_email.html:140 +#: engine/core/templates/shipped_order_delivered_email.html:140 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" @@ -2760,37 +2795,37 @@ msgstr "" "Herhangi bir sorunuz varsa, %(config.EMAIL_HOST_USER)s adresinden destek " "ekibimizle iletişime geçmekten çekinmeyin." -#: core/templates/digital_order_created_email.html:133 +#: engine/core/templates/digital_order_created_email.html:133 #, python-format msgid "best regards,
the %(config.PROJECT_NAME)s team" msgstr "Saygılarımla,
the %(config.PROJECT_NAME)s team" -#: core/templates/digital_order_created_email.html:139 -#: core/templates/digital_order_delivered_email.html:171 -#: core/templates/promocode_granted_email.html:114 +#: engine/core/templates/digital_order_created_email.html:139 +#: engine/core/templates/digital_order_delivered_email.html:171 +#: engine/core/templates/promocode_granted_email.html:114 msgid "all rights reserved" msgstr "Tüm hakları saklıdır" -#: core/templates/digital_order_delivered_email.html:99 +#: engine/core/templates/digital_order_delivered_email.html:99 msgid "order delivered" msgstr "Sipariş Teslim Edildi" -#: core/templates/digital_order_delivered_email.html:100 -#: core/templates/promocode_granted_email.html:100 +#: engine/core/templates/digital_order_delivered_email.html:100 +#: engine/core/templates/promocode_granted_email.html:100 #, python-format msgid "hello %(user_first_name)s," msgstr "Merhaba %(user_first_name)s," -#: core/templates/digital_order_delivered_email.html:101 +#: engine/core/templates/digital_order_delivered_email.html:101 #, python-format 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:" -#: core/templates/digital_order_delivered_email.html:128 +#: engine/core/templates/digital_order_delivered_email.html:128 msgid "" "additional\n" " information" @@ -2798,13 +2833,13 @@ msgstr "" "ilave\n" " BİLGİ" -#: core/templates/digital_order_delivered_email.html:137 -#: core/templates/json_table_widget.html:6 +#: engine/core/templates/digital_order_delivered_email.html:137 +#: engine/core/templates/json_table_widget.html:6 msgid "value" msgstr "Değer" -#: core/templates/digital_order_delivered_email.html:163 -#: core/templates/promocode_granted_email.html:106 +#: engine/core/templates/digital_order_delivered_email.html:163 +#: engine/core/templates/promocode_granted_email.html:106 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" @@ -2813,26 +2848,26 @@ msgstr "" "Herhangi bir sorunuz varsa, %(contact_email)s adresinden destek ekibimizle " "iletişime geçmekten çekinmeyin." -#: core/templates/digital_order_delivered_email.html:165 -#: core/templates/promocode_granted_email.html:108 +#: engine/core/templates/digital_order_delivered_email.html:165 +#: engine/core/templates/promocode_granted_email.html:108 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "Saygılarımla,
the %(project_name)s team" -#: core/templates/json_table_widget.html:5 +#: engine/core/templates/json_table_widget.html:5 msgid "key" msgstr "Anahtar" -#: core/templates/json_table_widget.html:40 +#: engine/core/templates/json_table_widget.html:40 msgid "Add Row" msgstr "Satır Ekle" -#: core/templates/promocode_granted_email.html:6 -#: core/templates/promocode_granted_email.html:99 +#: engine/core/templates/promocode_granted_email.html:6 +#: engine/core/templates/promocode_granted_email.html:99 msgid "promocode granted" msgstr "Promosyon kodu verildi" -#: core/templates/promocode_granted_email.html:101 +#: engine/core/templates/promocode_granted_email.html:101 msgid "" "Thank you for staying with us! We have granted you with a promocode\n" " for " @@ -2840,33 +2875,34 @@ msgstr "" "Bizimle kaldığınız için teşekkür ederiz! Size bir promosyon kodu verdik\n" " için" -#: core/templates/shipped_order_created_email.html:101 -#: core/templates/shipped_order_delivered_email.html:101 +#: 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 " "memnuniyet duyuyoruz. Siparişinizin detayları aşağıdadır:" -#: core/templates/shipped_order_created_email.html:123 -#: core/templates/shipped_order_delivered_email.html:123 +#: engine/core/templates/shipped_order_created_email.html:123 +#: engine/core/templates/shipped_order_delivered_email.html:123 msgid "shipping price" msgstr "Nakliye fiyatı" -#: core/templates/shipped_order_created_email.html:133 -#: core/templates/shipped_order_delivered_email.html:133 +#: engine/core/templates/shipped_order_created_email.html:133 +#: engine/core/templates/shipped_order_delivered_email.html:133 msgid "your order will be delivered to the following address:" msgstr "Siparişiniz aşağıdaki adrese teslim edilecektir:" -#: core/templates/shipped_order_created_email.html:142 -#: core/templates/shipped_order_delivered_email.html:142 +#: engine/core/templates/shipped_order_created_email.html:142 +#: engine/core/templates/shipped_order_delivered_email.html:142 #, python-format msgid "best regards,
The %(config.PROJECT_NAME)s team" msgstr "Saygılarımla,
The %(config.PROJECT_NAME)s team" -#: core/templates/shipped_order_created_email.html:147 -#: core/templates/shipped_order_delivered_email.html:147 +#: engine/core/templates/shipped_order_created_email.html:147 +#: engine/core/templates/shipped_order_delivered_email.html:147 msgid "" "all rights\n" " reserved" @@ -2874,48 +2910,48 @@ msgstr "" "Tüm hakları\n" " ayrılmış" -#: core/utils/caching.py:44 +#: engine/core/utils/caching.py:44 msgid "both data and timeout are required" msgstr "Hem veri hem de zaman aşımı gereklidir" -#: core/utils/caching.py:46 +#: engine/core/utils/caching.py:46 msgid "invalid timeout value, it must be between 0 and 216000 seconds" msgstr "Geçersiz zaman aşımı değeri, 0 ile 216000 saniye arasında olmalıdır" -#: core/utils/emailing.py:27 +#: engine/core/utils/emailing.py:27 #, python-brace-format msgid "{config.PROJECT_NAME} | contact us initiated" msgstr "{config.PROJECT_NAME} | bi̇zi̇mle i̇leti̇şi̇me geçi̇n" -#: core/utils/emailing.py:73 +#: engine/core/utils/emailing.py:73 #, python-brace-format msgid "{config.PROJECT_NAME} | order confirmation" msgstr "{config.PROJECT_NAME} | Sipariş Onayı" -#: core/utils/emailing.py:105 +#: engine/core/utils/emailing.py:105 #, python-brace-format msgid "{config.PROJECT_NAME} | order delivered" msgstr "{config.PROJECT_NAME} | Sipariş Teslim Edildi" -#: core/utils/emailing.py:188 +#: engine/core/utils/emailing.py:188 #, python-brace-format msgid "{config.PROJECT_NAME} | promocode granted" msgstr "{config.PROJECT_NAME} | verilen promosyon kodu" -#: core/utils/messages.py:3 +#: engine/core/utils/messages.py:3 msgid "you do not have permission to perform this action." msgstr "Bu eylemi gerçekleştirmek için izniniz yok." -#: core/utils/nominatim.py:8 +#: engine/core/utils/nominatim.py:8 msgid "NOMINATIM_URL must be configured." msgstr "NOMINATIM_URL parametresi yapılandırılmalıdır!" -#: core/validators.py:16 +#: engine/core/validators.py:16 #, python-brace-format msgid "image dimensions should not exceed w{max_width} x h{max_height} pixels" msgstr "Resim boyutları w{max_width} x h{max_height} pikseli geçmemelidir!" -#: core/views.py:72 +#: engine/core/views.py:71 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." @@ -2923,40 +2959,40 @@ msgstr "" "Site haritası dizini için isteği işler ve bir XML yanıtı döndürür. Yanıtın " "XML için uygun içerik türü başlığını içermesini sağlar." -#: core/views.py:87 +#: engine/core/views.py:86 msgid "" "Handles the detailed view response for a sitemap. This function processes " "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." -#: core/views.py:116 +#: engine/core/views.py:115 msgid "" "Returns a list of supported languages and their corresponding information." msgstr "" "Desteklenen dillerin bir listesini ve bunlara karşılık gelen bilgileri " "döndürür." -#: core/views.py:148 +#: engine/core/views.py:147 msgid "Returns the parameters of the website as a JSON object." msgstr "Web sitesinin parametrelerini bir JSON nesnesi olarak döndürür." -#: core/views.py:167 +#: engine/core/views.py:166 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." -#: core/views.py:194 +#: engine/core/views.py:193 msgid "Handles `contact us` form submissions." msgstr "Bize ulaşın` form gönderimlerini işler." -#: core/views.py:215 +#: engine/core/views.py:214 msgid "" "Handles requests for processing and validating URLs from incoming POST " "requests." @@ -2964,54 +3000,62 @@ msgstr "" "Gelen POST isteklerinden gelen URL'leri işleme ve doğrulama isteklerini " "işler." -#: core/views.py:255 +#: engine/core/views.py:254 msgid "Handles global search queries." msgstr "Küresel arama sorgularını işler." -#: core/views.py:270 +#: engine/core/views.py:269 msgid "Handles the logic of buying as a business without registration." msgstr "Kayıt olmadan bir işletme olarak satın alma mantığını ele alır." -#: core/views.py:306 +#: engine/core/views.py:305 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." -#: core/views.py:316 +#: engine/core/views.py:315 msgid "order_product_uuid is required" msgstr "order_product_uuid gereklidir" -#: core/views.py:322 +#: engine/core/views.py:321 msgid "you can only download the digital asset once" msgstr "Dijital varlığı yalnızca bir kez indirebilirsiniz" -#: core/views.py:325 +#: engine/core/views.py:324 msgid "the order must be paid before downloading the digital asset" msgstr "dijital varlık indirilmeden önce siparişin ödenmesi gerekir" -#: core/views.py:331 +#: engine/core/views.py:330 msgid "the order product does not have a product" msgstr "Sipariş ürününün bir ürünü yok" -#: core/views.py:369 +#: engine/core/views.py:368 msgid "favicon not found" msgstr "favicon bulunamadı" -#: core/views.py:374 +#: engine/core/views.py:373 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." -#: core/views.py:386 +#: engine/core/views.py:385 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 " @@ -3019,11 +3063,11 @@ msgstr "" "yönlendirir. HTTP yönlendirmesini işlemek için Django'nun `redirect` " "fonksiyonunu kullanır." -#: core/views.py:399 +#: engine/core/views.py:398 msgid "Returns current version of the eVibes. " msgstr "eVibes'in geçerli sürümünü döndürür." -#: core/viewsets.py:137 +#: engine/core/viewsets.py:137 msgid "" "Defines a viewset for managing Evibes-related operations. The EvibesViewSet " "class inherits from ModelViewSet and provides functionality for handling " @@ -3034,16 +3078,15 @@ 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ı " "ü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." -#: core/viewsets.py:157 +#: engine/core/viewsets.py:157 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 " @@ -3051,7 +3094,7 @@ msgstr "" "parçasıdır ve AttributeGroup verilerine yönelik istekleri ve yanıtları " "işlemek için standartlaştırılmış bir yol sağlar." -#: core/viewsets.py:176 +#: engine/core/viewsets.py:176 msgid "" "Handles operations related to Attribute objects within the application. " "Provides a set of API endpoints to interact with Attribute data. This class " @@ -3067,13 +3110,13 @@ msgstr "" "bağlı olarak ayrıntılı ve basitleştirilmiş bilgilerin alınması gibi " "döndürülen veriler üzerinde dinamik kontrol sağlar." -#: core/viewsets.py:195 +#: engine/core/viewsets.py:195 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, " @@ -3082,7 +3125,7 @@ msgstr "" "serileştiriciler kullanır. Filtreleme yetenekleri DjangoFilterBackend " "aracılığıyla sağlanır." -#: core/viewsets.py:214 +#: engine/core/viewsets.py:214 msgid "" "Manages views for Category-related operations. The CategoryViewSet class is " "responsible for handling operations related to the Category model in the " @@ -3097,7 +3140,7 @@ msgstr "" "kullanıcıların belirli verilere erişebilmesini sağlamak için izinleri de " "zorlar." -#: core/viewsets.py:326 +#: engine/core/viewsets.py:326 msgid "" "Represents a viewset for managing Brand instances. This class provides " "functionality for querying, filtering, and serializing Brand objects. It " @@ -3109,7 +3152,7 @@ msgstr "" "sağlar. Brand nesneleri için API uç noktalarının uygulanmasını " "basitleştirmek için Django'nun ViewSet çerçevesini kullanır." -#: core/viewsets.py:438 +#: engine/core/viewsets.py:438 msgid "" "Manages operations related to the `Product` model in the system. This class " "provides a viewset for managing products, including their filtering, " @@ -3120,14 +3163,14 @@ msgid "" "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" -" Django REST çerçevesi ile entegre olur. Ürün ayrıntılarını almak, izinleri " +"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 " +"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." -#: core/viewsets.py:568 +#: engine/core/viewsets.py:568 msgid "" "Represents a viewset for managing Vendor objects. This viewset allows " "fetching, filtering, and serializing Vendor data. It defines the queryset, " @@ -3142,61 +3185,61 @@ msgstr "" "tanımlar. Bu sınıfın amacı, Django REST çerçevesi aracılığıyla Vendor ile " "ilgili kaynaklara kolaylaştırılmış erişim sağlamaktır." -#: core/viewsets.py:588 +#: engine/core/viewsets.py:588 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 `EvibesViewSet` 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 `EvibesViewSet`i " "genişletir ve verileri sorgulamak için Django'nun filtreleme sistemini " "kullanır." -#: core/viewsets.py:615 +#: engine/core/viewsets.py:615 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." -#: core/viewsets.py:813 +#: engine/core/viewsets.py:813 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" -#: core/viewsets.py:867 +#: engine/core/viewsets.py:867 msgid "Manages operations related to Product images in the application. " msgstr "Uygulamadaki Ürün görselleri ile ilgili işlemleri yönetir." -#: core/viewsets.py:880 +#: engine/core/viewsets.py:880 msgid "" "Manages the retrieval and handling of PromoCode instances through various " "API actions." @@ -3204,20 +3247,20 @@ msgstr "" "Çeşitli API eylemleri aracılığıyla PromoCode örneklerinin alınmasını ve " "işlenmesini yönetir." -#: core/viewsets.py:902 +#: engine/core/viewsets.py:902 msgid "Represents a view set for managing promotions. " msgstr "Promosyonları yönetmek için bir görünüm kümesini temsil eder." -#: core/viewsets.py:915 +#: engine/core/viewsets.py:915 msgid "Handles operations related to Stock data in the system." msgstr "Sistemdeki Stok verileri ile ilgili işlemleri yürütür." -#: core/viewsets.py:929 +#: engine/core/viewsets.py:929 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." @@ -3230,7 +3273,7 @@ msgstr "" "verilmediği sürece kullanıcıların yalnızca kendi istek listelerini " "yönetebilmelerini sağlamak için entegre edilmiştir." -#: core/viewsets.py:1044 +#: engine/core/viewsets.py:1044 msgid "" "This class provides viewset functionality for managing `Address` objects. " "The AddressViewSet class enables CRUD operations, filtering, and custom " @@ -3244,12 +3287,12 @@ msgstr "" "serileştirici geçersiz kılmaları ve istek bağlamına dayalı izin işleme için " "özel davranışlar içerir." -#: core/viewsets.py:1111 +#: engine/core/viewsets.py:1111 #, python-brace-format msgid "Geocoding error: {e}" msgstr "Coğrafi kodlama hatası: {e}" -#: core/viewsets.py:1119 +#: engine/core/viewsets.py:1119 msgid "" "Handles operations related to Product Tags within the application. This " "class provides functionality for retrieving, filtering, and serializing " @@ -3258,7 +3301,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 new file mode 100644 index 00000000..d8b6b742 Binary files /dev/null and b/engine/core/locale/vi_VN/LC_MESSAGES/django.mo differ diff --git a/core/locale/vi_VN/LC_MESSAGES/django.po b/engine/core/locale/vi_VN/LC_MESSAGES/django.po similarity index 68% rename from core/locale/vi_VN/LC_MESSAGES/django.po rename to engine/core/locale/vi_VN/LC_MESSAGES/django.po index 9efde566..4bc3c720 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,180 +13,182 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: core/abstract.py:12 +#: engine/core/abstract.py:12 msgid "unique id" msgstr "ID duy nhất" -#: core/abstract.py:13 +#: engine/core/abstract.py:13 msgid "unique id is used to surely identify any database object" msgstr "" "Mã định danh duy nhất (Unique ID) được sử dụng để xác định chính xác bất kỳ " "đối tượng cơ sở dữ liệu nào." -#: core/abstract.py:20 +#: engine/core/abstract.py:20 msgid "is active" msgstr "Đang hoạt động" -#: core/abstract.py:21 +#: engine/core/abstract.py:21 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." -#: core/abstract.py:23 core/choices.py:18 +#: engine/core/abstract.py:23 engine/core/choices.py:18 msgid "created" msgstr "Được tạo ra" -#: core/abstract.py:23 +#: engine/core/abstract.py:23 msgid "when the object first appeared on the database" msgstr "Khi đối tượng lần đầu tiên xuất hiện trong cơ sở dữ liệu" -#: core/abstract.py:24 +#: engine/core/abstract.py:24 msgid "modified" msgstr "Đã sửa đổi" -#: core/abstract.py:24 +#: engine/core/abstract.py:24 msgid "when the object was last modified" msgstr "Khi đối tượng được chỉnh sửa lần cuối" -#: core/admin.py:68 +#: engine/core/admin.py:68 msgid "translations" msgstr "Dịch thuật" -#: core/admin.py:72 +#: engine/core/admin.py:72 msgid "general" msgstr "Tổng quát" -#: core/admin.py:74 +#: engine/core/admin.py:74 msgid "relations" msgstr "Quan hệ" -#: core/admin.py:76 +#: engine/core/admin.py:76 msgid "additional info" msgstr "Thông tin bổ sung" -#: core/admin.py:94 +#: engine/core/admin.py:94 msgid "metadata" msgstr "Siêu dữ liệu" -#: core/admin.py:101 +#: engine/core/admin.py:101 msgid "timestamps" msgstr "Dấu thời gian" -#: core/admin.py:116 +#: engine/core/admin.py:116 #, python-format msgid "activate selected %(verbose_name_plural)s" msgstr "Kích hoạt %(verbose_name_plural)s đã chọn" -#: core/admin.py:121 +#: engine/core/admin.py:121 msgid "selected items have been activated." msgstr "Các mục đã được chọn đã được kích hoạt!" -#: core/admin.py:127 +#: engine/core/admin.py:127 #, python-format msgid "deactivate selected %(verbose_name_plural)s" msgstr "Vô hiệu hóa các mục đã chọn %(verbose_name_plural)s" -#: core/admin.py:132 +#: engine/core/admin.py:132 msgid "selected items have been deactivated." msgstr "Các mục đã chọn đã bị vô hiệu hóa!" -#: core/admin.py:144 core/graphene/object_types.py:582 -#: core/graphene/object_types.py:589 core/models.py:783 core/models.py:791 +#: engine/core/admin.py:144 engine/core/graphene/object_types.py:586 +#: engine/core/graphene/object_types.py:593 engine/core/models.py:794 +#: engine/core/models.py:802 msgid "attribute value" msgstr "Giá trị thuộc tính" -#: core/admin.py:145 core/graphene/object_types.py:75 core/models.py:792 +#: engine/core/admin.py:145 engine/core/graphene/object_types.py:75 +#: engine/core/models.py:803 msgid "attribute values" msgstr "Giá trị thuộc tính" -#: core/admin.py:156 +#: engine/core/admin.py:156 msgid "image" msgstr "Hình ảnh" -#: core/admin.py:157 core/graphene/object_types.py:474 +#: engine/core/admin.py:157 engine/core/graphene/object_types.py:474 msgid "images" msgstr "Hình ảnh" -#: core/admin.py:168 core/models.py:559 +#: engine/core/admin.py:169 engine/core/models.py:559 msgid "stock" msgstr "Cổ phiếu" -#: core/admin.py:169 core/graphene/object_types.py:636 +#: engine/core/admin.py:170 engine/core/graphene/object_types.py:640 msgid "stocks" msgstr "Cổ phiếu" -#: core/admin.py:182 core/models.py:1744 +#: engine/core/admin.py:183 engine/core/models.py:1804 msgid "order product" msgstr "Đặt hàng sản phẩm" -#: core/admin.py:183 core/graphene/object_types.py:389 core/models.py:1745 +#: engine/core/admin.py:184 engine/core/graphene/object_types.py:389 +#: engine/core/models.py:1805 msgid "order products" msgstr "Đặt hàng sản phẩm" -#: core/admin.py:196 core/admin.py:197 +#: engine/core/admin.py:197 engine/core/admin.py:198 msgid "children" msgstr "Trẻ em" -#: core/admin.py:965 +#: engine/core/admin.py:969 msgid "Config" msgstr "Cấu hình" -#: core/apps.py:8 +#: engine/core/apps.py:8 msgid "core" msgstr "Lõi" -#: core/choices.py:4 core/choices.py:20 +#: engine/core/choices.py:4 engine/core/choices.py:20 msgid "finished" msgstr "Hoàn thành" -#: core/choices.py:5 core/choices.py:19 +#: engine/core/choices.py:5 engine/core/choices.py:19 msgid "delivering" msgstr "Giao hàng" -#: core/choices.py:6 +#: engine/core/choices.py:6 msgid "delivered" msgstr "Đã giao" -#: core/choices.py:7 +#: engine/core/choices.py:7 msgid "canceled" msgstr "Đã hủy" -#: core/choices.py:8 core/choices.py:16 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" -#: core/choices.py:9 core/choices.py:15 +#: engine/core/choices.py:9 engine/core/choices.py:15 msgid "pending" msgstr "Đang chờ xử lý" -#: core/choices.py:10 +#: engine/core/choices.py:10 msgid "accepted" msgstr "Được chấp nhận" -#: core/choices.py:11 +#: engine/core/choices.py:11 msgid "money returned" msgstr "Tiền được hoàn lại" -#: core/choices.py:17 +#: engine/core/choices.py:17 msgid "payment" msgstr "Thanh toán" -#: core/choices.py:21 +#: engine/core/choices.py:21 msgid "momental" msgstr "Momental" -#: core/choices.py:24 +#: engine/core/choices.py:24 msgid "successful" msgstr "Thành công" -#: core/docs/drf/views.py:17 core/graphene/mutations.py:38 +#: engine/core/docs/drf/views.py:17 engine/core/graphene/mutations.py:38 msgid "cache I/O" msgstr "Bộ nhớ đệm I/O" -#: core/docs/drf/views.py:19 +#: engine/core/docs/drf/views.py:19 msgid "" "apply only a key to read permitted data from cache.\n" "apply key, data and timeout with authentication to write data to cache." @@ -194,259 +196,262 @@ msgstr "" "Chỉ sử dụng khóa để đọc dữ liệu được phép từ bộ nhớ đệm. Sử dụng khóa, dữ " "liệu và thời gian chờ kèm theo xác thực để ghi dữ liệu vào bộ nhớ đệm." -#: core/docs/drf/views.py:32 +#: engine/core/docs/drf/views.py:32 msgid "get a list of supported languages" msgstr "Xem danh sách các ngôn ngữ được hỗ trợ" -#: core/docs/drf/views.py:41 +#: engine/core/docs/drf/views.py:41 msgid "get application's exposable parameters" msgstr "Lấy các tham số có thể truy cập của ứng dụng" -#: core/docs/drf/views.py:48 +#: engine/core/docs/drf/views.py:48 msgid "send a message to the support team" msgstr "Gửi tin nhắn cho đội ngũ hỗ trợ" -#: core/docs/drf/views.py:59 core/graphene/mutations.py:58 +#: engine/core/docs/drf/views.py:59 engine/core/graphene/mutations.py:58 msgid "request a CORSed URL" msgstr "Yêu cầu URL CORSed. Chỉ cho phép https." -#: core/docs/drf/views.py:85 +#: engine/core/docs/drf/views.py:85 msgid "global search endpoint to query across project's tables" msgstr "Điểm cuối tìm kiếm toàn cầu để tra cứu qua các bảng của dự án" -#: core/docs/drf/views.py:91 +#: engine/core/docs/drf/views.py:91 msgid "purchase an order as a business" msgstr "Mua hàng với tư cách là doanh nghiệp" -#: core/docs/drf/views.py:98 +#: engine/core/docs/drf/views.py:98 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`." -#: core/docs/drf/viewsets.py:58 +#: engine/core/docs/drf/viewsets.py:58 msgid "list all attribute groups (simple view)" msgstr "Danh sách tất cả các nhóm thuộc tính (chế độ xem đơn giản)" -#: core/docs/drf/viewsets.py:62 +#: engine/core/docs/drf/viewsets.py:62 msgid "retrieve a single attribute group (detailed view)" msgstr "Lấy một nhóm thuộc tính duy nhất (chế độ xem chi tiết)" -#: core/docs/drf/viewsets.py:66 +#: engine/core/docs/drf/viewsets.py:66 msgid "create an attribute group" msgstr "Tạo nhóm thuộc tính" -#: core/docs/drf/viewsets.py:70 +#: engine/core/docs/drf/viewsets.py:70 msgid "delete an attribute group" msgstr "Xóa nhóm thuộc tính" -#: core/docs/drf/viewsets.py:74 +#: engine/core/docs/drf/viewsets.py:74 msgid "rewrite an existing attribute group saving non-editables" msgstr "" "Viết lại nhóm thuộc tính hiện có và giữ nguyên các thuộc tính không thể " "chỉnh sửa." -#: core/docs/drf/viewsets.py:78 -msgid "" -"rewrite some fields of an existing attribute group saving non-editables" +#: engine/core/docs/drf/viewsets.py:78 +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." -#: core/docs/drf/viewsets.py:85 +#: engine/core/docs/drf/viewsets.py:85 msgid "list all attributes (simple view)" msgstr "Danh sách tất cả các thuộc tính (chế độ xem đơn giản)" -#: core/docs/drf/viewsets.py:89 +#: engine/core/docs/drf/viewsets.py:89 msgid "retrieve a single attribute (detailed view)" msgstr "Lấy một thuộc tính duy nhất (chế độ xem chi tiết)" -#: core/docs/drf/viewsets.py:93 +#: engine/core/docs/drf/viewsets.py:93 msgid "create an attribute" msgstr "Tạo một thuộc tính" -#: core/docs/drf/viewsets.py:97 +#: engine/core/docs/drf/viewsets.py:97 msgid "delete an attribute" msgstr "Xóa một thuộc tính" -#: core/docs/drf/viewsets.py:101 +#: engine/core/docs/drf/viewsets.py:101 msgid "rewrite an existing attribute saving non-editables" msgstr "" "Viết lại một thuộc tính hiện có để lưu trữ các trường không thể chỉnh sửa." -#: core/docs/drf/viewsets.py:105 +#: engine/core/docs/drf/viewsets.py:105 msgid "rewrite some fields of an existing attribute saving non-editables" msgstr "" "Cập nhật một số trường của một thuộc tính hiện có, giữ nguyên các trường " "không thể chỉnh sửa." -#: core/docs/drf/viewsets.py:112 +#: engine/core/docs/drf/viewsets.py:112 msgid "list all attribute values (simple view)" msgstr "Danh sách tất cả các giá trị thuộc tính (chế độ xem đơn giản)" -#: core/docs/drf/viewsets.py:116 +#: engine/core/docs/drf/viewsets.py:116 msgid "retrieve a single attribute value (detailed view)" msgstr "Lấy giá trị của một thuộc tính duy nhất (chế độ xem chi tiết)" -#: core/docs/drf/viewsets.py:120 +#: engine/core/docs/drf/viewsets.py:120 msgid "create an attribute value" msgstr "Tạo giá trị thuộc tính" -#: core/docs/drf/viewsets.py:124 +#: engine/core/docs/drf/viewsets.py:124 msgid "delete an attribute value" msgstr "Xóa giá trị của một thuộc tính" -#: core/docs/drf/viewsets.py:128 +#: engine/core/docs/drf/viewsets.py:128 msgid "rewrite an existing attribute value saving non-editables" msgstr "" "Cập nhật giá trị của một thuộc tính hiện có mà không thay đổi các trường " "không thể chỉnh sửa." -#: core/docs/drf/viewsets.py:132 -msgid "" -"rewrite some fields of an existing attribute value saving non-editables" +#: engine/core/docs/drf/viewsets.py:132 +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." -#: core/docs/drf/viewsets.py:139 core/docs/drf/viewsets.py:140 +#: engine/core/docs/drf/viewsets.py:139 engine/core/docs/drf/viewsets.py:140 msgid "list all categories (simple view)" msgstr "Danh sách tất cả các danh mục (chế độ xem đơn giản)" -#: core/docs/drf/viewsets.py:144 core/docs/drf/viewsets.py:145 +#: engine/core/docs/drf/viewsets.py:144 engine/core/docs/drf/viewsets.py:145 msgid "retrieve a single category (detailed view)" msgstr "Lấy một danh mục duy nhất (chế độ xem chi tiết)" -#: core/docs/drf/viewsets.py:149 core/docs/drf/viewsets.py:150 +#: engine/core/docs/drf/viewsets.py:150 engine/core/docs/drf/viewsets.py:183 +msgid "Category UUID or slug" +msgstr "Mã định danh duy nhất (UUID) hoặc tên gọi (slug) của danh mục" + +#: engine/core/docs/drf/viewsets.py:157 engine/core/docs/drf/viewsets.py:158 msgid "create a category" msgstr "Tạo một danh mục" -#: core/docs/drf/viewsets.py:154 core/docs/drf/viewsets.py:155 +#: engine/core/docs/drf/viewsets.py:162 engine/core/docs/drf/viewsets.py:163 msgid "delete a category" msgstr "Xóa một danh mục" -#: core/docs/drf/viewsets.py:159 core/docs/drf/viewsets.py:160 +#: engine/core/docs/drf/viewsets.py:167 engine/core/docs/drf/viewsets.py:168 msgid "rewrite an existing category saving non-editables" msgstr "" "Viết lại một danh mục hiện có mà không thay đổi các trường không thể chỉnh " "sửa." -#: core/docs/drf/viewsets.py:164 core/docs/drf/viewsets.py:165 +#: engine/core/docs/drf/viewsets.py:172 engine/core/docs/drf/viewsets.py:173 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." -#: core/docs/drf/viewsets.py:169 core/docs/drf/viewsets.py:501 -#: core/graphene/object_types.py:117 core/graphene/object_types.py:207 -#: core/graphene/object_types.py:482 +#: engine/core/docs/drf/viewsets.py:177 engine/core/docs/drf/viewsets.py:517 +#: engine/core/graphene/object_types.py:117 +#: engine/core/graphene/object_types.py:207 +#: engine/core/graphene/object_types.py:482 msgid "SEO Meta snapshot" msgstr "SEO Meta snapshot" -#: core/docs/drf/viewsets.py:170 +#: engine/core/docs/drf/viewsets.py:178 msgid "returns a snapshot of the category's SEO meta data" msgstr "Trả về bản sao dữ liệu meta SEO của danh mục." -#: core/docs/drf/viewsets.py:175 -msgid "Category UUID or slug" -msgstr "Mã định danh duy nhất (UUID) hoặc tên gọi (slug) của danh mục" - -#: core/docs/drf/viewsets.py:188 +#: engine/core/docs/drf/viewsets.py:196 msgid "list all orders (simple view)" msgstr "Danh sách tất cả các danh mục (chế độ xem đơn giản)" -#: core/docs/drf/viewsets.py:189 +#: engine/core/docs/drf/viewsets.py:197 msgid "for non-staff users, only their own orders are returned." msgstr "" "Đối với người dùng không phải nhân viên, chỉ các đơn hàng của chính họ được " "hiển thị." -#: core/docs/drf/viewsets.py:195 +#: engine/core/docs/drf/viewsets.py:203 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." -#: core/docs/drf/viewsets.py:202 +#: engine/core/docs/drf/viewsets.py:210 msgid "Filter orders with buy_time >= this ISO 8601 datetime" msgstr "Lọc các đơn hàng có thời gian mua >= thời gian ISO 8601 này" -#: core/docs/drf/viewsets.py:207 +#: engine/core/docs/drf/viewsets.py:215 msgid "Filter orders with buy_time <= this ISO 8601 datetime" msgstr "Lọc các đơn hàng có thời gian mua <= thời gian ISO 8601 này" -#: core/docs/drf/viewsets.py:212 +#: engine/core/docs/drf/viewsets.py:220 msgid "Filter by exact order UUID" msgstr "Lọc theo UUID chính xác" -#: core/docs/drf/viewsets.py:217 +#: engine/core/docs/drf/viewsets.py:225 msgid "Filter by exact human-readable order ID" msgstr "Lọc theo ID đơn hàng chính xác có thể đọc được bởi con người" -#: core/docs/drf/viewsets.py:222 +#: engine/core/docs/drf/viewsets.py:230 msgid "Filter by user's email (case-insensitive exact match)" msgstr "" "Lọc theo địa chỉ email của người dùng (khớp chính xác không phân biệt chữ " "hoa chữ thường)" -#: core/docs/drf/viewsets.py:227 +#: engine/core/docs/drf/viewsets.py:235 msgid "Filter by user's UUID" msgstr "Lọc theo UUID của người dùng" -#: core/docs/drf/viewsets.py:232 +#: engine/core/docs/drf/viewsets.py:240 msgid "Filter by order status (case-insensitive substring match)" msgstr "" "Lọc theo trạng thái đơn hàng (so khớp chuỗi con không phân biệt chữ hoa chữ " "thường)" -#: core/docs/drf/viewsets.py:238 +#: engine/core/docs/drf/viewsets.py:246 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 " "xếp theo thứ tự giảm dần (ví dụ: '-buy_time')." -#: core/docs/drf/viewsets.py:247 +#: engine/core/docs/drf/viewsets.py:255 msgid "retrieve a single order (detailed view)" msgstr "Lấy một danh mục duy nhất (chế độ xem chi tiết)" -#: core/docs/drf/viewsets.py:251 +#: engine/core/docs/drf/viewsets.py:260 +msgid "Order UUID or human-readable id" +msgstr "Đặt hàng UUID hoặc ID dễ đọc cho con người" + +#: engine/core/docs/drf/viewsets.py:267 msgid "create an order" msgstr "Tạo một thuộc tính" -#: core/docs/drf/viewsets.py:252 +#: engine/core/docs/drf/viewsets.py:268 msgid "doesn't work for non-staff users." msgstr "Không áp dụng cho người dùng không phải nhân viên." -#: core/docs/drf/viewsets.py:256 +#: engine/core/docs/drf/viewsets.py:272 msgid "delete an order" msgstr "Xóa một thuộc tính" -#: core/docs/drf/viewsets.py:260 +#: engine/core/docs/drf/viewsets.py:276 msgid "rewrite an existing order saving non-editables" msgstr "" "Viết lại một danh mục hiện có mà không thay đổi các trường không thể chỉnh " "sửa." -#: core/docs/drf/viewsets.py:264 +#: engine/core/docs/drf/viewsets.py:280 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." -#: core/docs/drf/viewsets.py:268 +#: engine/core/docs/drf/viewsets.py:284 msgid "purchase an order" msgstr "Giá mua tại thời điểm đặt hàng" -#: core/docs/drf/viewsets.py:270 +#: engine/core/docs/drf/viewsets.py:286 msgid "" "finalizes the order purchase. if `force_balance` is used, the purchase is " "completed using the user's balance; if `force_payment` is used, a " @@ -456,19 +461,19 @@ msgstr "" "hoàn tất bằng số dư của người dùng; nếu sử dụng `force_payment`, một giao " "dịch sẽ được khởi tạo." -#: core/docs/drf/viewsets.py:282 core/graphene/mutations.py:335 +#: engine/core/docs/drf/viewsets.py:298 engine/core/graphene/mutations.py:335 msgid "purchase an order without account creation" msgstr "Đặt hàng mà không cần tạo tài khoản" -#: core/docs/drf/viewsets.py:283 +#: engine/core/docs/drf/viewsets.py:299 msgid "finalizes the order purchase for a non-registered user." msgstr "Hoàn tất đơn đặt hàng cho người dùng chưa đăng ký." -#: core/docs/drf/viewsets.py:291 +#: engine/core/docs/drf/viewsets.py:307 msgid "add product to order" msgstr "Thêm sản phẩm vào đơn hàng" -#: core/docs/drf/viewsets.py:292 +#: engine/core/docs/drf/viewsets.py:308 msgid "" "adds a product to an order using the provided `product_uuid` and " "`attributes`." @@ -476,11 +481,11 @@ msgstr "" "Thêm sản phẩm vào đơn hàng bằng cách sử dụng `product_uuid` và `attributes` " "được cung cấp." -#: core/docs/drf/viewsets.py:297 +#: engine/core/docs/drf/viewsets.py:313 msgid "add a list of products to order, quantities will not count" msgstr "Thêm danh sách sản phẩm vào đơn hàng, số lượng sẽ không được tính." -#: core/docs/drf/viewsets.py:298 +#: engine/core/docs/drf/viewsets.py:314 msgid "" "adds a list of products to an order using the provided `product_uuid` and " "`attributes`." @@ -488,11 +493,11 @@ msgstr "" "Thêm danh sách sản phẩm vào đơn hàng bằng cách sử dụng `product_uuid` và " "`attributes` được cung cấp." -#: core/docs/drf/viewsets.py:303 +#: engine/core/docs/drf/viewsets.py:319 msgid "remove product from order" msgstr "Xóa sản phẩm khỏi đơn hàng" -#: core/docs/drf/viewsets.py:304 +#: engine/core/docs/drf/viewsets.py:320 msgid "" "removes a product from an order using the provided `product_uuid` and " "`attributes`." @@ -500,11 +505,11 @@ msgstr "" "Xóa một sản phẩm khỏi đơn hàng bằng cách sử dụng `product_uuid` và " "`attributes` được cung cấp." -#: core/docs/drf/viewsets.py:309 +#: engine/core/docs/drf/viewsets.py:325 msgid "remove product from order, quantities will not count" msgstr "Xóa sản phẩm khỏi đơn hàng, số lượng sẽ không được tính." -#: core/docs/drf/viewsets.py:310 +#: engine/core/docs/drf/viewsets.py:326 msgid "" "removes a list of products from an order using the provided `product_uuid` " "and `attributes`" @@ -512,817 +517,843 @@ msgstr "" "Xóa danh sách sản phẩm khỏi đơn hàng bằng cách sử dụng `product_uuid` và " "`attributes` được cung cấp." -#: core/docs/drf/viewsets.py:318 +#: engine/core/docs/drf/viewsets.py:334 msgid "list all wishlists (simple view)" msgstr "Danh sách tất cả các thuộc tính (chế độ xem đơn giản)" -#: core/docs/drf/viewsets.py:319 +#: engine/core/docs/drf/viewsets.py:335 msgid "for non-staff users, only their own wishlists are returned." msgstr "" "Đối với người dùng không phải nhân viên, chỉ danh sách mong muốn của chính " "họ được hiển thị." -#: core/docs/drf/viewsets.py:323 +#: engine/core/docs/drf/viewsets.py:339 msgid "retrieve a single wishlist (detailed view)" msgstr "Lấy một thuộc tính duy nhất (chế độ xem chi tiết)" -#: core/docs/drf/viewsets.py:327 +#: engine/core/docs/drf/viewsets.py:343 msgid "create an wishlist" msgstr "Tạo một thuộc tính" -#: core/docs/drf/viewsets.py:328 +#: engine/core/docs/drf/viewsets.py:344 msgid "Doesn't work for non-staff users." msgstr "Không áp dụng cho người dùng không phải nhân viên." -#: core/docs/drf/viewsets.py:332 +#: engine/core/docs/drf/viewsets.py:348 msgid "delete an wishlist" msgstr "Xóa một thuộc tính" -#: core/docs/drf/viewsets.py:336 +#: engine/core/docs/drf/viewsets.py:352 msgid "rewrite an existing wishlist saving non-editables" msgstr "" "Viết lại một thuộc tính hiện có để lưu trữ các trường không thể chỉnh sửa." -#: core/docs/drf/viewsets.py:340 +#: engine/core/docs/drf/viewsets.py:356 msgid "rewrite some fields of an existing wishlist saving non-editables" msgstr "" "Cập nhật một số trường của một thuộc tính hiện có, giữ nguyên các trường " "không thể chỉnh sửa." -#: core/docs/drf/viewsets.py:344 +#: engine/core/docs/drf/viewsets.py:360 msgid "add product to wishlist" msgstr "Thêm sản phẩm vào đơn hàng" -#: core/docs/drf/viewsets.py:345 +#: engine/core/docs/drf/viewsets.py:361 msgid "adds a product to an wishlist using the provided `product_uuid`" msgstr "" "Thêm sản phẩm vào danh sách mong muốn bằng cách sử dụng `product_uuid` được " "cung cấp." -#: core/docs/drf/viewsets.py:350 +#: engine/core/docs/drf/viewsets.py:366 msgid "remove product from wishlist" msgstr "Xóa sản phẩm khỏi danh sách mong muốn" -#: core/docs/drf/viewsets.py:351 +#: engine/core/docs/drf/viewsets.py:367 msgid "removes a product from an wishlist using the provided `product_uuid`" msgstr "" "Xóa một sản phẩm khỏi danh sách mong muốn bằng cách sử dụng `product_uuid` " "được cung cấp." -#: core/docs/drf/viewsets.py:356 +#: engine/core/docs/drf/viewsets.py:372 msgid "add many products to wishlist" msgstr "Thêm nhiều sản phẩm vào danh sách mong muốn" -#: core/docs/drf/viewsets.py:357 +#: engine/core/docs/drf/viewsets.py:373 msgid "adds many products to an wishlist using the provided `product_uuids`" msgstr "" "Thêm nhiều sản phẩm vào danh sách mong muốn bằng cách sử dụng các " "`product_uuids` được cung cấp." -#: core/docs/drf/viewsets.py:362 +#: engine/core/docs/drf/viewsets.py:378 msgid "remove many products from wishlist" msgstr "Xóa sản phẩm khỏi đơn hàng" -#: core/docs/drf/viewsets.py:363 +#: engine/core/docs/drf/viewsets.py:379 msgid "" "removes many products from an wishlist using the provided `product_uuids`" msgstr "" "Xóa nhiều sản phẩm khỏi danh sách mong muốn bằng cách sử dụng các " "`product_uuids` được cung cấp." -#: core/docs/drf/viewsets.py:370 +#: engine/core/docs/drf/viewsets.py:386 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`" -#: core/docs/drf/viewsets.py:386 core/docs/drf/viewsets.py:387 +#: engine/core/docs/drf/viewsets.py:402 engine/core/docs/drf/viewsets.py:403 msgid "list all products (simple view)" msgstr "Danh sách tất cả sản phẩm (chế độ xem đơn giản)" -#: core/docs/drf/viewsets.py:392 +#: engine/core/docs/drf/viewsets.py:408 msgid "(exact) Product UUID" msgstr "(chính xác) Mã định danh duy nhất của sản phẩm (UUID)" -#: core/docs/drf/viewsets.py:399 +#: engine/core/docs/drf/viewsets.py:415 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" -#: core/docs/drf/viewsets.py:413 core/docs/drf/viewsets.py:414 +#: engine/core/docs/drf/viewsets.py:429 engine/core/docs/drf/viewsets.py:430 msgid "retrieve a single product (detailed view)" msgstr "Lấy thông tin chi tiết của một sản phẩm (xem chi tiết)" -#: core/docs/drf/viewsets.py:419 core/docs/drf/viewsets.py:443 -#: core/docs/drf/viewsets.py:459 core/docs/drf/viewsets.py:475 -#: core/docs/drf/viewsets.py:491 core/docs/drf/viewsets.py:507 +#: engine/core/docs/drf/viewsets.py:435 engine/core/docs/drf/viewsets.py:459 +#: engine/core/docs/drf/viewsets.py:475 engine/core/docs/drf/viewsets.py:491 +#: engine/core/docs/drf/viewsets.py:507 engine/core/docs/drf/viewsets.py:523 msgid "Product UUID or slug" msgstr "Mã định danh duy nhất (UUID) hoặc Slug của sản phẩm" -#: core/docs/drf/viewsets.py:429 core/docs/drf/viewsets.py:430 +#: engine/core/docs/drf/viewsets.py:445 engine/core/docs/drf/viewsets.py:446 msgid "create a product" msgstr "Tạo sản phẩm" -#: core/docs/drf/viewsets.py:437 core/docs/drf/viewsets.py:438 +#: engine/core/docs/drf/viewsets.py:453 engine/core/docs/drf/viewsets.py:454 msgid "rewrite an existing product, preserving non-editable fields" msgstr "" "Viết lại một sản phẩm hiện có, giữ nguyên các trường không thể chỉnh sửa." -#: core/docs/drf/viewsets.py:453 core/docs/drf/viewsets.py:454 +#: engine/core/docs/drf/viewsets.py:469 engine/core/docs/drf/viewsets.py:470 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." -#: core/docs/drf/viewsets.py:469 core/docs/drf/viewsets.py:470 +#: engine/core/docs/drf/viewsets.py:485 engine/core/docs/drf/viewsets.py:486 msgid "delete a product" msgstr "Xóa sản phẩm" -#: core/docs/drf/viewsets.py:485 core/docs/drf/viewsets.py:486 +#: engine/core/docs/drf/viewsets.py:501 engine/core/docs/drf/viewsets.py:502 msgid "lists all permitted feedbacks for a product" msgstr "Danh sách tất cả các phản hồi được phép cho một sản phẩm" -#: core/docs/drf/viewsets.py:502 +#: engine/core/docs/drf/viewsets.py:518 msgid "returns a snapshot of the product's SEO meta data" msgstr "Trả về bản sao lưu dữ liệu meta SEO của sản phẩm." -#: core/docs/drf/viewsets.py:520 +#: engine/core/docs/drf/viewsets.py:536 msgid "list all addresses" msgstr "Danh sách tất cả các địa chỉ" -#: core/docs/drf/viewsets.py:527 +#: engine/core/docs/drf/viewsets.py:543 msgid "retrieve a single address" msgstr "Lấy một địa chỉ duy nhất" -#: core/docs/drf/viewsets.py:534 +#: engine/core/docs/drf/viewsets.py:550 msgid "create a new address" msgstr "Tạo một địa chỉ mới" -#: core/docs/drf/viewsets.py:542 +#: engine/core/docs/drf/viewsets.py:558 msgid "delete an address" msgstr "Xóa địa chỉ" -#: core/docs/drf/viewsets.py:549 +#: engine/core/docs/drf/viewsets.py:565 msgid "update an entire address" msgstr "Cập nhật toàn bộ địa chỉ" -#: core/docs/drf/viewsets.py:557 +#: engine/core/docs/drf/viewsets.py:573 msgid "partially update an address" msgstr "Cập nhật một phần địa chỉ" -#: core/docs/drf/viewsets.py:565 +#: engine/core/docs/drf/viewsets.py:581 msgid "autocomplete address suggestions" msgstr "Tự động hoàn thành địa chỉ nhập liệu" -#: core/docs/drf/viewsets.py:570 +#: engine/core/docs/drf/viewsets.py:586 msgid "raw data query string, please append with data from geo-IP endpoint" msgstr "" "Dãy truy vấn dữ liệu thô, vui lòng bổ sung dữ liệu từ điểm cuối geo-IP." -#: core/docs/drf/viewsets.py:576 +#: engine/core/docs/drf/viewsets.py:592 msgid "limit the results amount, 1 < limit < 10, default: 5" msgstr "Giới hạn số lượng kết quả, 1 < giới hạn < 10, mặc định: 5" -#: core/docs/drf/viewsets.py:589 +#: engine/core/docs/drf/viewsets.py:605 msgid "list all feedbacks (simple view)" msgstr "Danh sách tất cả phản hồi (chế độ xem đơn giản)" -#: core/docs/drf/viewsets.py:593 +#: engine/core/docs/drf/viewsets.py:609 msgid "retrieve a single feedback (detailed view)" msgstr "Lấy một phản hồi duy nhất (chế độ xem chi tiết)" -#: core/docs/drf/viewsets.py:597 +#: engine/core/docs/drf/viewsets.py:613 msgid "create a feedback" msgstr "Tạo phản hồi" -#: core/docs/drf/viewsets.py:601 +#: engine/core/docs/drf/viewsets.py:617 msgid "delete a feedback" msgstr "Xóa phản hồi" -#: core/docs/drf/viewsets.py:605 +#: engine/core/docs/drf/viewsets.py:621 msgid "rewrite an existing feedback saving non-editables" msgstr "Viết lại phản hồi hiện có để lưu các trường không thể chỉnh sửa." -#: core/docs/drf/viewsets.py:609 +#: engine/core/docs/drf/viewsets.py:625 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." -#: core/docs/drf/viewsets.py:616 +#: engine/core/docs/drf/viewsets.py:632 msgid "list all order–product relations (simple view)" msgstr "" "Danh sách tất cả các mối quan hệ giữa đơn hàng và sản phẩm (cách xem đơn " "giản)" -#: core/docs/drf/viewsets.py:623 +#: engine/core/docs/drf/viewsets.py:639 msgid "retrieve a single order–product relation (detailed view)" msgstr "" "Lấy thông tin về mối quan hệ giữa đơn hàng và sản phẩm (chế độ xem chi tiết)" -#: core/docs/drf/viewsets.py:630 +#: engine/core/docs/drf/viewsets.py:646 msgid "create a new order–product relation" msgstr "Tạo mối quan hệ mới giữa đơn hàng và sản phẩm" -#: core/docs/drf/viewsets.py:637 +#: engine/core/docs/drf/viewsets.py:653 msgid "replace an existing order–product relation" msgstr "Thay thế mối quan hệ giữa đơn hàng và sản phẩm hiện có" -#: core/docs/drf/viewsets.py:644 +#: engine/core/docs/drf/viewsets.py:660 msgid "partially update an existing order–product relation" msgstr "Cập nhật một phần mối quan hệ giữa đơn hàng và sản phẩm hiện có" -#: core/docs/drf/viewsets.py:651 +#: engine/core/docs/drf/viewsets.py:667 msgid "delete an order–product relation" msgstr "Xóa mối quan hệ giữa đơn hàng và sản phẩm" -#: core/docs/drf/viewsets.py:658 +#: engine/core/docs/drf/viewsets.py:674 msgid "add or remove feedback on an order–product relation" msgstr "Thêm hoặc xóa phản hồi về mối quan hệ giữa đơn hàng và sản phẩm" -#: core/docs/drf/viewsets.py:672 +#: engine/core/docs/drf/viewsets.py:688 msgid "list all brands (simple view)" msgstr "Danh sách tất cả các thương hiệu (chế độ xem đơn giản)" -#: core/docs/drf/viewsets.py:676 +#: engine/core/docs/drf/viewsets.py:692 msgid "retrieve a single brand (detailed view)" msgstr "" "Trích xuất thông tin chi tiết về một thương hiệu duy nhất (chế độ xem chi " "tiết)" -#: core/docs/drf/viewsets.py:680 +#: engine/core/docs/drf/viewsets.py:697 engine/core/docs/drf/viewsets.py:725 +msgid "Brand UUID or slug" +msgstr "Mã định danh thương hiệu (UUID) hoặc tên gọi tắt" + +#: engine/core/docs/drf/viewsets.py:704 msgid "create a brand" msgstr "Xây dựng thương hiệu" -#: core/docs/drf/viewsets.py:684 +#: engine/core/docs/drf/viewsets.py:708 msgid "delete a brand" msgstr "Xóa thương hiệu" -#: core/docs/drf/viewsets.py:688 +#: engine/core/docs/drf/viewsets.py:712 msgid "rewrite an existing brand saving non-editables" msgstr "" "Viết lại một danh mục hiện có mà không thay đổi các trường không thể chỉnh " "sửa." -#: core/docs/drf/viewsets.py:692 +#: engine/core/docs/drf/viewsets.py:716 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." -#: core/docs/drf/viewsets.py:696 +#: engine/core/docs/drf/viewsets.py:720 msgid "SEO Meta snapshot for brand" msgstr "SEO Meta snapshot cho thương hiệu" -#: core/docs/drf/viewsets.py:703 +#: engine/core/docs/drf/viewsets.py:735 msgid "list all vendors (simple view)" msgstr "Danh sách tất cả nhà cung cấp (chế độ xem đơn giản)" -#: core/docs/drf/viewsets.py:707 +#: engine/core/docs/drf/viewsets.py:739 msgid "retrieve a single vendor (detailed view)" msgstr "Tra cứu thông tin chi tiết về một nhà cung cấp duy nhất" -#: core/docs/drf/viewsets.py:711 +#: engine/core/docs/drf/viewsets.py:743 msgid "create a vendor" msgstr "Tạo nhà cung cấp" -#: core/docs/drf/viewsets.py:715 +#: engine/core/docs/drf/viewsets.py:747 msgid "delete a vendor" msgstr "Xóa nhà cung cấp" -#: core/docs/drf/viewsets.py:719 +#: engine/core/docs/drf/viewsets.py:751 msgid "rewrite an existing vendor saving non-editables" msgstr "" "Viết lại một danh mục hiện có mà không thay đổi các trường không thể chỉnh " "sửa." -#: core/docs/drf/viewsets.py:723 +#: engine/core/docs/drf/viewsets.py:755 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." -#: core/docs/drf/viewsets.py:730 +#: engine/core/docs/drf/viewsets.py:762 msgid "list all product images (simple view)" msgstr "Danh sách tất cả hình ảnh sản phẩm (chế độ xem đơn giản)" -#: core/docs/drf/viewsets.py:734 +#: engine/core/docs/drf/viewsets.py:766 msgid "retrieve a single product image (detailed view)" msgstr "Lấy một hình ảnh sản phẩm (chế độ xem chi tiết)" -#: core/docs/drf/viewsets.py:738 +#: engine/core/docs/drf/viewsets.py:770 msgid "create a product image" msgstr "Tạo hình ảnh sản phẩm" -#: core/docs/drf/viewsets.py:742 +#: engine/core/docs/drf/viewsets.py:774 msgid "delete a product image" msgstr "Xóa hình ảnh sản phẩm" -#: core/docs/drf/viewsets.py:746 +#: engine/core/docs/drf/viewsets.py:778 msgid "rewrite an existing product image saving non-editables" msgstr "" "Viết lại một danh mục hiện có mà không thay đổi các trường không thể chỉnh " "sửa." -#: core/docs/drf/viewsets.py:750 +#: engine/core/docs/drf/viewsets.py:782 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." -#: core/docs/drf/viewsets.py:757 +#: engine/core/docs/drf/viewsets.py:789 msgid "list all promo codes (simple view)" msgstr "Danh sách tất cả mã khuyến mãi (chế độ xem đơn giản)" -#: core/docs/drf/viewsets.py:761 +#: engine/core/docs/drf/viewsets.py:793 msgid "retrieve a single promo code (detailed view)" msgstr "Lấy một mã khuyến mãi duy nhất (xem chi tiết)" -#: core/docs/drf/viewsets.py:765 +#: engine/core/docs/drf/viewsets.py:797 msgid "create a promo code" msgstr "Tạo mã khuyến mãi" -#: core/docs/drf/viewsets.py:769 +#: engine/core/docs/drf/viewsets.py:801 msgid "delete a promo code" msgstr "Xóa mã khuyến mãi" -#: core/docs/drf/viewsets.py:773 +#: engine/core/docs/drf/viewsets.py:805 msgid "rewrite an existing promo code saving non-editables" msgstr "" "Viết lại một danh mục hiện có mà không thay đổi các trường không thể chỉnh " "sửa." -#: core/docs/drf/viewsets.py:777 +#: engine/core/docs/drf/viewsets.py:809 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." -#: core/docs/drf/viewsets.py:784 +#: engine/core/docs/drf/viewsets.py:816 msgid "list all promotions (simple view)" msgstr "Danh sách tất cả các chương trình khuyến mãi (chế độ xem đơn giản)" -#: core/docs/drf/viewsets.py:788 +#: engine/core/docs/drf/viewsets.py:820 msgid "retrieve a single promotion (detailed view)" msgstr "Tra cứu một chương trình khuyến mãi (xem chi tiết)" -#: core/docs/drf/viewsets.py:792 +#: engine/core/docs/drf/viewsets.py:824 msgid "create a promotion" msgstr "Tạo chương trình khuyến mãi" -#: core/docs/drf/viewsets.py:796 +#: engine/core/docs/drf/viewsets.py:828 msgid "delete a promotion" msgstr "Xóa một chương trình khuyến mãi" -#: core/docs/drf/viewsets.py:800 +#: engine/core/docs/drf/viewsets.py:832 msgid "rewrite an existing promotion saving non-editables" msgstr "" "Viết lại một danh mục hiện có mà không thay đổi các trường không thể chỉnh " "sửa." -#: core/docs/drf/viewsets.py:804 +#: engine/core/docs/drf/viewsets.py:836 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." -#: core/docs/drf/viewsets.py:811 +#: engine/core/docs/drf/viewsets.py:843 msgid "list all stocks (simple view)" msgstr "Danh sách tất cả các cổ phiếu (chế độ xem đơn giản)" -#: core/docs/drf/viewsets.py:815 +#: engine/core/docs/drf/viewsets.py:847 msgid "retrieve a single stock (detailed view)" msgstr "Tra cứu một cổ phiếu (chế độ xem chi tiết)" -#: core/docs/drf/viewsets.py:819 +#: engine/core/docs/drf/viewsets.py:851 msgid "create a stock record" msgstr "Tạo hồ sơ kho hàng" -#: core/docs/drf/viewsets.py:823 +#: engine/core/docs/drf/viewsets.py:855 msgid "delete a stock record" msgstr "Xóa một bản ghi kho" -#: core/docs/drf/viewsets.py:827 +#: engine/core/docs/drf/viewsets.py:859 msgid "rewrite an existing stock record saving non-editables" msgstr "" "Viết lại một danh mục hiện có mà không thay đổi các trường không thể chỉnh " "sửa." -#: core/docs/drf/viewsets.py:831 +#: engine/core/docs/drf/viewsets.py:863 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." -#: core/docs/drf/viewsets.py:838 +#: engine/core/docs/drf/viewsets.py:870 msgid "list all product tags (simple view)" msgstr "Danh sách tất cả thẻ sản phẩm (chế độ xem đơn giản)" -#: core/docs/drf/viewsets.py:842 +#: engine/core/docs/drf/viewsets.py:874 msgid "retrieve a single product tag (detailed view)" msgstr "Lấy thông tin thẻ sản phẩm đơn lẻ (chế độ xem chi tiết)" -#: core/docs/drf/viewsets.py:846 +#: engine/core/docs/drf/viewsets.py:878 msgid "create a product tag" msgstr "Tạo thẻ sản phẩm" -#: core/docs/drf/viewsets.py:850 +#: engine/core/docs/drf/viewsets.py:882 msgid "delete a product tag" msgstr "Xóa thẻ sản phẩm" -#: core/docs/drf/viewsets.py:854 +#: engine/core/docs/drf/viewsets.py:886 msgid "rewrite an existing product tag saving non-editables" msgstr "" "Viết lại một danh mục hiện có mà không thay đổi các trường không thể chỉnh " "sửa." -#: core/docs/drf/viewsets.py:858 +#: engine/core/docs/drf/viewsets.py:890 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." -#: core/elasticsearch/__init__.py:118 core/elasticsearch/__init__.py:550 +#: engine/core/elasticsearch/__init__.py:122 +#: engine/core/elasticsearch/__init__.py:570 msgid "no search term provided." msgstr "Không có từ khóa tìm kiếm được cung cấp." -#: core/filters.py:69 core/filters.py:412 core/filters.py:539 +#: engine/core/filters.py:69 engine/core/filters.py:426 +#: engine/core/filters.py:553 msgid "Search" msgstr "Tìm kiếm" -#: core/filters.py:70 core/filters.py:569 core/filters.py:598 +#: engine/core/filters.py:70 engine/core/filters.py:583 +#: engine/core/filters.py:612 msgid "UUID" msgstr "UUID" -#: core/filters.py:71 core/filters.py:414 core/filters.py:541 +#: engine/core/filters.py:71 engine/core/filters.py:428 +#: engine/core/filters.py:555 msgid "Name" msgstr "Tên" -#: core/filters.py:72 core/filters.py:543 +#: engine/core/filters.py:72 engine/core/filters.py:557 msgid "Categories" msgstr "Các danh mục" -#: core/filters.py:74 +#: engine/core/filters.py:74 msgid "Categories Slugs" msgstr "Thể loại Tiêu đề" -#: core/filters.py:75 core/filters.py:422 +#: engine/core/filters.py:75 engine/core/filters.py:436 msgid "Tags" msgstr "Thẻ" -#: core/filters.py:76 +#: engine/core/filters.py:76 msgid "Min Price" msgstr "Giá tối thiểu" -#: core/filters.py:77 +#: engine/core/filters.py:77 msgid "Max Price" msgstr "Giá tối đa" -#: core/filters.py:78 +#: engine/core/filters.py:78 msgid "Is Active" msgstr "Đang hoạt động" -#: core/filters.py:79 +#: engine/core/filters.py:79 msgid "Brand" msgstr "Thương hiệu" -#: core/filters.py:80 +#: engine/core/filters.py:80 msgid "Attributes" msgstr "Thuộc tính" -#: core/filters.py:81 +#: engine/core/filters.py:81 msgid "Quantity" msgstr "Số lượng" -#: core/filters.py:82 core/filters.py:416 core/filters.py:542 -#: core/models.py:322 core/models.py:483 core/models.py:637 +#: engine/core/filters.py:82 engine/core/filters.py:430 +#: engine/core/filters.py:556 engine/core/models.py:321 +#: engine/core/models.py:482 engine/core/models.py:637 msgid "Slug" msgstr "Sên" -#: core/filters.py:83 +#: engine/core/filters.py:83 msgid "Is Digital" msgstr "Is Digital" -#: core/filters.py:84 +#: engine/core/filters.py:84 msgid "Include sub-categories" msgstr "Bao gồm các danh mục con" -#: core/filters.py:87 +#: engine/core/filters.py:87 msgid "Include personal ordered" msgstr "Gồm các sản phẩm đặt hàng cá nhân" -#: core/filters.py:89 core/models.py:641 +#: engine/core/filters.py:89 engine/core/models.py:641 msgid "SKU" msgstr "Mã sản phẩm" -#: core/filters.py:173 +#: engine/core/filters.py:184 msgid "there must be a category_uuid to use include_subcategories flag" msgstr "Phải có trường category_uuid để sử dụng cờ include_subcategories." -#: core/filters.py:339 +#: engine/core/filters.py:353 msgid "Search (ID, product name or part number)" msgstr "Tìm kiếm (ID, tên sản phẩm hoặc số hiệu linh kiện)" -#: core/filters.py:342 +#: engine/core/filters.py:356 msgid "Bought after (inclusive)" msgstr "Được mua sau (bao gồm)" -#: core/filters.py:343 +#: engine/core/filters.py:357 msgid "Bought before (inclusive)" msgstr "Đã mua trước đó (bao gồm)" -#: core/filters.py:346 core/filters.py:393 core/filters.py:600 +#: engine/core/filters.py:360 engine/core/filters.py:407 +#: engine/core/filters.py:614 msgid "User email" msgstr "Địa chỉ email của người dùng" -#: core/filters.py:347 core/filters.py:394 core/filters.py:578 -#: core/filters.py:599 +#: engine/core/filters.py:361 engine/core/filters.py:408 +#: engine/core/filters.py:592 engine/core/filters.py:613 msgid "User UUID" msgstr "UUID người dùng" -#: core/filters.py:348 +#: engine/core/filters.py:362 msgid "Status" msgstr "Trạng thái" -#: core/filters.py:352 +#: engine/core/filters.py:366 msgid "Human Readable ID" msgstr "Mã định danh dễ đọc cho con người" -#: core/filters.py:415 +#: engine/core/filters.py:429 msgid "Parent" msgstr "Cha mẹ" -#: core/filters.py:419 +#: engine/core/filters.py:433 msgid "Whole category(has at least 1 product or not)" msgstr "Toàn bộ danh mục (có ít nhất 1 sản phẩm hoặc không)" -#: core/filters.py:423 +#: engine/core/filters.py:437 msgid "Level" msgstr "Cấp độ" -#: core/filters.py:573 +#: engine/core/filters.py:587 msgid "Product UUID" msgstr "Mã định danh duy nhất của sản phẩm (UUID)" -#: core/graphene/mutations.py:41 +#: engine/core/graphene/mutations.py:41 msgid "key to look for in or set into the cache" msgstr "Khóa để tìm kiếm trong hoặc đặt vào bộ nhớ đệm" -#: core/graphene/mutations.py:42 +#: engine/core/graphene/mutations.py:42 msgid "data to store in cache" msgstr "Dữ liệu cần lưu trữ trong bộ nhớ cache" -#: core/graphene/mutations.py:45 +#: engine/core/graphene/mutations.py:45 msgid "timeout in seconds to set the data for into the cache" msgstr "Thời gian chờ (timeout) tính bằng giây để lưu dữ liệu vào bộ nhớ đệm." -#: core/graphene/mutations.py:48 +#: engine/core/graphene/mutations.py:48 msgid "cached data" msgstr "Dữ liệu được lưu trữ trong bộ nhớ đệm" -#: core/graphene/mutations.py:63 +#: engine/core/graphene/mutations.py:63 msgid "camelized JSON data from the requested URL" msgstr "" "Dữ liệu JSON đã được chuyển đổi sang định dạng JSON từ URL được yêu cầu." -#: core/graphene/mutations.py:68 core/views.py:232 +#: engine/core/graphene/mutations.py:68 engine/core/views.py:231 msgid "only URLs starting with http(s):// are allowed" msgstr "Chỉ các URL bắt đầu bằng http(s):// mới được phép." -#: core/graphene/mutations.py:84 +#: engine/core/graphene/mutations.py:84 msgid "add a product to the order" msgstr "Thêm sản phẩm vào đơn hàng" -#: core/graphene/mutations.py:105 core/graphene/mutations.py:132 -#: core/graphene/mutations.py:240 core/graphene/mutations.py:288 +#: engine/core/graphene/mutations.py:105 engine/core/graphene/mutations.py:132 +#: engine/core/graphene/mutations.py:240 engine/core/graphene/mutations.py:288 #, python-brace-format msgid "order {order_uuid} not found" msgstr "Lệnh {order_uuid} không tìm thấy!" -#: core/graphene/mutations.py:111 core/graphene/mutations.py:160 +#: engine/core/graphene/mutations.py:111 engine/core/graphene/mutations.py:160 msgid "remove a product from the order" msgstr "Xóa sản phẩm khỏi đơn hàng" -#: core/graphene/mutations.py:138 +#: engine/core/graphene/mutations.py:138 msgid "remove all products from the order" msgstr "Xóa tất cả sản phẩm khỏi đơn hàng." -#: core/graphene/mutations.py:183 +#: engine/core/graphene/mutations.py:183 msgid "buy an order" msgstr "Đặt hàng" -#: core/graphene/mutations.py:212 core/graphene/mutations.py:266 +#: engine/core/graphene/mutations.py:212 engine/core/graphene/mutations.py:266 msgid "please provide either order_uuid or order_hr_id - mutually exclusive" msgstr "" "Vui lòng cung cấp một trong hai trường order_uuid hoặc order_hr_id - hai " "trường này là tương hỗ!" -#: core/graphene/mutations.py:237 core/graphene/mutations.py:502 -#: core/graphene/mutations.py:544 core/viewsets.py:704 +#: engine/core/graphene/mutations.py:237 engine/core/graphene/mutations.py:502 +#: engine/core/graphene/mutations.py:544 engine/core/viewsets.py:704 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}" -#: core/graphene/mutations.py:246 +#: engine/core/graphene/mutations.py:246 msgid "perform an action on a list of products in the order" msgstr "Thực hiện một hành động trên danh sách sản phẩm theo thứ tự." -#: core/graphene/mutations.py:251 +#: engine/core/graphene/mutations.py:251 msgid "remove/add" msgstr "Xóa/Thêm" -#: core/graphene/mutations.py:283 core/graphene/mutations.py:324 +#: engine/core/graphene/mutations.py:283 engine/core/graphene/mutations.py:324 msgid "action must be either add or remove" msgstr "Hành động phải là \"thêm\" hoặc \"xóa\"!" -#: core/graphene/mutations.py:294 +#: engine/core/graphene/mutations.py:294 msgid "perform an action on a list of products in the wishlist" msgstr "" "Thực hiện một hành động trên danh sách sản phẩm trong danh sách mong muốn." -#: core/graphene/mutations.py:312 +#: engine/core/graphene/mutations.py:312 msgid "please provide wishlist_uuid value" msgstr "Vui lòng cung cấp giá trị `wishlist_uuid`." -#: core/graphene/mutations.py:329 core/graphene/mutations.py:405 -#: core/graphene/mutations.py:433 core/graphene/mutations.py:461 -#: core/graphene/mutations.py:505 +#: engine/core/graphene/mutations.py:329 engine/core/graphene/mutations.py:405 +#: engine/core/graphene/mutations.py:433 engine/core/graphene/mutations.py:461 +#: engine/core/graphene/mutations.py:505 #, python-brace-format msgid "wishlist {wishlist_uuid} not found" msgstr "Danh sách mong muốn {wishlist_uuid} không tìm thấy!" -#: core/graphene/mutations.py:383 +#: engine/core/graphene/mutations.py:383 msgid "add a product to the wishlist" msgstr "Thêm sản phẩm vào đơn hàng" -#: core/graphene/mutations.py:411 +#: engine/core/graphene/mutations.py:411 msgid "remove a product from the wishlist" msgstr "Xóa sản phẩm khỏi đơn hàng" -#: core/graphene/mutations.py:439 +#: engine/core/graphene/mutations.py:439 msgid "remove all products from the wishlist" msgstr "Xóa sản phẩm khỏi đơn hàng" -#: core/graphene/mutations.py:467 +#: engine/core/graphene/mutations.py:467 msgid "buy all products from the wishlist" msgstr "Xóa sản phẩm khỏi đơn hàng" -#: core/graphene/mutations.py:511 +#: engine/core/graphene/mutations.py:511 msgid "buy a product" msgstr "Đặt hàng" -#: core/graphene/mutations.py:517 +#: engine/core/graphene/mutations.py:517 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" -#: core/graphene/mutations.py:550 +#: engine/core/graphene/mutations.py:550 msgid "add or delete a feedback for orderproduct" msgstr "Thêm hoặc xóa phản hồi cho sản phẩm đặt hàng" -#: core/graphene/mutations.py:574 +#: engine/core/graphene/mutations.py:574 msgid "action must be either `add` or `remove`" msgstr "Hành động phải là `thêm` hoặc `xóa`!" -#: core/graphene/mutations.py:577 +#: engine/core/graphene/mutations.py:577 #, python-brace-format msgid "order product {order_product_uuid} not found" msgstr "Sản phẩm {order_product_uuid} không tìm thấy!" -#: core/graphene/mutations.py:644 +#: engine/core/graphene/mutations.py:644 msgid "original address string provided by the user" msgstr "Dòng địa chỉ gốc do người dùng cung cấp" -#: core/graphene/mutations.py:680 core/models.py:930 core/models.py:943 -#: core/models.py:1358 core/models.py:1387 core/models.py:1412 -#: core/viewsets.py:707 +#: engine/core/graphene/mutations.py:680 engine/core/models.py:941 +#: engine/core/models.py:954 engine/core/models.py:1369 +#: engine/core/models.py:1398 engine/core/models.py:1423 +#: engine/core/viewsets.py:707 #, python-brace-format msgid "{name} does not exist: {uuid}" msgstr "{name} không tồn tại: {uuid}!" -#: core/graphene/mutations.py:694 +#: engine/core/graphene/mutations.py:694 msgid "limit must be between 1 and 10" msgstr "Giới hạn phải nằm trong khoảng từ 1 đến 10." -#: core/graphene/mutations.py:743 +#: engine/core/graphene/mutations.py:743 msgid "elasticsearch - works like a charm" msgstr "ElasticSearch - hoạt động rất tốt." -#: core/graphene/object_types.py:82 core/graphene/object_types.py:370 -#: core/graphene/object_types.py:417 core/models.py:754 core/models.py:1225 -#: core/models.py:1823 +#: engine/core/graphene/object_types.py:82 +#: engine/core/graphene/object_types.py:370 +#: engine/core/graphene/object_types.py:417 engine/core/models.py:765 +#: engine/core/models.py:1236 engine/core/models.py:1883 msgid "attributes" msgstr "Thuộc tính" -#: core/graphene/object_types.py:95 +#: engine/core/graphene/object_types.py:95 msgid "grouped attributes" msgstr "Các thuộc tính được nhóm lại" -#: core/graphene/object_types.py:102 +#: engine/core/graphene/object_types.py:102 msgid "groups of attributes" msgstr "Nhóm thuộc tính" -#: core/graphene/object_types.py:116 core/graphene/object_types.py:193 -#: core/graphene/object_types.py:223 core/models.py:426 +#: engine/core/graphene/object_types.py:116 +#: engine/core/graphene/object_types.py:193 +#: engine/core/graphene/object_types.py:223 engine/core/models.py:425 msgid "categories" msgstr "Các danh mục" -#: core/graphene/object_types.py:124 core/models.py:497 +#: engine/core/graphene/object_types.py:124 engine/core/models.py:496 msgid "brands" msgstr "Thương hiệu" -#: core/graphene/object_types.py:195 +#: engine/core/graphene/object_types.py:195 msgid "category image url" msgstr "Các danh mục" -#: core/graphene/object_types.py:196 core/graphene/object_types.py:317 -#: core/models.py:284 +#: engine/core/graphene/object_types.py:196 +#: engine/core/graphene/object_types.py:317 engine/core/models.py:283 msgid "markup percentage" msgstr "Tỷ lệ phần trăm đánh dấu" -#: core/graphene/object_types.py:199 +#: engine/core/graphene/object_types.py:199 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." -#: core/graphene/object_types.py:203 -msgid "" -"minimum and maximum prices for products in this category, if available." +#: engine/core/graphene/object_types.py:203 +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." -#: core/graphene/object_types.py:205 +#: engine/core/graphene/object_types.py:205 msgid "tags for this category" msgstr "Thẻ cho danh mục này" -#: core/graphene/object_types.py:206 +#: engine/core/graphene/object_types.py:206 msgid "products in this category" msgstr "Sản phẩm trong danh mục này" -#: core/graphene/object_types.py:324 core/models.py:189 +#: engine/core/graphene/object_types.py:324 engine/core/models.py:188 msgid "vendors" msgstr "Nhà cung cấp" -#: core/graphene/object_types.py:328 +#: engine/core/graphene/object_types.py:328 msgid "Latitude (Y coordinate)" msgstr "Vĩ độ (tọa độ Y)" -#: core/graphene/object_types.py:329 +#: engine/core/graphene/object_types.py:329 msgid "Longitude (X coordinate)" msgstr "Kinh độ (tọa độ X)" -#: core/graphene/object_types.py:358 +#: engine/core/graphene/object_types.py:358 msgid "comment" msgstr "Làm thế nào" -#: core/graphene/object_types.py:359 core/graphene/object_types.py:483 +#: engine/core/graphene/object_types.py:359 +#: engine/core/graphene/object_types.py:483 msgid "rating value from 1 to 10, inclusive, or 0 if not set." msgstr "" "Giá trị đánh giá từ 1 đến 10, bao gồm cả 1 và 10, hoặc 0 nếu không được " "thiết lập." -#: core/graphene/object_types.py:366 +#: engine/core/graphene/object_types.py:366 msgid "represents feedback from a user." msgstr "Đại diện cho phản hồi từ người dùng." -#: core/graphene/object_types.py:371 core/graphene/object_types.py:418 -#: core/models.py:1219 +#: engine/core/graphene/object_types.py:371 +#: engine/core/graphene/object_types.py:418 engine/core/models.py:1230 msgid "notifications" msgstr "Thông báo" -#: core/graphene/object_types.py:372 +#: engine/core/graphene/object_types.py:372 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ó)." -#: core/graphene/object_types.py:373 core/models.py:1939 +#: engine/core/graphene/object_types.py:373 engine/core/models.py:1722 msgid "feedback" msgstr "Phản hồi" -#: core/graphene/object_types.py:407 +#: engine/core/graphene/object_types.py:407 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" -#: core/graphene/object_types.py:409 core/models.py:1189 +#: engine/core/graphene/object_types.py:409 engine/core/models.py:1200 msgid "billing address" msgstr "Địa chỉ thanh toán" -#: core/graphene/object_types.py:412 +#: engine/core/graphene/object_types.py:412 msgid "" "shipping address for this order, leave blank if same as billing address or " "if not applicable" @@ -1330,202 +1361,210 @@ msgstr "" "Địa chỉ giao hàng cho đơn hàng này, để trống nếu trùng với địa chỉ thanh " "toán hoặc nếu không áp dụng." -#: core/graphene/object_types.py:414 +#: engine/core/graphene/object_types.py:414 msgid "total price of this order" msgstr "Tổng giá trị của đơn hàng này" -#: core/graphene/object_types.py:415 +#: engine/core/graphene/object_types.py:415 msgid "total quantity of products in order" msgstr "Tổng số lượng sản phẩm trong đơn hàng" -#: core/graphene/object_types.py:416 +#: engine/core/graphene/object_types.py:416 msgid "are all products in the order digital" msgstr "" "Tất cả các sản phẩm trong đơn hàng có phải là sản phẩm kỹ thuật số không?" -#: core/graphene/object_types.py:419 +#: engine/core/graphene/object_types.py:419 msgid "transactions for this order" msgstr "Giao dịch cho đơn hàng này" -#: core/graphene/object_types.py:438 core/models.py:1253 +#: engine/core/graphene/object_types.py:438 engine/core/models.py:1264 msgid "orders" msgstr "Đơn hàng" -#: core/graphene/object_types.py:459 +#: engine/core/graphene/object_types.py:459 msgid "image url" msgstr "URL hình ảnh" -#: core/graphene/object_types.py:466 +#: engine/core/graphene/object_types.py:466 msgid "product's images" msgstr "Hình ảnh sản phẩm" -#: core/graphene/object_types.py:473 core/models.py:425 core/models.py:579 +#: engine/core/graphene/object_types.py:473 engine/core/models.py:424 +#: engine/core/models.py:579 msgid "category" msgstr "Thể loại" -#: core/graphene/object_types.py:475 core/models.py:1940 +#: engine/core/graphene/object_types.py:475 engine/core/models.py:1723 msgid "feedbacks" msgstr "Phản hồi" -#: core/graphene/object_types.py:476 core/models.py:496 core/models.py:588 +#: engine/core/graphene/object_types.py:476 engine/core/models.py:495 +#: engine/core/models.py:588 msgid "brand" msgstr "Thương hiệu" -#: core/graphene/object_types.py:477 core/models.py:107 +#: engine/core/graphene/object_types.py:477 engine/core/models.py:106 msgid "attribute groups" msgstr "Nhóm thuộc tính" -#: core/graphene/object_types.py:478 -#: core/templates/digital_order_created_email.html:111 -#: core/templates/digital_order_delivered_email.html:109 -#: core/templates/shipped_order_created_email.html:109 -#: core/templates/shipped_order_delivered_email.html:109 +#: engine/core/graphene/object_types.py:478 +#: engine/core/templates/digital_order_created_email.html:111 +#: engine/core/templates/digital_order_delivered_email.html:109 +#: engine/core/templates/shipped_order_created_email.html:109 +#: engine/core/templates/shipped_order_delivered_email.html:109 msgid "price" msgstr "Giá" -#: core/graphene/object_types.py:479 -#: core/templates/digital_order_created_email.html:110 -#: core/templates/digital_order_delivered_email.html:108 -#: core/templates/shipped_order_created_email.html:108 -#: core/templates/shipped_order_delivered_email.html:108 +#: engine/core/graphene/object_types.py:479 +#: engine/core/templates/digital_order_created_email.html:110 +#: engine/core/templates/digital_order_delivered_email.html:108 +#: engine/core/templates/shipped_order_created_email.html:108 +#: engine/core/templates/shipped_order_delivered_email.html:108 msgid "quantity" msgstr "Số lượng" -#: core/graphene/object_types.py:480 +#: engine/core/graphene/object_types.py:480 msgid "number of feedbacks" msgstr "Số lượng phản hồi" -#: core/graphene/object_types.py:481 +#: engine/core/graphene/object_types.py:481 msgid "only available for personal orders" msgstr "Sản phẩm chỉ dành cho đơn đặt hàng cá nhân." -#: core/graphene/object_types.py:507 core/models.py:651 +#: engine/core/graphene/object_types.py:484 +msgid "discount price" +msgstr "Giá khuyến mãi" + +#: engine/core/graphene/object_types.py:508 engine/core/models.py:651 msgid "products" msgstr "Sản phẩm" -#: core/graphene/object_types.py:607 +#: engine/core/graphene/object_types.py:611 msgid "promocodes" msgstr "Mã khuyến mãi" -#: core/graphene/object_types.py:617 +#: engine/core/graphene/object_types.py:621 msgid "products on sale" msgstr "Sản phẩm đang khuyến mãi" -#: core/graphene/object_types.py:624 core/models.py:879 +#: engine/core/graphene/object_types.py:628 engine/core/models.py:890 msgid "promotions" msgstr "Khuyến mãi" -#: core/graphene/object_types.py:628 core/models.py:188 +#: engine/core/graphene/object_types.py:632 engine/core/models.py:187 msgid "vendor" msgstr "Nhà cung cấp" -#: core/graphene/object_types.py:629 core/models.py:650 -#: core/templates/digital_order_created_email.html:109 -#: core/templates/digital_order_delivered_email.html:107 -#: core/templates/shipped_order_created_email.html:107 -#: core/templates/shipped_order_delivered_email.html:107 +#: engine/core/graphene/object_types.py:633 engine/core/models.py:650 +#: 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 +#: engine/core/templates/shipped_order_delivered_email.html:107 msgid "product" msgstr "Sản phẩm" -#: core/graphene/object_types.py:640 core/models.py:902 +#: engine/core/graphene/object_types.py:644 engine/core/models.py:913 msgid "wishlisted products" msgstr "Sản phẩm đã thêm vào danh sách mong muốn" -#: core/graphene/object_types.py:646 core/models.py:919 +#: engine/core/graphene/object_types.py:650 engine/core/models.py:930 msgid "wishlists" msgstr "Danh sách mong muốn" -#: core/graphene/object_types.py:650 +#: engine/core/graphene/object_types.py:654 msgid "tagged products" msgstr "Sản phẩm được gắn thẻ" -#: core/graphene/object_types.py:657 core/models.py:225 core/models.py:594 +#: engine/core/graphene/object_types.py:661 engine/core/models.py:224 +#: engine/core/models.py:594 msgid "product tags" msgstr "Thẻ sản phẩm" -#: core/graphene/object_types.py:661 +#: engine/core/graphene/object_types.py:665 msgid "tagged categories" msgstr "Các danh mục được gắn thẻ" -#: core/graphene/object_types.py:668 +#: engine/core/graphene/object_types.py:672 msgid "categories tags" msgstr "Thẻ của các danh mục" -#: core/graphene/object_types.py:672 +#: engine/core/graphene/object_types.py:676 msgid "project name" msgstr "Tên dự án" -#: core/graphene/object_types.py:673 +#: engine/core/graphene/object_types.py:677 msgid "company email" msgstr "Email công ty" -#: core/graphene/object_types.py:674 +#: engine/core/graphene/object_types.py:678 msgid "company name" msgstr "Tên công ty" -#: core/graphene/object_types.py:675 +#: engine/core/graphene/object_types.py:679 msgid "company address" msgstr "Địa chỉ công ty" -#: core/graphene/object_types.py:676 +#: engine/core/graphene/object_types.py:680 msgid "company phone number" msgstr "Số điện thoại của công ty" -#: core/graphene/object_types.py:677 +#: engine/core/graphene/object_types.py:681 msgid "email from, sometimes it must be used instead of host user value" msgstr "" "'email from', đôi khi phải sử dụng thay cho giá trị người dùng máy chủ." -#: core/graphene/object_types.py:678 +#: engine/core/graphene/object_types.py:682 msgid "email host user" msgstr "Người dùng máy chủ email" -#: core/graphene/object_types.py:679 +#: engine/core/graphene/object_types.py:683 msgid "maximum amount for payment" msgstr "Số tiền tối đa cho thanh toán" -#: core/graphene/object_types.py:680 +#: engine/core/graphene/object_types.py:684 msgid "minimum amount for payment" msgstr "Số tiền tối thiểu để thanh toán" -#: core/graphene/object_types.py:681 +#: engine/core/graphene/object_types.py:685 msgid "analytics data" msgstr "Dữ liệu phân tích" -#: core/graphene/object_types.py:682 +#: engine/core/graphene/object_types.py:686 msgid "advertisement data" msgstr "Dữ liệu quảng cáo" -#: core/graphene/object_types.py:685 +#: engine/core/graphene/object_types.py:689 msgid "company configuration" msgstr "Cấu hình" -#: core/graphene/object_types.py:689 +#: engine/core/graphene/object_types.py:693 msgid "language code" msgstr "Mã ngôn ngữ" -#: core/graphene/object_types.py:690 +#: engine/core/graphene/object_types.py:694 msgid "language name" msgstr "Tên ngôn ngữ" -#: core/graphene/object_types.py:691 +#: engine/core/graphene/object_types.py:695 msgid "language flag, if exists :)" msgstr "Cờ ngôn ngữ, nếu có :)" -#: core/graphene/object_types.py:694 +#: engine/core/graphene/object_types.py:698 msgid "supported languages" msgstr "Xem danh sách các ngôn ngữ được hỗ trợ" -#: core/graphene/object_types.py:725 core/graphene/object_types.py:726 -#: core/graphene/object_types.py:727 +#: engine/core/graphene/object_types.py:729 +#: engine/core/graphene/object_types.py:730 +#: engine/core/graphene/object_types.py:731 msgid "products search results" msgstr "Kết quả tìm kiếm sản phẩm" -#: core/graphene/object_types.py:728 +#: engine/core/graphene/object_types.py:732 msgid "posts search results" msgstr "Kết quả tìm kiếm sản phẩm" -#: core/models.py:76 +#: engine/core/models.py:75 msgid "" "Represents a group of attributes, which can be hierarchical. This class is " "used to manage and organize attribute groups. An attribute group can have a " @@ -1534,27 +1573,27 @@ 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." -#: core/models.py:92 +#: engine/core/models.py:91 msgid "parent of this group" msgstr "Cha mẹ của nhóm này" -#: core/models.py:93 +#: engine/core/models.py:92 msgid "parent attribute group" msgstr "Nhóm thuộc tính cha" -#: core/models.py:97 core/models.py:98 +#: engine/core/models.py:96 engine/core/models.py:97 msgid "attribute group's name" msgstr "Tên nhóm thuộc tính" -#: core/models.py:106 core/models.py:716 +#: engine/core/models.py:105 engine/core/models.py:727 msgid "attribute group" msgstr "Nhóm thuộc tính" -#: core/models.py:112 +#: engine/core/models.py:111 msgid "" "Represents a vendor entity capable of storing information about external " "vendors and their interaction requirements. The Vendor class is used to " @@ -1569,54 +1608,54 @@ 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." -#: core/models.py:125 +#: engine/core/models.py:124 msgid "stores credentials and endpoints required for vendor communication" msgstr "" "Lưu trữ thông tin đăng nhập và các điểm cuối cần thiết cho việc giao tiếp " "API của nhà cung cấp." -#: core/models.py:126 +#: engine/core/models.py:125 msgid "authentication info" msgstr "Thông tin xác thực" -#: core/models.py:131 +#: engine/core/models.py:130 msgid "define the markup for products retrieved from this vendor" msgstr "" "Xác định định dạng đánh dấu cho các sản phẩm được lấy từ nhà cung cấp này." -#: core/models.py:132 +#: engine/core/models.py:131 msgid "vendor markup percentage" msgstr "Tỷ lệ chiết khấu của nhà cung cấp" -#: core/models.py:136 +#: engine/core/models.py:135 msgid "name of this vendor" msgstr "Tên của nhà cung cấp này" -#: core/models.py:137 +#: engine/core/models.py:136 msgid "vendor name" msgstr "Tên nhà cung cấp" -#: core/models.py:148 +#: engine/core/models.py:147 msgid "response file" msgstr "Tệp phản hồi" -#: core/models.py:149 +#: engine/core/models.py:148 msgid "vendor's last processing response" msgstr "Phản hồi xử lý cuối cùng của nhà cung cấp" -#: core/models.py:155 +#: engine/core/models.py:154 msgid "vendor's integration file path" msgstr "Đường dẫn tệp tích hợp của nhà cung cấp" -#: core/models.py:156 +#: engine/core/models.py:155 msgid "integration path" msgstr "Đường dẫn tích hợp" -#: core/models.py:198 +#: engine/core/models.py:197 msgid "" "Represents a product tag used for classifying or identifying products. The " "ProductTag class is designed to uniquely identify and classify products " @@ -1624,52 +1663,52 @@ 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ị." -#: core/models.py:210 core/models.py:241 +#: engine/core/models.py:209 engine/core/models.py:240 msgid "internal tag identifier for the product tag" msgstr "Mã định danh thẻ nội bộ cho thẻ sản phẩm" -#: core/models.py:211 core/models.py:242 +#: engine/core/models.py:210 engine/core/models.py:241 msgid "tag name" msgstr "Tên ngày" -#: core/models.py:215 core/models.py:246 +#: engine/core/models.py:214 engine/core/models.py:245 msgid "user-friendly name for the product tag" msgstr "Tên thân thiện với người dùng cho thẻ sản phẩm" -#: core/models.py:216 core/models.py:247 +#: engine/core/models.py:215 engine/core/models.py:246 msgid "tag display name" msgstr "Hiển thị tên thẻ" -#: core/models.py:224 +#: engine/core/models.py:223 msgid "product tag" msgstr "Thẻ sản phẩm" -#: core/models.py:230 +#: engine/core/models.py:229 msgid "" "Represents a category tag used for products. This class models a category " "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." -#: core/models.py:255 +#: engine/core/models.py:254 msgid "category tag" msgstr "Thẻ danh mục" -#: core/models.py:256 core/models.py:328 +#: engine/core/models.py:255 engine/core/models.py:327 msgid "category tags" msgstr "Thẻ danh mục" -#: core/models.py:261 +#: engine/core/models.py:260 msgid "" "Represents a category entity to organize and group related items in a " "hierarchical structure. Categories may have hierarchical relationships with " @@ -1681,117 +1720,116 @@ 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." -#: core/models.py:275 +#: engine/core/models.py:274 msgid "upload an image representing this category" msgstr "Tải lên một hình ảnh đại diện cho danh mục này." -#: core/models.py:278 +#: engine/core/models.py:277 msgid "category image" msgstr "Hình ảnh danh mục" -#: core/models.py:283 +#: engine/core/models.py:282 msgid "define a markup percentage for products in this category" msgstr "" "Xác định tỷ lệ phần trăm chiết khấu cho các sản phẩm trong danh mục này." -#: core/models.py:292 +#: engine/core/models.py:291 msgid "parent of this category to form a hierarchical structure" msgstr "Cha của danh mục này để tạo cấu trúc phân cấp." -#: core/models.py:293 +#: engine/core/models.py:292 msgid "parent category" msgstr "Danh mục cha" -#: core/models.py:298 +#: engine/core/models.py:297 msgid "category name" msgstr "Tên danh mục" -#: core/models.py:299 +#: engine/core/models.py:298 msgid "provide a name for this category" msgstr "Đặt tên cho danh mục này." -#: core/models.py:306 +#: engine/core/models.py:305 msgid "add a detailed description for this category" msgstr "Thêm mô tả chi tiết cho danh mục này." -#: core/models.py:307 +#: engine/core/models.py:306 msgid "category description" msgstr "Mô tả danh mục" -#: core/models.py:327 +#: engine/core/models.py:326 msgid "tags that help describe or group this category" msgstr "Thẻ giúp mô tả hoặc phân loại danh mục này" -#: core/models.py:334 core/models.py:489 +#: engine/core/models.py:333 engine/core/models.py:488 msgid "priority" msgstr "Ưu tiên" -#: core/models.py:432 +#: engine/core/models.py:431 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." -#: core/models.py:442 +#: engine/core/models.py:441 msgid "name of this brand" msgstr "Tên của thương hiệu này" -#: core/models.py:443 +#: engine/core/models.py:442 msgid "brand name" msgstr "Tên thương hiệu" -#: core/models.py:450 +#: engine/core/models.py:449 msgid "upload a logo representing this brand" msgstr "Tải lên logo đại diện cho thương hiệu này." -#: core/models.py:452 +#: engine/core/models.py:451 msgid "brand small image" msgstr "Hình ảnh nhỏ của thương hiệu" -#: core/models.py:458 +#: engine/core/models.py:457 msgid "upload a big logo representing this brand" msgstr "Tải lên một logo lớn đại diện cho thương hiệu này." -#: core/models.py:460 +#: engine/core/models.py:459 msgid "brand big image" msgstr "Hình ảnh thương hiệu lớn" -#: core/models.py:465 +#: engine/core/models.py:464 msgid "add a detailed description of the brand" msgstr "Thêm mô tả chi tiết về thương hiệu" -#: core/models.py:466 +#: engine/core/models.py:465 msgid "brand description" msgstr "Mô tả thương hiệu" -#: core/models.py:471 +#: engine/core/models.py:470 msgid "optional categories that this brand is associated with" msgstr "Các danh mục tùy chọn mà thương hiệu này liên kết với" -#: core/models.py:472 +#: engine/core/models.py:471 msgid "associated categories" msgstr "Các danh mục" -#: core/models.py:502 +#: engine/core/models.py:501 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,68 +1842,72 @@ msgstr "" "phần của hệ thống quản lý hàng tồn kho để cho phép theo dõi và đánh giá các " "sản phẩm có sẵn từ các nhà cung cấp khác nhau." -#: core/models.py:514 +#: engine/core/models.py:513 msgid "the vendor supplying this product stock" msgstr "Nhà cung cấp cung cấp hàng tồn kho cho sản phẩm này." -#: core/models.py:515 +#: engine/core/models.py:514 msgid "associated vendor" msgstr "Nhà cung cấp liên kết" -#: core/models.py:519 +#: engine/core/models.py:518 msgid "final price to the customer after markups" msgstr "Giá cuối cùng cho khách hàng sau khi cộng thêm chi phí." -#: core/models.py:520 +#: engine/core/models.py:519 msgid "selling price" msgstr "Giá bán" -#: core/models.py:525 +#: engine/core/models.py:524 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" -#: core/models.py:526 core/models.py:779 core/models.py:825 -#: core/models.py:1718 +#: engine/core/models.py:525 engine/core/models.py:790 +#: engine/core/models.py:836 engine/core/models.py:1778 msgid "associated product" msgstr "Sản phẩm liên quan" -#: core/models.py:533 +#: engine/core/models.py:532 msgid "the price paid to the vendor for this product" msgstr "Giá thanh toán cho nhà cung cấp cho sản phẩm này" -#: core/models.py:534 +#: engine/core/models.py:533 msgid "vendor purchase price" msgstr "Giá mua của nhà cung cấp" -#: core/models.py:538 +#: engine/core/models.py:537 msgid "available quantity of the product in stock" msgstr "Số lượng sản phẩm hiện có trong kho" -#: core/models.py:539 +#: engine/core/models.py:538 msgid "quantity in stock" msgstr "Số lượng hàng tồn kho" -#: core/models.py:543 +#: engine/core/models.py:542 msgid "vendor-assigned SKU for identifying the product" msgstr "Mã SKU do nhà cung cấp gán để nhận dạng sản phẩm" -#: core/models.py:544 +#: engine/core/models.py:543 msgid "vendor sku" msgstr "Mã SKU của nhà cung cấp" -#: core/models.py:550 +#: engine/core/models.py:549 msgid "digital file associated with this stock if applicable" msgstr "Tệp tin kỹ thuật số liên quan đến cổ phiếu này (nếu có)" -#: core/models.py:551 +#: engine/core/models.py:550 msgid "digital file" msgstr "Tệp tin kỹ thuật số" -#: core/models.py:560 +#: engine/core/models.py:553 +msgid "system attributes" +msgstr "Thuộc tính hệ thống" + +#: engine/core/models.py:560 msgid "stock entries" msgstr "Nhập kho" -#: core/models.py:565 +#: engine/core/models.py:565 msgid "" "Represents a product with attributes such as category, brand, tags, digital " "status, name, description, part number, and slug. Provides related utility " @@ -1877,164 +1919,164 @@ 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." -#: core/models.py:578 +#: engine/core/models.py:578 msgid "category this product belongs to" msgstr "Danh mục mà sản phẩm này thuộc về" -#: core/models.py:587 +#: engine/core/models.py:587 msgid "optionally associate this product with a brand" msgstr "Tùy chọn: Kết hợp sản phẩm này với một thương hiệu" -#: core/models.py:593 +#: engine/core/models.py:593 msgid "tags that help describe or group this product" msgstr "Thẻ giúp mô tả hoặc phân loại sản phẩm này" -#: core/models.py:598 +#: engine/core/models.py:598 msgid "indicates whether this product is digitally delivered" msgstr "" "Cho biết sản phẩm này có được phân phối dưới dạng kỹ thuật số hay không." -#: core/models.py:599 +#: engine/core/models.py:599 msgid "is product digital" msgstr "Sản phẩm có phải là sản phẩm số không?" -#: core/models.py:605 +#: engine/core/models.py:605 msgid "provide a clear identifying name for the product" msgstr "Cung cấp một tên gọi rõ ràng để nhận diện sản phẩm." -#: core/models.py:606 +#: engine/core/models.py:606 msgid "product name" msgstr "Tên sản phẩm" -#: core/models.py:612 core/models.py:867 +#: engine/core/models.py:612 engine/core/models.py:878 msgid "add a detailed description of the product" msgstr "Thêm mô tả chi tiết về sản phẩm" -#: core/models.py:613 +#: engine/core/models.py:613 msgid "product description" msgstr "Mô tả sản phẩm" -#: core/models.py:620 +#: engine/core/models.py:620 msgid "part number for this product" msgstr "Số hiệu sản phẩm cho sản phẩm này" -#: core/models.py:621 +#: engine/core/models.py:621 msgid "part number" msgstr "Số hiệu linh kiện" -#: core/models.py:640 +#: engine/core/models.py:640 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" -#: core/models.py:702 +#: engine/core/models.py:713 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." -#: core/models.py:715 +#: engine/core/models.py:726 msgid "group of this attribute" msgstr "Nhóm có thuộc tính này" -#: core/models.py:721 +#: engine/core/models.py:732 msgid "string" msgstr "Dây" -#: core/models.py:722 +#: engine/core/models.py:733 msgid "integer" msgstr "Chính trực" -#: core/models.py:723 +#: engine/core/models.py:734 msgid "float" msgstr "Nổi" -#: core/models.py:724 +#: engine/core/models.py:735 msgid "boolean" msgstr "Boolean" -#: core/models.py:725 +#: engine/core/models.py:736 msgid "array" msgstr "Mảng" -#: core/models.py:726 +#: engine/core/models.py:737 msgid "object" msgstr "Đối tượng" -#: core/models.py:728 +#: engine/core/models.py:739 msgid "type of the attribute's value" msgstr "Loại giá trị của thuộc tính" -#: core/models.py:729 +#: engine/core/models.py:740 msgid "value type" msgstr "Kiểu giá trị" -#: core/models.py:734 +#: engine/core/models.py:745 msgid "name of this attribute" msgstr "Tên của thuộc tính này" -#: core/models.py:735 +#: engine/core/models.py:746 msgid "attribute's name" msgstr "Tên thuộc tính" -#: core/models.py:740 +#: engine/core/models.py:751 msgid "is filterable" msgstr "có thể lọc được" -#: core/models.py:741 +#: engine/core/models.py:752 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." -#: core/models.py:753 core/models.py:771 -#: core/templates/digital_order_delivered_email.html:134 +#: engine/core/models.py:764 engine/core/models.py:782 +#: engine/core/templates/digital_order_delivered_email.html:134 msgid "attribute" msgstr "Thuộc tính" -#: core/models.py:759 +#: engine/core/models.py:770 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." -#: core/models.py:770 +#: engine/core/models.py:781 msgid "attribute of this value" msgstr "Thuộc tính của giá trị này" -#: core/models.py:778 +#: engine/core/models.py:789 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" -#: core/models.py:784 +#: engine/core/models.py:795 msgid "the specific value for this attribute" msgstr "Giá trị cụ thể cho thuộc tính này" -#: core/models.py:797 +#: engine/core/models.py:808 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 "" @@ -2044,87 +2086,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." -#: core/models.py:808 +#: engine/core/models.py:819 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." -#: core/models.py:809 +#: engine/core/models.py:820 msgid "image alt text" msgstr "Nội dung thay thế cho hình ảnh" -#: core/models.py:812 +#: engine/core/models.py:823 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." -#: core/models.py:813 core/models.py:837 +#: engine/core/models.py:824 engine/core/models.py:848 msgid "product image" msgstr "Hình ảnh sản phẩm" -#: core/models.py:818 +#: engine/core/models.py:829 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." -#: core/models.py:819 +#: engine/core/models.py:830 msgid "display priority" msgstr "Ưu tiên hiển thị" -#: core/models.py:824 +#: engine/core/models.py:835 msgid "the product that this image represents" msgstr "Sản phẩm mà hình ảnh này đại diện" -#: core/models.py:838 +#: engine/core/models.py:849 msgid "product images" msgstr "Hình ảnh sản phẩm" -#: core/models.py:843 +#: engine/core/models.py:854 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." -#: core/models.py:855 +#: engine/core/models.py:866 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" -#: core/models.py:856 +#: engine/core/models.py:867 msgid "discount percentage" msgstr "Tỷ lệ giảm giá" -#: core/models.py:861 +#: engine/core/models.py:872 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." -#: core/models.py:862 +#: engine/core/models.py:873 msgid "promotion name" msgstr "Tên chương trình khuyến mãi" -#: core/models.py:868 +#: engine/core/models.py:879 msgid "promotion description" msgstr "Mô tả chương trình khuyến mãi" -#: core/models.py:873 +#: engine/core/models.py:884 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." -#: core/models.py:874 +#: engine/core/models.py:885 msgid "included products" msgstr "Các sản phẩm được bao gồm" -#: core/models.py:878 +#: engine/core/models.py:889 msgid "promotion" msgstr "Khuyến mãi" -#: core/models.py:889 +#: engine/core/models.py:900 msgid "" "Represents a user's wishlist for storing and managing desired products. The " "class provides functionality to manage a collection of products, supporting " @@ -2132,64 +2174,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." -#: core/models.py:901 +#: engine/core/models.py:912 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" -#: core/models.py:909 +#: engine/core/models.py:920 msgid "user who owns this wishlist" msgstr "Người dùng sở hữu danh sách mong muốn này" -#: core/models.py:910 +#: engine/core/models.py:921 msgid "wishlist owner" msgstr "Chủ sở hữu Danh sách mong muốn" -#: core/models.py:918 +#: engine/core/models.py:929 msgid "wishlist" msgstr "Danh sách mong muốn" -#: core/models.py:960 +#: engine/core/models.py:971 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." -#: core/models.py:973 +#: engine/core/models.py:984 msgid "documentary" msgstr "Phim tài liệu" -#: core/models.py:974 +#: engine/core/models.py:985 msgid "documentaries" msgstr "Phim tài liệu" -#: core/models.py:984 +#: engine/core/models.py:995 msgid "unresolved" msgstr "Chưa được giải quyết" -#: core/models.py:989 +#: engine/core/models.py:1000 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 " @@ -2200,59 +2242,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." -#: core/models.py:1004 +#: engine/core/models.py:1015 msgid "address line for the customer" msgstr "Địa chỉ của khách hàng" -#: core/models.py:1005 +#: engine/core/models.py:1016 msgid "address line" msgstr "Dòng địa chỉ" -#: core/models.py:1007 +#: engine/core/models.py:1018 msgid "street" msgstr "Phố" -#: core/models.py:1008 +#: engine/core/models.py:1019 msgid "district" msgstr "Quận" -#: core/models.py:1009 +#: engine/core/models.py:1020 msgid "city" msgstr "Thành phố" -#: core/models.py:1010 +#: engine/core/models.py:1021 msgid "region" msgstr "Khu vực" -#: core/models.py:1011 +#: engine/core/models.py:1022 msgid "postal code" msgstr "Mã bưu chính" -#: core/models.py:1012 +#: engine/core/models.py:1023 msgid "country" msgstr "Quốc gia" -#: core/models.py:1019 +#: engine/core/models.py:1030 msgid "geolocation point: (longitude, latitude)" msgstr "Điểm định vị địa lý (Kinh độ, Vĩ độ)" -#: core/models.py:1022 +#: engine/core/models.py:1033 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" -#: core/models.py:1027 +#: engine/core/models.py:1038 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ý" -#: core/models.py:1035 +#: engine/core/models.py:1046 msgid "address" msgstr "Địa chỉ" -#: core/models.py:1036 +#: engine/core/models.py:1047 msgid "addresses" msgstr "Địa chỉ" -#: core/models.py:1048 +#: engine/core/models.py:1059 msgid "" "Represents a promotional code that can be used for discounts, managing its " "validity, type of discount, and application. The PromoCode class stores " @@ -2261,79 +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 "" -"Đạ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." -#: core/models.py:1062 +#: engine/core/models.py:1073 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á." -#: core/models.py:1063 +#: engine/core/models.py:1074 msgid "promo code identifier" msgstr "Mã khuyến mãi" -#: core/models.py:1070 +#: engine/core/models.py:1081 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." -#: core/models.py:1071 +#: engine/core/models.py:1082 msgid "fixed discount amount" msgstr "Số tiền giảm giá cố định" -#: core/models.py:1077 +#: engine/core/models.py:1088 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." -#: core/models.py:1078 +#: engine/core/models.py:1089 msgid "percentage discount" msgstr "Giảm giá theo phần trăm" -#: core/models.py:1083 +#: engine/core/models.py:1094 msgid "timestamp when the promocode expires" msgstr "Thời gian hết hạn của mã khuyến mãi" -#: core/models.py:1084 +#: engine/core/models.py:1095 msgid "end validity time" msgstr "Thời hạn hiệu lực kết thúc" -#: core/models.py:1089 +#: engine/core/models.py:1100 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" -#: core/models.py:1090 +#: engine/core/models.py:1101 msgid "start validity time" msgstr "Thời gian bắt đầu có hiệu lực" -#: core/models.py:1095 +#: engine/core/models.py:1106 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." -#: core/models.py:1096 +#: engine/core/models.py:1107 msgid "usage timestamp" msgstr "Dấu thời gian sử dụng" -#: core/models.py:1101 +#: engine/core/models.py:1112 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ó)." -#: core/models.py:1102 +#: engine/core/models.py:1113 msgid "assigned user" msgstr "Người dùng được chỉ định" -#: core/models.py:1109 +#: engine/core/models.py:1120 msgid "promo code" msgstr "Mã khuyến mãi" -#: core/models.py:1110 +#: engine/core/models.py:1121 msgid "promo codes" msgstr "Mã khuyến mãi" -#: core/models.py:1125 +#: engine/core/models.py:1136 msgid "" "only one type of discount should be defined (amount or percent), but not " "both or neither." @@ -2341,166 +2383,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." -#: core/models.py:1146 +#: engine/core/models.py:1157 msgid "promocode already used" msgstr "Mã khuyến mãi đã được sử dụng." -#: core/models.py:1162 +#: engine/core/models.py:1173 #, 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}!" -#: core/models.py:1171 +#: engine/core/models.py:1182 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." -#: core/models.py:1188 +#: engine/core/models.py:1199 msgid "the billing address used for this order" msgstr "Địa chỉ thanh toán được sử dụng cho đơn hàng này" -#: core/models.py:1196 +#: engine/core/models.py:1207 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." -#: core/models.py:1197 +#: engine/core/models.py:1208 msgid "applied promo code" msgstr "Đã áp dụng mã khuyến mãi" -#: core/models.py:1205 +#: engine/core/models.py:1216 msgid "the shipping address used for this order" msgstr "Địa chỉ giao hàng được sử dụng cho đơn hàng này" -#: core/models.py:1206 +#: engine/core/models.py:1217 msgid "shipping address" msgstr "Địa chỉ giao hàng" -#: core/models.py:1212 +#: engine/core/models.py:1223 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ó" -#: core/models.py:1213 +#: engine/core/models.py:1224 msgid "order status" msgstr "Tình trạng đơn hàng" -#: core/models.py:1218 core/models.py:1695 +#: engine/core/models.py:1229 engine/core/models.py:1755 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." -#: core/models.py:1224 +#: engine/core/models.py:1235 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" -#: core/models.py:1230 +#: engine/core/models.py:1241 msgid "the user who placed the order" msgstr "Người dùng đã đặt đơn hàng" -#: core/models.py:1231 +#: engine/core/models.py:1242 msgid "user" msgstr "Người dùng" -#: core/models.py:1237 +#: engine/core/models.py:1248 msgid "the timestamp when the order was finalized" msgstr "Thời gian ghi nhận khi đơn hàng được hoàn tất" -#: core/models.py:1238 +#: engine/core/models.py:1249 msgid "buy time" msgstr "Mua thời gian" -#: core/models.py:1245 +#: engine/core/models.py:1256 msgid "a human-readable identifier for the order" msgstr "Một định danh dễ đọc cho đơn hàng" -#: core/models.py:1246 +#: engine/core/models.py:1257 msgid "human readable id" msgstr "ID dễ đọc cho con người" -#: core/models.py:1252 +#: engine/core/models.py:1263 msgid "order" msgstr "Đặt hàng" -#: core/models.py:1294 +#: engine/core/models.py:1305 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!" -#: core/models.py:1326 +#: engine/core/models.py:1337 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ý." -#: core/models.py:1331 +#: engine/core/models.py:1342 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." -#: core/models.py:1348 +#: engine/core/models.py:1359 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." -#: core/models.py:1370 core/models.py:1395 core/models.py:1403 +#: engine/core/models.py:1381 engine/core/models.py:1406 +#: engine/core/models.py:1414 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ý." -#: core/models.py:1391 +#: engine/core/models.py:1402 #, 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}>!" -#: core/models.py:1423 +#: engine/core/models.py:1434 msgid "promocode does not exist" msgstr "Mã khuyến mãi không tồn tại" -#: core/models.py:1429 +#: engine/core/models.py:1440 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!" -#: core/models.py:1448 +#: engine/core/models.py:1459 msgid "address does not exist" msgstr "Địa chỉ không tồn tại" -#: core/models.py:1469 core/models.py:1538 +#: engine/core/models.py:1480 engine/core/models.py:1549 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." -#: core/models.py:1472 core/models.py:1534 +#: engine/core/models.py:1483 engine/core/models.py:1545 msgid "invalid force value" msgstr "Giá trị lực không hợp lệ" -#: core/models.py:1478 core/models.py:1541 +#: engine/core/models.py:1489 engine/core/models.py:1552 msgid "you cannot purchase an empty order!" msgstr "Bạn không thể đặt hàng trống!" -#: core/models.py:1497 +#: engine/core/models.py:1508 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!" -#: core/models.py:1511 +#: engine/core/models.py:1522 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ư!" -#: core/models.py:1516 +#: engine/core/models.py:1527 msgid "insufficient funds to complete the order" msgstr "Không đủ số tiền để hoàn tất đơn hàng." -#: core/models.py:1550 +#: engine/core/models.py:1561 msgid "" "you cannot buy without registration, please provide the following " "information: customer name, customer email, customer phone number" @@ -2509,7 +2552,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." -#: core/models.py:1559 +#: engine/core/models.py:1570 #, python-brace-format msgid "" "invalid payment method: {payment_method} from {available_payment_methods}" @@ -2517,7 +2560,48 @@ msgstr "" "Phương thức thanh toán không hợp lệ: {payment_method} từ " "{available_payment_methods}!" -#: core/models.py:1668 +#: engine/core/models.py:1685 +msgid "" +"Manages user feedback for products. This class is designed to capture and " +"store user feedback for specific products that they have purchased. It " +"contains attributes to store user comments, a reference to the related " +"product in the order, and a user-assigned rating. The class uses database " +"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ả." + +#: engine/core/models.py:1697 +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:1698 +msgid "feedback comments" +msgstr "Phản hồi" + +#: engine/core/models.py:1705 +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:1706 +msgid "related order product" +msgstr "Sản phẩm liên quan đến đơn hàng" + +#: engine/core/models.py:1711 +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:1712 +msgid "product rating" +msgstr "Đánh giá sản phẩm" + +#: engine/core/models.py:1728 msgid "" "Represents products associated with orders and their attributes. The " "OrderProduct model maintains information about a product that is part of an " @@ -2539,279 +2623,234 @@ 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." -#: core/models.py:1683 +#: engine/core/models.py:1743 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." -#: core/models.py:1684 +#: engine/core/models.py:1744 msgid "purchase price at order time" msgstr "Giá mua tại thời điểm đặt hàng" -#: core/models.py:1689 +#: engine/core/models.py:1749 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" -#: core/models.py:1690 +#: engine/core/models.py:1750 msgid "internal comments" msgstr "Nhận xét nội bộ" -#: core/models.py:1696 +#: engine/core/models.py:1756 msgid "user notifications" msgstr "Thông báo cho người dùng" -#: core/models.py:1701 +#: engine/core/models.py:1761 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" -#: core/models.py:1702 +#: engine/core/models.py:1762 msgid "ordered product attributes" msgstr "Thuộc tính sản phẩm đã đặt hàng" -#: core/models.py:1707 +#: engine/core/models.py:1767 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." -#: core/models.py:1708 +#: engine/core/models.py:1768 msgid "parent order" msgstr "Đơn đặt hàng của phụ huynh" -#: core/models.py:1717 +#: engine/core/models.py:1777 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" -#: core/models.py:1724 +#: engine/core/models.py:1784 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" -#: core/models.py:1725 +#: engine/core/models.py:1785 msgid "product quantity" msgstr "Số lượng sản phẩm" -#: core/models.py:1732 +#: engine/core/models.py:1792 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" -#: core/models.py:1733 +#: engine/core/models.py:1793 msgid "product line status" msgstr "Tình trạng dòng sản phẩm" -#: core/models.py:1798 +#: engine/core/models.py:1858 msgid "order product must have an order" msgstr "Sản phẩm đặt hàng phải có đơn hàng liên quan!" -#: core/models.py:1800 +#: engine/core/models.py:1860 #, python-brace-format msgid "wrong action specified for feedback: {action}" msgstr "Hành động sai được chỉ định cho phản hồi: {action}!" -#: core/models.py:1814 +#: engine/core/models.py:1874 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." -#: core/models.py:1820 +#: engine/core/models.py:1880 msgid "name" msgstr "Tên" -#: core/models.py:1821 +#: engine/core/models.py:1881 msgid "URL of the integration" msgstr "Đường dẫn URL của tích hợp" -#: core/models.py:1822 +#: engine/core/models.py:1882 msgid "authentication credentials" msgstr "Thông tin xác thực" -#: core/models.py:1844 +#: engine/core/models.py:1904 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." -#: core/models.py:1854 +#: engine/core/models.py:1914 msgid "CRM" msgstr "Hệ thống Quản lý Quan hệ Khách hàng" -#: core/models.py:1855 +#: engine/core/models.py:1915 msgid "CRMs" msgstr "Hệ thống Quản lý Quan hệ Khách hàng (CR" -#: core/models.py:1867 +#: engine/core/models.py:1927 msgid "order CRM link" msgstr "Liên kết CRM của đơn hàng" -#: core/models.py:1868 +#: engine/core/models.py:1928 msgid "orders CRM links" msgstr "Liên kết CRM của đơn hàng" -#: core/models.py:1873 +#: engine/core/models.py:1933 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." -#: core/models.py:1887 +#: engine/core/models.py:1947 msgid "download" msgstr "Tải xuống" -#: core/models.py:1888 +#: engine/core/models.py:1948 msgid "downloads" msgstr "Tải xuống" -#: core/models.py:1902 -msgid "" -"Manages user feedback for products. This class is designed to capture and " -"store user feedback for specific products that they have purchased. It " -"contains attributes to store user comments, a reference to the related " -"product in the order, and a user-assigned rating. The class uses database " -"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ả." - -#: core/models.py:1914 -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" - -#: core/models.py:1915 -msgid "feedback comments" -msgstr "Phản hồi" - -#: core/models.py:1922 -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." - -#: core/models.py:1923 -msgid "related order product" -msgstr "Sản phẩm liên quan đến đơn hàng" - -#: core/models.py:1928 -msgid "user-assigned rating for the product" -msgstr "Đánh giá do người dùng gán cho sản phẩm" - -#: core/models.py:1929 -msgid "product rating" -msgstr "Đánh giá sản phẩm" - -#: core/serializers/utility.py:89 +#: engine/core/serializers/utility.py:89 msgid "" "you must provide a comment, rating, and order product uuid to add feedback." msgstr "" "Bạn phải cung cấp bình luận, đánh giá và mã UUID của sản phẩm để thêm phản " "hồi." -#: core/signals.py:73 -msgid "error during promocode creation: {e!s}" -msgstr "Lỗi xảy ra trong quá trình tạo mã khuyến mãi: {e!s}" - -#: core/sitemaps.py:25 +#: engine/core/sitemaps.py:25 msgid "Home" msgstr "Trang chủ" -#: core/sitemaps.py:30 +#: engine/core/sitemaps.py:30 msgid "Contact Us" msgstr "Liên hệ với chúng tôi" -#: core/sitemaps.py:35 +#: engine/core/sitemaps.py:35 msgid "About Us" msgstr "Giới thiệu về chúng tôi" -#: core/templates/digital_order_created_email.html:7 -#: core/templates/digital_order_created_email.html:100 -#: core/templates/digital_order_delivered_email.html:6 -#: core/templates/shipped_order_created_email.html:7 -#: core/templates/shipped_order_created_email.html:99 -#: core/templates/shipped_order_delivered_email.html:7 -#: core/templates/shipped_order_delivered_email.html:99 +#: engine/core/templates/digital_order_created_email.html:7 +#: engine/core/templates/digital_order_created_email.html:100 +#: engine/core/templates/digital_order_delivered_email.html:6 +#: engine/core/templates/shipped_order_created_email.html:7 +#: engine/core/templates/shipped_order_created_email.html:99 +#: engine/core/templates/shipped_order_delivered_email.html:7 +#: engine/core/templates/shipped_order_delivered_email.html:99 msgid "order confirmation" msgstr "Xác nhận đơn hàng" -#: core/templates/digital_order_created_email.html:95 -#: core/templates/digital_order_delivered_email.html:94 -#: core/templates/promocode_granted_email.html:94 -#: core/templates/shipped_order_created_email.html:94 -#: core/templates/shipped_order_delivered_email.html:94 +#: engine/core/templates/digital_order_created_email.html:95 +#: engine/core/templates/digital_order_delivered_email.html:94 +#: engine/core/templates/promocode_granted_email.html:94 +#: engine/core/templates/shipped_order_created_email.html:94 +#: engine/core/templates/shipped_order_delivered_email.html:94 msgid "logo" msgstr "Biểu trưng" -#: core/templates/digital_order_created_email.html:101 -#: core/templates/shipped_order_created_email.html:100 -#: core/templates/shipped_order_delivered_email.html:100 +#: engine/core/templates/digital_order_created_email.html:101 +#: engine/core/templates/shipped_order_created_email.html:100 +#: engine/core/templates/shipped_order_delivered_email.html:100 #, python-format msgid "hello %(order.user.first_name)s," msgstr "Xin chào %(order.user.first_name)s," -#: core/templates/digital_order_created_email.html:102 +#: engine/core/templates/digital_order_created_email.html:102 #, 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 " "rằng đơn hàng của quý khách đã được tiếp nhận và đang được xử lý. Dưới đây " "là chi tiết đơn hàng của quý khách:" -#: core/templates/digital_order_created_email.html:112 -#: core/templates/digital_order_delivered_email.html:110 -#: core/templates/shipped_order_created_email.html:110 -#: core/templates/shipped_order_delivered_email.html:110 +#: engine/core/templates/digital_order_created_email.html:112 +#: engine/core/templates/digital_order_delivered_email.html:110 +#: engine/core/templates/shipped_order_created_email.html:110 +#: engine/core/templates/shipped_order_delivered_email.html:110 msgid "total" msgstr "Tổng cộng" -#: core/templates/digital_order_created_email.html:125 -#: core/templates/digital_order_delivered_email.html:157 -#: core/templates/shipped_order_created_email.html:127 -#: core/templates/shipped_order_delivered_email.html:127 +#: engine/core/templates/digital_order_created_email.html:125 +#: engine/core/templates/digital_order_delivered_email.html:157 +#: engine/core/templates/shipped_order_created_email.html:127 +#: engine/core/templates/shipped_order_delivered_email.html:127 msgid "total price" msgstr "Giá tổng cộng" -#: core/templates/digital_order_created_email.html:131 -#: core/templates/shipped_order_created_email.html:140 -#: core/templates/shipped_order_delivered_email.html:140 +#: engine/core/templates/digital_order_created_email.html:131 +#: engine/core/templates/shipped_order_created_email.html:140 +#: engine/core/templates/shipped_order_delivered_email.html:140 #, python-format 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." -#: core/templates/digital_order_created_email.html:133 +#: engine/core/templates/digital_order_created_email.html:133 #, python-format msgid "best regards,
the %(config.PROJECT_NAME)s team" msgstr "Trân trọng,
Đội ngũ %(config.PROJECT_NAME)s" -#: core/templates/digital_order_created_email.html:139 -#: core/templates/digital_order_delivered_email.html:171 -#: core/templates/promocode_granted_email.html:114 +#: engine/core/templates/digital_order_created_email.html:139 +#: engine/core/templates/digital_order_delivered_email.html:171 +#: engine/core/templates/promocode_granted_email.html:114 msgid "all rights reserved" msgstr "Tất cả các quyền được bảo lưu." -#: core/templates/digital_order_delivered_email.html:99 +#: engine/core/templates/digital_order_delivered_email.html:99 msgid "order delivered" msgstr "Đơn hàng đã được giao" -#: core/templates/digital_order_delivered_email.html:100 -#: core/templates/promocode_granted_email.html:100 +#: engine/core/templates/digital_order_delivered_email.html:100 +#: engine/core/templates/promocode_granted_email.html:100 #, python-format msgid "hello %(user_first_name)s," msgstr "Xin chào %(user_first_name)s," -#: core/templates/digital_order_delivered_email.html:101 +#: engine/core/templates/digital_order_delivered_email.html:101 #, python-format msgid "" "we have successfully processed your order №%(order_uuid)s! below are the\n" @@ -2820,131 +2859,132 @@ msgstr "" "Chúng tôi đã xử lý thành công đơn hàng của quý khách số №%(order_uuid)s! " "Dưới đây là chi tiết đơn hàng của quý khách:" -#: core/templates/digital_order_delivered_email.html:128 +#: engine/core/templates/digital_order_delivered_email.html:128 msgid "" "additional\n" " information" msgstr "Thông tin bổ sung" -#: core/templates/digital_order_delivered_email.html:137 -#: core/templates/json_table_widget.html:6 +#: engine/core/templates/digital_order_delivered_email.html:137 +#: engine/core/templates/json_table_widget.html:6 msgid "value" msgstr "Giá trị" -#: core/templates/digital_order_delivered_email.html:163 -#: core/templates/promocode_granted_email.html:106 +#: engine/core/templates/digital_order_delivered_email.html:163 +#: engine/core/templates/promocode_granted_email.html:106 #, python-format 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." -#: core/templates/digital_order_delivered_email.html:165 -#: core/templates/promocode_granted_email.html:108 +#: engine/core/templates/digital_order_delivered_email.html:165 +#: engine/core/templates/promocode_granted_email.html:108 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "Trân trọng,
Đội ngũ %(project_name)s" -#: core/templates/json_table_widget.html:5 +#: engine/core/templates/json_table_widget.html:5 msgid "key" msgstr "Chìa khóa" -#: core/templates/json_table_widget.html:40 +#: engine/core/templates/json_table_widget.html:40 msgid "Add Row" msgstr "Thêm hàng" -#: core/templates/promocode_granted_email.html:6 -#: core/templates/promocode_granted_email.html:99 +#: engine/core/templates/promocode_granted_email.html:6 +#: engine/core/templates/promocode_granted_email.html:99 msgid "promocode granted" msgstr "Mã khuyến mãi được cấp" -#: core/templates/promocode_granted_email.html:101 +#: engine/core/templates/promocode_granted_email.html:101 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" -#: core/templates/shipped_order_created_email.html:101 -#: core/templates/shipped_order_delivered_email.html:101 +#: 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 " "quý khách. Dưới đây là chi tiết đơn hàng của quý khách:" -#: core/templates/shipped_order_created_email.html:123 -#: core/templates/shipped_order_delivered_email.html:123 +#: engine/core/templates/shipped_order_created_email.html:123 +#: engine/core/templates/shipped_order_delivered_email.html:123 msgid "shipping price" msgstr "Giá vận chuyển" -#: core/templates/shipped_order_created_email.html:133 -#: core/templates/shipped_order_delivered_email.html:133 +#: engine/core/templates/shipped_order_created_email.html:133 +#: engine/core/templates/shipped_order_delivered_email.html:133 msgid "your order will be delivered to the following address:" msgstr "Đơn hàng của quý khách sẽ được giao đến địa chỉ sau:" -#: core/templates/shipped_order_created_email.html:142 -#: core/templates/shipped_order_delivered_email.html:142 +#: engine/core/templates/shipped_order_created_email.html:142 +#: engine/core/templates/shipped_order_delivered_email.html:142 #, python-format msgid "best regards,
The %(config.PROJECT_NAME)s team" msgstr "Trân trọng,
Đội ngũ %(config.PROJECT_NAME)s" -#: core/templates/shipped_order_created_email.html:147 -#: core/templates/shipped_order_delivered_email.html:147 +#: engine/core/templates/shipped_order_created_email.html:147 +#: engine/core/templates/shipped_order_delivered_email.html:147 msgid "" "all rights\n" " reserved" msgstr "Tất cả các quyền được bảo lưu." -#: core/utils/caching.py:44 +#: engine/core/utils/caching.py:44 msgid "both data and timeout are required" msgstr "Cả dữ liệu và thời gian chờ đều là bắt buộc." -#: core/utils/caching.py:46 +#: engine/core/utils/caching.py:46 msgid "invalid timeout value, it must be between 0 and 216000 seconds" msgstr "" "Giá trị thời gian chờ không hợp lệ, nó phải nằm trong khoảng từ 0 đến " "216.000 giây." -#: core/utils/emailing.py:27 +#: engine/core/utils/emailing.py:27 #, python-brace-format msgid "{config.PROJECT_NAME} | contact us initiated" msgstr "{config.PROJECT_NAME} | Liên hệ với chúng tôi đã được khởi tạo" -#: core/utils/emailing.py:73 +#: engine/core/utils/emailing.py:73 #, python-brace-format msgid "{config.PROJECT_NAME} | order confirmation" msgstr "{config.PROJECT_NAME} | Xác nhận đơn hàng" -#: core/utils/emailing.py:105 +#: engine/core/utils/emailing.py:105 #, python-brace-format msgid "{config.PROJECT_NAME} | order delivered" msgstr "{config.PROJECT_NAME} | Đơn hàng đã được giao" -#: core/utils/emailing.py:188 +#: engine/core/utils/emailing.py:188 #, python-brace-format msgid "{config.PROJECT_NAME} | promocode granted" msgstr "{config.PROJECT_NAME} | mã khuyến mãi được cấp" -#: core/utils/messages.py:3 +#: engine/core/utils/messages.py:3 msgid "you do not have permission to perform this action." msgstr "Bạn không có quyền thực hiện hành động này." -#: core/utils/nominatim.py:8 +#: engine/core/utils/nominatim.py:8 msgid "NOMINATIM_URL must be configured." msgstr "Tham số NOMINATIM_URL phải được cấu hình!" -#: core/validators.py:16 +#: engine/core/validators.py:16 #, python-brace-format msgid "image dimensions should not exceed w{max_width} x h{max_height} pixels" msgstr "" "Kích thước hình ảnh không được vượt quá w{max_width} x h{max_height} pixel!" -#: core/views.py:72 +#: engine/core/views.py:71 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." @@ -2952,7 +2992,7 @@ msgstr "" "Xử lý yêu cầu về sơ đồ trang web (sitemap index) và trả về phản hồi XML. Nó " "đảm bảo rằng phản hồi bao gồm tiêu đề loại nội dung XML phù hợp." -#: core/views.py:87 +#: engine/core/views.py:86 msgid "" "Handles the detailed view response for a sitemap. This function processes " "the request, fetches the appropriate sitemap detail response, and sets the " @@ -2962,17 +3002,17 @@ msgstr "" "lấy phản hồi chi tiết phù hợp của sơ đồ trang web và đặt tiêu đề Content-" "Type cho XML." -#: core/views.py:116 +#: engine/core/views.py:115 msgid "" "Returns a list of supported languages and their corresponding information." msgstr "" "Trả về danh sách các ngôn ngữ được hỗ trợ và thông tin tương ứng của chúng." -#: core/views.py:148 +#: engine/core/views.py:147 msgid "Returns the parameters of the website as a JSON object." msgstr "Trả về các tham số của trang web dưới dạng đối tượng JSON." -#: core/views.py:167 +#: engine/core/views.py:166 msgid "" "Handles cache operations such as reading and setting cache data with a " "specified key and timeout." @@ -2980,83 +3020,85 @@ msgstr "" "Xử lý các thao tác bộ nhớ đệm như đọc và ghi dữ liệu bộ nhớ đệm với khóa và " "thời gian chờ được chỉ định." -#: core/views.py:194 +#: engine/core/views.py:193 msgid "Handles `contact us` form submissions." msgstr "Xử lý các biểu mẫu liên hệ." -#: core/views.py:215 +#: engine/core/views.py:214 msgid "" "Handles requests for processing and validating URLs from incoming POST " "requests." msgstr "Xử lý các yêu cầu xử lý và xác thực URL từ các yêu cầu POST đến." -#: core/views.py:255 +#: engine/core/views.py:254 msgid "Handles global search queries." msgstr "Xử lý các truy vấn tìm kiếm toàn cầu." -#: core/views.py:270 +#: engine/core/views.py:269 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ý." -#: core/views.py:306 +#: engine/core/views.py:305 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." -#: core/views.py:316 +#: engine/core/views.py:315 msgid "order_product_uuid is required" msgstr "order_product_uuid là trường bắt buộc." -#: core/views.py:322 +#: engine/core/views.py:321 msgid "you can only download the digital asset once" msgstr "Bạn chỉ có thể tải xuống tài sản kỹ thuật số một lần." -#: core/views.py:325 +#: engine/core/views.py:324 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ố." -#: core/views.py:331 +#: engine/core/views.py:330 msgid "the order product does not have a product" msgstr "Sản phẩm đặt hàng không có sản phẩm." -#: core/views.py:369 +#: engine/core/views.py:368 msgid "favicon not found" msgstr "Biểu tượng trang web không tìm thấy" -#: core/views.py:374 +#: engine/core/views.py:373 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." -#: core/views.py:386 +#: engine/core/views.py:385 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." -#: core/views.py:399 +#: engine/core/views.py:398 msgid "Returns current version of the eVibes. " msgstr "Trả về phiên bản hiện tại của eVibes." -#: core/viewsets.py:137 +#: engine/core/viewsets.py:137 msgid "" "Defines a viewset for managing Evibes-related operations. The EvibesViewSet " "class inherits from ModelViewSet and provides functionality for handling " @@ -3070,21 +3112,20 @@ msgstr "" "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ị." -#: core/viewsets.py:157 +#: engine/core/viewsets.py:157 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." -#: core/viewsets.py:176 +#: engine/core/viewsets.py:176 msgid "" "Handles operations related to Attribute objects within the application. " "Provides a set of API endpoints to interact with Attribute data. This class " @@ -3096,17 +3137,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." -#: core/viewsets.py:195 +#: engine/core/viewsets.py:195 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 " @@ -3114,7 +3155,7 @@ msgstr "" "sử dụng các trình serializer phù hợp cho các hành động khác nhau. Khả năng " "lọc được cung cấp thông qua DjangoFilterBackend." -#: core/viewsets.py:214 +#: engine/core/viewsets.py:214 msgid "" "Manages views for Category-related operations. The CategoryViewSet class is " "responsible for handling operations related to the Category model in the " @@ -3128,7 +3169,7 @@ msgstr "" "của các danh mục. Chế độ xem này cũng áp dụng các quyền truy cập để đảm bảo " "chỉ những người dùng được ủy quyền mới có thể truy cập vào dữ liệu cụ thể." -#: core/viewsets.py:326 +#: engine/core/viewsets.py:326 msgid "" "Represents a viewset for managing Brand instances. This class provides " "functionality for querying, filtering, and serializing Brand objects. It " @@ -3140,7 +3181,7 @@ msgstr "" "thương hiệu. Nó sử dụng khung ViewSet của Django để đơn giản hóa việc triển " "khai các điểm cuối API cho các đối tượng thương hiệu." -#: core/viewsets.py:438 +#: engine/core/viewsets.py:438 msgid "" "Manages operations related to the `Product` model in the system. This class " "provides a viewset for managing products, including their filtering, " @@ -3158,7 +3199,7 @@ msgstr "" "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." -#: core/viewsets.py:568 +#: engine/core/viewsets.py:568 msgid "" "Represents a viewset for managing Vendor objects. This viewset allows " "fetching, filtering, and serializing Vendor data. It defines the queryset, " @@ -3173,13 +3214,13 @@ msgstr "" "khác nhau. Mục đích của lớp này là cung cấp truy cập thuận tiện đến các tài " "nguyên liên quan đến Nhà cung cấp thông qua khung làm việc Django REST." -#: core/viewsets.py:588 +#: engine/core/viewsets.py:588 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 `EvibesViewSet` 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 " @@ -3189,18 +3230,18 @@ msgstr "" "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." -#: core/viewsets.py:615 +#: engine/core/viewsets.py:615 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 " @@ -3208,12 +3249,12 @@ msgstr "" "serializer khác nhau tùy thuộc vào hành động cụ thể đang được thực hiện và " "áp dụng quyền truy cập tương ứng khi tương tác với dữ liệu đơn hàng." -#: core/viewsets.py:813 +#: engine/core/viewsets.py:813 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 " @@ -3223,11 +3264,11 @@ msgstr "" "hành động được yêu cầu. Ngoài ra, nó cung cấp một hành động chi tiết để xử " "lý phản hồi cho các thực thể OrderProduct." -#: core/viewsets.py:867 +#: engine/core/viewsets.py:867 msgid "Manages operations related to Product images in the application. " msgstr "Quản lý các hoạt động liên quan đến hình ảnh sản phẩm trong ứng dụng." -#: core/viewsets.py:880 +#: engine/core/viewsets.py:880 msgid "" "Manages the retrieval and handling of PromoCode instances through various " "API actions." @@ -3235,20 +3276,20 @@ msgstr "" "Quản lý việc truy xuất và xử lý các thực thể PromoCode thông qua các hành " "động API khác nhau." -#: core/viewsets.py:902 +#: engine/core/viewsets.py:902 msgid "Represents a view set for managing promotions. " msgstr "Đại diện cho một bộ xem để quản lý các chương trình khuyến mãi." -#: core/viewsets.py:915 +#: engine/core/viewsets.py:915 msgid "Handles operations related to Stock data in the system." msgstr "Quản lý các hoạt động liên quan đến dữ liệu kho trong hệ thống." -#: core/viewsets.py:929 +#: engine/core/viewsets.py:929 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." @@ -3256,13 +3297,13 @@ 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." -#: core/viewsets.py:1044 +#: engine/core/viewsets.py:1044 msgid "" "This class provides viewset functionality for managing `Address` objects. " "The AddressViewSet class enables CRUD operations, filtering, and custom " @@ -3271,17 +3312,17 @@ 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." -#: core/viewsets.py:1111 +#: engine/core/viewsets.py:1111 #, python-brace-format msgid "Geocoding error: {e}" msgstr "Lỗi địa chỉ địa lý: {e}" -#: core/viewsets.py:1119 +#: engine/core/viewsets.py:1119 msgid "" "Handles operations related to Product Tags within the application. This " "class provides functionality for retrieving, filtering, and serializing " @@ -3289,8 +3330,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 new file mode 100644 index 00000000..6de3640f Binary files /dev/null and b/engine/core/locale/zh_Hans/LC_MESSAGES/django.mo differ diff --git a/core/locale/zh_Hans/LC_MESSAGES/django.po b/engine/core/locale/zh_Hans/LC_MESSAGES/django.po similarity index 59% rename from core/locale/zh_Hans/LC_MESSAGES/django.po rename to engine/core/locale/zh_Hans/LC_MESSAGES/django.po index b1fc6886..41f42204 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,176 +13,178 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: core/abstract.py:12 +#: engine/core/abstract.py:12 msgid "unique id" msgstr "唯一 ID" -#: core/abstract.py:13 +#: engine/core/abstract.py:13 msgid "unique id is used to surely identify any database object" msgstr "唯一 ID 用于确定识别任何数据库对象" -#: core/abstract.py:20 +#: engine/core/abstract.py:20 msgid "is active" msgstr "处于活动状态" -#: core/abstract.py:21 +#: engine/core/abstract.py:21 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,则没有必要权限的用户无法查看此对象" -#: core/abstract.py:23 core/choices.py:18 +#: engine/core/abstract.py:23 engine/core/choices.py:18 msgid "created" msgstr "创建" -#: core/abstract.py:23 +#: engine/core/abstract.py:23 msgid "when the object first appeared on the database" msgstr "对象首次出现在数据库中的时间" -#: core/abstract.py:24 +#: engine/core/abstract.py:24 msgid "modified" msgstr "改装" -#: core/abstract.py:24 +#: engine/core/abstract.py:24 msgid "when the object was last modified" msgstr "对象最后一次编辑的时间" -#: core/admin.py:68 +#: engine/core/admin.py:68 msgid "translations" msgstr "翻译" -#: core/admin.py:72 +#: engine/core/admin.py:72 msgid "general" msgstr "一般情况" -#: core/admin.py:74 +#: engine/core/admin.py:74 msgid "relations" msgstr "关系" -#: core/admin.py:76 +#: engine/core/admin.py:76 msgid "additional info" msgstr "其他信息" -#: core/admin.py:94 +#: engine/core/admin.py:94 msgid "metadata" msgstr "元数据" -#: core/admin.py:101 +#: engine/core/admin.py:101 msgid "timestamps" msgstr "时间戳" -#: core/admin.py:116 +#: engine/core/admin.py:116 #, python-format msgid "activate selected %(verbose_name_plural)s" msgstr "激活选定的 %(verbose_name_plural)s" -#: core/admin.py:121 +#: engine/core/admin.py:121 msgid "selected items have been activated." msgstr "所选项目已激活!" -#: core/admin.py:127 +#: engine/core/admin.py:127 #, python-format msgid "deactivate selected %(verbose_name_plural)s" msgstr "停用选定的 %(verbose_name_plural)s" -#: core/admin.py:132 +#: engine/core/admin.py:132 msgid "selected items have been deactivated." msgstr "选定项目已停用!" -#: core/admin.py:144 core/graphene/object_types.py:582 -#: core/graphene/object_types.py:589 core/models.py:783 core/models.py:791 +#: engine/core/admin.py:144 engine/core/graphene/object_types.py:586 +#: engine/core/graphene/object_types.py:593 engine/core/models.py:794 +#: engine/core/models.py:802 msgid "attribute value" msgstr "属性值" -#: core/admin.py:145 core/graphene/object_types.py:75 core/models.py:792 +#: engine/core/admin.py:145 engine/core/graphene/object_types.py:75 +#: engine/core/models.py:803 msgid "attribute values" msgstr "属性值" -#: core/admin.py:156 +#: engine/core/admin.py:156 msgid "image" msgstr "图片" -#: core/admin.py:157 core/graphene/object_types.py:474 +#: engine/core/admin.py:157 engine/core/graphene/object_types.py:474 msgid "images" msgstr "图片" -#: core/admin.py:168 core/models.py:559 +#: engine/core/admin.py:169 engine/core/models.py:559 msgid "stock" msgstr "库存" -#: core/admin.py:169 core/graphene/object_types.py:636 +#: engine/core/admin.py:170 engine/core/graphene/object_types.py:640 msgid "stocks" msgstr "股票" -#: core/admin.py:182 core/models.py:1744 +#: engine/core/admin.py:183 engine/core/models.py:1804 msgid "order product" msgstr "订购产品" -#: core/admin.py:183 core/graphene/object_types.py:389 core/models.py:1745 +#: engine/core/admin.py:184 engine/core/graphene/object_types.py:389 +#: engine/core/models.py:1805 msgid "order products" msgstr "订购产品" -#: core/admin.py:196 core/admin.py:197 +#: engine/core/admin.py:197 engine/core/admin.py:198 msgid "children" msgstr "儿童" -#: core/admin.py:965 +#: engine/core/admin.py:969 msgid "Config" msgstr "配置" -#: core/apps.py:8 +#: engine/core/apps.py:8 msgid "core" msgstr "核心" -#: core/choices.py:4 core/choices.py:20 +#: engine/core/choices.py:4 engine/core/choices.py:20 msgid "finished" msgstr "完成" -#: core/choices.py:5 core/choices.py:19 +#: engine/core/choices.py:5 engine/core/choices.py:19 msgid "delivering" msgstr "交付" -#: core/choices.py:6 +#: engine/core/choices.py:6 msgid "delivered" msgstr "已交付" -#: core/choices.py:7 +#: engine/core/choices.py:7 msgid "canceled" msgstr "已取消" -#: core/choices.py:8 core/choices.py:16 core/choices.py:24 +#: engine/core/choices.py:8 engine/core/choices.py:16 engine/core/choices.py:24 msgid "failed" msgstr "失败" -#: core/choices.py:9 core/choices.py:15 +#: engine/core/choices.py:9 engine/core/choices.py:15 msgid "pending" msgstr "待定" -#: core/choices.py:10 +#: engine/core/choices.py:10 msgid "accepted" msgstr "已接受" -#: core/choices.py:11 +#: engine/core/choices.py:11 msgid "money returned" msgstr "退还的款项" -#: core/choices.py:17 +#: engine/core/choices.py:17 msgid "payment" msgstr "付款方式" -#: core/choices.py:21 +#: engine/core/choices.py:21 msgid "momental" msgstr "时刻" -#: core/choices.py:24 +#: engine/core/choices.py:24 msgid "successful" msgstr "成功" -#: core/docs/drf/views.py:17 core/graphene/mutations.py:38 +#: engine/core/docs/drf/views.py:17 engine/core/graphene/mutations.py:38 msgid "cache I/O" msgstr "缓存输入/输出" -#: core/docs/drf/views.py:19 +#: engine/core/docs/drf/views.py:19 msgid "" "apply only a key to read permitted data from cache.\n" "apply key, data and timeout with authentication to write data to cache." @@ -190,1260 +192,1299 @@ msgstr "" "仅使用密钥从缓存中读取允许的数据。\n" "应用密钥、数据和带验证的超时,将数据写入缓存。" -#: core/docs/drf/views.py:32 +#: engine/core/docs/drf/views.py:32 msgid "get a list of supported languages" msgstr "获取支持的语言列表" -#: core/docs/drf/views.py:41 +#: engine/core/docs/drf/views.py:41 msgid "get application's exposable parameters" msgstr "获取应用程序的可公开参数" -#: core/docs/drf/views.py:48 +#: engine/core/docs/drf/views.py:48 msgid "send a message to the support team" msgstr "向支持团队发送信息" -#: core/docs/drf/views.py:59 core/graphene/mutations.py:58 +#: engine/core/docs/drf/views.py:59 engine/core/graphene/mutations.py:58 msgid "request a CORSed URL" msgstr "请求 CORSed URL。只允许使用 https。" -#: core/docs/drf/views.py:85 +#: engine/core/docs/drf/views.py:85 msgid "global search endpoint to query across project's tables" msgstr "全局搜索端点可跨项目表格进行查询" -#: core/docs/drf/views.py:91 +#: engine/core/docs/drf/views.py:91 msgid "purchase an order as a business" msgstr "以企业身份购买订单" -#: core/docs/drf/views.py:98 +#: engine/core/docs/drf/views.py:98 msgid "" "purchase an order as a business, using the provided `products` with " "`product_uuid` and `attributes`." -msgstr "使用提供的带有 `product_uuid` 和 `attributes` 的 `products` 作为企业购买订单。" +msgstr "" +"使用提供的带有 `product_uuid` 和 `attributes` 的 `products` 作为企业购买订" +"单。" -#: core/docs/drf/viewsets.py:58 +#: engine/core/docs/drf/viewsets.py:58 msgid "list all attribute groups (simple view)" msgstr "列出所有属性组(简单视图)" -#: core/docs/drf/viewsets.py:62 +#: engine/core/docs/drf/viewsets.py:62 msgid "retrieve a single attribute group (detailed view)" msgstr "检索单个属性组(详细视图)" -#: core/docs/drf/viewsets.py:66 +#: engine/core/docs/drf/viewsets.py:66 msgid "create an attribute group" msgstr "创建属性组" -#: core/docs/drf/viewsets.py:70 +#: engine/core/docs/drf/viewsets.py:70 msgid "delete an attribute group" msgstr "删除属性组" -#: core/docs/drf/viewsets.py:74 +#: engine/core/docs/drf/viewsets.py:74 msgid "rewrite an existing attribute group saving non-editables" msgstr "重写保存不可编辑的现有属性组" -#: core/docs/drf/viewsets.py:78 -msgid "" -"rewrite some fields of an existing attribute group saving non-editables" +#: engine/core/docs/drf/viewsets.py:78 +msgid "rewrite some fields of an existing attribute group saving non-editables" msgstr "重写现有属性组的某些字段,保存不可编辑的内容" -#: core/docs/drf/viewsets.py:85 +#: engine/core/docs/drf/viewsets.py:85 msgid "list all attributes (simple view)" msgstr "列出所有属性(简单视图)" -#: core/docs/drf/viewsets.py:89 +#: engine/core/docs/drf/viewsets.py:89 msgid "retrieve a single attribute (detailed view)" msgstr "检索单个属性(详细视图)" -#: core/docs/drf/viewsets.py:93 +#: engine/core/docs/drf/viewsets.py:93 msgid "create an attribute" msgstr "创建属性" -#: core/docs/drf/viewsets.py:97 +#: engine/core/docs/drf/viewsets.py:97 msgid "delete an attribute" msgstr "删除属性" -#: core/docs/drf/viewsets.py:101 +#: engine/core/docs/drf/viewsets.py:101 msgid "rewrite an existing attribute saving non-editables" msgstr "重写现有属性,保存不可编辑属性" -#: core/docs/drf/viewsets.py:105 +#: engine/core/docs/drf/viewsets.py:105 msgid "rewrite some fields of an existing attribute saving non-editables" msgstr "重写现有属性的某些字段,保存不可编辑的内容" -#: core/docs/drf/viewsets.py:112 +#: engine/core/docs/drf/viewsets.py:112 msgid "list all attribute values (simple view)" msgstr "列出所有属性值(简单视图)" -#: core/docs/drf/viewsets.py:116 +#: engine/core/docs/drf/viewsets.py:116 msgid "retrieve a single attribute value (detailed view)" msgstr "读取单个属性值(详细视图)" -#: core/docs/drf/viewsets.py:120 +#: engine/core/docs/drf/viewsets.py:120 msgid "create an attribute value" msgstr "创建属性值" -#: core/docs/drf/viewsets.py:124 +#: engine/core/docs/drf/viewsets.py:124 msgid "delete an attribute value" msgstr "删除属性值" -#: core/docs/drf/viewsets.py:128 +#: engine/core/docs/drf/viewsets.py:128 msgid "rewrite an existing attribute value saving non-editables" msgstr "重写现有属性值,保存不可编辑属性" -#: core/docs/drf/viewsets.py:132 -msgid "" -"rewrite some fields of an existing attribute value saving non-editables" +#: engine/core/docs/drf/viewsets.py:132 +msgid "rewrite some fields of an existing attribute value saving non-editables" msgstr "重写现有属性值的某些字段,保存不可编辑的属性值" -#: core/docs/drf/viewsets.py:139 core/docs/drf/viewsets.py:140 +#: engine/core/docs/drf/viewsets.py:139 engine/core/docs/drf/viewsets.py:140 msgid "list all categories (simple view)" msgstr "列出所有类别(简单视图)" -#: core/docs/drf/viewsets.py:144 core/docs/drf/viewsets.py:145 +#: engine/core/docs/drf/viewsets.py:144 engine/core/docs/drf/viewsets.py:145 msgid "retrieve a single category (detailed view)" msgstr "检索单个类别(详细视图)" -#: core/docs/drf/viewsets.py:149 core/docs/drf/viewsets.py:150 -msgid "create a category" -msgstr "创建类别" - -#: core/docs/drf/viewsets.py:154 core/docs/drf/viewsets.py:155 -msgid "delete a category" -msgstr "删除类别" - -#: core/docs/drf/viewsets.py:159 core/docs/drf/viewsets.py:160 -msgid "rewrite an existing category saving non-editables" -msgstr "重写现有类别,保存不可编辑内容" - -#: core/docs/drf/viewsets.py:164 core/docs/drf/viewsets.py:165 -msgid "rewrite some fields of an existing category saving non-editables" -msgstr "重写现有类别的某些字段,保存不可编辑内容" - -#: core/docs/drf/viewsets.py:169 core/docs/drf/viewsets.py:501 -#: core/graphene/object_types.py:117 core/graphene/object_types.py:207 -#: core/graphene/object_types.py:482 -msgid "SEO Meta snapshot" -msgstr "搜索引擎优化元快照" - -#: core/docs/drf/viewsets.py:170 -msgid "returns a snapshot of the category's SEO meta data" -msgstr "返回类别的搜索引擎优化元数据快照" - -#: core/docs/drf/viewsets.py:175 +#: engine/core/docs/drf/viewsets.py:150 engine/core/docs/drf/viewsets.py:183 msgid "Category UUID or slug" msgstr "类别 UUID 或标签" -#: core/docs/drf/viewsets.py:188 +#: engine/core/docs/drf/viewsets.py:157 engine/core/docs/drf/viewsets.py:158 +msgid "create a category" +msgstr "创建类别" + +#: engine/core/docs/drf/viewsets.py:162 engine/core/docs/drf/viewsets.py:163 +msgid "delete a category" +msgstr "删除类别" + +#: engine/core/docs/drf/viewsets.py:167 engine/core/docs/drf/viewsets.py:168 +msgid "rewrite an existing category saving non-editables" +msgstr "重写现有类别,保存不可编辑内容" + +#: engine/core/docs/drf/viewsets.py:172 engine/core/docs/drf/viewsets.py:173 +msgid "rewrite some fields of an existing category saving non-editables" +msgstr "重写现有类别的某些字段,保存不可编辑内容" + +#: engine/core/docs/drf/viewsets.py:177 engine/core/docs/drf/viewsets.py:517 +#: engine/core/graphene/object_types.py:117 +#: engine/core/graphene/object_types.py:207 +#: engine/core/graphene/object_types.py:482 +msgid "SEO Meta snapshot" +msgstr "搜索引擎优化元快照" + +#: engine/core/docs/drf/viewsets.py:178 +msgid "returns a snapshot of the category's SEO meta data" +msgstr "返回类别的搜索引擎优化元数据快照" + +#: engine/core/docs/drf/viewsets.py:196 msgid "list all orders (simple view)" msgstr "列出所有类别(简单视图)" -#: core/docs/drf/viewsets.py:189 +#: engine/core/docs/drf/viewsets.py:197 msgid "for non-staff users, only their own orders are returned." msgstr "对于非工作人员用户,只有他们自己的订单才会被退回。" -#: core/docs/drf/viewsets.py:195 +#: engine/core/docs/drf/viewsets.py:203 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 中进行不区分大小写的子串搜索" -#: core/docs/drf/viewsets.py:202 +#: engine/core/docs/drf/viewsets.py:210 msgid "Filter orders with buy_time >= this ISO 8601 datetime" msgstr "过滤买入时间 >= 此 ISO 8601 日期的订单" -#: core/docs/drf/viewsets.py:207 +#: engine/core/docs/drf/viewsets.py:215 msgid "Filter orders with buy_time <= this ISO 8601 datetime" msgstr "过滤买入时间 <= 此 ISO 8601 日期的订单" -#: core/docs/drf/viewsets.py:212 +#: engine/core/docs/drf/viewsets.py:220 msgid "Filter by exact order UUID" msgstr "按准确订单 UUID 筛选" -#: core/docs/drf/viewsets.py:217 +#: engine/core/docs/drf/viewsets.py:225 msgid "Filter by exact human-readable order ID" msgstr "根据准确的人工可读订单 ID 进行筛选" -#: core/docs/drf/viewsets.py:222 +#: engine/core/docs/drf/viewsets.py:230 msgid "Filter by user's email (case-insensitive exact match)" msgstr "按用户电子邮件过滤(不区分大小写精确匹配)" -#: core/docs/drf/viewsets.py:227 +#: engine/core/docs/drf/viewsets.py:235 msgid "Filter by user's UUID" msgstr "按用户的 UUID 筛选" -#: core/docs/drf/viewsets.py:232 +#: engine/core/docs/drf/viewsets.py:240 msgid "Filter by order status (case-insensitive substring match)" msgstr "按订单状态筛选(不区分大小写的子串匹配)" -#: core/docs/drf/viewsets.py:238 +#: engine/core/docs/drf/viewsets.py:246 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\")。" -#: core/docs/drf/viewsets.py:247 +#: engine/core/docs/drf/viewsets.py:255 msgid "retrieve a single order (detailed view)" msgstr "检索单个类别(详细视图)" -#: core/docs/drf/viewsets.py:251 +#: engine/core/docs/drf/viewsets.py:260 +msgid "Order UUID or human-readable id" +msgstr "订单 UUID 或人类可读 ID" + +#: engine/core/docs/drf/viewsets.py:267 msgid "create an order" msgstr "创建属性" -#: core/docs/drf/viewsets.py:252 +#: engine/core/docs/drf/viewsets.py:268 msgid "doesn't work for non-staff users." msgstr "不适用于非工作人员用户。" -#: core/docs/drf/viewsets.py:256 +#: engine/core/docs/drf/viewsets.py:272 msgid "delete an order" msgstr "删除属性" -#: core/docs/drf/viewsets.py:260 +#: engine/core/docs/drf/viewsets.py:276 msgid "rewrite an existing order saving non-editables" msgstr "重写现有类别,保存不可编辑内容" -#: core/docs/drf/viewsets.py:264 +#: engine/core/docs/drf/viewsets.py:280 msgid "rewrite some fields of an existing order saving non-editables" msgstr "重写现有类别的某些字段,保存不可编辑内容" -#: core/docs/drf/viewsets.py:268 +#: engine/core/docs/drf/viewsets.py:284 msgid "purchase an order" msgstr "订购时的购买价格" -#: core/docs/drf/viewsets.py:270 +#: engine/core/docs/drf/viewsets.py:286 msgid "" "finalizes the order purchase. if `force_balance` is used, the purchase is " "completed using the user's balance; if `force_payment` is used, a " "transaction is initiated." -msgstr "完成订单购买。如果使用 \"force_balance\",则使用用户的余额完成购买;如果使用 \"force_payment\",则启动交易。" +msgstr "" +"完成订单购买。如果使用 \"force_balance\",则使用用户的余额完成购买;如果使用 " +"\"force_payment\",则启动交易。" -#: core/docs/drf/viewsets.py:282 core/graphene/mutations.py:335 +#: engine/core/docs/drf/viewsets.py:298 engine/core/graphene/mutations.py:335 msgid "purchase an order without account creation" msgstr "无需创建账户即可购买订单" -#: core/docs/drf/viewsets.py:283 +#: engine/core/docs/drf/viewsets.py:299 msgid "finalizes the order purchase for a non-registered user." msgstr "完成非注册用户的订单购买。" -#: core/docs/drf/viewsets.py:291 +#: engine/core/docs/drf/viewsets.py:307 msgid "add product to order" msgstr "在订单中添加产品" -#: core/docs/drf/viewsets.py:292 +#: engine/core/docs/drf/viewsets.py:308 msgid "" "adds a product to an order using the provided `product_uuid` and " "`attributes`." msgstr "使用提供的 `product_uuid` 和 `attributes` 将产品添加到订单中。" -#: core/docs/drf/viewsets.py:297 +#: engine/core/docs/drf/viewsets.py:313 msgid "add a list of products to order, quantities will not count" msgstr "添加要订购的产品列表,不计算数量" -#: core/docs/drf/viewsets.py:298 +#: engine/core/docs/drf/viewsets.py:314 msgid "" "adds a list of products to an order using the provided `product_uuid` and " "`attributes`." msgstr "使用提供的 `product_uuid` 和 `attributes` 将产品列表添加到订单中。" -#: core/docs/drf/viewsets.py:303 +#: engine/core/docs/drf/viewsets.py:319 msgid "remove product from order" msgstr "从订单中删除产品" -#: core/docs/drf/viewsets.py:304 +#: engine/core/docs/drf/viewsets.py:320 msgid "" "removes a product from an order using the provided `product_uuid` and " "`attributes`." msgstr "使用提供的 `product_uuid` 和 `attributes` 从订单中删除产品。" -#: core/docs/drf/viewsets.py:309 +#: engine/core/docs/drf/viewsets.py:325 msgid "remove product from order, quantities will not count" msgstr "从订单中删除产品,不计算数量" -#: core/docs/drf/viewsets.py:310 +#: engine/core/docs/drf/viewsets.py:326 msgid "" "removes a list of products from an order using the provided `product_uuid` " "and `attributes`" msgstr "使用提供的 `product_uuid` 和 `attributes` 从订单中删除产品列表。" -#: core/docs/drf/viewsets.py:318 +#: engine/core/docs/drf/viewsets.py:334 msgid "list all wishlists (simple view)" msgstr "列出所有属性(简单视图)" -#: core/docs/drf/viewsets.py:319 +#: engine/core/docs/drf/viewsets.py:335 msgid "for non-staff users, only their own wishlists are returned." msgstr "对于非工作人员用户,只返回他们自己的愿望清单。" -#: core/docs/drf/viewsets.py:323 +#: engine/core/docs/drf/viewsets.py:339 msgid "retrieve a single wishlist (detailed view)" msgstr "检索单个属性(详细视图)" -#: core/docs/drf/viewsets.py:327 +#: engine/core/docs/drf/viewsets.py:343 msgid "create an wishlist" msgstr "创建属性" -#: core/docs/drf/viewsets.py:328 +#: engine/core/docs/drf/viewsets.py:344 msgid "Doesn't work for non-staff users." msgstr "不适用于非工作人员用户。" -#: core/docs/drf/viewsets.py:332 +#: engine/core/docs/drf/viewsets.py:348 msgid "delete an wishlist" msgstr "删除属性" -#: core/docs/drf/viewsets.py:336 +#: engine/core/docs/drf/viewsets.py:352 msgid "rewrite an existing wishlist saving non-editables" msgstr "重写现有属性,保存不可编辑属性" -#: core/docs/drf/viewsets.py:340 +#: engine/core/docs/drf/viewsets.py:356 msgid "rewrite some fields of an existing wishlist saving non-editables" msgstr "重写现有属性的某些字段,保存不可编辑的内容" -#: core/docs/drf/viewsets.py:344 +#: engine/core/docs/drf/viewsets.py:360 msgid "add product to wishlist" msgstr "在订单中添加产品" -#: core/docs/drf/viewsets.py:345 +#: engine/core/docs/drf/viewsets.py:361 msgid "adds a product to an wishlist using the provided `product_uuid`" msgstr "使用提供的 `product_uuid` 将产品添加到愿望清单中" -#: core/docs/drf/viewsets.py:350 +#: engine/core/docs/drf/viewsets.py:366 msgid "remove product from wishlist" msgstr "从愿望清单中删除产品" -#: core/docs/drf/viewsets.py:351 +#: engine/core/docs/drf/viewsets.py:367 msgid "removes a product from an wishlist using the provided `product_uuid`" msgstr "使用提供的 `product_uuid` 从愿望清单中删除产品" -#: core/docs/drf/viewsets.py:356 +#: engine/core/docs/drf/viewsets.py:372 msgid "add many products to wishlist" msgstr "将许多产品添加到愿望清单" -#: core/docs/drf/viewsets.py:357 +#: engine/core/docs/drf/viewsets.py:373 msgid "adds many products to an wishlist using the provided `product_uuids`" msgstr "使用提供的 `product_uuids` 将许多产品添加到愿望清单中" -#: core/docs/drf/viewsets.py:362 +#: engine/core/docs/drf/viewsets.py:378 msgid "remove many products from wishlist" msgstr "从订单中删除产品" -#: core/docs/drf/viewsets.py:363 +#: engine/core/docs/drf/viewsets.py:379 msgid "" "removes many products from an wishlist using the provided `product_uuids`" msgstr "使用提供的 `product_uuids` 从愿望清单中删除多个产品" -#: core/docs/drf/viewsets.py:370 +#: engine/core/docs/drf/viewsets.py:386 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" +"- 方法**(如果省略,默认为 `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`." -#: core/docs/drf/viewsets.py:386 core/docs/drf/viewsets.py:387 +#: engine/core/docs/drf/viewsets.py:402 engine/core/docs/drf/viewsets.py:403 msgid "list all products (simple view)" msgstr "列出所有产品(简单视图)" -#: core/docs/drf/viewsets.py:392 +#: engine/core/docs/drf/viewsets.py:408 msgid "(exact) Product UUID" msgstr "(产品 UUID" -#: core/docs/drf/viewsets.py:399 +#: engine/core/docs/drf/viewsets.py:415 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、评分、名称、标签、创建、修改、价格、随机" -#: core/docs/drf/viewsets.py:413 core/docs/drf/viewsets.py:414 +#: engine/core/docs/drf/viewsets.py:429 engine/core/docs/drf/viewsets.py:430 msgid "retrieve a single product (detailed view)" msgstr "检索单个产品(详细视图)" -#: core/docs/drf/viewsets.py:419 core/docs/drf/viewsets.py:443 -#: core/docs/drf/viewsets.py:459 core/docs/drf/viewsets.py:475 -#: core/docs/drf/viewsets.py:491 core/docs/drf/viewsets.py:507 +#: engine/core/docs/drf/viewsets.py:435 engine/core/docs/drf/viewsets.py:459 +#: engine/core/docs/drf/viewsets.py:475 engine/core/docs/drf/viewsets.py:491 +#: engine/core/docs/drf/viewsets.py:507 engine/core/docs/drf/viewsets.py:523 msgid "Product UUID or slug" msgstr "产品 UUID 或 Slug" -#: core/docs/drf/viewsets.py:429 core/docs/drf/viewsets.py:430 +#: engine/core/docs/drf/viewsets.py:445 engine/core/docs/drf/viewsets.py:446 msgid "create a product" msgstr "创建产品" -#: core/docs/drf/viewsets.py:437 core/docs/drf/viewsets.py:438 +#: engine/core/docs/drf/viewsets.py:453 engine/core/docs/drf/viewsets.py:454 msgid "rewrite an existing product, preserving non-editable fields" msgstr "重写现有产品,保留不可编辑字段" -#: core/docs/drf/viewsets.py:453 core/docs/drf/viewsets.py:454 +#: engine/core/docs/drf/viewsets.py:469 engine/core/docs/drf/viewsets.py:470 msgid "" "update some fields of an existing product, preserving non-editable fields" msgstr "更新现有产品的某些字段,保留不可编辑的字段" -#: core/docs/drf/viewsets.py:469 core/docs/drf/viewsets.py:470 +#: engine/core/docs/drf/viewsets.py:485 engine/core/docs/drf/viewsets.py:486 msgid "delete a product" msgstr "删除产品" -#: core/docs/drf/viewsets.py:485 core/docs/drf/viewsets.py:486 +#: engine/core/docs/drf/viewsets.py:501 engine/core/docs/drf/viewsets.py:502 msgid "lists all permitted feedbacks for a product" msgstr "列出产品的所有允许反馈" -#: core/docs/drf/viewsets.py:502 +#: engine/core/docs/drf/viewsets.py:518 msgid "returns a snapshot of the product's SEO meta data" msgstr "返回产品的搜索引擎优化元数据快照" -#: core/docs/drf/viewsets.py:520 +#: engine/core/docs/drf/viewsets.py:536 msgid "list all addresses" msgstr "列出所有地址" -#: core/docs/drf/viewsets.py:527 +#: engine/core/docs/drf/viewsets.py:543 msgid "retrieve a single address" msgstr "检索单个地址" -#: core/docs/drf/viewsets.py:534 +#: engine/core/docs/drf/viewsets.py:550 msgid "create a new address" msgstr "创建新地址" -#: core/docs/drf/viewsets.py:542 +#: engine/core/docs/drf/viewsets.py:558 msgid "delete an address" msgstr "删除地址" -#: core/docs/drf/viewsets.py:549 +#: engine/core/docs/drf/viewsets.py:565 msgid "update an entire address" msgstr "更新整个地址" -#: core/docs/drf/viewsets.py:557 +#: engine/core/docs/drf/viewsets.py:573 msgid "partially update an address" msgstr "部分更新地址" -#: core/docs/drf/viewsets.py:565 +#: engine/core/docs/drf/viewsets.py:581 msgid "autocomplete address suggestions" msgstr "自动完成地址输入" -#: core/docs/drf/viewsets.py:570 +#: engine/core/docs/drf/viewsets.py:586 msgid "raw data query string, please append with data from geo-IP endpoint" msgstr "原始数据查询字符串,请附加来自地理 IP 端点的数据" -#: core/docs/drf/viewsets.py:576 +#: engine/core/docs/drf/viewsets.py:592 msgid "limit the results amount, 1 < limit < 10, default: 5" msgstr "限制结果数量,1 < limit < 10,默认:5" -#: core/docs/drf/viewsets.py:589 +#: engine/core/docs/drf/viewsets.py:605 msgid "list all feedbacks (simple view)" msgstr "列出所有反馈(简单视图)" -#: core/docs/drf/viewsets.py:593 +#: engine/core/docs/drf/viewsets.py:609 msgid "retrieve a single feedback (detailed view)" msgstr "检索单个反馈(详细视图)" -#: core/docs/drf/viewsets.py:597 +#: engine/core/docs/drf/viewsets.py:613 msgid "create a feedback" msgstr "创建反馈" -#: core/docs/drf/viewsets.py:601 +#: engine/core/docs/drf/viewsets.py:617 msgid "delete a feedback" msgstr "删除反馈" -#: core/docs/drf/viewsets.py:605 +#: engine/core/docs/drf/viewsets.py:621 msgid "rewrite an existing feedback saving non-editables" msgstr "重写现有的反馈,保存不可编辑的内容" -#: core/docs/drf/viewsets.py:609 +#: engine/core/docs/drf/viewsets.py:625 msgid "rewrite some fields of an existing feedback saving non-editables" msgstr "重写现有反馈的某些字段,保存不可编辑的内容" -#: core/docs/drf/viewsets.py:616 +#: engine/core/docs/drf/viewsets.py:632 msgid "list all order–product relations (simple view)" msgstr "列出所有订单-产品关系(简单视图)" -#: core/docs/drf/viewsets.py:623 +#: engine/core/docs/drf/viewsets.py:639 msgid "retrieve a single order–product relation (detailed view)" msgstr "检索单一订单-产品关系(详细视图)" -#: core/docs/drf/viewsets.py:630 +#: engine/core/docs/drf/viewsets.py:646 msgid "create a new order–product relation" msgstr "创建新的订单-产品关系" -#: core/docs/drf/viewsets.py:637 +#: engine/core/docs/drf/viewsets.py:653 msgid "replace an existing order–product relation" msgstr "替换现有的订单-产品关系" -#: core/docs/drf/viewsets.py:644 +#: engine/core/docs/drf/viewsets.py:660 msgid "partially update an existing order–product relation" msgstr "部分更新现有的订单-产品关系" -#: core/docs/drf/viewsets.py:651 +#: engine/core/docs/drf/viewsets.py:667 msgid "delete an order–product relation" msgstr "删除订单-产品关系" -#: core/docs/drf/viewsets.py:658 +#: engine/core/docs/drf/viewsets.py:674 msgid "add or remove feedback on an order–product relation" msgstr "添加或删除订单与产品关系中的反馈信息" -#: core/docs/drf/viewsets.py:672 +#: engine/core/docs/drf/viewsets.py:688 msgid "list all brands (simple view)" msgstr "列出所有品牌(简单视图)" -#: core/docs/drf/viewsets.py:676 +#: engine/core/docs/drf/viewsets.py:692 msgid "retrieve a single brand (detailed view)" msgstr "检索单一品牌(详细视图)" -#: core/docs/drf/viewsets.py:680 +#: engine/core/docs/drf/viewsets.py:697 engine/core/docs/drf/viewsets.py:725 +msgid "Brand UUID or slug" +msgstr "品牌 UUID 或标签" + +#: engine/core/docs/drf/viewsets.py:704 msgid "create a brand" msgstr "创建品牌" -#: core/docs/drf/viewsets.py:684 +#: engine/core/docs/drf/viewsets.py:708 msgid "delete a brand" msgstr "删除品牌" -#: core/docs/drf/viewsets.py:688 +#: engine/core/docs/drf/viewsets.py:712 msgid "rewrite an existing brand saving non-editables" msgstr "重写现有品牌,节省非编辑材料" -#: core/docs/drf/viewsets.py:692 +#: engine/core/docs/drf/viewsets.py:716 msgid "rewrite some fields of an existing brand saving non-editables" msgstr "重写现有品牌的某些字段,保存不可编辑字段" -#: core/docs/drf/viewsets.py:696 +#: engine/core/docs/drf/viewsets.py:720 msgid "SEO Meta snapshot for brand" msgstr "品牌的搜索引擎优化元快照" -#: core/docs/drf/viewsets.py:703 +#: engine/core/docs/drf/viewsets.py:735 msgid "list all vendors (simple view)" msgstr "列出所有供应商(简单视图)" -#: core/docs/drf/viewsets.py:707 +#: engine/core/docs/drf/viewsets.py:739 msgid "retrieve a single vendor (detailed view)" msgstr "检索单个供应商(详细视图)" -#: core/docs/drf/viewsets.py:711 +#: engine/core/docs/drf/viewsets.py:743 msgid "create a vendor" msgstr "创建供应商" -#: core/docs/drf/viewsets.py:715 +#: engine/core/docs/drf/viewsets.py:747 msgid "delete a vendor" msgstr "删除供应商" -#: core/docs/drf/viewsets.py:719 +#: engine/core/docs/drf/viewsets.py:751 msgid "rewrite an existing vendor saving non-editables" msgstr "重写现有供应商,保存不可编辑内容" -#: core/docs/drf/viewsets.py:723 +#: engine/core/docs/drf/viewsets.py:755 msgid "rewrite some fields of an existing vendor saving non-editables" msgstr "重写现有供应商的某些字段,保存不可编辑字段" -#: core/docs/drf/viewsets.py:730 +#: engine/core/docs/drf/viewsets.py:762 msgid "list all product images (simple view)" msgstr "列出所有产品图片(简单视图)" -#: core/docs/drf/viewsets.py:734 +#: engine/core/docs/drf/viewsets.py:766 msgid "retrieve a single product image (detailed view)" msgstr "检索单个产品图片(详细视图)" -#: core/docs/drf/viewsets.py:738 +#: engine/core/docs/drf/viewsets.py:770 msgid "create a product image" msgstr "创建产品形象" -#: core/docs/drf/viewsets.py:742 +#: engine/core/docs/drf/viewsets.py:774 msgid "delete a product image" msgstr "删除产品图像" -#: core/docs/drf/viewsets.py:746 +#: engine/core/docs/drf/viewsets.py:778 msgid "rewrite an existing product image saving non-editables" msgstr "重写现有产品图像,保存不可编辑图像" -#: core/docs/drf/viewsets.py:750 +#: engine/core/docs/drf/viewsets.py:782 msgid "rewrite some fields of an existing product image saving non-editables" msgstr "重写现有产品图像的某些字段,保存不可编辑的内容" -#: core/docs/drf/viewsets.py:757 +#: engine/core/docs/drf/viewsets.py:789 msgid "list all promo codes (simple view)" msgstr "列出所有促销代码(简单视图)" -#: core/docs/drf/viewsets.py:761 +#: engine/core/docs/drf/viewsets.py:793 msgid "retrieve a single promo code (detailed view)" msgstr "检索单个促销代码(详细视图)" -#: core/docs/drf/viewsets.py:765 +#: engine/core/docs/drf/viewsets.py:797 msgid "create a promo code" msgstr "创建促销代码" -#: core/docs/drf/viewsets.py:769 +#: engine/core/docs/drf/viewsets.py:801 msgid "delete a promo code" msgstr "删除促销代码" -#: core/docs/drf/viewsets.py:773 +#: engine/core/docs/drf/viewsets.py:805 msgid "rewrite an existing promo code saving non-editables" msgstr "重写现有促销代码,保存不可编辑的代码" -#: core/docs/drf/viewsets.py:777 +#: engine/core/docs/drf/viewsets.py:809 msgid "rewrite some fields of an existing promo code saving non-editables" msgstr "重写现有促销代码的某些字段,保存不可编辑的内容" -#: core/docs/drf/viewsets.py:784 +#: engine/core/docs/drf/viewsets.py:816 msgid "list all promotions (simple view)" msgstr "列出所有促销活动(简单视图)" -#: core/docs/drf/viewsets.py:788 +#: engine/core/docs/drf/viewsets.py:820 msgid "retrieve a single promotion (detailed view)" msgstr "检索单个促销活动(详细视图)" -#: core/docs/drf/viewsets.py:792 +#: engine/core/docs/drf/viewsets.py:824 msgid "create a promotion" msgstr "创建促销活动" -#: core/docs/drf/viewsets.py:796 +#: engine/core/docs/drf/viewsets.py:828 msgid "delete a promotion" msgstr "删除促销" -#: core/docs/drf/viewsets.py:800 +#: engine/core/docs/drf/viewsets.py:832 msgid "rewrite an existing promotion saving non-editables" msgstr "重写现有促销活动,保存不可编辑内容" -#: core/docs/drf/viewsets.py:804 +#: engine/core/docs/drf/viewsets.py:836 msgid "rewrite some fields of an existing promotion saving non-editables" msgstr "重写现有促销活动的某些字段,保存不可编辑字段" -#: core/docs/drf/viewsets.py:811 +#: engine/core/docs/drf/viewsets.py:843 msgid "list all stocks (simple view)" msgstr "列出所有股票(简单视图)" -#: core/docs/drf/viewsets.py:815 +#: engine/core/docs/drf/viewsets.py:847 msgid "retrieve a single stock (detailed view)" msgstr "检索单个股票(详细视图)" -#: core/docs/drf/viewsets.py:819 +#: engine/core/docs/drf/viewsets.py:851 msgid "create a stock record" msgstr "创建库存记录" -#: core/docs/drf/viewsets.py:823 +#: engine/core/docs/drf/viewsets.py:855 msgid "delete a stock record" msgstr "删除库存记录" -#: core/docs/drf/viewsets.py:827 +#: engine/core/docs/drf/viewsets.py:859 msgid "rewrite an existing stock record saving non-editables" msgstr "重写现有库存记录,保存不可编辑数据" -#: core/docs/drf/viewsets.py:831 +#: engine/core/docs/drf/viewsets.py:863 msgid "rewrite some fields of an existing stock record saving non-editables" msgstr "重写现有库存记录的某些字段,保存不可编辑的内容" -#: core/docs/drf/viewsets.py:838 +#: engine/core/docs/drf/viewsets.py:870 msgid "list all product tags (simple view)" msgstr "列出所有产品标签(简单视图)" -#: core/docs/drf/viewsets.py:842 +#: engine/core/docs/drf/viewsets.py:874 msgid "retrieve a single product tag (detailed view)" msgstr "检索单个产品标签(详细视图)" -#: core/docs/drf/viewsets.py:846 +#: engine/core/docs/drf/viewsets.py:878 msgid "create a product tag" msgstr "创建产品标签" -#: core/docs/drf/viewsets.py:850 +#: engine/core/docs/drf/viewsets.py:882 msgid "delete a product tag" msgstr "删除产品标签" -#: core/docs/drf/viewsets.py:854 +#: engine/core/docs/drf/viewsets.py:886 msgid "rewrite an existing product tag saving non-editables" msgstr "重写现有产品标签,保存不可编辑内容" -#: core/docs/drf/viewsets.py:858 +#: engine/core/docs/drf/viewsets.py:890 msgid "rewrite some fields of an existing product tag saving non-editables" msgstr "重写现有产品标签的某些字段,保存不可编辑字段" -#: core/elasticsearch/__init__.py:118 core/elasticsearch/__init__.py:550 +#: engine/core/elasticsearch/__init__.py:122 +#: engine/core/elasticsearch/__init__.py:570 msgid "no search term provided." msgstr "未提供搜索条件。" -#: core/filters.py:69 core/filters.py:412 core/filters.py:539 +#: engine/core/filters.py:69 engine/core/filters.py:426 +#: engine/core/filters.py:553 msgid "Search" msgstr "搜索" -#: core/filters.py:70 core/filters.py:569 core/filters.py:598 +#: engine/core/filters.py:70 engine/core/filters.py:583 +#: engine/core/filters.py:612 msgid "UUID" msgstr "UUID" -#: core/filters.py:71 core/filters.py:414 core/filters.py:541 +#: engine/core/filters.py:71 engine/core/filters.py:428 +#: engine/core/filters.py:555 msgid "Name" msgstr "名称" -#: core/filters.py:72 core/filters.py:543 +#: engine/core/filters.py:72 engine/core/filters.py:557 msgid "Categories" msgstr "类别" -#: core/filters.py:74 +#: engine/core/filters.py:74 msgid "Categories Slugs" msgstr "类别 蛞蝓" -#: core/filters.py:75 core/filters.py:422 +#: engine/core/filters.py:75 engine/core/filters.py:436 msgid "Tags" msgstr "标签" -#: core/filters.py:76 +#: engine/core/filters.py:76 msgid "Min Price" msgstr "最低价格" -#: core/filters.py:77 +#: engine/core/filters.py:77 msgid "Max Price" msgstr "最高价格" -#: core/filters.py:78 +#: engine/core/filters.py:78 msgid "Is Active" msgstr "处于活动状态" -#: core/filters.py:79 +#: engine/core/filters.py:79 msgid "Brand" msgstr "品牌" -#: core/filters.py:80 +#: engine/core/filters.py:80 msgid "Attributes" msgstr "属性" -#: core/filters.py:81 +#: engine/core/filters.py:81 msgid "Quantity" msgstr "数量" -#: core/filters.py:82 core/filters.py:416 core/filters.py:542 -#: core/models.py:322 core/models.py:483 core/models.py:637 +#: engine/core/filters.py:82 engine/core/filters.py:430 +#: engine/core/filters.py:556 engine/core/models.py:321 +#: engine/core/models.py:482 engine/core/models.py:637 msgid "Slug" msgstr "蛞蝓" -#: core/filters.py:83 +#: engine/core/filters.py:83 msgid "Is Digital" msgstr "是数字" -#: core/filters.py:84 +#: engine/core/filters.py:84 msgid "Include sub-categories" msgstr "包括子类别" -#: core/filters.py:87 +#: engine/core/filters.py:87 msgid "Include personal ordered" msgstr "包括个人订购的产品" -#: core/filters.py:89 core/models.py:641 +#: engine/core/filters.py:89 engine/core/models.py:641 msgid "SKU" msgstr "商品编号" -#: core/filters.py:173 +#: engine/core/filters.py:184 msgid "there must be a category_uuid to use include_subcategories flag" msgstr "必须有 category_uuid 才能使用 include_subcategories 标志" -#: core/filters.py:339 +#: engine/core/filters.py:353 msgid "Search (ID, product name or part number)" msgstr "搜索(ID、产品名称或零件编号)" -#: core/filters.py:342 +#: engine/core/filters.py:356 msgid "Bought after (inclusive)" msgstr "之后购买(含)" -#: core/filters.py:343 +#: engine/core/filters.py:357 msgid "Bought before (inclusive)" msgstr "之前购买(含)" -#: core/filters.py:346 core/filters.py:393 core/filters.py:600 +#: engine/core/filters.py:360 engine/core/filters.py:407 +#: engine/core/filters.py:614 msgid "User email" msgstr "用户电子邮件" -#: core/filters.py:347 core/filters.py:394 core/filters.py:578 -#: core/filters.py:599 +#: engine/core/filters.py:361 engine/core/filters.py:408 +#: engine/core/filters.py:592 engine/core/filters.py:613 msgid "User UUID" msgstr "用户 UUID" -#: core/filters.py:348 +#: engine/core/filters.py:362 msgid "Status" msgstr "现状" -#: core/filters.py:352 +#: engine/core/filters.py:366 msgid "Human Readable ID" msgstr "人可读 ID" -#: core/filters.py:415 +#: engine/core/filters.py:429 msgid "Parent" msgstr "家长" -#: core/filters.py:419 +#: engine/core/filters.py:433 msgid "Whole category(has at least 1 product or not)" msgstr "整个类别(是否至少有 1 个产品)" -#: core/filters.py:423 +#: engine/core/filters.py:437 msgid "Level" msgstr "级别" -#: core/filters.py:573 +#: engine/core/filters.py:587 msgid "Product UUID" msgstr "产品 UUID" -#: core/graphene/mutations.py:41 +#: engine/core/graphene/mutations.py:41 msgid "key to look for in or set into the cache" msgstr "在缓存中查找或设置的关键字" -#: core/graphene/mutations.py:42 +#: engine/core/graphene/mutations.py:42 msgid "data to store in cache" msgstr "缓存中要存储的数据" -#: core/graphene/mutations.py:45 +#: engine/core/graphene/mutations.py:45 msgid "timeout in seconds to set the data for into the cache" msgstr "将数据设置为缓存的超时(以秒为单位" -#: core/graphene/mutations.py:48 +#: engine/core/graphene/mutations.py:48 msgid "cached data" msgstr "缓存数据" -#: core/graphene/mutations.py:63 +#: engine/core/graphene/mutations.py:63 msgid "camelized JSON data from the requested URL" msgstr "从请求的 URL 中获取驼峰化 JSON 数据" -#: core/graphene/mutations.py:68 core/views.py:232 +#: engine/core/graphene/mutations.py:68 engine/core/views.py:231 msgid "only URLs starting with http(s):// are allowed" msgstr "只允许使用以 http(s):// 开头的 URL" -#: core/graphene/mutations.py:84 +#: engine/core/graphene/mutations.py:84 msgid "add a product to the order" msgstr "在订单中添加产品" -#: core/graphene/mutations.py:105 core/graphene/mutations.py:132 -#: core/graphene/mutations.py:240 core/graphene/mutations.py:288 +#: engine/core/graphene/mutations.py:105 engine/core/graphene/mutations.py:132 +#: engine/core/graphene/mutations.py:240 engine/core/graphene/mutations.py:288 #, python-brace-format msgid "order {order_uuid} not found" msgstr "未找到 {order_uuid} 订单!" -#: core/graphene/mutations.py:111 core/graphene/mutations.py:160 +#: engine/core/graphene/mutations.py:111 engine/core/graphene/mutations.py:160 msgid "remove a product from the order" msgstr "从订单中删除产品" -#: core/graphene/mutations.py:138 +#: engine/core/graphene/mutations.py:138 msgid "remove all products from the order" msgstr "从订单中删除所有产品" -#: core/graphene/mutations.py:183 +#: engine/core/graphene/mutations.py:183 msgid "buy an order" msgstr "购买订单" -#: core/graphene/mutations.py:212 core/graphene/mutations.py:266 +#: engine/core/graphene/mutations.py:212 engine/core/graphene/mutations.py:266 msgid "please provide either order_uuid or order_hr_id - mutually exclusive" msgstr "请提供 order_uuid 或 order_hr_id(互斥)!" -#: core/graphene/mutations.py:237 core/graphene/mutations.py:502 -#: core/graphene/mutations.py:544 core/viewsets.py:704 +#: engine/core/graphene/mutations.py:237 engine/core/graphene/mutations.py:502 +#: engine/core/graphene/mutations.py:544 engine/core/viewsets.py:704 msgid "wrong type came from order.buy() method: {type(instance)!s}" msgstr "order.buy() 方法中的类型有误:{type(instance)!s}" -#: core/graphene/mutations.py:246 +#: engine/core/graphene/mutations.py:246 msgid "perform an action on a list of products in the order" msgstr "对订单中的产品列表执行操作" -#: core/graphene/mutations.py:251 +#: engine/core/graphene/mutations.py:251 msgid "remove/add" msgstr "删除/添加" -#: core/graphene/mutations.py:283 core/graphene/mutations.py:324 +#: engine/core/graphene/mutations.py:283 engine/core/graphene/mutations.py:324 msgid "action must be either add or remove" msgstr "操作必须是 \"添加 \"或 \"删除\"!" -#: core/graphene/mutations.py:294 +#: engine/core/graphene/mutations.py:294 msgid "perform an action on a list of products in the wishlist" msgstr "对愿望清单中的产品列表执行操作" -#: core/graphene/mutations.py:312 +#: engine/core/graphene/mutations.py:312 msgid "please provide wishlist_uuid value" msgstr "请提供 `wishlist_uuid` 值。" -#: core/graphene/mutations.py:329 core/graphene/mutations.py:405 -#: core/graphene/mutations.py:433 core/graphene/mutations.py:461 -#: core/graphene/mutations.py:505 +#: engine/core/graphene/mutations.py:329 engine/core/graphene/mutations.py:405 +#: engine/core/graphene/mutations.py:433 engine/core/graphene/mutations.py:461 +#: engine/core/graphene/mutations.py:505 #, python-brace-format msgid "wishlist {wishlist_uuid} not found" msgstr "未找到 Wishlist {wishlist_uuid}!" -#: core/graphene/mutations.py:383 +#: engine/core/graphene/mutations.py:383 msgid "add a product to the wishlist" msgstr "在订单中添加产品" -#: core/graphene/mutations.py:411 +#: engine/core/graphene/mutations.py:411 msgid "remove a product from the wishlist" msgstr "从订单中删除产品" -#: core/graphene/mutations.py:439 +#: engine/core/graphene/mutations.py:439 msgid "remove all products from the wishlist" msgstr "从订单中删除产品" -#: core/graphene/mutations.py:467 +#: engine/core/graphene/mutations.py:467 msgid "buy all products from the wishlist" msgstr "从订单中删除产品" -#: core/graphene/mutations.py:511 +#: engine/core/graphene/mutations.py:511 msgid "buy a product" msgstr "购买订单" -#: core/graphene/mutations.py:517 +#: engine/core/graphene/mutations.py:517 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" -#: core/graphene/mutations.py:550 +#: engine/core/graphene/mutations.py:550 msgid "add or delete a feedback for orderproduct" msgstr "添加或删除订单产品的反馈信息" -#: core/graphene/mutations.py:574 +#: engine/core/graphene/mutations.py:574 msgid "action must be either `add` or `remove`" msgstr "操作必须是 \"添加 \"或 \"删除\"!" -#: core/graphene/mutations.py:577 +#: engine/core/graphene/mutations.py:577 #, python-brace-format msgid "order product {order_product_uuid} not found" msgstr "未找到订购产品 {order_product_uuid}!" -#: core/graphene/mutations.py:644 +#: engine/core/graphene/mutations.py:644 msgid "original address string provided by the user" msgstr "用户提供的原始地址字符串" -#: core/graphene/mutations.py:680 core/models.py:930 core/models.py:943 -#: core/models.py:1358 core/models.py:1387 core/models.py:1412 -#: core/viewsets.py:707 +#: engine/core/graphene/mutations.py:680 engine/core/models.py:941 +#: engine/core/models.py:954 engine/core/models.py:1369 +#: engine/core/models.py:1398 engine/core/models.py:1423 +#: engine/core/viewsets.py:707 #, python-brace-format msgid "{name} does not exist: {uuid}" msgstr "{name} 不存在:{uuid}!" -#: core/graphene/mutations.py:694 +#: engine/core/graphene/mutations.py:694 msgid "limit must be between 1 and 10" msgstr "限值必须在 1 和 10 之间" -#: core/graphene/mutations.py:743 +#: engine/core/graphene/mutations.py:743 msgid "elasticsearch - works like a charm" msgstr "ElasticSearch - 工作起来得心应手" -#: core/graphene/object_types.py:82 core/graphene/object_types.py:370 -#: core/graphene/object_types.py:417 core/models.py:754 core/models.py:1225 -#: core/models.py:1823 +#: engine/core/graphene/object_types.py:82 +#: engine/core/graphene/object_types.py:370 +#: engine/core/graphene/object_types.py:417 engine/core/models.py:765 +#: engine/core/models.py:1236 engine/core/models.py:1883 msgid "attributes" msgstr "属性" -#: core/graphene/object_types.py:95 +#: engine/core/graphene/object_types.py:95 msgid "grouped attributes" msgstr "分组属性" -#: core/graphene/object_types.py:102 +#: engine/core/graphene/object_types.py:102 msgid "groups of attributes" msgstr "属性组" -#: core/graphene/object_types.py:116 core/graphene/object_types.py:193 -#: core/graphene/object_types.py:223 core/models.py:426 +#: engine/core/graphene/object_types.py:116 +#: engine/core/graphene/object_types.py:193 +#: engine/core/graphene/object_types.py:223 engine/core/models.py:425 msgid "categories" msgstr "类别" -#: core/graphene/object_types.py:124 core/models.py:497 +#: engine/core/graphene/object_types.py:124 engine/core/models.py:496 msgid "brands" msgstr "品牌" -#: core/graphene/object_types.py:195 +#: engine/core/graphene/object_types.py:195 msgid "category image url" msgstr "类别" -#: core/graphene/object_types.py:196 core/graphene/object_types.py:317 -#: core/models.py:284 +#: engine/core/graphene/object_types.py:196 +#: engine/core/graphene/object_types.py:317 engine/core/models.py:283 msgid "markup percentage" msgstr "加价百分比" -#: core/graphene/object_types.py:199 +#: engine/core/graphene/object_types.py:199 msgid "which attributes and values can be used for filtering this category." msgstr "哪些属性和值可用于筛选该类别。" -#: core/graphene/object_types.py:203 -msgid "" -"minimum and maximum prices for products in this category, if available." +#: engine/core/graphene/object_types.py:203 +msgid "minimum and maximum prices for products in this category, if available." msgstr "该类别产品的最低和最高价格(如有)。" -#: core/graphene/object_types.py:205 +#: engine/core/graphene/object_types.py:205 msgid "tags for this category" msgstr "此类别的标签" -#: core/graphene/object_types.py:206 +#: engine/core/graphene/object_types.py:206 msgid "products in this category" msgstr "该类别中的产品" -#: core/graphene/object_types.py:324 core/models.py:189 +#: engine/core/graphene/object_types.py:324 engine/core/models.py:188 msgid "vendors" msgstr "供应商" -#: core/graphene/object_types.py:328 +#: engine/core/graphene/object_types.py:328 msgid "Latitude (Y coordinate)" msgstr "纬度(Y 坐标)" -#: core/graphene/object_types.py:329 +#: engine/core/graphene/object_types.py:329 msgid "Longitude (X coordinate)" msgstr "经度(X 坐标)" -#: core/graphene/object_types.py:358 +#: engine/core/graphene/object_types.py:358 msgid "comment" msgstr "如何" -#: core/graphene/object_types.py:359 core/graphene/object_types.py:483 +#: engine/core/graphene/object_types.py:359 +#: engine/core/graphene/object_types.py:483 msgid "rating value from 1 to 10, inclusive, or 0 if not set." msgstr "评级值从 1 到 10(包括 10),如果未设置,则为 0。" -#: core/graphene/object_types.py:366 +#: engine/core/graphene/object_types.py:366 msgid "represents feedback from a user." msgstr "代表用户的反馈意见。" -#: core/graphene/object_types.py:371 core/graphene/object_types.py:418 -#: core/models.py:1219 +#: engine/core/graphene/object_types.py:371 +#: engine/core/graphene/object_types.py:418 engine/core/models.py:1230 msgid "notifications" msgstr "通知" -#: core/graphene/object_types.py:372 +#: engine/core/graphene/object_types.py:372 msgid "download url for this order product if applicable" msgstr "此订单产品的下载网址(如适用" -#: core/graphene/object_types.py:373 core/models.py:1939 +#: engine/core/graphene/object_types.py:373 engine/core/models.py:1722 msgid "feedback" msgstr "反馈意见" -#: core/graphene/object_types.py:407 +#: engine/core/graphene/object_types.py:407 msgid "a list of order products in this order" msgstr "该订单中的订单产品列表" -#: core/graphene/object_types.py:409 core/models.py:1189 +#: engine/core/graphene/object_types.py:409 engine/core/models.py:1200 msgid "billing address" msgstr "账单地址" -#: core/graphene/object_types.py:412 +#: engine/core/graphene/object_types.py:412 msgid "" "shipping address for this order, leave blank if same as billing address or " "if not applicable" msgstr "此订单的送货地址,如果与账单地址相同或不适用,请留空" -#: core/graphene/object_types.py:414 +#: engine/core/graphene/object_types.py:414 msgid "total price of this order" msgstr "订单总价" -#: core/graphene/object_types.py:415 +#: engine/core/graphene/object_types.py:415 msgid "total quantity of products in order" msgstr "订单中产品的总数量" -#: core/graphene/object_types.py:416 +#: engine/core/graphene/object_types.py:416 msgid "are all products in the order digital" msgstr "订单中的所有产品都是数字产品吗?" -#: core/graphene/object_types.py:419 +#: engine/core/graphene/object_types.py:419 msgid "transactions for this order" msgstr "此订单的交易" -#: core/graphene/object_types.py:438 core/models.py:1253 +#: engine/core/graphene/object_types.py:438 engine/core/models.py:1264 msgid "orders" msgstr "订单" -#: core/graphene/object_types.py:459 +#: engine/core/graphene/object_types.py:459 msgid "image url" msgstr "图片 URL" -#: core/graphene/object_types.py:466 +#: engine/core/graphene/object_types.py:466 msgid "product's images" msgstr "产品图片" -#: core/graphene/object_types.py:473 core/models.py:425 core/models.py:579 +#: engine/core/graphene/object_types.py:473 engine/core/models.py:424 +#: engine/core/models.py:579 msgid "category" msgstr "类别" -#: core/graphene/object_types.py:475 core/models.py:1940 +#: engine/core/graphene/object_types.py:475 engine/core/models.py:1723 msgid "feedbacks" msgstr "反馈意见" -#: core/graphene/object_types.py:476 core/models.py:496 core/models.py:588 +#: engine/core/graphene/object_types.py:476 engine/core/models.py:495 +#: engine/core/models.py:588 msgid "brand" msgstr "品牌" -#: core/graphene/object_types.py:477 core/models.py:107 +#: engine/core/graphene/object_types.py:477 engine/core/models.py:106 msgid "attribute groups" msgstr "属性组" -#: core/graphene/object_types.py:478 -#: core/templates/digital_order_created_email.html:111 -#: core/templates/digital_order_delivered_email.html:109 -#: core/templates/shipped_order_created_email.html:109 -#: core/templates/shipped_order_delivered_email.html:109 +#: engine/core/graphene/object_types.py:478 +#: engine/core/templates/digital_order_created_email.html:111 +#: engine/core/templates/digital_order_delivered_email.html:109 +#: engine/core/templates/shipped_order_created_email.html:109 +#: engine/core/templates/shipped_order_delivered_email.html:109 msgid "price" msgstr "价格" -#: core/graphene/object_types.py:479 -#: core/templates/digital_order_created_email.html:110 -#: core/templates/digital_order_delivered_email.html:108 -#: core/templates/shipped_order_created_email.html:108 -#: core/templates/shipped_order_delivered_email.html:108 +#: engine/core/graphene/object_types.py:479 +#: engine/core/templates/digital_order_created_email.html:110 +#: engine/core/templates/digital_order_delivered_email.html:108 +#: engine/core/templates/shipped_order_created_email.html:108 +#: engine/core/templates/shipped_order_delivered_email.html:108 msgid "quantity" msgstr "数量" -#: core/graphene/object_types.py:480 +#: engine/core/graphene/object_types.py:480 msgid "number of feedbacks" msgstr "反馈数量" -#: core/graphene/object_types.py:481 +#: engine/core/graphene/object_types.py:481 msgid "only available for personal orders" msgstr "仅限个人订购的产品" -#: core/graphene/object_types.py:507 core/models.py:651 +#: engine/core/graphene/object_types.py:484 +msgid "discount price" +msgstr "折扣价" + +#: engine/core/graphene/object_types.py:508 engine/core/models.py:651 msgid "products" msgstr "产品" -#: core/graphene/object_types.py:607 +#: engine/core/graphene/object_types.py:611 msgid "promocodes" msgstr "促销代码" -#: core/graphene/object_types.py:617 +#: engine/core/graphene/object_types.py:621 msgid "products on sale" msgstr "销售产品" -#: core/graphene/object_types.py:624 core/models.py:879 +#: engine/core/graphene/object_types.py:628 engine/core/models.py:890 msgid "promotions" msgstr "促销活动" -#: core/graphene/object_types.py:628 core/models.py:188 +#: engine/core/graphene/object_types.py:632 engine/core/models.py:187 msgid "vendor" msgstr "供应商" -#: core/graphene/object_types.py:629 core/models.py:650 -#: core/templates/digital_order_created_email.html:109 -#: core/templates/digital_order_delivered_email.html:107 -#: core/templates/shipped_order_created_email.html:107 -#: core/templates/shipped_order_delivered_email.html:107 +#: engine/core/graphene/object_types.py:633 engine/core/models.py:650 +#: 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 +#: engine/core/templates/shipped_order_delivered_email.html:107 msgid "product" msgstr "产品" -#: core/graphene/object_types.py:640 core/models.py:902 +#: engine/core/graphene/object_types.py:644 engine/core/models.py:913 msgid "wishlisted products" msgstr "心愿单上的产品" -#: core/graphene/object_types.py:646 core/models.py:919 +#: engine/core/graphene/object_types.py:650 engine/core/models.py:930 msgid "wishlists" msgstr "愿望清单" -#: core/graphene/object_types.py:650 +#: engine/core/graphene/object_types.py:654 msgid "tagged products" msgstr "标签产品" -#: core/graphene/object_types.py:657 core/models.py:225 core/models.py:594 +#: engine/core/graphene/object_types.py:661 engine/core/models.py:224 +#: engine/core/models.py:594 msgid "product tags" msgstr "产品标签" -#: core/graphene/object_types.py:661 +#: engine/core/graphene/object_types.py:665 msgid "tagged categories" msgstr "标签类别" -#: core/graphene/object_types.py:668 +#: engine/core/graphene/object_types.py:672 msgid "categories tags" msgstr "类别标签" -#: core/graphene/object_types.py:672 +#: engine/core/graphene/object_types.py:676 msgid "project name" msgstr "项目名称" -#: core/graphene/object_types.py:673 +#: engine/core/graphene/object_types.py:677 msgid "company email" msgstr "公司电子邮件" -#: core/graphene/object_types.py:674 +#: engine/core/graphene/object_types.py:678 msgid "company name" msgstr "公司名称" -#: core/graphene/object_types.py:675 +#: engine/core/graphene/object_types.py:679 msgid "company address" msgstr "公司地址" -#: core/graphene/object_types.py:676 +#: engine/core/graphene/object_types.py:680 msgid "company phone number" msgstr "公司电话号码" -#: core/graphene/object_types.py:677 +#: engine/core/graphene/object_types.py:681 msgid "email from, sometimes it must be used instead of host user value" msgstr "电子邮件来自\",有时必须使用它来代替主机用户值" -#: core/graphene/object_types.py:678 +#: engine/core/graphene/object_types.py:682 msgid "email host user" msgstr "电子邮件主机用户" -#: core/graphene/object_types.py:679 +#: engine/core/graphene/object_types.py:683 msgid "maximum amount for payment" msgstr "最高付款额" -#: core/graphene/object_types.py:680 +#: engine/core/graphene/object_types.py:684 msgid "minimum amount for payment" msgstr "最低付款额" -#: core/graphene/object_types.py:681 +#: engine/core/graphene/object_types.py:685 msgid "analytics data" msgstr "分析数据" -#: core/graphene/object_types.py:682 +#: engine/core/graphene/object_types.py:686 msgid "advertisement data" msgstr "广告数据" -#: core/graphene/object_types.py:685 +#: engine/core/graphene/object_types.py:689 msgid "company configuration" msgstr "配置" -#: core/graphene/object_types.py:689 +#: engine/core/graphene/object_types.py:693 msgid "language code" msgstr "语言代码" -#: core/graphene/object_types.py:690 +#: engine/core/graphene/object_types.py:694 msgid "language name" msgstr "语言名称" -#: core/graphene/object_types.py:691 +#: engine/core/graphene/object_types.py:695 msgid "language flag, if exists :)" msgstr "语言标志(如果有):)" -#: core/graphene/object_types.py:694 +#: engine/core/graphene/object_types.py:698 msgid "supported languages" msgstr "获取支持的语言列表" -#: core/graphene/object_types.py:725 core/graphene/object_types.py:726 -#: core/graphene/object_types.py:727 +#: engine/core/graphene/object_types.py:729 +#: engine/core/graphene/object_types.py:730 +#: engine/core/graphene/object_types.py:731 msgid "products search results" msgstr "产品搜索结果" -#: core/graphene/object_types.py:728 +#: engine/core/graphene/object_types.py:732 msgid "posts search results" msgstr "产品搜索结果" -#: core/models.py:76 +#: engine/core/models.py:75 msgid "" "Represents a group of attributes, which can be hierarchical. This class is " "used to manage and organize attribute groups. An attribute group can have a " "parent group, forming a hierarchical structure. This can be useful for " "categorizing and managing attributes more effectively in acomplex system." msgstr "" -"代表一组属性,可以是分层的。该类用于管理和组织属性组。一个属性组可以有一个父组,从而形成一个层次结构。这有助于在复杂的系统中更有效地分类和管理属性。" +"代表一组属性,可以是分层的。该类用于管理和组织属性组。一个属性组可以有一个父" +"组,从而形成一个层次结构。这有助于在复杂的系统中更有效地分类和管理属性。" -#: core/models.py:92 +#: engine/core/models.py:91 msgid "parent of this group" msgstr "本组家长" -#: core/models.py:93 +#: engine/core/models.py:92 msgid "parent attribute group" msgstr "父属性组" -#: core/models.py:97 core/models.py:98 +#: engine/core/models.py:96 engine/core/models.py:97 msgid "attribute group's name" msgstr "属性组名称" -#: core/models.py:106 core/models.py:716 +#: engine/core/models.py:105 engine/core/models.py:727 msgid "attribute group" msgstr "属性组" -#: core/models.py:112 +#: engine/core/models.py:111 msgid "" "Represents a vendor entity capable of storing information about external " "vendors and their interaction requirements. The Vendor class is used to " @@ -1453,49 +1494,52 @@ msgid "" "also maintains additional metadata and constraints, making it suitable for " "use in systems that interact with third-party vendors." msgstr "" -"代表一个供应商实体,能够存储有关外部供应商及其交互要求的信息。供应商类用于定义和管理与外部供应商相关的信息。它存储供应商的名称、通信所需的身份验证详细信息,以及从供应商处检索产品时所应用的百分比标记。该模型还维护附加的元数据和约束,使其适用于与第三方供应商交互的系统。" +"代表一个供应商实体,能够存储有关外部供应商及其交互要求的信息。供应商类用于定" +"义和管理与外部供应商相关的信息。它存储供应商的名称、通信所需的身份验证详细信" +"息,以及从供应商处检索产品时所应用的百分比标记。该模型还维护附加的元数据和约" +"束,使其适用于与第三方供应商交互的系统。" -#: core/models.py:125 +#: engine/core/models.py:124 msgid "stores credentials and endpoints required for vendor communication" msgstr "存储供应商应用程序接口通信所需的凭证和端点" -#: core/models.py:126 +#: engine/core/models.py:125 msgid "authentication info" msgstr "认证信息" -#: core/models.py:131 +#: engine/core/models.py:130 msgid "define the markup for products retrieved from this vendor" msgstr "定义从该供应商获取的产品的标记" -#: core/models.py:132 +#: engine/core/models.py:131 msgid "vendor markup percentage" msgstr "供应商加价百分比" -#: core/models.py:136 +#: engine/core/models.py:135 msgid "name of this vendor" msgstr "供应商名称" -#: core/models.py:137 +#: engine/core/models.py:136 msgid "vendor name" msgstr "供应商名称" -#: core/models.py:148 +#: engine/core/models.py:147 msgid "response file" msgstr "回复文件" -#: core/models.py:149 +#: engine/core/models.py:148 msgid "vendor's last processing response" msgstr "供应商最后的处理回复" -#: core/models.py:155 +#: engine/core/models.py:154 msgid "vendor's integration file path" msgstr "供应商的集成文件路径" -#: core/models.py:156 +#: engine/core/models.py:155 msgid "integration path" msgstr "整合路径" -#: core/models.py:198 +#: engine/core/models.py:197 msgid "" "Represents a product tag used for classifying or identifying products. The " "ProductTag class is designed to uniquely identify and classify products " @@ -1503,45 +1547,48 @@ msgid "" "display name. It supports operations exported through mixins and provides " "metadata customization for administrative purposes." msgstr "" -"代表用于分类或识别产品的产品标签。ProductTag " -"类旨在通过内部标签标识符和用户友好显示名称的组合,对产品进行唯一标识和分类。它支持通过混合功能导出的操作,并为管理目的提供元数据定制功能。" +"代表用于分类或识别产品的产品标签。ProductTag 类旨在通过内部标签标识符和用户友" +"好显示名称的组合,对产品进行唯一标识和分类。它支持通过混合功能导出的操作,并" +"为管理目的提供元数据定制功能。" -#: core/models.py:210 core/models.py:241 +#: engine/core/models.py:209 engine/core/models.py:240 msgid "internal tag identifier for the product tag" msgstr "产品标签的内部标签标识符" -#: core/models.py:211 core/models.py:242 +#: engine/core/models.py:210 engine/core/models.py:241 msgid "tag name" msgstr "标签名称" -#: core/models.py:215 core/models.py:246 +#: engine/core/models.py:214 engine/core/models.py:245 msgid "user-friendly name for the product tag" msgstr "方便用户使用的产品标签名称" -#: core/models.py:216 core/models.py:247 +#: engine/core/models.py:215 engine/core/models.py:246 msgid "tag display name" msgstr "标签显示名称" -#: core/models.py:224 +#: engine/core/models.py:223 msgid "product tag" msgstr "产品标签" -#: core/models.py:230 +#: engine/core/models.py:229 msgid "" "Represents a category tag used for products. This class models a category " "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 "代表用于产品的类别标签。该类是类别标签的模型,可用于关联和分类产品。它包括内部标签标识符和用户友好显示名称的属性。" +msgstr "" +"代表用于产品的类别标签。该类是类别标签的模型,可用于关联和分类产品。它包括内" +"部标签标识符和用户友好显示名称的属性。" -#: core/models.py:255 +#: engine/core/models.py:254 msgid "category tag" msgstr "类别标签" -#: core/models.py:256 core/models.py:328 +#: engine/core/models.py:255 engine/core/models.py:327 msgid "category tags" msgstr "类别标签" -#: core/models.py:261 +#: engine/core/models.py:260 msgid "" "Represents a category entity to organize and group related items in a " "hierarchical structure. Categories may have hierarchical relationships with " @@ -1553,176 +1600,185 @@ msgid "" "hierarchy of categories, as well as assign attributes like images, tags, or " "priority." msgstr "" -"代表类别实体,用于在分层结构中组织和分组相关项目。类别可与其他类别建立层次关系,支持父子关系。该类包括元数据和可视化表示字段,是类别相关功能的基础。该类通常用于定义和管理应用程序中的产品类别或其他类似分组,允许用户或管理员指定类别的名称、描述和层次结构,以及分配图像、标记或优先级等属性。" +"代表类别实体,用于在分层结构中组织和分组相关项目。类别可与其他类别建立层次关" +"系,支持父子关系。该类包括元数据和可视化表示字段,是类别相关功能的基础。该类" +"通常用于定义和管理应用程序中的产品类别或其他类似分组,允许用户或管理员指定类" +"别的名称、描述和层次结构,以及分配图像、标记或优先级等属性。" -#: core/models.py:275 +#: engine/core/models.py:274 msgid "upload an image representing this category" msgstr "上传代表该类别的图片" -#: core/models.py:278 +#: engine/core/models.py:277 msgid "category image" msgstr "类别 图像" -#: core/models.py:283 +#: engine/core/models.py:282 msgid "define a markup percentage for products in this category" msgstr "定义该类别产品的加价百分比" -#: core/models.py:292 +#: engine/core/models.py:291 msgid "parent of this category to form a hierarchical structure" msgstr "该类别的父类别,形成等级结构" -#: core/models.py:293 +#: engine/core/models.py:292 msgid "parent category" msgstr "父类" -#: core/models.py:298 +#: engine/core/models.py:297 msgid "category name" msgstr "类别名称" -#: core/models.py:299 +#: engine/core/models.py:298 msgid "provide a name for this category" msgstr "提供该类别的名称" -#: core/models.py:306 +#: engine/core/models.py:305 msgid "add a detailed description for this category" msgstr "为该类别添加详细说明" -#: core/models.py:307 +#: engine/core/models.py:306 msgid "category description" msgstr "类别说明" -#: core/models.py:327 +#: engine/core/models.py:326 msgid "tags that help describe or group this category" msgstr "有助于描述或归类该类别的标签" -#: core/models.py:334 core/models.py:489 +#: engine/core/models.py:333 engine/core/models.py:488 msgid "priority" msgstr "优先权" -#: core/models.py:432 +#: engine/core/models.py:431 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 "" -"代表系统中的品牌对象。该类用于处理与品牌相关的信息和属性,包括名称、徽标、描述、相关类别、唯一标签和优先顺序。它允许在应用程序中组织和表示与品牌相关的数据。" +"代表系统中的品牌对象。该类用于处理与品牌相关的信息和属性,包括名称、徽标、描" +"述、相关类别、唯一标签和优先顺序。它允许在应用程序中组织和表示与品牌相关的数" +"据。" -#: core/models.py:442 +#: engine/core/models.py:441 msgid "name of this brand" msgstr "品牌名称" -#: core/models.py:443 +#: engine/core/models.py:442 msgid "brand name" msgstr "品牌名称" -#: core/models.py:450 +#: engine/core/models.py:449 msgid "upload a logo representing this brand" msgstr "上传代表该品牌的徽标" -#: core/models.py:452 +#: engine/core/models.py:451 msgid "brand small image" msgstr "品牌小形象" -#: core/models.py:458 +#: engine/core/models.py:457 msgid "upload a big logo representing this brand" msgstr "上传代表该品牌的大徽标" -#: core/models.py:460 +#: engine/core/models.py:459 msgid "brand big image" msgstr "品牌大形象" -#: core/models.py:465 +#: engine/core/models.py:464 msgid "add a detailed description of the brand" msgstr "添加品牌的详细描述" -#: core/models.py:466 +#: engine/core/models.py:465 msgid "brand description" msgstr "品牌描述" -#: core/models.py:471 +#: engine/core/models.py:470 msgid "optional categories that this brand is associated with" msgstr "与该品牌相关的可选类别" -#: core/models.py:472 +#: engine/core/models.py:471 msgid "associated categories" msgstr "类别" -#: core/models.py:502 +#: engine/core/models.py:501 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 和数字资产。它是库存" +"管理系统的一部分,用于跟踪和评估不同供应商提供的产品。" -#: core/models.py:514 +#: engine/core/models.py:513 msgid "the vendor supplying this product stock" msgstr "提供该产品库存的供应商" -#: core/models.py:515 +#: engine/core/models.py:514 msgid "associated vendor" msgstr "相关供应商" -#: core/models.py:519 +#: engine/core/models.py:518 msgid "final price to the customer after markups" msgstr "加价后给客户的最终价格" -#: core/models.py:520 +#: engine/core/models.py:519 msgid "selling price" msgstr "销售价格" -#: core/models.py:525 +#: engine/core/models.py:524 msgid "the product associated with this stock entry" msgstr "与该库存条目相关的产品" -#: core/models.py:526 core/models.py:779 core/models.py:825 -#: core/models.py:1718 +#: engine/core/models.py:525 engine/core/models.py:790 +#: engine/core/models.py:836 engine/core/models.py:1778 msgid "associated product" msgstr "相关产品" -#: core/models.py:533 +#: engine/core/models.py:532 msgid "the price paid to the vendor for this product" msgstr "为该产品支付给供应商的价格" -#: core/models.py:534 +#: engine/core/models.py:533 msgid "vendor purchase price" msgstr "供应商购买价格" -#: core/models.py:538 +#: engine/core/models.py:537 msgid "available quantity of the product in stock" msgstr "产品的可用库存量" -#: core/models.py:539 +#: engine/core/models.py:538 msgid "quantity in stock" msgstr "库存数量" -#: core/models.py:543 +#: engine/core/models.py:542 msgid "vendor-assigned SKU for identifying the product" msgstr "供应商指定的 SKU,用于识别产品" -#: core/models.py:544 +#: engine/core/models.py:543 msgid "vendor sku" msgstr "供应商 SKU" -#: core/models.py:550 +#: engine/core/models.py:549 msgid "digital file associated with this stock if applicable" msgstr "与该库存相关的数字文件(如适用" -#: core/models.py:551 +#: engine/core/models.py:550 msgid "digital file" msgstr "数字文件" -#: core/models.py:560 +#: engine/core/models.py:553 +msgid "system attributes" +msgstr "系统属性" + +#: engine/core/models.py:560 msgid "stock entries" msgstr "库存条目" -#: core/models.py:565 +#: engine/core/models.py:565 msgid "" "Represents a product with attributes such as category, brand, tags, digital " "status, name, description, part number, and slug. Provides related utility " @@ -1733,343 +1789,361 @@ msgid "" "properties to improve performance. It is used to define and manipulate " "product data and its associated information within an application." msgstr "" -"代表产品的属性,如类别、品牌、标签、数字状态、名称、描述、零件编号和标签。提供相关的实用属性,以检索评级、反馈计数、价格、数量和订单总数。设计用于处理电子商务或库存管理的系统。该类可与相关模型(如类别、品牌和" -" ProductTag)交互,并对频繁访问的属性进行缓存管理,以提高性能。它用于在应用程序中定义和操作产品数据及其相关信息。" +"代表产品的属性,如类别、品牌、标签、数字状态、名称、描述、零件编号和标签。提" +"供相关的实用属性,以检索评级、反馈计数、价格、数量和订单总数。设计用于处理电" +"子商务或库存管理的系统。该类可与相关模型(如类别、品牌和 ProductTag)交互,并" +"对频繁访问的属性进行缓存管理,以提高性能。它用于在应用程序中定义和操作产品数" +"据及其相关信息。" -#: core/models.py:578 +#: engine/core/models.py:578 msgid "category this product belongs to" msgstr "该产品所属类别" -#: core/models.py:587 +#: engine/core/models.py:587 msgid "optionally associate this product with a brand" msgstr "可选择将该产品与某个品牌联系起来" -#: core/models.py:593 +#: engine/core/models.py:593 msgid "tags that help describe or group this product" msgstr "有助于描述或归类该产品的标签" -#: core/models.py:598 +#: engine/core/models.py:598 msgid "indicates whether this product is digitally delivered" msgstr "表示该产品是否以数字方式交付" -#: core/models.py:599 +#: engine/core/models.py:599 msgid "is product digital" msgstr "产品是否数字化" -#: core/models.py:605 +#: engine/core/models.py:605 msgid "provide a clear identifying name for the product" msgstr "为产品提供一个明确的标识名称" -#: core/models.py:606 +#: engine/core/models.py:606 msgid "product name" msgstr "产品名称" -#: core/models.py:612 core/models.py:867 +#: engine/core/models.py:612 engine/core/models.py:878 msgid "add a detailed description of the product" msgstr "添加产品的详细描述" -#: core/models.py:613 +#: engine/core/models.py:613 msgid "product description" msgstr "产品说明" -#: core/models.py:620 +#: engine/core/models.py:620 msgid "part number for this product" msgstr "该产品的零件编号" -#: core/models.py:621 +#: engine/core/models.py:621 msgid "part number" msgstr "部件编号" -#: core/models.py:640 +#: engine/core/models.py:640 msgid "stock keeping unit for this product" msgstr "该产品的库存单位" -#: core/models.py:702 +#: engine/core/models.py:713 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 "" -"代表系统中的一个属性。该类用于定义和管理属性,属性是可与其他实体关联的自定义数据块。属性有相关的类别、组、值类型和名称。该模型支持多种类型的值,包括字符串、整数、浮点数、布尔值、数组和对象。这样就可以实现动态、灵活的数据结构。" +"代表系统中的一个属性。该类用于定义和管理属性,属性是可与其他实体关联的自定义" +"数据块。属性有相关的类别、组、值类型和名称。该模型支持多种类型的值,包括字符" +"串、整数、浮点数、布尔值、数组和对象。这样就可以实现动态、灵活的数据结构。" -#: core/models.py:715 +#: engine/core/models.py:726 msgid "group of this attribute" msgstr "该属性的组" -#: core/models.py:721 +#: engine/core/models.py:732 msgid "string" msgstr "字符串" -#: core/models.py:722 +#: engine/core/models.py:733 msgid "integer" msgstr "整数" -#: core/models.py:723 +#: engine/core/models.py:734 msgid "float" msgstr "浮动" -#: core/models.py:724 +#: engine/core/models.py:735 msgid "boolean" msgstr "布尔型" -#: core/models.py:725 +#: engine/core/models.py:736 msgid "array" msgstr "阵列" -#: core/models.py:726 +#: engine/core/models.py:737 msgid "object" msgstr "对象" -#: core/models.py:728 +#: engine/core/models.py:739 msgid "type of the attribute's value" msgstr "属性值的类型" -#: core/models.py:729 +#: engine/core/models.py:740 msgid "value type" msgstr "价值类型" -#: core/models.py:734 +#: engine/core/models.py:745 msgid "name of this attribute" msgstr "该属性的名称" -#: core/models.py:735 +#: engine/core/models.py:746 msgid "attribute's name" msgstr "属性名称" -#: core/models.py:740 +#: engine/core/models.py:751 msgid "is filterable" msgstr "可过滤" -#: core/models.py:741 +#: engine/core/models.py:752 msgid "designates whether this attribute can be used for filtering or not" msgstr "指定该属性是否可用于筛选" -#: core/models.py:753 core/models.py:771 -#: core/templates/digital_order_delivered_email.html:134 +#: engine/core/models.py:764 engine/core/models.py:782 +#: engine/core/templates/digital_order_delivered_email.html:134 msgid "attribute" msgstr "属性" -#: core/models.py:759 +#: engine/core/models.py:770 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 "代表与产品相关联的属性的特定值。它将 \"属性 \"与唯一的 \"值 \"联系起来,从而更好地组织和动态呈现产品特征。" +"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 "" +"代表与产品相关联的属性的特定值。它将 \"属性 \"与唯一的 \"值 \"联系起来,从而" +"更好地组织和动态呈现产品特征。" -#: core/models.py:770 +#: engine/core/models.py:781 msgid "attribute of this value" msgstr "该值的属性" -#: core/models.py:778 +#: engine/core/models.py:789 msgid "the specific product associated with this attribute's value" msgstr "与该属性值相关的特定产品" -#: core/models.py:784 +#: engine/core/models.py:795 msgid "the specific value for this attribute" msgstr "该属性的具体值" -#: core/models.py:797 +#: engine/core/models.py:808 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 "" -"代表与系统中产品相关联的产品图片。该类用于管理产品图片,包括上传图片文件、将图片与特定产品关联以及确定图片显示顺序等功能。它还包括一个为图像提供替代文本的可访问性功能。" +"代表与系统中产品相关联的产品图片。该类用于管理产品图片,包括上传图片文件、将" +"图片与特定产品关联以及确定图片显示顺序等功能。它还包括一个为图像提供替代文本" +"的可访问性功能。" -#: core/models.py:808 +#: engine/core/models.py:819 msgid "provide alternative text for the image for accessibility" msgstr "为图像提供替代文字,以便于访问" -#: core/models.py:809 +#: engine/core/models.py:820 msgid "image alt text" msgstr "图片 alt 文本" -#: core/models.py:812 +#: engine/core/models.py:823 msgid "upload the image file for this product" msgstr "上传该产品的图片文件" -#: core/models.py:813 core/models.py:837 +#: engine/core/models.py:824 engine/core/models.py:848 msgid "product image" msgstr "产品图片" -#: core/models.py:818 +#: engine/core/models.py:829 msgid "determines the order in which images are displayed" msgstr "确定图像的显示顺序" -#: core/models.py:819 +#: engine/core/models.py:830 msgid "display priority" msgstr "显示优先级" -#: core/models.py:824 +#: engine/core/models.py:835 msgid "the product that this image represents" msgstr "该图片所代表的产品" -#: core/models.py:838 +#: engine/core/models.py:849 msgid "product images" msgstr "产品图片" -#: core/models.py:843 +#: engine/core/models.py:854 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 "" -"代表有折扣的产品促销活动。该类用于定义和管理为产品提供百分比折扣的促销活动。该类包括用于设置折扣率、提供促销详情以及将其链接到适用产品的属性。它与产品目录集成,以确定促销活动中受影响的产品。" +"代表有折扣的产品促销活动。该类用于定义和管理为产品提供百分比折扣的促销活动。" +"该类包括用于设置折扣率、提供促销详情以及将其链接到适用产品的属性。它与产品目" +"录集成,以确定促销活动中受影响的产品。" -#: core/models.py:855 +#: engine/core/models.py:866 msgid "percentage discount for the selected products" msgstr "所选产品的折扣百分比" -#: core/models.py:856 +#: engine/core/models.py:867 msgid "discount percentage" msgstr "折扣百分比" -#: core/models.py:861 +#: engine/core/models.py:872 msgid "provide a unique name for this promotion" msgstr "为该促销活动提供一个独特的名称" -#: core/models.py:862 +#: engine/core/models.py:873 msgid "promotion name" msgstr "推广名称" -#: core/models.py:868 +#: engine/core/models.py:879 msgid "promotion description" msgstr "促销说明" -#: core/models.py:873 +#: engine/core/models.py:884 msgid "select which products are included in this promotion" msgstr "选择促销活动包括哪些产品" -#: core/models.py:874 +#: engine/core/models.py:885 msgid "included products" msgstr "包括产品" -#: core/models.py:878 +#: engine/core/models.py:889 msgid "promotion" msgstr "促销活动" -#: core/models.py:889 +#: engine/core/models.py:900 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 "代表用户用于存储和管理所需产品的愿望清单。该类提供管理产品集合的功能,支持添加和删除产品等操作,还支持同时添加和删除多个产品的操作。" +msgstr "" +"代表用户用于存储和管理所需产品的愿望清单。该类提供管理产品集合的功能,支持添" +"加和删除产品等操作,还支持同时添加和删除多个产品的操作。" -#: core/models.py:901 +#: engine/core/models.py:912 msgid "products that the user has marked as wanted" msgstr "用户标记为想要的产品" -#: core/models.py:909 +#: engine/core/models.py:920 msgid "user who owns this wishlist" msgstr "拥有此愿望清单的用户" -#: core/models.py:910 +#: engine/core/models.py:921 msgid "wishlist owner" msgstr "心愿单所有者" -#: core/models.py:918 +#: engine/core/models.py:929 msgid "wishlist" msgstr "愿望清单" -#: core/models.py:960 +#: engine/core/models.py:971 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 "" -"代表与产品相关的文档记录。该类用于存储与特定产品相关的文档信息,包括文件上传及其元数据。它包含处理文件类型和文档文件存储路径的方法和属性。它扩展了特定混合类的功能,并提供了额外的自定义功能。" +"代表与产品相关的文档记录。该类用于存储与特定产品相关的文档信息,包括文件上传" +"及其元数据。它包含处理文件类型和文档文件存储路径的方法和属性。它扩展了特定混" +"合类的功能,并提供了额外的自定义功能。" -#: core/models.py:973 +#: engine/core/models.py:984 msgid "documentary" msgstr "纪录片" -#: core/models.py:974 +#: engine/core/models.py:985 msgid "documentaries" msgstr "纪录片" -#: core/models.py:984 +#: engine/core/models.py:995 msgid "unresolved" msgstr "未解决" -#: core/models.py:989 +#: engine/core/models.py:1000 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 响应,以便进一步处理或检查。该类还可以将地址与用户关联起来,方便个" +"性化数据处理。" -#: core/models.py:1004 +#: engine/core/models.py:1015 msgid "address line for the customer" msgstr "客户地址栏" -#: core/models.py:1005 +#: engine/core/models.py:1016 msgid "address line" msgstr "地址栏" -#: core/models.py:1007 +#: engine/core/models.py:1018 msgid "street" msgstr "街道" -#: core/models.py:1008 +#: engine/core/models.py:1019 msgid "district" msgstr "地区" -#: core/models.py:1009 +#: engine/core/models.py:1020 msgid "city" msgstr "城市" -#: core/models.py:1010 +#: engine/core/models.py:1021 msgid "region" msgstr "地区" -#: core/models.py:1011 +#: engine/core/models.py:1022 msgid "postal code" msgstr "邮政编码" -#: core/models.py:1012 +#: engine/core/models.py:1023 msgid "country" msgstr "国家" -#: core/models.py:1019 +#: engine/core/models.py:1030 msgid "geolocation point: (longitude, latitude)" msgstr "地理位置点(经度、纬度)" -#: core/models.py:1022 +#: engine/core/models.py:1033 msgid "full JSON response from geocoder for this address" msgstr "地理编码器对此地址的完整 JSON 响应" -#: core/models.py:1027 +#: engine/core/models.py:1038 msgid "stored JSON response from the geocoding service" msgstr "存储的来自地理编码服务的 JSON 响应" -#: core/models.py:1035 +#: engine/core/models.py:1046 msgid "address" msgstr "地址" -#: core/models.py:1036 +#: engine/core/models.py:1047 msgid "addresses" msgstr "地址" -#: core/models.py:1048 +#: engine/core/models.py:1059 msgid "" "Represents a promotional code that can be used for discounts, managing its " "validity, type of discount, and application. The PromoCode class stores " @@ -2078,237 +2152,280 @@ 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 类存储促销" +"代码的详细信息,包括其唯一标识符、折扣属性(金额或百分比)、有效期、关联用户" +"(如有)及其使用状态。该类包含验证促销代码并将其应用于订单的功能,同时确保符" +"合约束条件。" -#: core/models.py:1062 +#: engine/core/models.py:1073 msgid "unique code used by a user to redeem a discount" msgstr "用户用于兑换折扣的唯一代码" -#: core/models.py:1063 +#: engine/core/models.py:1074 msgid "promo code identifier" msgstr "促销代码标识符" -#: core/models.py:1070 +#: engine/core/models.py:1081 msgid "fixed discount amount applied if percent is not used" msgstr "如果不使用百分比,则使用固定折扣额" -#: core/models.py:1071 +#: engine/core/models.py:1082 msgid "fixed discount amount" msgstr "固定折扣额" -#: core/models.py:1077 +#: engine/core/models.py:1088 msgid "percentage discount applied if fixed amount is not used" msgstr "未使用固定金额时适用的折扣百分比" -#: core/models.py:1078 +#: engine/core/models.py:1089 msgid "percentage discount" msgstr "折扣百分比" -#: core/models.py:1083 +#: engine/core/models.py:1094 msgid "timestamp when the promocode expires" msgstr "促销代码过期的时间戳" -#: core/models.py:1084 +#: engine/core/models.py:1095 msgid "end validity time" msgstr "结束有效时间" -#: core/models.py:1089 +#: engine/core/models.py:1100 msgid "timestamp from which this promocode is valid" msgstr "该促销代码有效的时间戳" -#: core/models.py:1090 +#: engine/core/models.py:1101 msgid "start validity time" msgstr "开始有效时间" -#: core/models.py:1095 +#: engine/core/models.py:1106 msgid "timestamp when the promocode was used, blank if not used yet" msgstr "使用促销代码的时间戳,如果尚未使用,则留空" -#: core/models.py:1096 +#: engine/core/models.py:1107 msgid "usage timestamp" msgstr "使用时间戳" -#: core/models.py:1101 +#: engine/core/models.py:1112 msgid "user assigned to this promocode if applicable" msgstr "分配给此促销代码的用户(如适用" -#: core/models.py:1102 +#: engine/core/models.py:1113 msgid "assigned user" msgstr "指定用户" -#: core/models.py:1109 +#: engine/core/models.py:1120 msgid "promo code" msgstr "促销代码" -#: core/models.py:1110 +#: engine/core/models.py:1121 msgid "promo codes" msgstr "促销代码" -#: core/models.py:1125 +#: engine/core/models.py:1136 msgid "" "only one type of discount should be defined (amount or percent), but not " "both or neither." -msgstr "只能定义一种折扣类型(金额或百分比),而不能同时定义两种类型或两者都不定义。" +msgstr "" +"只能定义一种折扣类型(金额或百分比),而不能同时定义两种类型或两者都不定义。" -#: core/models.py:1146 +#: engine/core/models.py:1157 msgid "promocode already used" msgstr "促销代码已被使用" -#: core/models.py:1162 +#: engine/core/models.py:1173 #, python-brace-format msgid "invalid discount type for promocode {self.uuid}" msgstr "促销代码 {self.uuid} 的折扣类型无效!" -#: core/models.py:1171 +#: engine/core/models.py:1182 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 "" -"代表用户下达的订单。该类在应用程序中模拟订单,包括订单的各种属性,如账单和发货信息、状态、关联用户、通知和相关操作。订单可以有关联的产品,可以应用促销活动,设置地址,更新发货或账单详情。同样,该功能还支持在订单生命周期中管理产品。" +"代表用户下达的订单。该类在应用程序中模拟订单,包括订单的各种属性,如账单和发" +"货信息、状态、关联用户、通知和相关操作。订单可以有关联的产品,可以应用促销活" +"动,设置地址,更新发货或账单详情。同样,该功能还支持在订单生命周期中管理产" +"品。" -#: core/models.py:1188 +#: engine/core/models.py:1199 msgid "the billing address used for this order" msgstr "该订单使用的账单地址" -#: core/models.py:1196 +#: engine/core/models.py:1207 msgid "optional promo code applied to this order" msgstr "此订单可选择使用促销代码" -#: core/models.py:1197 +#: engine/core/models.py:1208 msgid "applied promo code" msgstr "应用促销代码" -#: core/models.py:1205 +#: engine/core/models.py:1216 msgid "the shipping address used for this order" msgstr "该订单使用的送货地址" -#: core/models.py:1206 +#: engine/core/models.py:1217 msgid "shipping address" msgstr "送货地址" -#: core/models.py:1212 +#: engine/core/models.py:1223 msgid "current status of the order in its lifecycle" msgstr "订单在其生命周期中的当前状态" -#: core/models.py:1213 +#: engine/core/models.py:1224 msgid "order status" msgstr "订单状态" -#: core/models.py:1218 core/models.py:1695 +#: engine/core/models.py:1229 engine/core/models.py:1755 msgid "json structure of notifications to display to users" msgstr "向用户显示的通知的 JSON 结构,在管理用户界面中使用表格视图" -#: core/models.py:1224 +#: engine/core/models.py:1235 msgid "json representation of order attributes for this order" msgstr "该订单属性的 JSON 表示形式" -#: core/models.py:1230 +#: engine/core/models.py:1241 msgid "the user who placed the order" msgstr "下订单的用户" -#: core/models.py:1231 +#: engine/core/models.py:1242 msgid "user" msgstr "用户" -#: core/models.py:1237 +#: engine/core/models.py:1248 msgid "the timestamp when the order was finalized" msgstr "订单确定的时间戳" -#: core/models.py:1238 +#: engine/core/models.py:1249 msgid "buy time" msgstr "购买时间" -#: core/models.py:1245 +#: engine/core/models.py:1256 msgid "a human-readable identifier for the order" msgstr "订单的人工可读标识符" -#: core/models.py:1246 +#: engine/core/models.py:1257 msgid "human readable id" msgstr "人类可读 ID" -#: core/models.py:1252 +#: engine/core/models.py:1263 msgid "order" msgstr "订购" -#: core/models.py:1294 +#: engine/core/models.py:1305 msgid "a user must have only one pending order at a time" msgstr "用户每次只能有一个挂单!" -#: core/models.py:1326 +#: engine/core/models.py:1337 msgid "you cannot add products to an order that is not a pending one" msgstr "您不能向非待处理订单添加产品" -#: core/models.py:1331 +#: engine/core/models.py:1342 msgid "you cannot add inactive products to order" msgstr "您不能在订单中添加非活动产品" -#: core/models.py:1348 +#: engine/core/models.py:1359 msgid "you cannot add more products than available in stock" msgstr "添加的产品数量不能超过现有库存" -#: core/models.py:1370 core/models.py:1395 core/models.py:1403 +#: engine/core/models.py:1381 engine/core/models.py:1406 +#: engine/core/models.py:1414 msgid "you cannot remove products from an order that is not a pending one" msgstr "您不能从非待处理订单中删除产品" -#: core/models.py:1391 +#: engine/core/models.py:1402 #, python-brace-format msgid "{name} does not exist with query <{query}>" msgstr "查询 <{query}> 时,{name} 不存在!" -#: core/models.py:1423 +#: engine/core/models.py:1434 msgid "promocode does not exist" msgstr "促销代码不存在" -#: core/models.py:1429 +#: engine/core/models.py:1440 msgid "you can only buy physical products with shipping address specified" msgstr "您只能购买指定送货地址的实物产品!" -#: core/models.py:1448 +#: engine/core/models.py:1459 msgid "address does not exist" msgstr "地址不存在" -#: core/models.py:1469 core/models.py:1538 +#: engine/core/models.py:1480 engine/core/models.py:1549 msgid "you can not buy at this moment, please try again in a few minutes" msgstr "您现在无法购买,请稍后再试。" -#: core/models.py:1472 core/models.py:1534 +#: engine/core/models.py:1483 engine/core/models.py:1545 msgid "invalid force value" msgstr "力值无效" -#: core/models.py:1478 core/models.py:1541 +#: engine/core/models.py:1489 engine/core/models.py:1552 msgid "you cannot purchase an empty order!" msgstr "您不能购买空单!" -#: core/models.py:1497 +#: engine/core/models.py:1508 msgid "you cannot buy an order without a user" msgstr "没有用户就无法购买订单!" -#: core/models.py:1511 +#: engine/core/models.py:1522 msgid "a user without a balance cannot buy with balance" msgstr "没有余额的用户不能使用余额购买!" -#: core/models.py:1516 +#: engine/core/models.py:1527 msgid "insufficient funds to complete the order" msgstr "资金不足,无法完成订单" -#: core/models.py:1550 +#: engine/core/models.py:1561 msgid "" "you cannot buy without registration, please provide the following " "information: customer name, customer email, customer phone number" msgstr "未经注册不能购买,请提供以下信息:客户姓名、客户电子邮件、客户电话号码" -#: core/models.py:1559 +#: engine/core/models.py:1570 #, python-brace-format msgid "" "invalid payment method: {payment_method} from {available_payment_methods}" msgstr "付款方式无效:来自 {available_payment_methods} 的 {payment_method} !" -#: core/models.py:1668 +#: engine/core/models.py:1685 +msgid "" +"Manages user feedback for products. This class is designed to capture and " +"store user feedback for specific products that they have purchased. It " +"contains attributes to store user comments, a reference to the related " +"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:1697 +msgid "user-provided comments about their experience with the product" +msgstr "用户提供的产品使用体验评论" + +#: engine/core/models.py:1698 +msgid "feedback comments" +msgstr "反馈意见" + +#: engine/core/models.py:1705 +msgid "references the specific product in an order that this feedback is about" +msgstr "引用该反馈意见涉及的订单中的具体产品" + +#: engine/core/models.py:1706 +msgid "related order product" +msgstr "相关订购产品" + +#: engine/core/models.py:1711 +msgid "user-assigned rating for the product" +msgstr "用户对产品的评分" + +#: engine/core/models.py:1712 +msgid "product rating" +msgstr "产品评级" + +#: engine/core/models.py:1728 msgid "" "Represents products associated with orders and their attributes. The " "OrderProduct model maintains information about a product that is part of an " @@ -2320,273 +2437,239 @@ msgid "" "download URL for digital products. The model integrates with the Order and " "Product models and stores a reference to them." msgstr "" -"代表与订单及其属性相关联的产品。OrderProduct " -"模型维护订单中产品的相关信息,包括购买价格、数量、产品属性和状态等详细信息。它为用户和管理员管理通知,并处理返回产品余额或添加反馈等操作。该模型还提供支持业务逻辑的方法和属性,如计算总价或为数字产品生成下载" -" URL。该模型与订单和产品模型集成,并存储对它们的引用。" +"代表与订单及其属性相关联的产品。OrderProduct 模型维护订单中产品的相关信息,包" +"括购买价格、数量、产品属性和状态等详细信息。它为用户和管理员管理通知,并处理" +"返回产品余额或添加反馈等操作。该模型还提供支持业务逻辑的方法和属性,如计算总" +"价或为数字产品生成下载 URL。该模型与订单和产品模型集成,并存储对它们的引用。" -#: core/models.py:1683 +#: engine/core/models.py:1743 msgid "the price paid by the customer for this product at purchase time" msgstr "客户购买该产品时支付的价格" -#: core/models.py:1684 +#: engine/core/models.py:1744 msgid "purchase price at order time" msgstr "订购时的购买价格" -#: core/models.py:1689 +#: engine/core/models.py:1749 msgid "internal comments for admins about this ordered product" msgstr "管理员对该订购产品的内部评论" -#: core/models.py:1690 +#: engine/core/models.py:1750 msgid "internal comments" msgstr "内部意见" -#: core/models.py:1696 +#: engine/core/models.py:1756 msgid "user notifications" msgstr "用户通知" -#: core/models.py:1701 +#: engine/core/models.py:1761 msgid "json representation of this item's attributes" msgstr "该项属性的 JSON 表示形式" -#: core/models.py:1702 +#: engine/core/models.py:1762 msgid "ordered product attributes" msgstr "有序的产品属性" -#: core/models.py:1707 +#: engine/core/models.py:1767 msgid "reference to the parent order that contains this product" msgstr "对包含该产品的父订单的引用" -#: core/models.py:1708 +#: engine/core/models.py:1768 msgid "parent order" msgstr "父顺序" -#: core/models.py:1717 +#: engine/core/models.py:1777 msgid "the specific product associated with this order line" msgstr "与该订单项目相关的具体产品" -#: core/models.py:1724 +#: engine/core/models.py:1784 msgid "quantity of this specific product in the order" msgstr "订单中该特定产品的数量" -#: core/models.py:1725 +#: engine/core/models.py:1785 msgid "product quantity" msgstr "产品数量" -#: core/models.py:1732 +#: engine/core/models.py:1792 msgid "current status of this product in the order" msgstr "订单中该产品的当前状态" -#: core/models.py:1733 +#: engine/core/models.py:1793 msgid "product line status" msgstr "产品系列状态" -#: core/models.py:1798 +#: engine/core/models.py:1858 msgid "order product must have an order" msgstr "订单产品必须有相关的订单!" -#: core/models.py:1800 +#: engine/core/models.py:1860 #, python-brace-format msgid "wrong action specified for feedback: {action}" msgstr "为反馈指定了错误的操作:{action}!" -#: core/models.py:1814 +#: engine/core/models.py:1874 msgid "you cannot feedback an order which is not received" msgstr "您不能反馈未收到的订单" -#: core/models.py:1820 +#: engine/core/models.py:1880 msgid "name" msgstr "名称" -#: core/models.py:1821 +#: engine/core/models.py:1881 msgid "URL of the integration" msgstr "集成的 URL" -#: core/models.py:1822 +#: engine/core/models.py:1882 msgid "authentication credentials" msgstr "认证证书" -#: core/models.py:1844 +#: engine/core/models.py:1904 msgid "you can only have one default CRM provider" msgstr "只能有一个默认 CRM 提供商" -#: core/models.py:1854 +#: engine/core/models.py:1914 msgid "CRM" msgstr "客户关系管理" -#: core/models.py:1855 +#: engine/core/models.py:1915 msgid "CRMs" msgstr "客户关系管理" -#: core/models.py:1867 +#: engine/core/models.py:1927 msgid "order CRM link" msgstr "订单的客户关系管理链接" -#: core/models.py:1868 +#: engine/core/models.py:1928 msgid "orders CRM links" msgstr "订单的客户关系管理链接" -#: core/models.py:1873 +#: engine/core/models.py:1933 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 的方法。" -#: core/models.py:1887 +#: engine/core/models.py:1947 msgid "download" msgstr "下载" -#: core/models.py:1888 +#: engine/core/models.py:1948 msgid "downloads" msgstr "下载" -#: core/models.py:1902 -msgid "" -"Manages user feedback for products. This class is designed to capture and " -"store user feedback for specific products that they have purchased. It " -"contains attributes to store user comments, a reference to the related " -"product in the order, and a user-assigned rating. The class uses database " -"fields to effectively model and manage feedback data." -msgstr "" -"管理产品的用户反馈。该类用于捕获和存储用户对其购买的特定产品的反馈。它包含用于存储用户评论的属性、订单中相关产品的引用以及用户指定的评分。该类使用数据库字段对反馈数据进行有效建模和管理。" - -#: core/models.py:1914 -msgid "user-provided comments about their experience with the product" -msgstr "用户提供的产品使用体验评论" - -#: core/models.py:1915 -msgid "feedback comments" -msgstr "反馈意见" - -#: core/models.py:1922 -msgid "" -"references the specific product in an order that this feedback is about" -msgstr "引用该反馈意见涉及的订单中的具体产品" - -#: core/models.py:1923 -msgid "related order product" -msgstr "相关订购产品" - -#: core/models.py:1928 -msgid "user-assigned rating for the product" -msgstr "用户对产品的评分" - -#: core/models.py:1929 -msgid "product rating" -msgstr "产品评级" - -#: core/serializers/utility.py:89 +#: engine/core/serializers/utility.py:89 msgid "" "you must provide a comment, rating, and order product uuid to add feedback." msgstr "您必须提供评论、评级和订单产品 uuid 才能添加反馈。" -#: core/signals.py:73 -msgid "error during promocode creation: {e!s}" -msgstr "创建促销代码时出错:{e!s}" - -#: core/sitemaps.py:25 +#: engine/core/sitemaps.py:25 msgid "Home" msgstr "首页" -#: core/sitemaps.py:30 +#: engine/core/sitemaps.py:30 msgid "Contact Us" msgstr "联系我们" -#: core/sitemaps.py:35 +#: engine/core/sitemaps.py:35 msgid "About Us" msgstr "关于我们" -#: core/templates/digital_order_created_email.html:7 -#: core/templates/digital_order_created_email.html:100 -#: core/templates/digital_order_delivered_email.html:6 -#: core/templates/shipped_order_created_email.html:7 -#: core/templates/shipped_order_created_email.html:99 -#: core/templates/shipped_order_delivered_email.html:7 -#: core/templates/shipped_order_delivered_email.html:99 +#: engine/core/templates/digital_order_created_email.html:7 +#: engine/core/templates/digital_order_created_email.html:100 +#: engine/core/templates/digital_order_delivered_email.html:6 +#: engine/core/templates/shipped_order_created_email.html:7 +#: engine/core/templates/shipped_order_created_email.html:99 +#: engine/core/templates/shipped_order_delivered_email.html:7 +#: engine/core/templates/shipped_order_delivered_email.html:99 msgid "order confirmation" msgstr "订单确认" -#: core/templates/digital_order_created_email.html:95 -#: core/templates/digital_order_delivered_email.html:94 -#: core/templates/promocode_granted_email.html:94 -#: core/templates/shipped_order_created_email.html:94 -#: core/templates/shipped_order_delivered_email.html:94 +#: engine/core/templates/digital_order_created_email.html:95 +#: engine/core/templates/digital_order_delivered_email.html:94 +#: engine/core/templates/promocode_granted_email.html:94 +#: engine/core/templates/shipped_order_created_email.html:94 +#: engine/core/templates/shipped_order_delivered_email.html:94 msgid "logo" msgstr "标志" -#: core/templates/digital_order_created_email.html:101 -#: core/templates/shipped_order_created_email.html:100 -#: core/templates/shipped_order_delivered_email.html:100 +#: engine/core/templates/digital_order_created_email.html:101 +#: engine/core/templates/shipped_order_created_email.html:100 +#: engine/core/templates/shipped_order_delivered_email.html:100 #, python-format msgid "hello %(order.user.first_name)s," msgstr "你好%(order.user.first_name)s_、" -#: core/templates/digital_order_created_email.html:102 +#: engine/core/templates/digital_order_created_email.html:102 #, 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!我们很高兴地通知您,我们已将您的订单付诸实施。以" +"下是您的订单详情:" -#: core/templates/digital_order_created_email.html:112 -#: core/templates/digital_order_delivered_email.html:110 -#: core/templates/shipped_order_created_email.html:110 -#: core/templates/shipped_order_delivered_email.html:110 +#: engine/core/templates/digital_order_created_email.html:112 +#: engine/core/templates/digital_order_delivered_email.html:110 +#: engine/core/templates/shipped_order_created_email.html:110 +#: engine/core/templates/shipped_order_delivered_email.html:110 msgid "total" msgstr "总计" -#: core/templates/digital_order_created_email.html:125 -#: core/templates/digital_order_delivered_email.html:157 -#: core/templates/shipped_order_created_email.html:127 -#: core/templates/shipped_order_delivered_email.html:127 +#: engine/core/templates/digital_order_created_email.html:125 +#: engine/core/templates/digital_order_delivered_email.html:157 +#: engine/core/templates/shipped_order_created_email.html:127 +#: engine/core/templates/shipped_order_delivered_email.html:127 msgid "total price" msgstr "总价" -#: core/templates/digital_order_created_email.html:131 -#: core/templates/shipped_order_created_email.html:140 -#: core/templates/shipped_order_delivered_email.html:140 +#: engine/core/templates/digital_order_created_email.html:131 +#: engine/core/templates/shipped_order_created_email.html:140 +#: engine/core/templates/shipped_order_delivered_email.html:140 #, python-format 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 联系我们的支持人员。" -#: core/templates/digital_order_created_email.html:133 +#: engine/core/templates/digital_order_created_email.html:133 #, python-format msgid "best regards,
the %(config.PROJECT_NAME)s team" msgstr "致以最诚挚的问候,
%(config.PROJECT_NAME)s_团队" -#: core/templates/digital_order_created_email.html:139 -#: core/templates/digital_order_delivered_email.html:171 -#: core/templates/promocode_granted_email.html:114 +#: engine/core/templates/digital_order_created_email.html:139 +#: engine/core/templates/digital_order_delivered_email.html:171 +#: engine/core/templates/promocode_granted_email.html:114 msgid "all rights reserved" msgstr "保留所有权利" -#: core/templates/digital_order_delivered_email.html:99 +#: engine/core/templates/digital_order_delivered_email.html:99 msgid "order delivered" msgstr "订单已送达" -#: core/templates/digital_order_delivered_email.html:100 -#: core/templates/promocode_granted_email.html:100 +#: engine/core/templates/digital_order_delivered_email.html:100 +#: engine/core/templates/promocode_granted_email.html:100 #, python-format msgid "hello %(user_first_name)s," msgstr "你好%(user_first_name)s_、" -#: core/templates/digital_order_delivered_email.html:101 +#: engine/core/templates/digital_order_delivered_email.html:101 #, python-format msgid "" "we have successfully processed your order №%(order_uuid)s! below are the\n" " details of your order:" msgstr "我们已成功处理您的订单 №%(order_uuid)s_!以下是您的订单详情:" -#: core/templates/digital_order_delivered_email.html:128 +#: engine/core/templates/digital_order_delivered_email.html:128 msgid "" "additional\n" " information" @@ -2594,39 +2677,39 @@ msgstr "" "其他\n" " 附加信息" -#: core/templates/digital_order_delivered_email.html:137 -#: core/templates/json_table_widget.html:6 +#: engine/core/templates/digital_order_delivered_email.html:137 +#: engine/core/templates/json_table_widget.html:6 msgid "value" msgstr "价值" -#: core/templates/digital_order_delivered_email.html:163 -#: core/templates/promocode_granted_email.html:106 +#: engine/core/templates/digital_order_delivered_email.html:163 +#: engine/core/templates/promocode_granted_email.html:106 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" " %(contact_email)s." msgstr "如果您有任何问题,请随时拨打 %(contact_email)s 联系我们的支持人员。" -#: core/templates/digital_order_delivered_email.html:165 -#: core/templates/promocode_granted_email.html:108 +#: engine/core/templates/digital_order_delivered_email.html:165 +#: engine/core/templates/promocode_granted_email.html:108 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "致以最诚挚的问候,
%(project_name)s_团队" -#: core/templates/json_table_widget.html:5 +#: engine/core/templates/json_table_widget.html:5 msgid "key" msgstr "钥匙" -#: core/templates/json_table_widget.html:40 +#: engine/core/templates/json_table_widget.html:40 msgid "Add Row" msgstr "添加行" -#: core/templates/promocode_granted_email.html:6 -#: core/templates/promocode_granted_email.html:99 +#: engine/core/templates/promocode_granted_email.html:6 +#: engine/core/templates/promocode_granted_email.html:99 msgid "promocode granted" msgstr "促销代码已授予" -#: core/templates/promocode_granted_email.html:101 +#: engine/core/templates/promocode_granted_email.html:101 msgid "" "Thank you for staying with us! We have granted you with a promocode\n" " for " @@ -2634,31 +2717,32 @@ msgstr "" "感谢您的光临!我们为您提供了一个促销代码\n" " 用于" -#: core/templates/shipped_order_created_email.html:101 -#: core/templates/shipped_order_delivered_email.html:101 +#: 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 "感谢您的订购!我们很高兴确认您的购买。以下是您的订单详情:" -#: core/templates/shipped_order_created_email.html:123 -#: core/templates/shipped_order_delivered_email.html:123 +#: engine/core/templates/shipped_order_created_email.html:123 +#: engine/core/templates/shipped_order_delivered_email.html:123 msgid "shipping price" msgstr "运输价格" -#: core/templates/shipped_order_created_email.html:133 -#: core/templates/shipped_order_delivered_email.html:133 +#: engine/core/templates/shipped_order_created_email.html:133 +#: engine/core/templates/shipped_order_delivered_email.html:133 msgid "your order will be delivered to the following address:" msgstr "您的订单将送至以下地址:" -#: core/templates/shipped_order_created_email.html:142 -#: core/templates/shipped_order_delivered_email.html:142 +#: engine/core/templates/shipped_order_created_email.html:142 +#: engine/core/templates/shipped_order_delivered_email.html:142 #, python-format msgid "best regards,
The %(config.PROJECT_NAME)s team" msgstr "致以最诚挚的问候,
%(config.PROJECT_NAME)s_团队" -#: core/templates/shipped_order_created_email.html:147 -#: core/templates/shipped_order_delivered_email.html:147 +#: engine/core/templates/shipped_order_created_email.html:147 +#: engine/core/templates/shipped_order_delivered_email.html:147 msgid "" "all rights\n" " reserved" @@ -2666,143 +2750,152 @@ msgstr "" "版权所有\n" " 保留所有权利" -#: core/utils/caching.py:44 +#: engine/core/utils/caching.py:44 msgid "both data and timeout are required" msgstr "需要数据和超时" -#: core/utils/caching.py:46 +#: engine/core/utils/caching.py:46 msgid "invalid timeout value, it must be between 0 and 216000 seconds" msgstr "超时值无效,必须介于 0 和 216000 秒之间" -#: core/utils/emailing.py:27 +#: engine/core/utils/emailing.py:27 #, python-brace-format msgid "{config.PROJECT_NAME} | contact us initiated" msgstr "{config.PROJECT_NAME}| 联系我们" -#: core/utils/emailing.py:73 +#: engine/core/utils/emailing.py:73 #, python-brace-format msgid "{config.PROJECT_NAME} | order confirmation" msgstr "{config.PROJECT_NAME}| 订单确认" -#: core/utils/emailing.py:105 +#: engine/core/utils/emailing.py:105 #, python-brace-format msgid "{config.PROJECT_NAME} | order delivered" msgstr "{config.PROJECT_NAME} | 订单已送达" -#: core/utils/emailing.py:188 +#: engine/core/utils/emailing.py:188 #, python-brace-format msgid "{config.PROJECT_NAME} | promocode granted" msgstr "{config.PROJECT_NAME} | 授予的促销代码" -#: core/utils/messages.py:3 +#: engine/core/utils/messages.py:3 msgid "you do not have permission to perform this action." msgstr "您没有执行此操作的权限。" -#: core/utils/nominatim.py:8 +#: engine/core/utils/nominatim.py:8 msgid "NOMINATIM_URL must be configured." msgstr "必须配置 NOMINATIM_URL 参数!" -#: core/validators.py:16 +#: engine/core/validators.py:16 #, 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} 像素!" -#: core/views.py:72 +#: engine/core/views.py:71 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 内容类型标头。" +msgstr "" +"处理网站地图索引请求并返回 XML 响应。它确保响应包含适当的 XML 内容类型标头。" -#: core/views.py:87 +#: engine/core/views.py:86 msgid "" "Handles the detailed view response for a sitemap. This function processes " "the request, fetches the appropriate sitemap detail response, and sets the " "Content-Type header for XML." -msgstr "处理网站地图的详细视图响应。该函数处理请求,获取相应的网站地图详细响应,并将 Content-Type 标头设置为 XML。" +msgstr "" +"处理网站地图的详细视图响应。该函数处理请求,获取相应的网站地图详细响应,并将 " +"Content-Type 标头设置为 XML。" -#: core/views.py:116 +#: engine/core/views.py:115 msgid "" "Returns a list of supported languages and their corresponding information." msgstr "返回支持语言及其相应信息的列表。" -#: core/views.py:148 +#: engine/core/views.py:147 msgid "Returns the parameters of the website as a JSON object." msgstr "以 JSON 对象形式返回网站参数。" -#: core/views.py:167 +#: engine/core/views.py:166 msgid "" "Handles cache operations such as reading and setting cache data with a " "specified key and timeout." msgstr "处理缓存操作,如使用指定的键和超时读取和设置缓存数据。" -#: core/views.py:194 +#: engine/core/views.py:193 msgid "Handles `contact us` form submissions." msgstr "处理 \"联系我们 \"表单提交。" -#: core/views.py:215 +#: engine/core/views.py:214 msgid "" "Handles requests for processing and validating URLs from incoming POST " "requests." msgstr "处理来自传入 POST 请求的处理和验证 URL 的请求。" -#: core/views.py:255 +#: engine/core/views.py:254 msgid "Handles global search queries." msgstr "处理全局搜索查询。" -#: core/views.py:270 +#: engine/core/views.py:269 msgid "Handles the logic of buying as a business without registration." msgstr "处理未注册企业的购买逻辑。" -#: core/views.py:306 +#: engine/core/views.py:305 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 错误,表示资源不可用。" -#: core/views.py:316 +#: engine/core/views.py:315 msgid "order_product_uuid is required" msgstr "order_product_uuid 为必填项" -#: core/views.py:322 +#: engine/core/views.py:321 msgid "you can only download the digital asset once" msgstr "您只能下载一次数字资产" -#: core/views.py:325 +#: engine/core/views.py:324 msgid "the order must be paid before downloading the digital asset" msgstr "在下载数字资产前必须支付订单费用" -#: core/views.py:331 +#: engine/core/views.py:330 msgid "the order product does not have a product" msgstr "订单产品没有产品" -#: core/views.py:369 +#: engine/core/views.py:368 msgid "favicon not found" msgstr "未找到 favicon" -#: core/views.py:374 +#: engine/core/views.py:373 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 请求。\n" -"该函数会尝试为位于项目静态目录中的 favicon 文件提供服务。如果找不到 favicon 文件,就会出现 HTTP 404 错误,表示资源不可用。" +"该函数会尝试为位于项目静态目录中的 favicon 文件提供服务。如果找不到 favicon " +"文件,就会出现 HTTP 404 错误,表示资源不可用。" -#: core/views.py:386 +#: engine/core/views.py:385 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 管理界面索引页面。它使用 Django 的 " -"`redirect` 函数来处理 HTTP 重定向。" +"将请求重定向到管理索引页面。该函数处理传入的 HTTP 请求并将其重定向到 Django " +"管理界面索引页面。它使用 Django 的 `redirect` 函数来处理 HTTP 重定向。" -#: core/views.py:399 +#: engine/core/views.py:398 msgid "Returns current version of the eVibes. " msgstr "返回 eVibes 的当前版本。" -#: core/viewsets.py:137 +#: engine/core/viewsets.py:137 msgid "" "Defines a viewset for managing Evibes-related operations. The EvibesViewSet " "class inherits from ModelViewSet and provides functionality for handling " @@ -2810,21 +2903,22 @@ msgid "" "serializer classes based on the current action, customizable permissions, " "and rendering formats." msgstr "" -"定义用于管理 Evibes 相关操作的视图集。EvibesViewSet 类继承于 ModelViewSet,提供了处理 Evibes " -"实体上的操作和运行的功能。它包括支持基于当前操作的动态序列化类、可定制的权限和渲染格式。" +"定义用于管理 Evibes 相关操作的视图集。EvibesViewSet 类继承于 ModelViewSet,提" +"供了处理 Evibes 实体上的操作和运行的功能。它包括支持基于当前操作的动态序列化" +"类、可定制的权限和渲染格式。" -#: core/viewsets.py:157 +#: engine/core/viewsets.py:157 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 数据的" +"请求和响应提供了标准化方法。" -#: core/viewsets.py:176 +#: engine/core/viewsets.py:176 msgid "" "Handles operations related to Attribute objects within the application. " "Provides a set of API endpoints to interact with Attribute data. This class " @@ -2833,21 +2927,23 @@ msgid "" "specific fields or retrieving detailed versus simplified information " "depending on the request." msgstr "" -"在应用程序中处理与属性对象相关的操作。提供一组 API " -"端点,用于与属性数据交互。该类管理属性对象的查询、过滤和序列化,允许对返回的数据进行动态控制,例如根据请求按特定字段进行过滤或检索详细信息与简化信息。" +"在应用程序中处理与属性对象相关的操作。提供一组 API 端点,用于与属性数据交互。" +"该类管理属性对象的查询、过滤和序列化,允许对返回的数据进行动态控制,例如根据" +"请求按特定字段进行过滤或检索详细信息与简化信息。" -#: core/viewsets.py:195 +#: engine/core/viewsets.py:195 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 框架的视图集机制集成,并为不同的操作使用适当的序列化器。过滤功能通过 DjangoFilterBackend 提供。" +"用于管理 AttributeValue 对象的视图集。该视图集提供了用于列出、检索、创建、更" +"新和删除 AttributeValue 对象的功能。它与 Django REST 框架的视图集机制集成,并" +"为不同的操作使用适当的序列化器。过滤功能通过 DjangoFilterBackend 提供。" -#: core/viewsets.py:214 +#: engine/core/viewsets.py:214 msgid "" "Manages views for Category-related operations. The CategoryViewSet class is " "responsible for handling operations related to the Category model in the " @@ -2855,20 +2951,21 @@ msgid "" "The viewset also enforces permissions to ensure that only authorized users " "can access specific data." msgstr "" -"管理类别相关操作的视图。CategoryViewSet " -"类负责处理系统中与类别模型相关的操作。它支持类别数据的检索、过滤和序列化。视图集还强制执行权限,确保只有授权用户才能访问特定数据。" +"管理类别相关操作的视图。CategoryViewSet 类负责处理系统中与类别模型相关的操" +"作。它支持类别数据的检索、过滤和序列化。视图集还强制执行权限,确保只有授权用" +"户才能访问特定数据。" -#: core/viewsets.py:326 +#: engine/core/viewsets.py:326 msgid "" "Represents a viewset for managing Brand instances. This class provides " "functionality for querying, filtering, and serializing Brand objects. It " "uses Django's ViewSet framework to simplify the implementation of API " "endpoints for Brand objects." msgstr "" -"代表用于管理品牌实例的视图集。该类提供了查询、过滤和序列化品牌对象的功能。它使用 Django 的 ViewSet 框架来简化品牌对象 API " -"端点的实现。" +"代表用于管理品牌实例的视图集。该类提供了查询、过滤和序列化品牌对象的功能。它" +"使用 Django 的 ViewSet 框架来简化品牌对象 API 端点的实现。" -#: core/viewsets.py:438 +#: engine/core/viewsets.py:438 msgid "" "Manages operations related to the `Product` model in the system. This class " "provides a viewset for managing products, including their filtering, " @@ -2878,11 +2975,12 @@ msgid "" "product details, applying permissions, and accessing related feedback of a " "product." msgstr "" -"管理与系统中的 \"产品 \"模型相关的操作。该类为管理产品提供了一个视图集,包括产品的筛选、序列化和对特定实例的操作。该类从 " -"`EvibesViewSet` 扩展而来,使用通用功能,并与 Django REST 框架集成,用于 RESTful API " -"操作。包括检索产品详细信息、应用权限和访问产品相关反馈的方法。" +"管理与系统中的 \"产品 \"模型相关的操作。该类为管理产品提供了一个视图集,包括" +"产品的筛选、序列化和对特定实例的操作。该类从 `EvibesViewSet` 扩展而来,使用通" +"用功能,并与 Django REST 框架集成,用于 RESTful API 操作。包括检索产品详细信" +"息、应用权限和访问产品相关反馈的方法。" -#: core/viewsets.py:568 +#: engine/core/viewsets.py:568 msgid "" "Represents a viewset for managing Vendor objects. This viewset allows " "fetching, filtering, and serializing Vendor data. It defines the queryset, " @@ -2890,79 +2988,85 @@ msgid "" "actions. The purpose of this class is to provide streamlined access to " "Vendor-related resources through the Django REST framework." msgstr "" -"代表用于管理供应商对象的视图集。该视图集允许获取、过滤和序列化 Vendor " -"数据。它定义了用于处理不同操作的查询集、过滤器配置和序列化器类。该类的目的是通过 Django REST 框架提供对 Vendor 相关资源的简化访问。" +"代表用于管理供应商对象的视图集。该视图集允许获取、过滤和序列化 Vendor 数据。" +"它定义了用于处理不同操作的查询集、过滤器配置和序列化器类。该类的目的是通过 " +"Django REST 框架提供对 Vendor 相关资源的简化访问。" -#: core/viewsets.py:588 +#: engine/core/viewsets.py:588 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 `EvibesViewSet` and makes " "use of Django's filtering system for querying data." msgstr "" -"处理反馈对象的视图集的表示。该类管理与反馈对象相关的操作,包括列出、筛选和检索详细信息。该视图集的目的是为不同的操作提供不同的序列化器,并对可访问的反馈对象实施基于权限的处理。它扩展了基本的" -" `EvibesViewSet` 并使用 Django 的过滤系统来查询数据。" +"处理反馈对象的视图集的表示。该类管理与反馈对象相关的操作,包括列出、筛选和检" +"索详细信息。该视图集的目的是为不同的操作提供不同的序列化器,并对可访问的反馈" +"对象实施基于权限的处理。它扩展了基本的 `EvibesViewSet` 并使用 Django 的过滤系" +"统来查询数据。" -#: core/viewsets.py:615 +#: engine/core/viewsets.py:615 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 根据正在执行的特定操" +"作使用多个序列化器,并在与订单数据交互时执行相应的权限。" -#: core/viewsets.py:813 +#: engine/core/viewsets.py:813 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 实体的视图集。该视图集可进行 CRUD 操作和特定于 " +"OrderProduct 模型的自定义操作。它包括过滤、权限检查和根据请求的操作切换序列化" +"器。此外,它还提供了一个详细的操作,用于处理有关 OrderProduct 实例的反馈信息" -#: core/viewsets.py:867 +#: engine/core/viewsets.py:867 msgid "Manages operations related to Product images in the application. " msgstr "管理应用程序中与产品图像相关的操作。" -#: core/viewsets.py:880 +#: engine/core/viewsets.py:880 msgid "" "Manages the retrieval and handling of PromoCode instances through various " "API actions." msgstr "通过各种 API 操作管理 PromoCode 实例的检索和处理。" -#: core/viewsets.py:902 +#: engine/core/viewsets.py:902 msgid "Represents a view set for managing promotions. " msgstr "代表用于管理促销活动的视图集。" -#: core/viewsets.py:915 +#: engine/core/viewsets.py:915 msgid "Handles operations related to Stock data in the system." msgstr "处理系统中与库存数据有关的操作。" -#: core/viewsets.py:929 +#: engine/core/viewsets.py:929 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 支持添加、删除和批量操作" +"愿望清单产品等功能。此外,还集成了权限检查功能,以确保用户只能管理自己的愿望" +"清单,除非获得明确的权限。" -#: core/viewsets.py:1044 +#: engine/core/viewsets.py:1044 msgid "" "This class provides viewset functionality for managing `Address` objects. " "The AddressViewSet class enables CRUD operations, filtering, and custom " @@ -2970,15 +3074,16 @@ msgid "" "different HTTP methods, serializer overrides, and permission handling based " "on the request context." msgstr "" -"该类为管理 \"地址 \"对象提供了视图集功能。AddressViewSet 类支持与地址实体相关的 CRUD 操作、过滤和自定义操作。它包括针对不同 " -"HTTP 方法的专门行为、序列化器重载以及基于请求上下文的权限处理。" +"该类为管理 \"地址 \"对象提供了视图集功能。AddressViewSet 类支持与地址实体相关" +"的 CRUD 操作、过滤和自定义操作。它包括针对不同 HTTP 方法的专门行为、序列化器" +"重载以及基于请求上下文的权限处理。" -#: core/viewsets.py:1111 +#: engine/core/viewsets.py:1111 #, python-brace-format msgid "Geocoding error: {e}" msgstr "地理编码错误:{e}" -#: core/viewsets.py:1119 +#: engine/core/viewsets.py:1119 msgid "" "Handles operations related to Product Tags within the application. This " "class provides functionality for retrieving, filtering, and serializing " @@ -2986,4 +3091,6 @@ msgid "" "using the specified filter backend and dynamically uses different " "serializers based on the action being performed." msgstr "" -"在应用程序中处理与产品标签相关的操作。该类提供了检索、筛选和序列化产品标签对象的功能。它支持使用指定的过滤后端对特定属性进行灵活过滤,并根据正在执行的操作动态使用不同的序列化器。" +"在应用程序中处理与产品标签相关的操作。该类提供了检索、筛选和序列化产品标签对" +"象的功能。它支持使用指定的过滤后端对特定属性进行灵活过滤,并根据正在执行的操" +"作动态使用不同的序列化器。" diff --git a/core/migrations/__init__.py b/engine/core/management/__init__.py similarity index 100% rename from core/migrations/__init__.py rename to engine/core/management/__init__.py diff --git a/core/management/commands/__init__.py b/engine/core/management/commands/__init__.py similarity index 100% rename from core/management/commands/__init__.py rename to engine/core/management/commands/__init__.py diff --git a/core/management/commands/await_services.py b/engine/core/management/commands/await_services.py similarity index 78% rename from core/management/commands/await_services.py rename to engine/core/management/commands/await_services.py index de564423..1686e034 100644 --- a/core/management/commands/await_services.py +++ b/engine/core/management/commands/await_services.py @@ -1,6 +1,6 @@ -import os import threading import time +from os import getenv from typing import Any import redis @@ -20,10 +20,10 @@ class Command(BaseCommand): while not db_up: try: conn = connect( - dbname=os.environ.get("POSTGRES_DB"), - user=os.environ.get("POSTGRES_USER"), - password=os.environ.get("POSTGRES_PASSWORD"), - host=os.environ.get("DB_HOST", "database"), + dbname=getenv("POSTGRES_DB"), + user=getenv("POSTGRES_USER"), + password=getenv("POSTGRES_PASSWORD"), + host=getenv("DB_HOST", "database"), ) conn.close() db_up = True @@ -37,10 +37,10 @@ class Command(BaseCommand): while not redis_up: try: connection = redis.StrictRedis( - host=os.environ.get("REDIS_HOST", "redis"), - port=int(os.environ.get("REDIS_PORT", 6379)), - db=int(os.environ.get("REDIS_DB", 0)), - password=os.environ.get("REDIS_PASSWORD", None), + host=getenv("REDIS_HOST", "redis"), + port=int(getenv("REDIS_PORT", 6379)), + db=int(getenv("REDIS_DB", 0)), + password=getenv("REDIS_PASSWORD", None), socket_timeout=5, retry_on_timeout=True, ) diff --git a/core/management/commands/check_translated.py b/engine/core/management/commands/check_translated.py similarity index 98% rename from core/management/commands/check_translated.py rename to engine/core/management/commands/check_translated.py index bfefc7b5..dee990dd 100644 --- a/core/management/commands/check_translated.py +++ b/engine/core/management/commands/check_translated.py @@ -10,7 +10,7 @@ from django.apps import apps from django.conf import settings from django.core.management.base import BaseCommand, CommandError -from core.management.commands import RootDirectory, TRANSLATABLE_APPS +from engine.core.management.commands import RootDirectory, TRANSLATABLE_APPS # Patterns to identify placeholders PLACEHOLDER_REGEXES = [ diff --git a/core/management/commands/clear_unwanted.py b/engine/core/management/commands/clear_unwanted.py similarity index 98% rename from core/management/commands/clear_unwanted.py rename to engine/core/management/commands/clear_unwanted.py index fbdad57e..c82c8ef4 100644 --- a/core/management/commands/clear_unwanted.py +++ b/engine/core/management/commands/clear_unwanted.py @@ -3,7 +3,7 @@ from typing import Any from django.core.management.base import BaseCommand -from core.models import Category, Product, Stock +from engine.core.models import Category, Product, Stock class Command(BaseCommand): diff --git a/core/management/commands/deepl_translate.py b/engine/core/management/commands/deepl_translate.py similarity index 98% rename from core/management/commands/deepl_translate.py rename to engine/core/management/commands/deepl_translate.py index 16dde6e6..345a1648 100644 --- a/core/management/commands/deepl_translate.py +++ b/engine/core/management/commands/deepl_translate.py @@ -1,6 +1,7 @@ import os import re from argparse import ArgumentParser +from os import getenv from tempfile import NamedTemporaryFile from typing import Any @@ -9,7 +10,7 @@ import requests from django.apps import apps from django.core.management.base import BaseCommand, CommandError -from core.management.commands import DEEPL_TARGET_LANGUAGES_MAPPING, TRANSLATABLE_APPS, RootDirectory +from engine.core.management.commands import DEEPL_TARGET_LANGUAGES_MAPPING, TRANSLATABLE_APPS, RootDirectory # Patterns to identify placeholders PLACEHOLDER_REGEXES = [ @@ -110,7 +111,7 @@ class Command(BaseCommand): for app_conf in list(apps.get_app_configs()) + [RootDirectory()] if app_conf.label in TRANSLATABLE_APPS } - auth_key = os.environ.get("DEEPL_AUTH_KEY") + auth_key = getenv("DEEPL_AUTH_KEY") if not auth_key: raise CommandError("DEEPL_AUTH_KEY not set") diff --git a/core/management/commands/delete_never_ordered_products.py b/engine/core/management/commands/delete_never_ordered_products.py similarity index 95% rename from core/management/commands/delete_never_ordered_products.py rename to engine/core/management/commands/delete_never_ordered_products.py index e3d63c6b..5f6fe6ce 100644 --- a/core/management/commands/delete_never_ordered_products.py +++ b/engine/core/management/commands/delete_never_ordered_products.py @@ -3,7 +3,7 @@ from typing import Any from django.core.management.base import BaseCommand -from core.models import AttributeValue, Product, ProductImage +from engine.core.models import AttributeValue, Product, ProductImage class Command(BaseCommand): diff --git a/core/management/commands/delete_products_by_description.py b/engine/core/management/commands/delete_products_by_description.py similarity index 95% rename from core/management/commands/delete_products_by_description.py rename to engine/core/management/commands/delete_products_by_description.py index 51ad1f5b..348e8781 100644 --- a/core/management/commands/delete_products_by_description.py +++ b/engine/core/management/commands/delete_products_by_description.py @@ -3,7 +3,7 @@ from typing import Any from django.core.management.base import BaseCommand -from core.models import AttributeValue, Product, ProductImage +from engine.core.models import AttributeValue, Product, ProductImage class Command(BaseCommand): diff --git a/core/management/commands/fetch_products.py b/engine/core/management/commands/fetch_products.py similarity index 90% rename from core/management/commands/fetch_products.py rename to engine/core/management/commands/fetch_products.py index 4df69765..5c2c736f 100644 --- a/core/management/commands/fetch_products.py +++ b/engine/core/management/commands/fetch_products.py @@ -2,7 +2,7 @@ from typing import Any from django.core.management.base import BaseCommand -from core.tasks import update_products_task +from engine.core.tasks import update_products_task class Command(BaseCommand): diff --git a/core/management/commands/fix_fuzzy.py b/engine/core/management/commands/fix_fuzzy.py similarity index 100% rename from core/management/commands/fix_fuzzy.py rename to engine/core/management/commands/fix_fuzzy.py diff --git a/core/management/commands/fix_prices.py b/engine/core/management/commands/fix_prices.py similarity index 87% rename from core/management/commands/fix_prices.py rename to engine/core/management/commands/fix_prices.py index 420c6148..01b9e206 100644 --- a/core/management/commands/fix_prices.py +++ b/engine/core/management/commands/fix_prices.py @@ -3,10 +3,10 @@ from typing import Any from django.core.management.base import BaseCommand -from core.models import Product -from core.vendors import AbstractVendor +from engine.core.models import Product +from engine.core.vendors import AbstractVendor -logger = logging.getLogger("django") +logger = logging.getLogger(__name__) class Command(BaseCommand): diff --git a/engine/core/management/commands/initialize.py b/engine/core/management/commands/initialize.py new file mode 100644 index 00000000..e1c7e2bb --- /dev/null +++ b/engine/core/management/commands/initialize.py @@ -0,0 +1,25 @@ +import logging +from typing import Any + +from django.core.management.base import BaseCommand + +from engine.core.models import Vendor +from engine.vibes_auth.models import Group +from django.contrib.auth.models import Permission + +logger = logging.getLogger(__name__) + + +class Command(BaseCommand): + def handle(self, *args: list[Any], **options: dict[Any, Any]) -> None: + self.stdout.write("Initializing must-have instances...") + + Vendor.objects.get_or_create(name="INNER") + Group.objects.all() + Permission.objects.all() + # TODO get_or_create a group "Product Listing Administrator" with corresponding permissions + # TODO get_or_create a group "Head Product Listing Administrator" with corresponding permissions + # TODO get_or_create a group "E-Commerce Administrator" with corresponding permissions + + # maybe use some .json file for future updates?.. Say, use the engine/core/fixtures/initialization.json + self.stdout.write(self.style.SUCCESS("Successfully initialized must-have instances!")) diff --git a/core/management/commands/rebuild_slugs.py b/engine/core/management/commands/rebuild_slugs.py similarity index 97% rename from core/management/commands/rebuild_slugs.py rename to engine/core/management/commands/rebuild_slugs.py index 5db3283c..ccc27f10 100644 --- a/core/management/commands/rebuild_slugs.py +++ b/engine/core/management/commands/rebuild_slugs.py @@ -5,7 +5,7 @@ from django.db import transaction from django.db.models import QuerySet from django.utils.crypto import get_random_string -from core.models import Brand, Category, Product +from engine.core.models import Brand, Category, Product # noinspection PyProtectedMember diff --git a/core/management/commands/set_default_caches.py b/engine/core/management/commands/set_default_caches.py similarity index 87% rename from core/management/commands/set_default_caches.py rename to engine/core/management/commands/set_default_caches.py index f1ea6850..87198223 100644 --- a/core/management/commands/set_default_caches.py +++ b/engine/core/management/commands/set_default_caches.py @@ -2,7 +2,7 @@ from typing import Any from django.core.management.base import BaseCommand -from core.utils.caching import set_default_cache +from engine.core.utils.caching import set_default_cache class Command(BaseCommand): diff --git a/core/management/commands/translate_fields.py b/engine/core/management/commands/translate_fields.py similarity index 96% rename from core/management/commands/translate_fields.py rename to engine/core/management/commands/translate_fields.py index 0d4dc1e8..2f3468bc 100644 --- a/core/management/commands/translate_fields.py +++ b/engine/core/management/commands/translate_fields.py @@ -1,12 +1,12 @@ import importlib -import os from argparse import ArgumentParser +from os import getenv import requests from django.core.management.base import BaseCommand, CommandError from django.db import transaction -from core.management.commands import DEEPL_TARGET_LANGUAGES_MAPPING +from engine.core.management.commands import DEEPL_TARGET_LANGUAGES_MAPPING DEEPL_API_URL = "https://api.deepl.com/v2/translate" @@ -63,7 +63,7 @@ class Command(BaseCommand): "Did you run makemigrations/migrate after setting up modeltranslation?" ) - auth_key = os.environ.get("DEEPL_AUTH_KEY") + auth_key = getenv("DEEPL_AUTH_KEY") if not auth_key: raise CommandError("Environment variable DEEPL_AUTH_KEY is not set.") diff --git a/core/managers.py b/engine/core/managers.py similarity index 98% rename from core/managers.py rename to engine/core/managers.py index caf5f934..124de06a 100644 --- a/core/managers.py +++ b/engine/core/managers.py @@ -6,7 +6,7 @@ from django.contrib.gis.geos import Point from django.db import models from modeltranslation.manager import MultilingualManager -logger = logging.getLogger("django") +logger = logging.getLogger(__name__) class AddressManager(models.Manager): diff --git a/core/migrations/0001_initial.py b/engine/core/migrations/0001_initial.py similarity index 99% rename from core/migrations/0001_initial.py rename to engine/core/migrations/0001_initial.py index ddfced4c..9cfc3377 100644 --- a/core/migrations/0001_initial.py +++ b/engine/core/migrations/0001_initial.py @@ -1,5 +1,3 @@ -# Generated by Django 5.1.5 on 2025-03-10 11:38 - import uuid import django.core.validators @@ -8,8 +6,8 @@ import django_extensions.db.fields import mptt.fields from django.db import migrations, models -import core.utils -import core.validators +import engine.core.utils +import engine.core.validators class Migration(migrations.Migration): @@ -624,7 +622,7 @@ class Migration(migrations.Migration): "image", models.ImageField( help_text="upload the image file for this product", - upload_to=core.utils.get_product_uuid_as_path, + upload_to=engine.core.utils.get_product_uuid_as_path, verbose_name="product image", ), ), @@ -901,7 +899,7 @@ class Migration(migrations.Migration): ( "code", models.CharField( - default=core.utils.get_random_code, + default=engine.core.utils.get_random_code, help_text="unique code used by a user to redeem a discount", max_length=20, unique=True, @@ -2177,7 +2175,7 @@ class Migration(migrations.Migration): help_text="upload an image representing this category", null=True, upload_to="categories/", - validators=[core.validators.validate_category_image_dimensions], + validators=[engine.core.validators.validate_category_image_dimensions], verbose_name="category image", ), ), diff --git a/core/migrations/0002_initial.py b/engine/core/migrations/0002_initial.py similarity index 99% rename from core/migrations/0002_initial.py rename to engine/core/migrations/0002_initial.py index 8907808a..12143cdb 100644 --- a/core/migrations/0002_initial.py +++ b/engine/core/migrations/0002_initial.py @@ -1,5 +1,3 @@ -# Generated by Django 5.1.5 on 2025-03-10 11:38 - import django.contrib.postgres.indexes import django.db.models.deletion from django.conf import settings diff --git a/core/migrations/0003_alter_attribute_name_alter_attribute_name_ar_ar_and_more.py b/engine/core/migrations/0003_alter_attribute_name_alter_attribute_name_ar_ar_and_more.py similarity index 99% rename from core/migrations/0003_alter_attribute_name_alter_attribute_name_ar_ar_and_more.py rename to engine/core/migrations/0003_alter_attribute_name_alter_attribute_name_ar_ar_and_more.py index 80caf008..faf28dd7 100644 --- a/core/migrations/0003_alter_attribute_name_alter_attribute_name_ar_ar_and_more.py +++ b/engine/core/migrations/0003_alter_attribute_name_alter_attribute_name_ar_ar_and_more.py @@ -1,5 +1,3 @@ -# Generated by Django 5.1.5 on 2025-03-10 12:09 - from django.db import migrations, models diff --git a/core/migrations/0004_alter_product_name_alter_product_name_ar_ar_and_more.py b/engine/core/migrations/0004_alter_product_name_alter_product_name_ar_ar_and_more.py similarity index 99% rename from core/migrations/0004_alter_product_name_alter_product_name_ar_ar_and_more.py rename to engine/core/migrations/0004_alter_product_name_alter_product_name_ar_ar_and_more.py index a47d03af..615d3c19 100644 --- a/core/migrations/0004_alter_product_name_alter_product_name_ar_ar_and_more.py +++ b/engine/core/migrations/0004_alter_product_name_alter_product_name_ar_ar_and_more.py @@ -1,5 +1,3 @@ -# Generated by Django 5.1.5 on 2025-03-10 20:13 - from django.db import migrations, models diff --git a/core/migrations/0005_remove_brand_category_brand_categories.py b/engine/core/migrations/0005_remove_brand_category_brand_categories.py similarity index 93% rename from core/migrations/0005_remove_brand_category_brand_categories.py rename to engine/core/migrations/0005_remove_brand_category_brand_categories.py index 176538a3..3c394bbb 100644 --- a/core/migrations/0005_remove_brand_category_brand_categories.py +++ b/engine/core/migrations/0005_remove_brand_category_brand_categories.py @@ -1,5 +1,3 @@ -# Generated by Django 5.1.5 on 2025-03-16 12:53 - from django.db import migrations, models diff --git a/core/migrations/0006_alter_order_status.py b/engine/core/migrations/0006_alter_order_status.py similarity index 94% rename from core/migrations/0006_alter_order_status.py rename to engine/core/migrations/0006_alter_order_status.py index 41fd1bf9..0f6ef32f 100644 --- a/core/migrations/0006_alter_order_status.py +++ b/engine/core/migrations/0006_alter_order_status.py @@ -1,5 +1,3 @@ -# Generated by Django 5.1.5 on 2025-03-20 15:27 - from django.db import migrations, models diff --git a/core/migrations/0007_alter_category_image.py b/engine/core/migrations/0007_alter_category_image.py similarity index 78% rename from core/migrations/0007_alter_category_image.py rename to engine/core/migrations/0007_alter_category_image.py index 77939b03..2a680127 100644 --- a/core/migrations/0007_alter_category_image.py +++ b/engine/core/migrations/0007_alter_category_image.py @@ -1,8 +1,6 @@ -# Generated by Django 5.1.5 on 2025-03-24 14:04 - from django.db import migrations, models -import core.validators +import engine.core.validators class Migration(migrations.Migration): @@ -19,7 +17,7 @@ class Migration(migrations.Migration): help_text="upload an image representing this category", null=True, upload_to="categories/", - validators=[core.validators.validate_category_image_dimensions], + validators=[engine.core.validators.validate_category_image_dimensions], verbose_name="category image", ), ), diff --git a/core/migrations/0008_digitalassetdownload.py b/engine/core/migrations/0008_digitalassetdownload.py similarity index 97% rename from core/migrations/0008_digitalassetdownload.py rename to engine/core/migrations/0008_digitalassetdownload.py index 32a3873e..3f5ca620 100644 --- a/core/migrations/0008_digitalassetdownload.py +++ b/engine/core/migrations/0008_digitalassetdownload.py @@ -1,5 +1,3 @@ -# Generated by Django 5.1.5 on 2025-04-10 15:55 - import uuid import django.db.models.deletion diff --git a/core/migrations/0009_documentary.py b/engine/core/migrations/0009_documentary.py similarity index 92% rename from core/migrations/0009_documentary.py rename to engine/core/migrations/0009_documentary.py index 8beb86b4..a744267a 100644 --- a/core/migrations/0009_documentary.py +++ b/engine/core/migrations/0009_documentary.py @@ -1,12 +1,10 @@ -# Generated by Django 5.1.5 on 2025-04-15 09:15 - import uuid import django.db.models.deletion import django_extensions.db.fields from django.db import migrations, models -import core.utils +import engine.core.utils class Migration(migrations.Migration): @@ -51,7 +49,7 @@ class Migration(migrations.Migration): auto_now=True, help_text="when the object was last modified", verbose_name="modified" ), ), - ("document", models.FileField(upload_to=core.utils.get_product_uuid_as_path)), + ("document", models.FileField(upload_to=engine.core.utils.get_product_uuid_as_path)), ( "product", models.ForeignKey( diff --git a/core/migrations/0010_product_partnumber.py b/engine/core/migrations/0010_product_partnumber.py similarity index 91% rename from core/migrations/0010_product_partnumber.py rename to engine/core/migrations/0010_product_partnumber.py index 3628270e..6953e0a4 100644 --- a/core/migrations/0010_product_partnumber.py +++ b/engine/core/migrations/0010_product_partnumber.py @@ -1,5 +1,3 @@ -# Generated by Django 5.1.8 on 2025-04-17 14:22 - from django.db import migrations, models diff --git a/core/migrations/0011_brand_big_logo_brand_description_and_more.py b/engine/core/migrations/0011_brand_big_logo_brand_description_and_more.py similarity index 96% rename from core/migrations/0011_brand_big_logo_brand_description_and_more.py rename to engine/core/migrations/0011_brand_big_logo_brand_description_and_more.py index 8dbb4df0..6b76b4df 100644 --- a/core/migrations/0011_brand_big_logo_brand_description_and_more.py +++ b/engine/core/migrations/0011_brand_big_logo_brand_description_and_more.py @@ -1,8 +1,6 @@ -# Generated by Django 5.1.8 on 2025-04-18 11:34 - from django.db import migrations, models -import core.validators +import engine.core.validators class Migration(migrations.Migration): @@ -19,7 +17,7 @@ class Migration(migrations.Migration): help_text="upload a big logo representing this brand", null=True, upload_to="brands/", - validators=[core.validators.validate_category_image_dimensions], + validators=[engine.core.validators.validate_category_image_dimensions], verbose_name="brand big image", ), ), @@ -221,7 +219,7 @@ class Migration(migrations.Migration): help_text="upload a logo representing this brand", null=True, upload_to="brands/", - validators=[core.validators.validate_category_image_dimensions], + validators=[engine.core.validators.validate_category_image_dimensions], verbose_name="brand small image", ), ), diff --git a/core/migrations/0012_alter_order_user.py b/engine/core/migrations/0012_alter_order_user.py similarity index 94% rename from core/migrations/0012_alter_order_user.py rename to engine/core/migrations/0012_alter_order_user.py index 2213f5ab..0fb52fe2 100644 --- a/core/migrations/0012_alter_order_user.py +++ b/engine/core/migrations/0012_alter_order_user.py @@ -1,5 +1,3 @@ -# Generated by Django 5.1.8 on 2025-04-28 11:56 - import django.db.models.deletion from django.conf import settings from django.db import migrations, models diff --git a/core/migrations/0013_product_slug.py b/engine/core/migrations/0013_product_slug.py similarity index 92% rename from core/migrations/0013_product_slug.py rename to engine/core/migrations/0013_product_slug.py index 412aeef4..575bbca9 100644 --- a/core/migrations/0013_product_slug.py +++ b/engine/core/migrations/0013_product_slug.py @@ -1,5 +1,3 @@ -# Generated by Django 5.1.8 on 2025-04-30 13:29 - import django_extensions.db.fields from django.db import migrations diff --git a/core/migrations/0014_alter_product_slug.py b/engine/core/migrations/0014_alter_product_slug.py similarity index 92% rename from core/migrations/0014_alter_product_slug.py rename to engine/core/migrations/0014_alter_product_slug.py index db3fba48..1f46cff7 100644 --- a/core/migrations/0014_alter_product_slug.py +++ b/engine/core/migrations/0014_alter_product_slug.py @@ -1,5 +1,3 @@ -# Generated by Django 5.1.8 on 2025-04-30 13:42 - import django_extensions.db.fields from django.db import migrations diff --git a/core/migrations/0015_alter_product_slug.py b/engine/core/migrations/0015_alter_product_slug.py similarity index 92% rename from core/migrations/0015_alter_product_slug.py rename to engine/core/migrations/0015_alter_product_slug.py index d0d284bf..ff7380c4 100644 --- a/core/migrations/0015_alter_product_slug.py +++ b/engine/core/migrations/0015_alter_product_slug.py @@ -1,5 +1,3 @@ -# Generated by Django 5.1.8 on 2025-04-30 14:03 - import django_extensions.db.fields from django.db import migrations diff --git a/core/migrations/0016_alter_product_slug.py b/engine/core/migrations/0016_alter_product_slug.py similarity index 92% rename from core/migrations/0016_alter_product_slug.py rename to engine/core/migrations/0016_alter_product_slug.py index 01ed1c17..c40a5fb9 100644 --- a/core/migrations/0016_alter_product_slug.py +++ b/engine/core/migrations/0016_alter_product_slug.py @@ -1,5 +1,3 @@ -# Generated by Django 5.1.8 on 2025-05-05 12:56 - import django_extensions.db.fields from django.db import migrations diff --git a/core/migrations/0017_order_human_readable_id.py b/engine/core/migrations/0017_order_human_readable_id.py similarity index 79% rename from core/migrations/0017_order_human_readable_id.py rename to engine/core/migrations/0017_order_human_readable_id.py index 36572585..6957f31d 100644 --- a/core/migrations/0017_order_human_readable_id.py +++ b/engine/core/migrations/0017_order_human_readable_id.py @@ -1,8 +1,6 @@ -# Generated by Django 5.1.8 on 2025-05-06 13:58 - from django.db import migrations, models -import core.utils +import engine.core.utils class Migration(migrations.Migration): @@ -15,7 +13,7 @@ class Migration(migrations.Migration): model_name="order", name="human_readable_id", field=models.CharField( - default=core.utils.generate_human_readable_id, + default=engine.core.utils.generate_human_readable_id, help_text="a human-readable identifier for the order", max_length=8, verbose_name="human readable id", diff --git a/core/migrations/0018_alter_order_human_readable_id.py b/engine/core/migrations/0018_alter_order_human_readable_id.py similarity index 89% rename from core/migrations/0018_alter_order_human_readable_id.py rename to engine/core/migrations/0018_alter_order_human_readable_id.py index 5fe3e70a..e608c7e8 100644 --- a/core/migrations/0018_alter_order_human_readable_id.py +++ b/engine/core/migrations/0018_alter_order_human_readable_id.py @@ -1,7 +1,7 @@ from django.db import migrations, models from django.db.models import Count -import core.utils +import engine.core.utils def fix_duplicates(apps, schema_editor): @@ -15,7 +15,7 @@ def fix_duplicates(apps, schema_editor): for order in orders[1:]: new_id = order.human_readable_id while Order.objects.filter(human_readable_id=new_id).exists(): - from core.utils import generate_human_readable_id + from engine.core.utils import generate_human_readable_id new_id = generate_human_readable_id() order.human_readable_id = new_id @@ -41,7 +41,7 @@ class Migration(migrations.Migration): model_name="order", name="human_readable_id", field=models.CharField( - default=core.utils.generate_human_readable_id, + default=engine.core.utils.generate_human_readable_id, help_text="a human-readable identifier for the order", max_length=8, unique=True, diff --git a/core/migrations/0019_address.py b/engine/core/migrations/0019_address.py similarity index 98% rename from core/migrations/0019_address.py rename to engine/core/migrations/0019_address.py index 1c3bce8e..5effb319 100644 --- a/core/migrations/0019_address.py +++ b/engine/core/migrations/0019_address.py @@ -1,5 +1,3 @@ -# Generated by Django 5.2 on 2025-05-20 04:57 - import uuid import django.contrib.gis.db.models.fields diff --git a/core/migrations/0020_order_billing_address_order_shipping_address.py b/engine/core/migrations/0020_order_billing_address_order_shipping_address.py similarity index 100% rename from core/migrations/0020_order_billing_address_order_shipping_address.py rename to engine/core/migrations/0020_order_billing_address_order_shipping_address.py diff --git a/core/migrations/0021_rename_name_ar_ar_attribute_name_ar_ar_and_more.py b/engine/core/migrations/0021_rename_name_ar_ar_attribute_name_ar_ar_and_more.py similarity index 99% rename from core/migrations/0021_rename_name_ar_ar_attribute_name_ar_ar_and_more.py rename to engine/core/migrations/0021_rename_name_ar_ar_attribute_name_ar_ar_and_more.py index 26e88bd0..b3976fec 100644 --- a/core/migrations/0021_rename_name_ar_ar_attribute_name_ar_ar_and_more.py +++ b/engine/core/migrations/0021_rename_name_ar_ar_attribute_name_ar_ar_and_more.py @@ -1,5 +1,3 @@ -# Generated by Django 5.2 on 2025-05-20 19:06 - from django.db import migrations diff --git a/core/migrations/0022_category_slug.py b/engine/core/migrations/0022_category_slug.py similarity index 95% rename from core/migrations/0022_category_slug.py rename to engine/core/migrations/0022_category_slug.py index cd887039..b649857a 100644 --- a/core/migrations/0022_category_slug.py +++ b/engine/core/migrations/0022_category_slug.py @@ -1,5 +1,3 @@ -# Generated by Django 5.2 on 2025-05-21 09:35 - import django_extensions.db.fields from django.db import migrations diff --git a/core/migrations/0023_address_address_line.py b/engine/core/migrations/0023_address_address_line.py similarity index 90% rename from core/migrations/0023_address_address_line.py rename to engine/core/migrations/0023_address_address_line.py index e1f6ebf4..522a4d52 100644 --- a/core/migrations/0023_address_address_line.py +++ b/engine/core/migrations/0023_address_address_line.py @@ -1,5 +1,3 @@ -# Generated by Django 5.2 on 2025-05-28 19:06 - from django.db import migrations, models diff --git a/core/migrations/0024_categorytag_category_tags.py b/engine/core/migrations/0024_categorytag_category_tags.py similarity index 99% rename from core/migrations/0024_categorytag_category_tags.py rename to engine/core/migrations/0024_categorytag_category_tags.py index 71a220aa..00550a97 100644 --- a/core/migrations/0024_categorytag_category_tags.py +++ b/engine/core/migrations/0024_categorytag_category_tags.py @@ -1,5 +1,3 @@ -# Generated by Django 5.2 on 2025-06-10 02:42 - import uuid import django_extensions.db.fields diff --git a/core/migrations/0025_alter_product_category.py b/engine/core/migrations/0025_alter_product_category.py similarity index 92% rename from core/migrations/0025_alter_product_category.py rename to engine/core/migrations/0025_alter_product_category.py index f524aef9..b651904d 100644 --- a/core/migrations/0025_alter_product_category.py +++ b/engine/core/migrations/0025_alter_product_category.py @@ -1,5 +1,3 @@ -# Generated by Django 5.2 on 2025-06-17 08:25 - import django.db.models.deletion from django.db import migrations, models diff --git a/core/migrations/0026_brand_slug_alter_category_slug_alter_product_slug.py b/engine/core/migrations/0026_brand_slug_alter_category_slug_alter_product_slug.py similarity index 96% rename from core/migrations/0026_brand_slug_alter_category_slug_alter_product_slug.py rename to engine/core/migrations/0026_brand_slug_alter_category_slug_alter_product_slug.py index 39905993..4d085293 100644 --- a/core/migrations/0026_brand_slug_alter_category_slug_alter_product_slug.py +++ b/engine/core/migrations/0026_brand_slug_alter_category_slug_alter_product_slug.py @@ -1,5 +1,3 @@ -# Generated by Django 5.2 on 2025-06-18 19:21 - import django_extensions.db.fields from django.db import migrations diff --git a/core/migrations/0027_brand_priority_alter_brand_slug.py b/engine/core/migrations/0027_brand_priority_alter_brand_slug.py similarity index 94% rename from core/migrations/0027_brand_priority_alter_brand_slug.py rename to engine/core/migrations/0027_brand_priority_alter_brand_slug.py index 5427bc2c..90d1c04a 100644 --- a/core/migrations/0027_brand_priority_alter_brand_slug.py +++ b/engine/core/migrations/0027_brand_priority_alter_brand_slug.py @@ -1,5 +1,3 @@ -# Generated by Django 5.2 on 2025-06-20 02:25 - import django_extensions.db.fields from django.db import migrations, models diff --git a/core/migrations/0028_alter_category_slug_alter_product_slug.py b/engine/core/migrations/0028_alter_category_slug_alter_product_slug.py similarity index 95% rename from core/migrations/0028_alter_category_slug_alter_product_slug.py rename to engine/core/migrations/0028_alter_category_slug_alter_product_slug.py index 552057fa..0a3da6e1 100644 --- a/core/migrations/0028_alter_category_slug_alter_product_slug.py +++ b/engine/core/migrations/0028_alter_category_slug_alter_product_slug.py @@ -1,5 +1,3 @@ -# Generated by Django 5.2 on 2025-06-21 16:04 - import django_extensions.db.fields from django.db import migrations diff --git a/core/migrations/0029_alter_category_slug.py b/engine/core/migrations/0029_alter_category_slug.py similarity index 92% rename from core/migrations/0029_alter_category_slug.py rename to engine/core/migrations/0029_alter_category_slug.py index d0ef9170..a6f52322 100644 --- a/core/migrations/0029_alter_category_slug.py +++ b/engine/core/migrations/0029_alter_category_slug.py @@ -1,5 +1,3 @@ -# Generated by Django 5.2 on 2025-06-21 16:29 - import django_extensions.db.fields from django.db import migrations diff --git a/core/migrations/0030_alter_category_slug.py b/engine/core/migrations/0030_alter_category_slug.py similarity index 92% rename from core/migrations/0030_alter_category_slug.py rename to engine/core/migrations/0030_alter_category_slug.py index 8ad88128..87442c0c 100644 --- a/core/migrations/0030_alter_category_slug.py +++ b/engine/core/migrations/0030_alter_category_slug.py @@ -1,5 +1,3 @@ -# Generated by Django 5.2 on 2025-06-21 16:34 - import django_extensions.db.fields from django.db import migrations diff --git a/core/migrations/0031_alter_product_slug.py b/engine/core/migrations/0031_alter_product_slug.py similarity index 92% rename from core/migrations/0031_alter_product_slug.py rename to engine/core/migrations/0031_alter_product_slug.py index 39b0fa1b..6080738b 100644 --- a/core/migrations/0031_alter_product_slug.py +++ b/engine/core/migrations/0031_alter_product_slug.py @@ -1,5 +1,3 @@ -# Generated by Django 5.2 on 2025-06-21 16:40 - import django_extensions.db.fields from django.db import migrations diff --git a/core/migrations/0032_alter_brand_slug_alter_category_slug_and_more.py b/engine/core/migrations/0032_alter_brand_slug_alter_category_slug_and_more.py similarity index 97% rename from core/migrations/0032_alter_brand_slug_alter_category_slug_and_more.py rename to engine/core/migrations/0032_alter_brand_slug_alter_category_slug_and_more.py index eb6005ab..c3dd39e5 100644 --- a/core/migrations/0032_alter_brand_slug_alter_category_slug_and_more.py +++ b/engine/core/migrations/0032_alter_brand_slug_alter_category_slug_and_more.py @@ -1,5 +1,3 @@ -# Generated by Django 5.2 on 2025-06-21 17:14 - import django_extensions.db.fields from django.db import migrations diff --git a/core/migrations/0033_alter_category_slug.py b/engine/core/migrations/0033_alter_category_slug.py similarity index 82% rename from core/migrations/0033_alter_category_slug.py rename to engine/core/migrations/0033_alter_category_slug.py index a022aba5..b43a9e12 100644 --- a/core/migrations/0033_alter_category_slug.py +++ b/engine/core/migrations/0033_alter_category_slug.py @@ -1,8 +1,6 @@ -# Generated by Django 5.2 on 2025-06-21 17:38 - from django.db import migrations -import core.utils.db +import engine.core.utils.db class Migration(migrations.Migration): @@ -14,7 +12,7 @@ class Migration(migrations.Migration): migrations.AlterField( model_name="category", name="slug", - field=core.utils.db.TweakedAutoSlugField( + field=engine.core.utils.db.TweakedAutoSlugField( allow_unicode=True, blank=True, editable=False, diff --git a/core/migrations/0034_category_priority_alter_brand_priority.py b/engine/core/migrations/0034_category_priority_alter_brand_priority.py similarity index 92% rename from core/migrations/0034_category_priority_alter_brand_priority.py rename to engine/core/migrations/0034_category_priority_alter_brand_priority.py index 08c161fe..28a17e1e 100644 --- a/core/migrations/0034_category_priority_alter_brand_priority.py +++ b/engine/core/migrations/0034_category_priority_alter_brand_priority.py @@ -1,5 +1,3 @@ -# Generated by Django 5.2 on 2025-06-21 21:40 - from django.db import migrations, models diff --git a/core/migrations/0035_alter_brand_slug_alter_category_slug_and_more.py b/engine/core/migrations/0035_alter_brand_slug_alter_category_slug_and_more.py similarity index 93% rename from core/migrations/0035_alter_brand_slug_alter_category_slug_and_more.py rename to engine/core/migrations/0035_alter_brand_slug_alter_category_slug_and_more.py index 16a5702d..6cd21d99 100644 --- a/core/migrations/0035_alter_brand_slug_alter_category_slug_and_more.py +++ b/engine/core/migrations/0035_alter_brand_slug_alter_category_slug_and_more.py @@ -1,6 +1,4 @@ -# Generated by Django 5.2 on 2025-06-29 13:09 - -import core.utils.db +import engine.core.utils.db import django_extensions.db.fields from django.db import migrations @@ -29,7 +27,7 @@ class Migration(migrations.Migration): migrations.AlterField( model_name="category", name="slug", - field=core.utils.db.TweakedAutoSlugField( + field=engine.core.utils.db.TweakedAutoSlugField( allow_unicode=True, blank=True, editable=False, diff --git a/core/migrations/0036_vendor_b2b_auth_token_vendor_users.py b/engine/core/migrations/0036_vendor_b2b_auth_token_vendor_users.py similarity index 85% rename from core/migrations/0036_vendor_b2b_auth_token_vendor_users.py rename to engine/core/migrations/0036_vendor_b2b_auth_token_vendor_users.py index 0d2c74a2..5db6217f 100644 --- a/core/migrations/0036_vendor_b2b_auth_token_vendor_users.py +++ b/engine/core/migrations/0036_vendor_b2b_auth_token_vendor_users.py @@ -1,6 +1,4 @@ -# Generated by Django 5.2 on 2025-07-28 08:55 - -import core.utils +import engine.core.utils from django.conf import settings from django.db import migrations, models @@ -17,7 +15,7 @@ class Migration(migrations.Migration): name="b2b_auth_token", field=models.CharField( blank=True, - default=core.utils.generate_human_readable_token, + default=engine.core.utils.generate_human_readable_token, max_length=20, null=True, ), diff --git a/core/migrations/0037_product_sku.py b/engine/core/migrations/0037_product_sku.py similarity index 92% rename from core/migrations/0037_product_sku.py rename to engine/core/migrations/0037_product_sku.py index c1e349ee..0bf1b127 100644 --- a/core/migrations/0037_product_sku.py +++ b/engine/core/migrations/0037_product_sku.py @@ -1,5 +1,3 @@ -# Generated by Django 5.2 on 2025-09-01 17:33 - from django.db import migrations, models diff --git a/core/migrations/0038_backfill_product_sku.py b/engine/core/migrations/0038_backfill_product_sku.py similarity index 93% rename from core/migrations/0038_backfill_product_sku.py rename to engine/core/migrations/0038_backfill_product_sku.py index b10511d3..be467a8b 100644 --- a/core/migrations/0038_backfill_product_sku.py +++ b/engine/core/migrations/0038_backfill_product_sku.py @@ -12,7 +12,7 @@ def generate_unique_sku(make_candidate, taken): # noinspection PyUnusedLocal def backfill_sku(apps, schema_editor): Product = apps.get_model("core", "Product") - from core.utils import generate_human_readable_id as make_candidate + from engine.core.utils import generate_human_readable_id as make_candidate taken = set(Product.objects.exclude(sku__isnull=True).values_list("sku", flat=True)) diff --git a/core/migrations/0039_alter_product_sku.py b/engine/core/migrations/0039_alter_product_sku.py similarity index 79% rename from core/migrations/0039_alter_product_sku.py rename to engine/core/migrations/0039_alter_product_sku.py index f7363647..4497eb8d 100644 --- a/core/migrations/0039_alter_product_sku.py +++ b/engine/core/migrations/0039_alter_product_sku.py @@ -1,6 +1,4 @@ -# Generated by Django 5.2 on 2025-09-01 17:36 - -import core.utils +import engine.core.utils from django.db import migrations, models @@ -14,7 +12,7 @@ class Migration(migrations.Migration): model_name="product", name="sku", field=models.CharField( - default=core.utils.generate_human_readable_id, + default=engine.core.utils.generate_human_readable_id, help_text="stock keeping unit for this product", max_length=8, unique=True, diff --git a/core/migrations/0040_customerrelationshipmanagementprovider_ordercrmlink.py b/engine/core/migrations/0040_customerrelationshipmanagementprovider_ordercrmlink.py similarity index 99% rename from core/migrations/0040_customerrelationshipmanagementprovider_ordercrmlink.py rename to engine/core/migrations/0040_customerrelationshipmanagementprovider_ordercrmlink.py index e3275ef5..168ae5b0 100644 --- a/core/migrations/0040_customerrelationshipmanagementprovider_ordercrmlink.py +++ b/engine/core/migrations/0040_customerrelationshipmanagementprovider_ordercrmlink.py @@ -1,5 +1,3 @@ -# Generated by Django 5.2 on 2025-09-06 22:05 - import django.db.models.deletion import django_extensions.db.fields import django_prometheus.models diff --git a/core/migrations/0041_alter_customerrelationshipmanagementprovider_options.py b/engine/core/migrations/0041_alter_customerrelationshipmanagementprovider_options.py similarity index 89% rename from core/migrations/0041_alter_customerrelationshipmanagementprovider_options.py rename to engine/core/migrations/0041_alter_customerrelationshipmanagementprovider_options.py index da348d60..9db19494 100644 --- a/core/migrations/0041_alter_customerrelationshipmanagementprovider_options.py +++ b/engine/core/migrations/0041_alter_customerrelationshipmanagementprovider_options.py @@ -1,5 +1,3 @@ -# Generated by Django 5.2 on 2025-09-06 22:16 - from django.db import migrations diff --git a/core/migrations/0042_attribute_name_fa_ir_attribute_name_he_il_and_more.py b/engine/core/migrations/0042_attribute_name_fa_ir_attribute_name_he_il_and_more.py similarity index 99% rename from core/migrations/0042_attribute_name_fa_ir_attribute_name_he_il_and_more.py rename to engine/core/migrations/0042_attribute_name_fa_ir_attribute_name_he_il_and_more.py index e03ede17..5e213c36 100644 --- a/core/migrations/0042_attribute_name_fa_ir_attribute_name_he_il_and_more.py +++ b/engine/core/migrations/0042_attribute_name_fa_ir_attribute_name_he_il_and_more.py @@ -1,5 +1,3 @@ -# Generated by Django 5.2 on 2025-09-19 11:59 - from django.db import migrations, models diff --git a/core/migrations/0043_attribute_is_filterable_and_more.py b/engine/core/migrations/0043_attribute_is_filterable_and_more.py similarity index 93% rename from core/migrations/0043_attribute_is_filterable_and_more.py rename to engine/core/migrations/0043_attribute_is_filterable_and_more.py index 305d2d49..a4dcf358 100644 --- a/core/migrations/0043_attribute_is_filterable_and_more.py +++ b/engine/core/migrations/0043_attribute_is_filterable_and_more.py @@ -1,5 +1,3 @@ -# Generated by Django 5.2 on 2025-09-22 11:10 - from django.db import migrations, models diff --git a/core/migrations/0044_vendor_last_processing_response.py b/engine/core/migrations/0044_vendor_last_processing_response.py similarity index 80% rename from core/migrations/0044_vendor_last_processing_response.py rename to engine/core/migrations/0044_vendor_last_processing_response.py index 0dd24216..b8d470ff 100644 --- a/core/migrations/0044_vendor_last_processing_response.py +++ b/engine/core/migrations/0044_vendor_last_processing_response.py @@ -1,6 +1,4 @@ -# Generated by Django 5.2 on 2025-10-13 12:15 - -import core.utils +import engine.core.utils from django.db import migrations, models @@ -17,7 +15,7 @@ class Migration(migrations.Migration): blank=True, help_text="vendor's last processing response", null=True, - upload_to=core.utils.get_vendor_name_as_path, + upload_to=engine.core.utils.get_vendor_name_as_path, verbose_name="response file", ), ), diff --git a/core/migrations/0045_alter_product_name_alter_product_name_ar_ar_and_more.py b/engine/core/migrations/0045_alter_product_name_alter_product_name_ar_ar_and_more.py similarity index 99% rename from core/migrations/0045_alter_product_name_alter_product_name_ar_ar_and_more.py rename to engine/core/migrations/0045_alter_product_name_alter_product_name_ar_ar_and_more.py index 8c777d35..088c7c5b 100644 --- a/core/migrations/0045_alter_product_name_alter_product_name_ar_ar_and_more.py +++ b/engine/core/migrations/0045_alter_product_name_alter_product_name_ar_ar_and_more.py @@ -1,5 +1,3 @@ -# Generated by Django 5.2 on 2025-10-17 11:27 - from django.conf import settings from django.db import migrations, models diff --git a/core/migrations/0046_alter_attribute_name_alter_attribute_name_ar_ar_and_more.py b/engine/core/migrations/0046_alter_attribute_name_alter_attribute_name_ar_ar_and_more.py similarity index 99% rename from core/migrations/0046_alter_attribute_name_alter_attribute_name_ar_ar_and_more.py rename to engine/core/migrations/0046_alter_attribute_name_alter_attribute_name_ar_ar_and_more.py index 88a09104..6197615c 100644 --- a/core/migrations/0046_alter_attribute_name_alter_attribute_name_ar_ar_and_more.py +++ b/engine/core/migrations/0046_alter_attribute_name_alter_attribute_name_ar_ar_and_more.py @@ -1,5 +1,3 @@ -# Generated by Django 5.2 on 2025-10-18 19:41 - from django.db import migrations, models diff --git a/core/migrations/0047_alter_attribute_unique_together.py b/engine/core/migrations/0047_alter_attribute_unique_together.py similarity index 88% rename from core/migrations/0047_alter_attribute_unique_together.py rename to engine/core/migrations/0047_alter_attribute_unique_together.py index 18cdadef..21b3574c 100644 --- a/core/migrations/0047_alter_attribute_unique_together.py +++ b/engine/core/migrations/0047_alter_attribute_unique_together.py @@ -1,5 +1,3 @@ -# Generated by Django 5.2 on 2025-10-18 21:16 - from django.db import migrations diff --git a/core/migrations/0048_vendor_integration_path_alter_productimage_priority.py b/engine/core/migrations/0048_vendor_integration_path_alter_productimage_priority.py similarity index 94% rename from core/migrations/0048_vendor_integration_path_alter_productimage_priority.py rename to engine/core/migrations/0048_vendor_integration_path_alter_productimage_priority.py index 220042f4..00878031 100644 --- a/core/migrations/0048_vendor_integration_path_alter_productimage_priority.py +++ b/engine/core/migrations/0048_vendor_integration_path_alter_productimage_priority.py @@ -1,5 +1,3 @@ -# Generated by Django 5.2 on 2025-10-21 09:24 - from django.db import migrations, models diff --git a/core/migrations/0049_alter_attribute_unique_together.py b/engine/core/migrations/0049_alter_attribute_unique_together.py similarity index 97% rename from core/migrations/0049_alter_attribute_unique_together.py rename to engine/core/migrations/0049_alter_attribute_unique_together.py index aad8f9ed..e3d8dcae 100644 --- a/core/migrations/0049_alter_attribute_unique_together.py +++ b/engine/core/migrations/0049_alter_attribute_unique_together.py @@ -1,5 +1,3 @@ -# Generated by Django 5.2.7 on 2025-10-24 23:17 - from django.db import migrations diff --git a/core/migrations/0050_remove_attribute_categories.py b/engine/core/migrations/0050_remove_attribute_categories.py similarity index 85% rename from core/migrations/0050_remove_attribute_categories.py rename to engine/core/migrations/0050_remove_attribute_categories.py index a47da8aa..c1e02bac 100644 --- a/core/migrations/0050_remove_attribute_categories.py +++ b/engine/core/migrations/0050_remove_attribute_categories.py @@ -1,5 +1,3 @@ -# Generated by Django 5.2.7 on 2025-10-26 14:10 - from django.db import migrations diff --git a/core/migrations/0051_stock_system_attributes.py b/engine/core/migrations/0051_stock_system_attributes.py similarity index 88% rename from core/migrations/0051_stock_system_attributes.py rename to engine/core/migrations/0051_stock_system_attributes.py index 1ebd81b7..80075d39 100644 --- a/core/migrations/0051_stock_system_attributes.py +++ b/engine/core/migrations/0051_stock_system_attributes.py @@ -1,5 +1,3 @@ -# Generated by Django 5.2.7 on 2025-10-26 16:59 - from django.db import migrations, models diff --git a/engine/core/migrations/0052_alter_stock_system_attributes.py b/engine/core/migrations/0052_alter_stock_system_attributes.py new file mode 100644 index 00000000..2cb1ed12 --- /dev/null +++ b/engine/core/migrations/0052_alter_stock_system_attributes.py @@ -0,0 +1,15 @@ +from django.db import migrations, models + + +class Migration(migrations.Migration): + dependencies = [ + ("core", "0051_stock_system_attributes"), + ] + + operations = [ + migrations.AlterField( + model_name="stock", + name="system_attributes", + field=models.JSONField(blank=True, default=dict, verbose_name="system attributes"), + ), + ] diff --git a/core/templates/__init__.py b/engine/core/migrations/__init__.py similarity index 100% rename from core/templates/__init__.py rename to engine/core/migrations/__init__.py diff --git a/core/mixins.py b/engine/core/mixins.py similarity index 100% rename from core/mixins.py rename to engine/core/mixins.py diff --git a/core/models.py b/engine/core/models.py similarity index 97% rename from core/models.py rename to engine/core/models.py index 286d0843..9d7fd551 100644 --- a/core/models.py +++ b/engine/core/models.py @@ -1,11 +1,11 @@ import datetime import json import logging -import traceback from contextlib import suppress -from typing import Any, Optional, Self, Iterable +from typing import Any, Iterable, Self from constance import config +from django.conf import settings from django.contrib.gis.db.models import PointField from django.contrib.postgres.indexes import GinIndex from django.core.cache import cache @@ -36,8 +36,8 @@ from django.db.models import ( TextField, URLField, ) -from django.db.models.indexes import Index from django.db.models.functions import Length +from django.db.models.indexes import Index from django.http import Http404 from django.utils import timezone from django.utils.encoding import force_bytes @@ -49,26 +49,25 @@ from django_prometheus.models import ExportModelOperationsMixin from mptt.fields import TreeForeignKey from mptt.models import MPTTModel -from core.abstract import NiceModel -from core.choices import ORDER_PRODUCT_STATUS_CHOICES, ORDER_STATUS_CHOICES -from core.errors import DisabledCommerceError, NotEnoughMoneyError -from core.managers import AddressManager, ProductManager -from core.typing import FilterableAttribute -from core.utils import ( +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.typing import FilterableAttribute +from engine.core.utils import ( generate_human_readable_id, generate_human_readable_token, get_product_uuid_as_path, get_random_code, get_vendor_name_as_path, ) -from core.utils.db import TweakedAutoSlugField, unicode_slugify_function -from core.utils.lists import FAILED_STATUSES -from core.validators import validate_category_image_dimensions -from evibes.settings import CURRENCY_CODE +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 payments.models import Transaction -logger = logging.getLogger("django") +logger = logging.getLogger(__name__) class AttributeGroup(ExportModelOperationsMixin("attribute_group"), NiceModel): # type: ignore [misc] @@ -139,7 +138,7 @@ class Vendor(ExportModelOperationsMixin("vendor"), NiceModel): # type: ignore [ null=False, unique=True, ) - users = ManyToManyField(to="vibes_auth.User", related_name="vendors", blank=True) + users = ManyToManyField(to=settings.AUTH_USER_MODEL, related_name="vendors", blank=True) b2b_auth_token = CharField(default=generate_human_readable_token, max_length=20, null=True, blank=True) last_processing_response = FileField( upload_to=get_vendor_name_as_path, @@ -370,10 +369,10 @@ class Category(ExportModelOperationsMixin("category"), NiceModel, MPTTModel): # .distinct() ) - per_cat: dict[int, dict[int, dict]] = {} + per_cat: dict[Any, Any] = {} for cat_id, attr_id, attr_name, value_type, value in rows: - cat_bucket = per_cat.get(cat_id) - if cat_bucket is None: + cat_bucket = per_cat.get(cat_id, "") + if not cat_bucket: cat_bucket = {} per_cat[cat_id] = cat_bucket bucket = cat_bucket.get(attr_id) @@ -406,7 +405,7 @@ class Category(ExportModelOperationsMixin("category"), NiceModel, MPTTModel): # .distinct() ) - by_attr: dict[int, dict] = {} + by_attr: dict[Any, Any] = {} for attr_id, attr_name, value_type, value in rows: bucket = by_attr.get(attr_id) if bucket is None: @@ -551,7 +550,7 @@ class Stock(ExportModelOperationsMixin("stock"), NiceModel): # type: ignore [mi verbose_name=_("digital file"), upload_to="downloadables/", ) - system_attributes = JSONField(default=dict, verbose_name=_("system attributes")) + system_attributes = JSONField(default=dict, verbose_name=_("system attributes"), blank=True) def __str__(self) -> str: return f"{self.vendor.name} - {self.product!s}" @@ -978,7 +977,7 @@ class Documentary(ExportModelOperationsMixin("attribute_group"), NiceModel): # is_publicly_visible = True - product = ForeignKey(to=Product, on_delete=CASCADE, related_name="documentaries") + product = ForeignKey(to="core.Product", on_delete=CASCADE, related_name="documentaries") document = FileField(upload_to=get_product_uuid_as_path) class Meta: @@ -1039,7 +1038,7 @@ class Address(ExportModelOperationsMixin("address"), NiceModel): # type: ignore help_text=_("stored JSON response from the geocoding service"), ) - user = ForeignKey(to="vibes_auth.User", on_delete=CASCADE, blank=True, null=True) + user = ForeignKey(to=settings.AUTH_USER_MODEL, on_delete=CASCADE, blank=True, null=True) objects = AddressManager() @@ -1539,7 +1538,7 @@ class Order(ExportModelOperationsMixin("order"), NiceModel): # type: ignore [mi return Transaction.objects.create( balance=order.user.payments_balance, amount=amount, - currency=CURRENCY_CODE, + currency=settings.CURRENCY_CODE, order=order, ) case _: @@ -1598,7 +1597,7 @@ class Order(ExportModelOperationsMixin("order"), NiceModel): # type: ignore [mi return Transaction.objects.create( amount=amount, - currency=CURRENCY_CODE, + currency=settings.CURRENCY_CODE, order=self, payment_method=kwargs.get("payment_method"), ) @@ -1649,8 +1648,13 @@ class Order(ExportModelOperationsMixin("order"), NiceModel): # type: ignore [mi crm_integration.process_order_changes(self) return True except Exception as e: - logger.error(f"failed to trigger CRM integration {crm_link.crm.name} for order {self.uuid}: {e}") - logger.error(traceback.format_exc()) + logger.error( + "failed to trigger CRM integration %s for order %s: %s", + crm_link.crm.name, + self.uuid, + str(e), + exc_info=True, + ) return False else: crm = CustomerRelationshipManagementProvider.objects.get(default=True) @@ -1659,8 +1663,9 @@ class Order(ExportModelOperationsMixin("order"), NiceModel): # type: ignore [mi crm_integration.process_order_changes(self) return True except Exception as e: - logger.error(f"failed to trigger CRM integration {crm.name} for order {self.uuid}: {e}") - logger.error(traceback.format_exc()) + logger.error( + "failed to trigger CRM integration %s for order %s: %s", crm.name, self.uuid, str(e), exc_info=True + ) return False @property @@ -1675,6 +1680,49 @@ class Order(ExportModelOperationsMixin("order"), NiceModel): # type: ignore [mi return None +class Feedback(ExportModelOperationsMixin("feedback"), NiceModel): # type: ignore [misc] + __doc__ = _( # type: ignore + "Manages user feedback for products. " + "This class is designed to capture and store user feedback for specific products " + "that they have purchased. It contains attributes to store user comments, " + "a reference to the related product in the order, and a user-assigned rating. The " + "class uses database fields to effectively model and manage feedback data." + ) + + is_publicly_visible = True + + comment = TextField( + blank=True, + null=True, + help_text=_("user-provided comments about their experience with the product"), + verbose_name=_("feedback comments"), + ) + order_product = OneToOneField( + "core.OrderProduct", + on_delete=CASCADE, + blank=False, + null=False, + help_text=_("references the specific product in an order that this feedback is about"), + verbose_name=_("related order product"), + ) + rating = FloatField( + blank=True, + null=True, + help_text=_("user-assigned rating for the product"), + verbose_name=_("product rating"), + validators=[MinValueValidator(0), MaxValueValidator(10)], + ) + + def __str__(self) -> str: + if self.order_product and self.order_product.order and self.order_product.order.user: + return f"{self.rating} by {self.order_product.order.user.email}" + return f"{self.rating} | {self.uuid}" + + class Meta: + verbose_name = _("feedback") + verbose_name_plural = _("feedbacks") + + class OrderProduct(ExportModelOperationsMixin("order_product"), NiceModel): # type: ignore [misc] __doc__ = _( # type: ignore "Represents products associated with orders and their attributes. " @@ -1805,7 +1853,7 @@ class OrderProduct(ExportModelOperationsMixin("order_product"), NiceModel): # t return DigitalAssetDownload.objects.create(order_product=self).url return "" - def do_feedback(self, rating=10, comment="", action="add") -> Optional["Feedback"] | int: + def do_feedback(self, rating=10, comment="", action="add") -> Feedback | int | None: if not self.order: raise ValueError(_("order product must have an order")) if action not in ["add", "remove"]: @@ -1907,46 +1955,3 @@ class DigitalAssetDownload(ExportModelOperationsMixin("attribute_group"), NiceMo return ( f"https://api.{config.BASE_DOMAIN}/download/{urlsafe_base64_encode(force_bytes(self.order_product.uuid))}" ) - - -class Feedback(ExportModelOperationsMixin("feedback"), NiceModel): # type: ignore [misc] - __doc__ = _( # type: ignore - "Manages user feedback for products. " - "This class is designed to capture and store user feedback for specific products " - "that they have purchased. It contains attributes to store user comments, " - "a reference to the related product in the order, and a user-assigned rating. The " - "class uses database fields to effectively model and manage feedback data." - ) - - is_publicly_visible = True - - comment = TextField( - blank=True, - null=True, - help_text=_("user-provided comments about their experience with the product"), - verbose_name=_("feedback comments"), - ) - order_product = OneToOneField( - "core.OrderProduct", - on_delete=CASCADE, - blank=False, - null=False, - help_text=_("references the specific product in an order that this feedback is about"), - verbose_name=_("related order product"), - ) - rating = FloatField( - blank=True, - null=True, - help_text=_("user-assigned rating for the product"), - verbose_name=_("product rating"), - validators=[MinValueValidator(0), MaxValueValidator(10)], - ) - - def __str__(self) -> str: - if self.order_product and self.order_product.order and self.order_product.order.user: - return f"{self.rating} by {self.order_product.order.user.email}" - return f"{self.rating} | {self.uuid}" - - class Meta: - verbose_name = _("feedback") - verbose_name_plural = _("feedbacks") diff --git a/core/permissions.py b/engine/core/permissions.py similarity index 100% rename from core/permissions.py rename to engine/core/permissions.py diff --git a/core/serializers/__init__.py b/engine/core/serializers/__init__.py similarity index 100% rename from core/serializers/__init__.py rename to engine/core/serializers/__init__.py diff --git a/core/serializers/detail.py b/engine/core/serializers/detail.py similarity index 93% rename from core/serializers/detail.py rename to engine/core/serializers/detail.py index ad1fc9e5..6a905c53 100644 --- a/core/serializers/detail.py +++ b/engine/core/serializers/detail.py @@ -1,12 +1,13 @@ import logging from contextlib import suppress -from typing import Collection, Any +from typing import Any +from drf_spectacular.utils import extend_schema_field from rest_framework.fields import JSONField, SerializerMethodField -from rest_framework.serializers import ModelSerializer, ListSerializer +from rest_framework.serializers import ListSerializer, ModelSerializer from rest_framework_recursive.fields import RecursiveField -from core.models import ( +from engine.core.models import ( Attribute, AttributeGroup, AttributeValue, @@ -24,11 +25,11 @@ from core.models import ( Vendor, Wishlist, ) -from core.serializers.simple import CategorySimpleSerializer, ProductSimpleSerializer -from core.typing import FilterableAttribute -from core.serializers.utility import AddressSerializer +from engine.core.serializers.simple import CategorySimpleSerializer, ProductSimpleSerializer +from engine.core.serializers.utility import AddressSerializer +from engine.core.typing import FilterableAttribute -logger = logging.getLogger("django") +logger = logging.getLogger(__name__) class AttributeGroupDetailSerializer(ModelSerializer): @@ -82,14 +83,15 @@ class CategoryDetailSerializer(ModelSerializer): def get_filterable_attributes(self, obj: Category) -> list[FilterableAttribute]: return obj.filterable_attributes - def get_children(self, obj) -> Collection[Any]: + @extend_schema_field(CategorySimpleSerializer(many=True)) + def get_children(self, obj: Category) -> list[dict[str, Any]]: request = self.context.get("request") if request is not None and request.user.has_perm("view_category"): children = obj.children.all() else: children = obj.children.filter(is_active=True) - return CategoryDetailSerializer(children, many=True, context=self.context).data if obj.children.exists() else [] + return CategorySimpleSerializer(children, many=True, context=self.context).data if obj.children.exists() else [] # type: ignore [return-value] class BrandDetailSerializer(ModelSerializer): diff --git a/core/serializers/seo.py b/engine/core/serializers/seo.py similarity index 100% rename from core/serializers/seo.py rename to engine/core/serializers/seo.py diff --git a/core/serializers/simple.py b/engine/core/serializers/simple.py similarity index 96% rename from core/serializers/simple.py rename to engine/core/serializers/simple.py index ae1e4144..0f7509f2 100644 --- a/core/serializers/simple.py +++ b/engine/core/serializers/simple.py @@ -1,11 +1,11 @@ from contextlib import suppress -from typing import Collection, Any +from typing import Any from rest_framework.fields import JSONField, SerializerMethodField from rest_framework.relations import PrimaryKeyRelatedField from rest_framework.serializers import ModelSerializer -from core.models import ( +from engine.core.models import ( Attribute, AttributeGroup, AttributeValue, @@ -23,7 +23,7 @@ from core.models import ( Vendor, Wishlist, ) -from core.serializers.utility import AddressSerializer +from engine.core.serializers.utility import AddressSerializer class AttributeGroupSimpleSerializer(ModelSerializer): # type: ignore [type-arg] @@ -59,14 +59,14 @@ class CategorySimpleSerializer(ModelSerializer): # type: ignore [type-arg] return str(obj.image.url) return None - def get_children(self, obj: Category) -> Collection[Any]: + def get_children(self, obj: Category) -> dict[str, Any]: request = self.context.get("request") if request is not None and request.user.has_perm("view_category"): children = obj.children.all() else: children = obj.children.filter(is_active=True) - return CategorySimpleSerializer(children, many=True, context=self.context).data if obj.children.exists() else [] + return CategorySimpleSerializer(children, many=True, context=self.context).data if obj.children.exists() else [] # type: ignore [return-value] class BrandSimpleSerializer(ModelSerializer): # type: ignore [type-arg] diff --git a/core/serializers/utility.py b/engine/core/serializers/utility.py similarity index 99% rename from core/serializers/utility.py rename to engine/core/serializers/utility.py index 09f4ac20..94dcb8d5 100644 --- a/core/serializers/utility.py +++ b/engine/core/serializers/utility.py @@ -15,7 +15,7 @@ from rest_framework.fields import ( ) from rest_framework.serializers import ListSerializer, ModelSerializer, Serializer -from core.models import Address +from engine.core.models import Address class AddressAutocompleteInputSerializer(Serializer): # type: ignore [type-arg] diff --git a/core/signals.py b/engine/core/signals.py similarity index 93% rename from core/signals.py rename to engine/core/signals.py index 44a9d1a5..1ba68dac 100644 --- a/core/signals.py +++ b/engine/core/signals.py @@ -9,21 +9,20 @@ from django.dispatch import receiver from django.utils.crypto import get_random_string from django.utils.http import urlsafe_base64_decode from django.utils.timezone import now -from django.utils.translation import gettext_lazy as _ from sentry_sdk import capture_exception -from core.crm import any_crm_integrations -from core.crm.exceptions import CRMException -from core.models import Category, DigitalAssetDownload, Order, Product, PromoCode, Wishlist -from core.utils import ( +from engine.core.crm import any_crm_integrations +from engine.core.crm.exceptions import CRMException +from engine.core.models import Category, DigitalAssetDownload, Order, Product, PromoCode, Wishlist +from engine.core.utils import ( generate_human_readable_id, resolve_translations_for_elasticsearch, ) -from core.utils.emailing import send_order_created_email, send_order_finished_email, send_promocode_created_email +from engine.core.utils.emailing import send_order_created_email, send_order_finished_email, send_promocode_created_email from evibes.utils.misc import create_object -from vibes_auth.models import User +from engine.vibes_auth.models import User -logger = logging.getLogger("django") +logger = logging.getLogger(__name__) # noinspection PyUnusedLocal @@ -70,7 +69,7 @@ def create_promocode_on_user_referring(instance: User, created: bool, **kwargs: ) except Exception as e: capture_exception(e) - logger.error(_(f"error during promocode creation: {e!s}")) + logger.error("Could not create PromoCode: %s", str(e)) # noinspection PyUnusedLocal diff --git a/core/sitemaps.py b/engine/core/sitemaps.py similarity index 97% rename from core/sitemaps.py rename to engine/core/sitemaps.py index 62f49c17..2af42a70 100644 --- a/core/sitemaps.py +++ b/engine/core/sitemaps.py @@ -2,8 +2,8 @@ from django.conf import settings from django.contrib.sitemaps import Sitemap from django.utils.translation import gettext_lazy as _ -from blog.models import Post -from core.models import Brand, Category, Product +from engine.blog.models import Post +from engine.core.models import Brand, Category, Product class SitemapLanguageMixin: diff --git a/core/static/Source Code Pro ExtraLight_Regular.json b/engine/core/static/Source Code Pro ExtraLight_Regular.json similarity index 100% rename from core/static/Source Code Pro ExtraLight_Regular.json rename to engine/core/static/Source Code Pro ExtraLight_Regular.json diff --git a/core/static/css/constance.css b/engine/core/static/css/constance.css similarity index 100% rename from core/static/css/constance.css rename to engine/core/static/css/constance.css diff --git a/core/static/favicon.ico b/engine/core/static/favicon.ico similarity index 100% rename from core/static/favicon.ico rename to engine/core/static/favicon.ico diff --git a/core/static/favicon.png b/engine/core/static/favicon.png similarity index 100% rename from core/static/favicon.png rename to engine/core/static/favicon.png diff --git a/core/static/flags/ar-ar.png b/engine/core/static/flags/ar-ar.png similarity index 100% rename from core/static/flags/ar-ar.png rename to engine/core/static/flags/ar-ar.png diff --git a/core/static/flags/cs-cz.png b/engine/core/static/flags/cs-cz.png similarity index 100% rename from core/static/flags/cs-cz.png rename to engine/core/static/flags/cs-cz.png diff --git a/core/static/flags/da-dk.png b/engine/core/static/flags/da-dk.png similarity index 100% rename from core/static/flags/da-dk.png rename to engine/core/static/flags/da-dk.png diff --git a/core/static/flags/de-de.png b/engine/core/static/flags/de-de.png similarity index 100% rename from core/static/flags/de-de.png rename to engine/core/static/flags/de-de.png diff --git a/core/static/flags/en-gb.png b/engine/core/static/flags/en-gb.png similarity index 100% rename from core/static/flags/en-gb.png rename to engine/core/static/flags/en-gb.png diff --git a/core/static/flags/en-us.png b/engine/core/static/flags/en-us.png similarity index 100% rename from core/static/flags/en-us.png rename to engine/core/static/flags/en-us.png diff --git a/core/static/flags/es-es.png b/engine/core/static/flags/es-es.png similarity index 100% rename from core/static/flags/es-es.png rename to engine/core/static/flags/es-es.png diff --git a/core/static/flags/fa-ir.png b/engine/core/static/flags/fa-ir.png similarity index 100% rename from core/static/flags/fa-ir.png rename to engine/core/static/flags/fa-ir.png diff --git a/core/static/flags/fr-fr.png b/engine/core/static/flags/fr-fr.png similarity index 100% rename from core/static/flags/fr-fr.png rename to engine/core/static/flags/fr-fr.png diff --git a/core/static/flags/he-il.png b/engine/core/static/flags/he-il.png similarity index 100% rename from core/static/flags/he-il.png rename to engine/core/static/flags/he-il.png diff --git a/core/static/flags/hi-in.png b/engine/core/static/flags/hi-in.png similarity index 100% rename from core/static/flags/hi-in.png rename to engine/core/static/flags/hi-in.png diff --git a/core/static/flags/hr-hr.png b/engine/core/static/flags/hr-hr.png similarity index 100% rename from core/static/flags/hr-hr.png rename to engine/core/static/flags/hr-hr.png diff --git a/core/static/flags/id-id.png b/engine/core/static/flags/id-id.png similarity index 100% rename from core/static/flags/id-id.png rename to engine/core/static/flags/id-id.png diff --git a/core/static/flags/it-it.png b/engine/core/static/flags/it-it.png similarity index 100% rename from core/static/flags/it-it.png rename to engine/core/static/flags/it-it.png diff --git a/core/static/flags/ja-jp.png b/engine/core/static/flags/ja-jp.png similarity index 100% rename from core/static/flags/ja-jp.png rename to engine/core/static/flags/ja-jp.png diff --git a/core/static/flags/kk-kz.png b/engine/core/static/flags/kk-kz.png similarity index 100% rename from core/static/flags/kk-kz.png rename to engine/core/static/flags/kk-kz.png diff --git a/core/static/flags/ko-kr.png b/engine/core/static/flags/ko-kr.png similarity index 100% rename from core/static/flags/ko-kr.png rename to engine/core/static/flags/ko-kr.png diff --git a/core/static/flags/nl-nl.png b/engine/core/static/flags/nl-nl.png similarity index 100% rename from core/static/flags/nl-nl.png rename to engine/core/static/flags/nl-nl.png diff --git a/core/static/flags/no-no.png b/engine/core/static/flags/no-no.png similarity index 100% rename from core/static/flags/no-no.png rename to engine/core/static/flags/no-no.png diff --git a/core/static/flags/pl-pl.png b/engine/core/static/flags/pl-pl.png similarity index 100% rename from core/static/flags/pl-pl.png rename to engine/core/static/flags/pl-pl.png diff --git a/core/static/flags/pt-br.png b/engine/core/static/flags/pt-br.png similarity index 100% rename from core/static/flags/pt-br.png rename to engine/core/static/flags/pt-br.png diff --git a/core/static/flags/ro-ro.png b/engine/core/static/flags/ro-ro.png similarity index 100% rename from core/static/flags/ro-ro.png rename to engine/core/static/flags/ro-ro.png diff --git a/core/static/flags/ru-ru.png b/engine/core/static/flags/ru-ru.png similarity index 100% rename from core/static/flags/ru-ru.png rename to engine/core/static/flags/ru-ru.png diff --git a/core/static/flags/sv-se.png b/engine/core/static/flags/sv-se.png similarity index 100% rename from core/static/flags/sv-se.png rename to engine/core/static/flags/sv-se.png diff --git a/core/static/flags/th-th.png b/engine/core/static/flags/th-th.png similarity index 100% rename from core/static/flags/th-th.png rename to engine/core/static/flags/th-th.png diff --git a/core/static/flags/tr-tr.png b/engine/core/static/flags/tr-tr.png similarity index 100% rename from core/static/flags/tr-tr.png rename to engine/core/static/flags/tr-tr.png diff --git a/core/static/flags/vi-vn.png b/engine/core/static/flags/vi-vn.png similarity index 100% rename from core/static/flags/vi-vn.png rename to engine/core/static/flags/vi-vn.png diff --git a/core/static/flags/zh-hans.png b/engine/core/static/flags/zh-hans.png similarity index 100% rename from core/static/flags/zh-hans.png rename to engine/core/static/flags/zh-hans.png diff --git a/core/static/logo.png b/engine/core/static/logo.png similarity index 100% rename from core/static/logo.png rename to engine/core/static/logo.png diff --git a/core/static/maintenance.html b/engine/core/static/maintenance.html similarity index 100% rename from core/static/maintenance.html rename to engine/core/static/maintenance.html diff --git a/core/static/robots_backend.txt b/engine/core/static/robots_backend.txt similarity index 100% rename from core/static/robots_backend.txt rename to engine/core/static/robots_backend.txt diff --git a/core/tasks.py b/engine/core/tasks.py similarity index 89% rename from core/tasks.py rename to engine/core/tasks.py index 9f417649..5fa3a9f1 100644 --- a/core/tasks.py +++ b/engine/core/tasks.py @@ -1,24 +1,24 @@ +import logging import os import random import shutil import uuid from datetime import date, timedelta from time import sleep -from typing import Any, Type +from typing import Any import requests from celery.app import shared_task -from celery.utils.log import get_task_logger from constance import config +from django.conf import settings from django.core.cache import cache -from core.models import Product, Promotion -from core.utils.caching import set_default_cache -from core.utils.vendors import get_vendors_integrations -from core.vendors import VendorInactiveError, delete_stale, AbstractVendor -from evibes.settings import MEDIA_ROOT +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 +from engine.core.vendors import AbstractVendor, VendorInactiveError, delete_stale -logger = get_task_logger(__name__) +logger = logging.getLogger(__name__) @shared_task(queue="stock_updater") @@ -40,15 +40,16 @@ def update_products_task() -> tuple[bool, str]: if not update_products_task_running: cache.set("update_products_task_running", True, 86400) - vendors: list[Type[AbstractVendor]] = get_vendors_integrations() + vendors: list[AbstractVendor] = get_vendors_integrations() for vendor in vendors: try: + # noinspection PyArgumentList vendor.update_stock() except VendorInactiveError: - logger.info(f"Skipping {vendor.__str__} due to inactivity") + logger.info("Skipping %s due to inactivity", str(vendor)) except Exception as e: - logger.warning(f"Skipping {vendor.__str__} due to error: {e!s}") + logger.warning("Skipping %s due to error: %s", str(vendor), str(e)) delete_stale() @@ -70,9 +71,10 @@ def update_orderproducts_task() -> tuple[bool, str]: message confirming the successful execution of the task. :rtype: Tuple[bool, str] """ - vendors: list[Type[AbstractVendor]] = get_vendors_integrations() + vendors: list[AbstractVendor] = get_vendors_integrations() for vendor in vendors: + # noinspection PyArgumentList vendor.update_order_products_statuses() return True, "Success" @@ -111,7 +113,7 @@ def remove_stale_product_images() -> tuple[bool, str]: :return: None """ - products_dir = os.path.join(MEDIA_ROOT, "products") + products_dir = os.path.join(settings.MEDIA_ROOT, "products") if not os.path.isdir(products_dir): logger.info("The products directory does not exist: %s", products_dir) return True, "The products directory does not exist." @@ -177,7 +179,7 @@ def process_promotions() -> tuple[bool, str]: ) response.raise_for_status() except Exception as e: - logger.warning(f"Couldn't fetch holiday data for {checked_date}: {e!s}") + logger.warning("Couldn't fetch holiday data for %s: %s", checked_date, str(e)) return False, f"Couldn't fetch holiday data for {checked_date}: {e!s}" holidays = response.json() if holidays: diff --git a/core/templatetags/__init__.py b/engine/core/templates/__init__.py similarity index 100% rename from core/templatetags/__init__.py rename to engine/core/templates/__init__.py diff --git a/core/templates/contact_us_email.html b/engine/core/templates/contact_us_email.html similarity index 100% rename from core/templates/contact_us_email.html rename to engine/core/templates/contact_us_email.html diff --git a/core/templates/digital_order_created_email.html b/engine/core/templates/digital_order_created_email.html similarity index 100% rename from core/templates/digital_order_created_email.html rename to engine/core/templates/digital_order_created_email.html diff --git a/core/templates/digital_order_delivered_email.html b/engine/core/templates/digital_order_delivered_email.html similarity index 100% rename from core/templates/digital_order_delivered_email.html rename to engine/core/templates/digital_order_delivered_email.html diff --git a/core/templates/json_table_widget.html b/engine/core/templates/json_table_widget.html similarity index 100% rename from core/templates/json_table_widget.html rename to engine/core/templates/json_table_widget.html diff --git a/core/templates/promocode_granted_email.html b/engine/core/templates/promocode_granted_email.html similarity index 100% rename from core/templates/promocode_granted_email.html rename to engine/core/templates/promocode_granted_email.html diff --git a/core/templates/shipped_order_created_email.html b/engine/core/templates/shipped_order_created_email.html similarity index 100% rename from core/templates/shipped_order_created_email.html rename to engine/core/templates/shipped_order_created_email.html diff --git a/core/templates/shipped_order_delivered_email.html b/engine/core/templates/shipped_order_delivered_email.html similarity index 100% rename from core/templates/shipped_order_delivered_email.html rename to engine/core/templates/shipped_order_delivered_email.html diff --git a/payments/__init__.py b/engine/core/templatetags/__init__.py similarity index 100% rename from payments/__init__.py rename to engine/core/templatetags/__init__.py diff --git a/core/templatetags/conditions.py b/engine/core/templatetags/conditions.py similarity index 100% rename from core/templatetags/conditions.py rename to engine/core/templatetags/conditions.py diff --git a/core/templatetags/filters.py b/engine/core/templatetags/filters.py similarity index 100% rename from core/templatetags/filters.py rename to engine/core/templatetags/filters.py diff --git a/core/tests.py b/engine/core/tests.py similarity index 100% rename from core/tests.py rename to engine/core/tests.py diff --git a/core/translation.py b/engine/core/translation.py similarity index 97% rename from core/translation.py rename to engine/core/translation.py index 67a6743f..3aee6628 100644 --- a/core/translation.py +++ b/engine/core/translation.py @@ -1,7 +1,7 @@ from modeltranslation.decorators import register from modeltranslation.translator import TranslationOptions -from core.models import ( +from engine.core.models import ( Attribute, AttributeGroup, AttributeValue, diff --git a/core/typing/__init__.py b/engine/core/typing/__init__.py similarity index 100% rename from core/typing/__init__.py rename to engine/core/typing/__init__.py diff --git a/core/typing/models.py b/engine/core/typing/models.py similarity index 100% rename from core/typing/models.py rename to engine/core/typing/models.py diff --git a/engine/core/urls.py b/engine/core/urls.py new file mode 100644 index 00000000..3e4828f2 --- /dev/null +++ b/engine/core/urls.py @@ -0,0 +1,180 @@ +from django.urls import include, path +from rest_framework.routers import DefaultRouter + +from engine.core.sitemaps import BrandSitemap, CategorySitemap, ProductSitemap, StaticPagesSitemap +from engine.core.views import ( + CacheOperatorView, + ContactUsView, + DownloadDigitalAssetView, + GlobalSearchView, + RequestCursedURLView, + SupportedLanguagesView, + WebsiteParametersView, + sitemap_detail, + sitemap_index, + version, +) +from engine.core.viewsets import ( + AddressViewSet, + AttributeGroupViewSet, + BrandViewSet, + CategoryViewSet, + FeedbackViewSet, + OrderProductViewSet, + OrderViewSet, + ProductTagViewSet, + ProductViewSet, + PromoCodeViewSet, + PromotionViewSet, + StockViewSet, + VendorViewSet, + WishlistViewSet, +) + +app_name = "core" + +core_router = DefaultRouter() +core_router.register( + r"products", + ProductViewSet, + basename="products", +) +core_router.register( + r"orders", + OrderViewSet, + basename="orders", +) +core_router.register( + r"wishlists", + WishlistViewSet, + basename="wishlists", +) +core_router.register( + r"attribute_groups", + AttributeGroupViewSet, + basename="attribute_groups", +) +core_router.register( + r"brands", + BrandViewSet, + basename="brands", +) +core_router.register( + r"categories", + CategoryViewSet, + basename="categories", +) +core_router.register( + r"vendors", + VendorViewSet, + basename="vendors", +) +core_router.register( + r"feedbacks", + FeedbackViewSet, + basename="feedbacks", +) +core_router.register( + r"stocks", + StockViewSet, + basename="stocks", +) +core_router.register( + r"promo_codes", + PromoCodeViewSet, + basename="promo_codes", +) +core_router.register( + r"promotions", + PromotionViewSet, + basename="promotions", +) +core_router.register( + r"addresses", + AddressViewSet, + basename="addresses", +) +core_router.register( + r"product_tags", + ProductTagViewSet, + basename="product_tags", +) +core_router.register( + r"order_products", + OrderProductViewSet, + basename="order_products", +) + +sitemaps = { + "static": StaticPagesSitemap, + "products": ProductSitemap, + "categories": CategorySitemap, + "brands": BrandSitemap, +} + +urlpatterns = [ + path( + "core/", + include(core_router.urls), + ), + path( + r"version/", + version, + ), + path( + "sitemap.xml", + sitemap_index, + { + "sitemaps": sitemaps, + "sitemap_url_name": "core:sitemap-detail", + }, + name="sitemap-index", + ), + path( + "sitemap-
.xml", + sitemap_detail, + {"sitemaps": sitemaps}, + name="sitemap-detail", + ), + path( + "sitemap-
-.xml", + sitemap_detail, + {"sitemaps": sitemaps}, + name="sitemap-detail", + ), + path( + "download//", + DownloadDigitalAssetView.as_view(), + name="download_digital_asset", + ), + path( + "search/", + GlobalSearchView.as_view(), + name="global_search", + ), + path( + "app/cache/", + CacheOperatorView.as_view(), + name="cache_operator", + ), + path( + "app/languages/", + SupportedLanguagesView.as_view(), + name="supported_languages", + ), + path( + "app/parameters/", + WebsiteParametersView.as_view(), + name="parameters", + ), + path( + "app/contact_us/", + ContactUsView.as_view(), + name="contact_us", + ), + path( + "app/request_cursed_url/", + RequestCursedURLView.as_view(), + name="request_cursed_url", + ), +] diff --git a/core/utils/__init__.py b/engine/core/utils/__init__.py similarity index 95% rename from core/utils/__init__.py rename to engine/core/utils/__init__.py index 596b0f55..c2d54f6e 100644 --- a/core/utils/__init__.py +++ b/engine/core/utils/__init__.py @@ -15,9 +15,8 @@ from django.utils.translation import get_language from graphene import Context from rest_framework.request import Request -from evibes.settings import DEBUG, EXPOSABLE_KEYS, LANGUAGE_CODE -logger = logging.getLogger("django") +logger = logging.getLogger(__name__) def graphene_current_lang() -> str: @@ -91,7 +90,7 @@ def atomic_if_not_debug() -> Generator[None, None, None]: an exception. If the DEBUG setting is enabled, no transaction is enforced, allowing for easier debugging. """ - if not DEBUG: + if not settings.DEBUG: with transaction.atomic(): yield else: @@ -142,8 +141,8 @@ def get_project_parameters() -> Any: parameters = cache.get("parameters", {}) if not parameters: - for key in EXPOSABLE_KEYS: - if not getattr(config, key): + for key in settings.EXPOSABLE_KEYS: + if not getattr(config, key, ""): continue parameters[key.lower()] = getattr(config, key) @@ -158,10 +157,10 @@ def resolve_translations_for_elasticsearch(instance, field_name: str) -> None: format. It checks if the localized version of the field contains data, and if not, sets it to the value of the default field. """ - field = getattr(instance, f"{field_name}_{LANGUAGE_CODE}", "") + field = getattr(instance, f"{field_name}_{settings.LANGUAGE_CODE}", "") filled_field = getattr(instance, field_name, "") if not field: - setattr(instance, f"{field_name}_{LANGUAGE_CODE}", filled_field) + setattr(instance, f"{field_name}_{settings.LANGUAGE_CODE}", filled_field) CROCKFORD = "ABCDEFGHJKLMNPQRSTUVWXYZ23456789" diff --git a/core/utils/caching.py b/engine/core/utils/caching.py similarity index 88% rename from core/utils/caching.py rename to engine/core/utils/caching.py index 5827c6a7..53a88b3c 100644 --- a/core/utils/caching.py +++ b/engine/core/utils/caching.py @@ -3,20 +3,20 @@ import logging from pathlib import Path from typing import Any, Type +from django.conf import settings from django.core.cache import cache from django.core.exceptions import BadRequest from django.utils.translation import gettext_lazy as _ from graphene import Context from rest_framework.request import Request -from evibes.settings import UNSAFE_CACHE_KEYS -from vibes_auth.models import User +from engine.vibes_auth.models import User -logger = logging.getLogger("django") +logger = logging.getLogger(__name__) def is_safe_cache_key(key: str) -> bool: - return key not in UNSAFE_CACHE_KEYS + return key not in settings.UNSAFE_CACHE_KEYS def get_cached_value(user: Type[User], key: str, default: Any = None) -> Any: @@ -52,5 +52,5 @@ def set_default_cache() -> None: for json_file in data_dir.glob("*.json"): with json_file.open("r", encoding="utf-8") as f: data = json.load(f) - logger.info(f"Setting cache for {json_file.stem}") + logger.info("Setting cache for %s", json_file.stem) cache.set(json_file.stem, data, timeout=28800) diff --git a/core/utils/db.py b/engine/core/utils/db.py similarity index 96% rename from core/utils/db.py rename to engine/core/utils/db.py index 476f1c08..e3f3b364 100644 --- a/core/utils/db.py +++ b/engine/core/utils/db.py @@ -6,7 +6,7 @@ from django.db.models.constants import LOOKUP_SEP from django_extensions.db.fields import AutoSlugField from slugify import slugify -logger = logging.getLogger("django") +logger = logging.getLogger(__name__) def unicode_slugify_function(content: Any) -> str: diff --git a/core/utils/emailing.py b/engine/core/utils/emailing.py similarity index 94% rename from core/utils/emailing.py rename to engine/core/utils/emailing.py index 38109f87..ae1f6eb5 100644 --- a/core/utils/emailing.py +++ b/engine/core/utils/emailing.py @@ -1,7 +1,7 @@ +import logging from datetime import datetime from celery.app import shared_task -from celery.utils.log import get_task_logger from constance import config from django.conf import settings from django.core.mail import EmailMessage @@ -9,10 +9,10 @@ from django.template.loader import render_to_string from django.utils.translation import activate from django.utils.translation import gettext_lazy as _ -from core.models import Order, OrderProduct, PromoCode -from core.utils import get_dynamic_email_connection +from engine.core.models import Order, OrderProduct, PromoCode +from engine.core.utils import get_dynamic_email_connection -logger = get_task_logger(__name__) +logger = logging.getLogger(__name__) @shared_task(queue="default") @@ -26,7 +26,7 @@ def contact_us_email(contact_info) -> tuple[bool, str]: email = EmailMessage( _(f"{config.PROJECT_NAME} | contact us initiated"), render_to_string( - "contact_us_email.html", + "../templates/contact_us_email.html", { "email": contact_info.get("email"), "name": contact_info.get("name"), @@ -104,7 +104,7 @@ def send_order_finished_email(order_pk: str) -> tuple[bool, str]: email = EmailMessage( _(f"{config.PROJECT_NAME} | order delivered"), render_to_string( - template_name="digital_order_delivered_email.html", + template_name="../templates/digital_order_delivered_email.html", context={ "order_uuid": order.human_readable_id, "user_first_name": "" or order.user.first_name, @@ -187,7 +187,7 @@ def send_promocode_created_email(promocode_pk: str) -> tuple[bool, str]: email = EmailMessage( _(f"{config.PROJECT_NAME} | promocode granted"), render_to_string( - template_name="promocode_granted_email.html", + template_name="../templates/promocode_granted_email.html", context={ "promocode": promocode, "user_first_name": "" or promocode.user.first_name, diff --git a/core/utils/languages.py b/engine/core/utils/languages.py similarity index 100% rename from core/utils/languages.py rename to engine/core/utils/languages.py diff --git a/core/utils/lists.py b/engine/core/utils/lists.py similarity index 100% rename from core/utils/lists.py rename to engine/core/utils/lists.py diff --git a/core/utils/messages.py b/engine/core/utils/messages.py similarity index 100% rename from core/utils/messages.py rename to engine/core/utils/messages.py diff --git a/core/utils/nominatim.py b/engine/core/utils/nominatim.py similarity index 100% rename from core/utils/nominatim.py rename to engine/core/utils/nominatim.py diff --git a/core/utils/security.py b/engine/core/utils/security.py similarity index 59% rename from core/utils/security.py rename to engine/core/utils/security.py index 10113518..4878667e 100644 --- a/core/utils/security.py +++ b/engine/core/utils/security.py @@ -1,4 +1,4 @@ -from core.utils.lists import BAD_KEYS_TO_LISTEN +from engine.core.utils.lists import BAD_KEYS_TO_LISTEN def is_safe_key(attr: str) -> bool: diff --git a/core/utils/seo_builders.py b/engine/core/utils/seo_builders.py similarity index 98% rename from core/utils/seo_builders.py rename to engine/core/utils/seo_builders.py index 50e9c035..b76fd322 100644 --- a/core/utils/seo_builders.py +++ b/engine/core/utils/seo_builders.py @@ -1,7 +1,7 @@ from constance import config from django.conf import settings -from core.models import Product +from engine.core.models import Product def org_schema(): diff --git a/engine/core/utils/vendors.py b/engine/core/utils/vendors.py new file mode 100644 index 00000000..eb861c76 --- /dev/null +++ b/engine/core/utils/vendors.py @@ -0,0 +1,24 @@ +import logging + +from engine.core.models import Vendor +from engine.core.vendors import AbstractVendor +from evibes.utils.misc import create_object + +logger = logging.getLogger(__name__) + + +def get_vendors_integrations(name: str | None = None) -> list[AbstractVendor]: + vendors_integrations: list[AbstractVendor] = [] + + vendors = Vendor.objects.filter(is_active=True, integration_path__isnull=False) + if name: + vendors = vendors.filter(name=name) + + for vendor in vendors: + try: + module_name, class_name = vendor.integration_path.rsplit(".", 1) # type: ignore [union-attr] + vendors_integrations.append(create_object(module_name, class_name)) + except Exception as e: + logger.warning("Couldn't load integration for vendor %s: %s", vendor.name, e) + + return vendors_integrations diff --git a/core/validators.py b/engine/core/validators.py similarity index 100% rename from core/validators.py rename to engine/core/validators.py diff --git a/core/vendors/__init__.py b/engine/core/vendors/__init__.py similarity index 91% rename from core/vendors/__init__.py rename to engine/core/vendors/__init__.py index f83627d9..8658e0f2 100644 --- a/core/vendors/__init__.py +++ b/engine/core/vendors/__init__.py @@ -9,8 +9,6 @@ from io import BytesIO from math import ceil, log10 from typing import Any -from celery import current_task -from celery.utils.log import get_task_logger from constance import config from django.conf import settings from django.core.files.base import ContentFile @@ -18,8 +16,8 @@ from django.db import IntegrityError, transaction from django.db.models import QuerySet from django.db.utils import OperationalError -from core.elasticsearch import process_system_query -from core.models import ( +from engine.core.elasticsearch import process_system_query +from engine.core.models import ( Attribute, AttributeGroup, AttributeValue, @@ -30,12 +28,11 @@ from core.models import ( Stock, Vendor, ) -from evibes.utils.misc import LogLevel -from payments.errors import RatesError -from payments.utils import get_rates +from evibes.utils.misc import LoggingError, LogLevel +from engine.payments.errors import RatesError +from engine.payments.utils import get_rates -async_logger = get_task_logger("vendors") -logger = logging.getLogger("django") +logger = logging.getLogger(__name__) class NotEnoughBalanceError(Exception): @@ -96,44 +93,37 @@ 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. - - Attributes: - vendor_name (str | None): Name of the vendor associated with this class - instance. """ - def __init__(self, vendor_name: str | None = None, currency: str = "USD") -> None: + def __init__(self, vendor_name: str = "", currency: str = "USD") -> None: self.vendor_name = vendor_name self.currency = currency self.blocked_attributes: list[Any] = [] def __str__(self) -> str: - return self.get_vendor_instance(safe=True).name if self.get_vendor_instance() else self.vendor_name + 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: - is_celery_runtime = False - with suppress(Exception): - is_celery_runtime = bool(getattr(current_task, "request", None)) - - current_logger = async_logger if is_celery_runtime else logger - match level: case LogLevel.DEBUG: if settings.DEBUG: - current_logger.debug(message) + logger.debug(message) case LogLevel.TRACE: - if settings.DEBUG: - current_logger.debug(f"[TRACE] {message}") + logger.debug("[TRACE] %s", message) case LogLevel.INFO: - current_logger.info(message) + logger.info(message) case LogLevel.WARNING: - current_logger.warning(message) + logger.warning(message) case LogLevel.ERROR: - current_logger.error(message) + if settings.DEBUG: + logger.error(message, exc_info=True) + else: + logger.error(message) case LogLevel.CRITICAL: - current_logger.critical(message) + logger.critical(message, exc_info=True) case _: - current_logger.info(message) + raise LoggingError("Wrong type of logging level passed: %s", level) def save_response(self, data: dict[Any, Any] | list[Any]) -> None: with suppress(Exception): @@ -165,8 +155,12 @@ class AbstractVendor: filename = f"response_{timestamp}.json" content = ContentFile(json_bytes) + self.log(LogLevel.DEBUG, f"Saving vendor's response to {filename}") + vendor_instance.last_processing_response.save(filename, content, save=True) + self.log(LogLevel.DEBUG, f"Saved vendor's response to {filename} successfuly!") + return raise VendorDebuggingError("Could not save response") @@ -461,17 +455,23 @@ class AbstractVendor: return attr - def process_attribute(self, key: str, value: Any, product: Product, attr_group: AttributeGroup) -> None: + def process_attribute( + self, key: str, value: Any, product: Product, attr_group: AttributeGroup + ) -> AttributeValue | None: + 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(LogLevel.WARNING, f"No value for attribute {key!r} at {product.name!r}...") - return + return None if not attr_group: self.log(LogLevel.WARNING, f"No group for attribute {key!r} at {product.name!r}...") - return + return None if key in self.blocked_attributes: - return + return None value, attr_value_type = self.auto_convert_value(value) @@ -508,18 +508,25 @@ class AbstractVendor: raise except IntegrityError: self.log(LogLevel.WARNING, f"IntegrityError while processing attribute {key!r}...") - return + return None if not is_created: - return + return None - AttributeValue.objects.get_or_create( + av, _ = AttributeValue.objects.get_or_create( attribute=attribute, value=value, product=product, defaults={"is_active": True}, ) + 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 update_stock(self) -> None: pass diff --git a/core/views.py b/engine/core/views.py similarity index 95% rename from core/views.py rename to engine/core/views.py index 88125fad..5e4513a0 100644 --- a/core/views.py +++ b/engine/core/views.py @@ -4,6 +4,7 @@ import os import traceback import requests +from django.conf import settings from django.contrib.sitemaps.views import index as _sitemap_index_view from django.contrib.sitemaps.views import sitemap as _sitemap_detail_view from django.core.cache import cache @@ -31,7 +32,7 @@ from rest_framework_xml.renderers import XMLRenderer from rest_framework_yaml.renderers import YAMLRenderer from sentry_sdk import capture_exception -from core.docs.drf.views import ( +from engine.core.docs.drf.views import ( BUY_AS_BUSINESS_SCHEMA, CACHE_SCHEMA, CONTACT_US_SCHEMA, @@ -40,23 +41,21 @@ from core.docs.drf.views import ( REQUEST_CURSED_URL_SCHEMA, SEARCH_SCHEMA, ) -from core.elasticsearch import process_query -from core.models import DigitalAssetDownload, Order -from core.serializers import ( +from engine.core.elasticsearch import process_query +from engine.core.models import DigitalAssetDownload, Order +from engine.core.serializers import ( BuyAsBusinessOrderSerializer, CacheOperatorSerializer, ContactUsSerializer, LanguageSerializer, ) -from core.utils import get_project_parameters, is_url_safe -from core.utils.caching import web_cache -from core.utils.emailing import contact_us_email -from core.utils.languages import get_flag_by_language -from evibes import settings -from evibes.settings import LANGUAGES -from payments.serializers import TransactionProcessSerializer +from engine.core.utils import get_project_parameters, is_url_safe +from engine.core.utils.caching import web_cache +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 -logger = logging.getLogger("django") +logger = logging.getLogger(__name__) @cache_page(60 * 60 * 12) @@ -135,7 +134,7 @@ class SupportedLanguagesView(APIView): "name": lang[1], "flag": get_flag_by_language(lang[0]), } - for lang in LANGUAGES + for lang in settings.LANGUAGES ], many=True, ).data, diff --git a/core/viewsets.py b/engine/core/viewsets.py similarity index 98% rename from core/viewsets.py rename to engine/core/viewsets.py index a2e39c02..5106923d 100644 --- a/core/viewsets.py +++ b/engine/core/viewsets.py @@ -26,7 +26,7 @@ from rest_framework.viewsets import ModelViewSet from rest_framework_xml.renderers import XMLRenderer from rest_framework_yaml.renderers import YAMLRenderer -from core.docs.drf.viewsets import ( +from engine.core.docs.drf.viewsets import ( ADDRESS_SCHEMA, ATTRIBUTE_GROUP_SCHEMA, ATTRIBUTE_SCHEMA, @@ -45,8 +45,8 @@ from core.docs.drf.viewsets import ( VENDOR_SCHEMA, WISHLIST_SCHEMA, ) -from core.filters import AddressFilter, BrandFilter, CategoryFilter, FeedbackFilter, OrderFilter, ProductFilter -from core.models import ( +from engine.core.filters import AddressFilter, BrandFilter, CategoryFilter, FeedbackFilter, OrderFilter, ProductFilter +from engine.core.models import ( Address, Attribute, AttributeGroup, @@ -65,8 +65,8 @@ from core.models import ( Vendor, Wishlist, ) -from core.permissions import EvibesPermission -from core.serializers import ( +from engine.core.permissions import EvibesPermission +from engine.core.serializers import ( AddOrderProductSerializer, AddressAutocompleteInputSerializer, AddressCreateSerializer, @@ -114,11 +114,11 @@ from core.serializers import ( WishlistDetailSerializer, WishlistSimpleSerializer, ) -from core.serializers.seo import SeoSnapshotSerializer -from core.utils import format_attributes -from core.utils.messages import permission_denied_message -from core.utils.nominatim import fetch_address_suggestions -from core.utils.seo_builders import ( +from engine.core.serializers.seo import SeoSnapshotSerializer +from engine.core.utils import format_attributes +from engine.core.utils.messages import permission_denied_message +from engine.core.utils.nominatim import fetch_address_suggestions +from engine.core.utils.seo_builders import ( brand_schema, breadcrumb_schema, category_schema, @@ -127,9 +127,9 @@ from core.utils.seo_builders import ( product_schema, website_schema, ) -from payments.serializers import TransactionProcessSerializer +from engine.payments.serializers import TransactionProcessSerializer -logger = logging.getLogger("django") +logger = logging.getLogger(__name__) class EvibesViewSet(ModelViewSet): diff --git a/core/widgets.py b/engine/core/widgets.py similarity index 100% rename from core/widgets.py rename to engine/core/widgets.py diff --git a/payments/docs/__init__.py b/engine/payments/__init__.py similarity index 100% rename from payments/docs/__init__.py rename to engine/payments/__init__.py diff --git a/payments/admin.py b/engine/payments/admin.py similarity index 87% rename from payments/admin.py rename to engine/payments/admin.py index 77e5bf2c..78d54b63 100644 --- a/payments/admin.py +++ b/engine/payments/admin.py @@ -4,9 +4,9 @@ from django.db.models import QuerySet from django.http import HttpRequest from django.utils.translation import gettext_lazy as _ -from core.admin import ActivationActionsMixin -from payments.forms import GatewayForm, TransactionForm -from payments.models import Balance, Transaction, Gateway +from engine.core.admin import ActivationActionsMixin +from engine.payments.forms import GatewayForm, TransactionForm +from engine.payments.models import Balance, Transaction, Gateway class TransactionInline(admin.TabularInline): # type: ignore [type-arg] @@ -44,7 +44,7 @@ class TransactionAdmin(ActivationActionsMixin, ModelAdmin): # type: ignore [mis @register(Gateway) -class GatewayAdmin(ActivationActionsMixin, ModelAdmin): +class GatewayAdmin(ActivationActionsMixin, ModelAdmin): # type: ignore [misc] list_display = ( "name", "can_be_used", diff --git a/payments/apps.py b/engine/payments/apps.py similarity index 79% rename from payments/apps.py rename to engine/payments/apps.py index 459bcbc8..6651a136 100644 --- a/payments/apps.py +++ b/engine/payments/apps.py @@ -4,11 +4,11 @@ from django.utils.translation import gettext_lazy as _ class PaymentsConfig(AppConfig): default_auto_field = "django.db.models.BigAutoField" - name = "payments" + name = "engine.payments" verbose_name = _("payments") icon = "fa fa-solid fa-wallet" priority = 87 hide = False def ready(self) -> None: - import payments.signals # noqa: F401 + import engine.payments.signals # noqa: F401 diff --git a/payments/choices.py b/engine/payments/choices.py similarity index 100% rename from payments/choices.py rename to engine/payments/choices.py diff --git a/payments/docs/drf/__init__.py b/engine/payments/docs/__init__.py similarity index 100% rename from payments/docs/drf/__init__.py rename to engine/payments/docs/__init__.py diff --git a/payments/graphene/__init__.py b/engine/payments/docs/drf/__init__.py similarity index 100% rename from payments/graphene/__init__.py rename to engine/payments/docs/drf/__init__.py diff --git a/payments/docs/drf/views.py b/engine/payments/docs/drf/views.py similarity index 80% rename from payments/docs/drf/views.py rename to engine/payments/docs/drf/views.py index 92ab96ef..543ab301 100644 --- a/payments/docs/drf/views.py +++ b/engine/payments/docs/drf/views.py @@ -2,8 +2,8 @@ from django.utils.translation import gettext_lazy as _ from drf_spectacular.utils import extend_schema from rest_framework import status -from core.docs.drf import error -from payments.serializers import DepositSerializer, TransactionProcessSerializer +from engine.core.docs.drf import error +from engine.payments.serializers import DepositSerializer, TransactionProcessSerializer DEPOSIT_SCHEMA = { "post": extend_schema( diff --git a/payments/docs/drf/viewsets.py b/engine/payments/docs/drf/viewsets.py similarity index 51% rename from payments/docs/drf/viewsets.py rename to engine/payments/docs/drf/viewsets.py index ef24c2cd..db47eace 100644 --- a/payments/docs/drf/viewsets.py +++ b/engine/payments/docs/drf/viewsets.py @@ -1,9 +1,10 @@ from django.utils.translation import gettext_lazy as _ -from drf_spectacular.utils import extend_schema +from drf_spectacular.utils import extend_schema, OpenApiParameter +from drf_spectacular.types import OpenApiTypes from rest_framework import status -from core.docs.drf import BASE_ERRORS -from payments.serializers import TransactionSerializer +from engine.core.docs.drf import BASE_ERRORS +from engine.payments.serializers import TransactionSerializer TRANSACTION_SCHEMA = { "list": extend_schema( @@ -12,6 +13,14 @@ TRANSACTION_SCHEMA = { ), "retrieve": extend_schema( summary=_("retrieve a single transaction (read-only)"), + parameters=[ + OpenApiParameter( + name="uuid", + location="path", + description=_("Transaction UUID"), + type=OpenApiTypes.UUID, + ), + ], responses={status.HTTP_200_OK: TransactionSerializer(), **BASE_ERRORS}, ), } diff --git a/payments/errors.py b/engine/payments/errors.py similarity index 100% rename from payments/errors.py rename to engine/payments/errors.py diff --git a/payments/forms.py b/engine/payments/forms.py similarity index 81% rename from payments/forms.py rename to engine/payments/forms.py index b752d00b..cfa3d522 100644 --- a/payments/forms.py +++ b/engine/payments/forms.py @@ -1,7 +1,7 @@ from django import forms -from core.widgets import JSONTableWidget -from payments.models import Gateway, Transaction +from engine.core.widgets import JSONTableWidget +from engine.payments.models import Gateway, Transaction class TransactionForm(forms.ModelForm): # type: ignore [type-arg] diff --git a/payments/gateways/__init__.py b/engine/payments/gateways/__init__.py similarity index 100% rename from payments/gateways/__init__.py rename to engine/payments/gateways/__init__.py diff --git a/payments/migrations/__init__.py b/engine/payments/graphene/__init__.py similarity index 100% rename from payments/migrations/__init__.py rename to engine/payments/graphene/__init__.py diff --git a/payments/graphene/mutations.py b/engine/payments/graphene/mutations.py similarity index 73% rename from payments/graphene/mutations.py rename to engine/payments/graphene/mutations.py index aa162a04..23c540ce 100644 --- a/payments/graphene/mutations.py +++ b/engine/payments/graphene/mutations.py @@ -1,10 +1,10 @@ import graphene from rest_framework.exceptions import PermissionDenied -from core.graphene import BaseMutation -from core.utils.messages import permission_denied_message -from payments.graphene.object_types import TransactionType -from payments.models import Transaction +from engine.core.graphene import BaseMutation +from engine.core.utils.messages import permission_denied_message +from engine.payments.graphene.object_types import TransactionType +from engine.payments.models import Transaction class Deposit(BaseMutation): diff --git a/payments/graphene/object_types.py b/engine/payments/graphene/object_types.py similarity index 94% rename from payments/graphene/object_types.py rename to engine/payments/graphene/object_types.py index 13fd2748..c33e7405 100644 --- a/payments/graphene/object_types.py +++ b/engine/payments/graphene/object_types.py @@ -4,7 +4,7 @@ from graphene import relay from graphene.types.generic import GenericScalar from graphene_django import DjangoObjectType -from payments.models import Balance, Transaction +from engine.payments.models import Balance, Transaction class TransactionType(DjangoObjectType): diff --git a/engine/payments/locale/ar_AR/LC_MESSAGES/django.mo b/engine/payments/locale/ar_AR/LC_MESSAGES/django.mo new file mode 100644 index 00000000..a2b19e18 Binary files /dev/null and b/engine/payments/locale/ar_AR/LC_MESSAGES/django.mo differ diff --git a/payments/locale/ar_AR/LC_MESSAGES/django.po b/engine/payments/locale/ar_AR/LC_MESSAGES/django.po similarity index 70% rename from payments/locale/ar_AR/LC_MESSAGES/django.po rename to engine/payments/locale/ar_AR/LC_MESSAGES/django.po index 7a89f7eb..6b84fd85 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,151 +13,155 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: payments/admin.py:17 payments/models.py:65 +#: engine/payments/admin.py:17 engine/payments/models.py:64 msgid "transaction" msgstr "المعاملات" -#: payments/admin.py:18 payments/models.py:66 +#: engine/payments/admin.py:18 engine/payments/models.py:65 msgid "transactions" msgstr "المعاملات" -#: payments/admin.py:64 +#: engine/payments/admin.py:64 msgid "can be used" msgstr "يمكن استخدامها" -#: payments/apps.py:8 +#: engine/payments/apps.py:8 msgid "payments" msgstr "المدفوعات" -#: payments/choices.py:3 +#: engine/payments/choices.py:3 msgid "deposit" msgstr "الإيداع" -#: payments/choices.py:3 +#: engine/payments/choices.py:3 msgid "withdraw" msgstr "سحب" -#: payments/docs/drf/views.py:10 +#: engine/payments/docs/drf/views.py:10 msgid "deposit to balance" msgstr "الإيداع في الرصيد" -#: payments/docs/drf/views.py:11 +#: engine/payments/docs/drf/views.py:11 msgid "deposit some money to balance" msgstr "إيداع بعض الأموال لتحقيق التوازن" -#: payments/docs/drf/viewsets.py:10 +#: engine/payments/docs/drf/viewsets.py:11 msgid "list all transactions (read-only)" msgstr "سرد جميع المعاملات (للقراءة فقط)" -#: payments/docs/drf/viewsets.py:14 +#: engine/payments/docs/drf/viewsets.py:15 msgid "retrieve a single transaction (read-only)" msgstr "استرداد معاملة واحدة (للقراءة فقط)" -#: payments/models.py:38 +#: engine/payments/docs/drf/viewsets.py:20 +msgid "Transaction UUID" +msgstr "معرّف المعاملة UUID" + +#: engine/payments/models.py:37 msgid "order to process after paid" msgstr "طلب المعالجة بعد الدفع" -#: payments/models.py:41 +#: engine/payments/models.py:40 msgid "processing details" msgstr "تفاصيل المعالجة" -#: payments/models.py:61 +#: engine/payments/models.py:60 #, python-brace-format msgid "" -"transaction amount must fit into " -"{config.PAYMENT_GATEWAY_MINIMUM}-{config.PAYMENT_GATEWAY_MAXIMUM}" +"transaction amount must fit into {config.PAYMENT_GATEWAY_MINIMUM}-{config." +"PAYMENT_GATEWAY_MAXIMUM}" msgstr "" -"يجب أن يتناسب مبلغ المعاملة مع " -"{config.PAYMENT_GATEWAY_MINIMUM}-{config.PAYMENT_GATEWAY_MAXIMUM}" +"يجب أن يتناسب مبلغ المعاملة مع {config.PAYMENT_GATEWAY_MINIMUM}-{config." +"PAYMENT_GATEWAY_MAXIMUM}" -#: payments/models.py:84 +#: engine/payments/models.py:83 msgid "balance" msgstr "الرصيد" -#: payments/models.py:85 +#: engine/payments/models.py:84 msgid "balances" msgstr "الموازين" -#: payments/models.py:95 +#: engine/payments/models.py:94 msgid "name" msgstr "الاسم" -#: payments/models.py:100 +#: engine/payments/models.py:99 msgid "default currency" msgstr "العملة الافتراضية" -#: payments/models.py:107 +#: engine/payments/models.py:106 msgid "currencies" msgstr "العملات" -#: payments/models.py:109 +#: engine/payments/models.py:108 msgid "comma separated list of currencies supported by this gateway, " msgstr "قائمة مفصولة بفاصلة بالعملات التي تدعمها هذه البوابة," -#: payments/models.py:115 +#: engine/payments/models.py:114 msgid "minimum transaction amount" msgstr "الحد الأدنى لمبلغ المعاملة" -#: payments/models.py:118 +#: engine/payments/models.py:117 msgid "maximum transaction amount" msgstr "الحد الأقصى لمبلغ المعاملة" -#: payments/models.py:124 +#: engine/payments/models.py:123 msgid "daily limit" msgstr "الحد اليومي" -#: payments/models.py:125 +#: engine/payments/models.py:124 msgid "daily sum limit of transactions' amounts. 0 means no limit" msgstr "حد المجموع اليومي لمبالغ المعاملات. 0 يعني عدم وجود حد" -#: payments/models.py:131 +#: engine/payments/models.py:130 msgid "monthly limit" msgstr "الحد الشهري" -#: payments/models.py:132 +#: engine/payments/models.py:131 msgid "monthly sum limit of transactions' amounts. 0 means no limit" msgstr "حد المجموع الشهري لمبالغ المعاملات. 0 يعني عدم وجود حد" -#: payments/models.py:134 +#: engine/payments/models.py:133 msgid "priority" msgstr "الأولوية" -#: payments/models.py:135 +#: engine/payments/models.py:134 msgid "integration variables" msgstr "متغيرات التكامل" -#: payments/models.py:141 +#: engine/payments/models.py:140 msgid "payment gateway" msgstr "بوابة الدفع" -#: payments/models.py:142 +#: engine/payments/models.py:141 msgid "payment gateways" msgstr "بوابات الدفع" -#: payments/models.py:178 +#: engine/payments/models.py:177 msgid "gateway integration path is not set" msgstr "لم يتم تعيين مسار تكامل البوابة" -#: payments/models.py:183 +#: engine/payments/models.py:182 #, python-format msgid "invalid integration path: %(path)s" msgstr "مسار تكامل غير صالح: %(path)s" -#: payments/templates/balance_deposit_email.html:6 -#: payments/templates/balance_deposit_email.html:93 +#: engine/payments/templates/balance_deposit_email.html:6 +#: engine/payments/templates/balance_deposit_email.html:93 msgid "balance deposit" msgstr "إيداع الرصيد" -#: payments/templates/balance_deposit_email.html:88 +#: engine/payments/templates/balance_deposit_email.html:88 msgid "logo" msgstr "الشعار" -#: payments/templates/balance_deposit_email.html:94 +#: engine/payments/templates/balance_deposit_email.html:94 #, python-format msgid "hello %(user_first_name)s," msgstr "مرحباً %(user_first_name)s," -#: payments/templates/balance_deposit_email.html:95 +#: engine/payments/templates/balance_deposit_email.html:95 #, python-format msgid "" "we have successfully credited your account with %(amount)s. your current\n" @@ -166,7 +170,7 @@ msgstr "" "لقد نجحنا في إيداع رصيد حسابك في %(amount)s. رصيدك الحالي\n" " رصيدك الحالي هو %(balance)s__." -#: payments/templates/balance_deposit_email.html:98 +#: engine/payments/templates/balance_deposit_email.html:98 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" @@ -175,30 +179,30 @@ msgstr "" "إذا كان لديك أي أسئلة، فلا تتردد في الاتصال بدعمنا على\n" " %(contact_email)s." -#: payments/templates/balance_deposit_email.html:100 +#: engine/payments/templates/balance_deposit_email.html:100 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "مع أطيب تحياتي،
فريق %(project_name)s" -#: payments/templates/balance_deposit_email.html:106 +#: engine/payments/templates/balance_deposit_email.html:106 msgid "all rights reserved" msgstr "جميع الحقوق محفوظة" -#: payments/utils/__init__.py:8 +#: engine/payments/utils/__init__.py:8 msgid "a provider to get rates from is required" msgstr "مطلوب مزود للحصول على الأسعار من" -#: payments/utils/__init__.py:15 +#: engine/payments/utils/__init__.py:15 #, python-brace-format msgid "couldn't find provider {provider}" msgstr "تعذر العثور على مزود {provider}" -#: payments/utils/emailing.py:27 +#: engine/payments/utils/emailing.py:27 #, python-brace-format msgid "{config.PROJECT_NAME} | balance deposit" msgstr "{config.PROJECT_NAME} | إيداع الرصيد" -#: payments/viewsets.py:13 +#: engine/payments/viewsets.py:14 msgid "" "ViewSet for handling read-only operations on the Transaction model. This " "class provides a read-only interface for interacting with transaction data. " diff --git a/engine/payments/locale/cs_CZ/LC_MESSAGES/django.mo b/engine/payments/locale/cs_CZ/LC_MESSAGES/django.mo new file mode 100644 index 00000000..d4988cb9 Binary files /dev/null and b/engine/payments/locale/cs_CZ/LC_MESSAGES/django.mo differ diff --git a/payments/locale/cs_CZ/LC_MESSAGES/django.po b/engine/payments/locale/cs_CZ/LC_MESSAGES/django.po similarity index 67% rename from payments/locale/cs_CZ/LC_MESSAGES/django.po rename to engine/payments/locale/cs_CZ/LC_MESSAGES/django.po index 3df6820c..88fb2627 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,151 +13,155 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: payments/admin.py:17 payments/models.py:65 +#: engine/payments/admin.py:17 engine/payments/models.py:64 msgid "transaction" msgstr "Transakce" -#: payments/admin.py:18 payments/models.py:66 +#: engine/payments/admin.py:18 engine/payments/models.py:65 msgid "transactions" msgstr "Transakce" -#: payments/admin.py:64 +#: engine/payments/admin.py:64 msgid "can be used" msgstr "Lze použít" -#: payments/apps.py:8 +#: engine/payments/apps.py:8 msgid "payments" msgstr "Platby" -#: payments/choices.py:3 +#: engine/payments/choices.py:3 msgid "deposit" msgstr "Vklad" -#: payments/choices.py:3 +#: engine/payments/choices.py:3 msgid "withdraw" msgstr "Stáhnout" -#: payments/docs/drf/views.py:10 +#: engine/payments/docs/drf/views.py:10 msgid "deposit to balance" msgstr "Vklad do zůstatku" -#: payments/docs/drf/views.py:11 +#: engine/payments/docs/drf/views.py:11 msgid "deposit some money to balance" msgstr "Vložte nějaké peníze na účet" -#: payments/docs/drf/viewsets.py:10 +#: engine/payments/docs/drf/viewsets.py:11 msgid "list all transactions (read-only)" msgstr "Seznam všech transakcí (pouze pro čtení)" -#: payments/docs/drf/viewsets.py:14 +#: engine/payments/docs/drf/viewsets.py:15 msgid "retrieve a single transaction (read-only)" msgstr "Získání jedné transakce (pouze pro čtení)" -#: payments/models.py:38 +#: engine/payments/docs/drf/viewsets.py:20 +msgid "Transaction UUID" +msgstr "UUID transakce" + +#: engine/payments/models.py:37 msgid "order to process after paid" msgstr "Objednávka ke zpracování po zaplacení" -#: payments/models.py:41 +#: engine/payments/models.py:40 msgid "processing details" msgstr "Podrobnosti o zpracování" -#: payments/models.py:61 +#: engine/payments/models.py:60 #, python-brace-format msgid "" -"transaction amount must fit into " -"{config.PAYMENT_GATEWAY_MINIMUM}-{config.PAYMENT_GATEWAY_MAXIMUM}" +"transaction amount must fit into {config.PAYMENT_GATEWAY_MINIMUM}-{config." +"PAYMENT_GATEWAY_MAXIMUM}" msgstr "" -"Částka transakce se musí vejít do rozmezí " -"{config.PAYMENT_GATEWAY_MINIMUM}-{config.PAYMENT_GATEWAY_MAXIMUM}." +"Částka transakce se musí vejít do rozmezí {config.PAYMENT_GATEWAY_MINIMUM}-" +"{config.PAYMENT_GATEWAY_MAXIMUM}." -#: payments/models.py:84 +#: engine/payments/models.py:83 msgid "balance" msgstr "Bilance" -#: payments/models.py:85 +#: engine/payments/models.py:84 msgid "balances" msgstr "Váhy" -#: payments/models.py:95 +#: engine/payments/models.py:94 msgid "name" msgstr "název" -#: payments/models.py:100 +#: engine/payments/models.py:99 msgid "default currency" msgstr "výchozí měna" -#: payments/models.py:107 +#: engine/payments/models.py:106 msgid "currencies" msgstr "měny" -#: payments/models.py:109 +#: engine/payments/models.py:108 msgid "comma separated list of currencies supported by this gateway, " msgstr "seznam měn podporovaných touto bránou oddělený čárkou," -#: payments/models.py:115 +#: engine/payments/models.py:114 msgid "minimum transaction amount" msgstr "minimální částka transakce" -#: payments/models.py:118 +#: engine/payments/models.py:117 msgid "maximum transaction amount" msgstr "maximální částka transakce" -#: payments/models.py:124 +#: engine/payments/models.py:123 msgid "daily limit" msgstr "denní limit" -#: payments/models.py:125 +#: engine/payments/models.py:124 msgid "daily sum limit of transactions' amounts. 0 means no limit" msgstr "denní limit součtu částek transakcí. 0 znamená žádný limit" -#: payments/models.py:131 +#: engine/payments/models.py:130 msgid "monthly limit" msgstr "měsíční limit" -#: payments/models.py:132 +#: engine/payments/models.py:131 msgid "monthly sum limit of transactions' amounts. 0 means no limit" msgstr "měsíční limit součtu částek transakcí. 0 znamená žádný limit" -#: payments/models.py:134 +#: engine/payments/models.py:133 msgid "priority" msgstr "priorita" -#: payments/models.py:135 +#: engine/payments/models.py:134 msgid "integration variables" msgstr "integrační proměnné" -#: payments/models.py:141 +#: engine/payments/models.py:140 msgid "payment gateway" msgstr "platební brána" -#: payments/models.py:142 +#: engine/payments/models.py:141 msgid "payment gateways" msgstr "platební brány" -#: payments/models.py:178 +#: engine/payments/models.py:177 msgid "gateway integration path is not set" msgstr "cesta integrace brány není nastavena" -#: payments/models.py:183 +#: engine/payments/models.py:182 #, python-format msgid "invalid integration path: %(path)s" msgstr "neplatná cesta integrace: %(path)s" -#: payments/templates/balance_deposit_email.html:6 -#: payments/templates/balance_deposit_email.html:93 +#: engine/payments/templates/balance_deposit_email.html:6 +#: engine/payments/templates/balance_deposit_email.html:93 msgid "balance deposit" msgstr "Zůstatková záloha" -#: payments/templates/balance_deposit_email.html:88 +#: engine/payments/templates/balance_deposit_email.html:88 msgid "logo" msgstr "Logo" -#: payments/templates/balance_deposit_email.html:94 +#: engine/payments/templates/balance_deposit_email.html:94 #, python-format msgid "hello %(user_first_name)s," msgstr "Ahoj %(user_first_name)s," -#: payments/templates/balance_deposit_email.html:95 +#: engine/payments/templates/balance_deposit_email.html:95 #, python-format msgid "" "we have successfully credited your account with %(amount)s. your current\n" @@ -166,7 +170,7 @@ msgstr "" "Na váš účet jsme úspěšně připsali %(amount)s. Váš aktuální\n" " je %(balance)s." -#: payments/templates/balance_deposit_email.html:98 +#: engine/payments/templates/balance_deposit_email.html:98 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" @@ -175,30 +179,30 @@ msgstr "" "Pokud máte jakékoli dotazy, neváhejte kontaktovat naši podporu na adrese\n" " %(contact_email)s." -#: payments/templates/balance_deposit_email.html:100 +#: engine/payments/templates/balance_deposit_email.html:100 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "S pozdravem,
tým %(project_name)s" -#: payments/templates/balance_deposit_email.html:106 +#: engine/payments/templates/balance_deposit_email.html:106 msgid "all rights reserved" msgstr "Všechna práva vyhrazena" -#: payments/utils/__init__.py:8 +#: engine/payments/utils/__init__.py:8 msgid "a provider to get rates from is required" msgstr "Je třeba mít poskytovatele, od kterého lze získat sazby" -#: payments/utils/__init__.py:15 +#: engine/payments/utils/__init__.py:15 #, python-brace-format msgid "couldn't find provider {provider}" msgstr "Nepodařilo se najít poskytovatele {provider}" -#: payments/utils/emailing.py:27 +#: engine/payments/utils/emailing.py:27 #, python-brace-format msgid "{config.PROJECT_NAME} | balance deposit" msgstr "{config.PROJECT_NAME} | Zůstatek vkladu" -#: payments/viewsets.py:13 +#: engine/payments/viewsets.py:14 msgid "" "ViewSet for handling read-only operations on the Transaction model. This " "class provides a read-only interface for interacting with transaction data. " diff --git a/engine/payments/locale/da_DK/LC_MESSAGES/django.mo b/engine/payments/locale/da_DK/LC_MESSAGES/django.mo new file mode 100644 index 00000000..2214c974 Binary files /dev/null and b/engine/payments/locale/da_DK/LC_MESSAGES/django.mo differ diff --git a/payments/locale/da_DK/LC_MESSAGES/django.po b/engine/payments/locale/da_DK/LC_MESSAGES/django.po similarity index 66% rename from payments/locale/da_DK/LC_MESSAGES/django.po rename to engine/payments/locale/da_DK/LC_MESSAGES/django.po index d65007da..3ab81d5a 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,152 +13,155 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: payments/admin.py:17 payments/models.py:65 +#: engine/payments/admin.py:17 engine/payments/models.py:64 msgid "transaction" msgstr "Transaktion" -#: payments/admin.py:18 payments/models.py:66 +#: engine/payments/admin.py:18 engine/payments/models.py:65 msgid "transactions" msgstr "Transaktioner" -#: payments/admin.py:64 +#: engine/payments/admin.py:64 msgid "can be used" msgstr "Kan bruges" -#: payments/apps.py:8 +#: engine/payments/apps.py:8 msgid "payments" msgstr "Betalinger" -#: payments/choices.py:3 +#: engine/payments/choices.py:3 msgid "deposit" msgstr "Indskud" -#: payments/choices.py:3 +#: engine/payments/choices.py:3 msgid "withdraw" msgstr "Træk dig tilbage" -#: payments/docs/drf/views.py:10 +#: engine/payments/docs/drf/views.py:10 msgid "deposit to balance" msgstr "Indbetaling til saldo" -#: payments/docs/drf/views.py:11 +#: engine/payments/docs/drf/views.py:11 msgid "deposit some money to balance" msgstr "Sæt nogle penge ind på saldoen" -#: payments/docs/drf/viewsets.py:10 +#: engine/payments/docs/drf/viewsets.py:11 msgid "list all transactions (read-only)" msgstr "Liste over alle transaktioner (skrivebeskyttet)" -#: payments/docs/drf/viewsets.py:14 +#: engine/payments/docs/drf/viewsets.py:15 msgid "retrieve a single transaction (read-only)" msgstr "Hent en enkelt transaktion (skrivebeskyttet)" -#: payments/models.py:38 +#: engine/payments/docs/drf/viewsets.py:20 +msgid "Transaction UUID" +msgstr "Transaktions-UUID" + +#: engine/payments/models.py:37 msgid "order to process after paid" msgstr "Ordre til behandling efter betaling" -#: payments/models.py:41 +#: engine/payments/models.py:40 msgid "processing details" msgstr "Behandling af detaljer" -#: payments/models.py:61 +#: engine/payments/models.py:60 #, python-brace-format msgid "" -"transaction amount must fit into " -"{config.PAYMENT_GATEWAY_MINIMUM}-{config.PAYMENT_GATEWAY_MAXIMUM}" +"transaction amount must fit into {config.PAYMENT_GATEWAY_MINIMUM}-{config." +"PAYMENT_GATEWAY_MAXIMUM}" msgstr "" -"Transaktionsbeløbet skal passe ind i " -"{config.PAYMENT_GATEWAY_MINIMUM}-{config.PAYMENT_GATEWAY_MAXIMUM}." +"Transaktionsbeløbet skal passe ind i {config.PAYMENT_GATEWAY_MINIMUM}-" +"{config.PAYMENT_GATEWAY_MAXIMUM}." -#: payments/models.py:84 +#: engine/payments/models.py:83 msgid "balance" msgstr "Balance" -#: payments/models.py:85 +#: engine/payments/models.py:84 msgid "balances" msgstr "Vægte" -#: payments/models.py:95 +#: engine/payments/models.py:94 msgid "name" msgstr "Navn" -#: payments/models.py:100 +#: engine/payments/models.py:99 msgid "default currency" msgstr "Standardvaluta" -#: payments/models.py:107 +#: engine/payments/models.py:106 msgid "currencies" msgstr "Valutaer" -#: payments/models.py:109 +#: engine/payments/models.py:108 msgid "comma separated list of currencies supported by this gateway, " -msgstr "" -"kommasepareret liste over valutaer, der understøttes af denne gateway," +msgstr "kommasepareret liste over valutaer, der understøttes af denne gateway," -#: payments/models.py:115 +#: engine/payments/models.py:114 msgid "minimum transaction amount" msgstr "mindste transaktionsbeløb" -#: payments/models.py:118 +#: engine/payments/models.py:117 msgid "maximum transaction amount" msgstr "maksimalt transaktionsbeløb" -#: payments/models.py:124 +#: engine/payments/models.py:123 msgid "daily limit" msgstr "daglig grænse" -#: payments/models.py:125 +#: engine/payments/models.py:124 msgid "daily sum limit of transactions' amounts. 0 means no limit" msgstr "daglig sumgrænse for transaktionsbeløb. 0 betyder ingen grænse" -#: payments/models.py:131 +#: engine/payments/models.py:130 msgid "monthly limit" msgstr "månedlig grænse" -#: payments/models.py:132 +#: engine/payments/models.py:131 msgid "monthly sum limit of transactions' amounts. 0 means no limit" msgstr "månedlig sumgrænse for transaktionsbeløb. 0 betyder ingen grænse" -#: payments/models.py:134 +#: engine/payments/models.py:133 msgid "priority" msgstr "prioritet" -#: payments/models.py:135 +#: engine/payments/models.py:134 msgid "integration variables" msgstr "Integrationsvariabler" -#: payments/models.py:141 +#: engine/payments/models.py:140 msgid "payment gateway" msgstr "betalingsgateway" -#: payments/models.py:142 +#: engine/payments/models.py:141 msgid "payment gateways" msgstr "Betalingsgateways" -#: payments/models.py:178 +#: engine/payments/models.py:177 msgid "gateway integration path is not set" msgstr "gateway-integrationsstien er ikke indstillet" -#: payments/models.py:183 +#: engine/payments/models.py:182 #, python-format msgid "invalid integration path: %(path)s" msgstr "Ugyldig integrationssti: %(path)s." -#: payments/templates/balance_deposit_email.html:6 -#: payments/templates/balance_deposit_email.html:93 +#: engine/payments/templates/balance_deposit_email.html:6 +#: engine/payments/templates/balance_deposit_email.html:93 msgid "balance deposit" msgstr "Saldoindbetaling" -#: payments/templates/balance_deposit_email.html:88 +#: engine/payments/templates/balance_deposit_email.html:88 msgid "logo" msgstr "Logo" -#: payments/templates/balance_deposit_email.html:94 +#: engine/payments/templates/balance_deposit_email.html:94 #, python-format msgid "hello %(user_first_name)s," msgstr "Hej %(user_first_name)s," -#: payments/templates/balance_deposit_email.html:95 +#: engine/payments/templates/balance_deposit_email.html:95 #, python-format msgid "" "we have successfully credited your account with %(amount)s. your current\n" @@ -167,7 +170,7 @@ msgstr "" "Vi har krediteret din konto med %(amount)s. Din nuværende\n" " saldo er %(balance)s." -#: payments/templates/balance_deposit_email.html:98 +#: engine/payments/templates/balance_deposit_email.html:98 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" @@ -176,30 +179,30 @@ msgstr "" "Hvis du har spørgsmål, er du velkommen til at kontakte vores support på\n" " %(contact_email)s." -#: payments/templates/balance_deposit_email.html:100 +#: engine/payments/templates/balance_deposit_email.html:100 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "Med venlig hilsen,
teamet %(project_name)s." -#: payments/templates/balance_deposit_email.html:106 +#: engine/payments/templates/balance_deposit_email.html:106 msgid "all rights reserved" msgstr "Alle rettigheder forbeholdes" -#: payments/utils/__init__.py:8 +#: engine/payments/utils/__init__.py:8 msgid "a provider to get rates from is required" msgstr "Der er brug for en udbyder at få priser fra" -#: payments/utils/__init__.py:15 +#: engine/payments/utils/__init__.py:15 #, python-brace-format msgid "couldn't find provider {provider}" msgstr "Kunne ikke finde udbyder {provider}." -#: payments/utils/emailing.py:27 +#: engine/payments/utils/emailing.py:27 #, python-brace-format msgid "{config.PROJECT_NAME} | balance deposit" msgstr "{config.PROJECT_NAME} | Saldoindbetaling" -#: payments/viewsets.py:13 +#: engine/payments/viewsets.py:14 msgid "" "ViewSet for handling read-only operations on the Transaction model. This " "class provides a read-only interface for interacting with transaction data. " diff --git a/engine/payments/locale/de_DE/LC_MESSAGES/django.mo b/engine/payments/locale/de_DE/LC_MESSAGES/django.mo new file mode 100644 index 00000000..16da6d7d Binary files /dev/null and b/engine/payments/locale/de_DE/LC_MESSAGES/django.mo differ diff --git a/payments/locale/de_DE/LC_MESSAGES/django.po b/engine/payments/locale/de_DE/LC_MESSAGES/django.po similarity index 66% rename from payments/locale/de_DE/LC_MESSAGES/django.po rename to engine/payments/locale/de_DE/LC_MESSAGES/django.po index a5db8b5e..459a7eb9 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,155 +13,159 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: payments/admin.py:17 payments/models.py:65 +#: engine/payments/admin.py:17 engine/payments/models.py:64 msgid "transaction" msgstr "Transaktion" -#: payments/admin.py:18 payments/models.py:66 +#: engine/payments/admin.py:18 engine/payments/models.py:65 msgid "transactions" msgstr "Transaktionen" -#: payments/admin.py:64 +#: engine/payments/admin.py:64 msgid "can be used" msgstr "Kann verwendet werden" -#: payments/apps.py:8 +#: engine/payments/apps.py:8 msgid "payments" msgstr "Zahlungen" -#: payments/choices.py:3 +#: engine/payments/choices.py:3 msgid "deposit" msgstr "Einzahlung" -#: payments/choices.py:3 +#: engine/payments/choices.py:3 msgid "withdraw" msgstr "Zurückziehen" -#: payments/docs/drf/views.py:10 +#: engine/payments/docs/drf/views.py:10 msgid "deposit to balance" msgstr "Einzahlung auf den Saldo" -#: payments/docs/drf/views.py:11 +#: engine/payments/docs/drf/views.py:11 msgid "deposit some money to balance" msgstr "Einzahlung von Geld zum Ausgleich" -#: payments/docs/drf/viewsets.py:10 +#: engine/payments/docs/drf/viewsets.py:11 msgid "list all transactions (read-only)" msgstr "Alle Transaktionen auflisten (schreibgeschützt)" -#: payments/docs/drf/viewsets.py:14 +#: engine/payments/docs/drf/viewsets.py:15 msgid "retrieve a single transaction (read-only)" msgstr "Eine einzelne Transaktion abrufen (schreibgeschützt)" -#: payments/models.py:38 +#: engine/payments/docs/drf/viewsets.py:20 +msgid "Transaction UUID" +msgstr "Transaktion UUID" + +#: engine/payments/models.py:37 msgid "order to process after paid" msgstr "Auftrag zur Bearbeitung nach Bezahlung" -#: payments/models.py:41 +#: engine/payments/models.py:40 msgid "processing details" msgstr "Details zur Verarbeitung" -#: payments/models.py:61 +#: engine/payments/models.py:60 #, python-brace-format msgid "" -"transaction amount must fit into " -"{config.PAYMENT_GATEWAY_MINIMUM}-{config.PAYMENT_GATEWAY_MAXIMUM}" +"transaction amount must fit into {config.PAYMENT_GATEWAY_MINIMUM}-{config." +"PAYMENT_GATEWAY_MAXIMUM}" msgstr "" -"Der Transaktionsbetrag muss zwischen " -"{config.PAYMENT_GATEWAY_MINIMUM}-{config.PAYMENT_GATEWAY_MAXIMUM} liegen" +"Der Transaktionsbetrag muss zwischen {config.PAYMENT_GATEWAY_MINIMUM}-" +"{config.PAYMENT_GATEWAY_MAXIMUM} liegen" -#: payments/models.py:84 +#: engine/payments/models.py:83 msgid "balance" msgstr "Waage" -#: payments/models.py:85 +#: engine/payments/models.py:84 msgid "balances" msgstr "Waagen" -#: payments/models.py:95 +#: engine/payments/models.py:94 msgid "name" msgstr "Name" -#: payments/models.py:100 +#: engine/payments/models.py:99 msgid "default currency" msgstr "Standardwährung" -#: payments/models.py:107 +#: engine/payments/models.py:106 msgid "currencies" msgstr "Währungen" -#: payments/models.py:109 +#: engine/payments/models.py:108 msgid "comma separated list of currencies supported by this gateway, " msgstr "kommagetrennte Liste der von diesem Gateway unterstützten Währungen," -#: payments/models.py:115 +#: engine/payments/models.py:114 msgid "minimum transaction amount" msgstr "Mindesttransaktionsbetrag" -#: payments/models.py:118 +#: engine/payments/models.py:117 msgid "maximum transaction amount" msgstr "maximaler Transaktionsbetrag" -#: payments/models.py:124 +#: engine/payments/models.py:123 msgid "daily limit" msgstr "Tageslimit" -#: payments/models.py:125 +#: engine/payments/models.py:124 msgid "daily sum limit of transactions' amounts. 0 means no limit" msgstr "" "tägliches Summenlimit für die Beträge der Transaktionen. 0 bedeutet kein " "Limit" -#: payments/models.py:131 +#: engine/payments/models.py:130 msgid "monthly limit" msgstr "monatliche Obergrenze" -#: payments/models.py:132 +#: engine/payments/models.py:131 msgid "monthly sum limit of transactions' amounts. 0 means no limit" msgstr "" "monatliches Summenlimit für die Beträge der Transaktionen. 0 bedeutet kein " "Limit" -#: payments/models.py:134 +#: engine/payments/models.py:133 msgid "priority" msgstr "Priorität" -#: payments/models.py:135 +#: engine/payments/models.py:134 msgid "integration variables" msgstr "Integrationsvariablen" -#: payments/models.py:141 +#: engine/payments/models.py:140 msgid "payment gateway" msgstr "Zahlungs-Gateway" -#: payments/models.py:142 +#: engine/payments/models.py:141 msgid "payment gateways" msgstr "Zahlungs-Gateways" -#: payments/models.py:178 +#: engine/payments/models.py:177 msgid "gateway integration path is not set" msgstr "Gateway-Integrationspfad ist nicht festgelegt" -#: payments/models.py:183 +#: engine/payments/models.py:182 #, python-format msgid "invalid integration path: %(path)s" msgstr "Ungültiger Integrationspfad: %(path)s" -#: payments/templates/balance_deposit_email.html:6 -#: payments/templates/balance_deposit_email.html:93 +#: engine/payments/templates/balance_deposit_email.html:6 +#: engine/payments/templates/balance_deposit_email.html:93 msgid "balance deposit" msgstr "Balance Deposit" -#: payments/templates/balance_deposit_email.html:88 +#: engine/payments/templates/balance_deposit_email.html:88 msgid "logo" msgstr "Logo" -#: payments/templates/balance_deposit_email.html:94 +#: engine/payments/templates/balance_deposit_email.html:94 #, python-format msgid "hello %(user_first_name)s," msgstr "Hallo %(user_first_name)s," -#: payments/templates/balance_deposit_email.html:95 +#: engine/payments/templates/balance_deposit_email.html:95 #, python-format msgid "" "we have successfully credited your account with %(amount)s. your current\n" @@ -170,7 +174,7 @@ msgstr "" "Wir haben Ihrem Konto erfolgreich %(amount)s gutgeschrieben. Ihr aktuelles\n" " Saldo beträgt %(balance)s." -#: payments/templates/balance_deposit_email.html:98 +#: engine/payments/templates/balance_deposit_email.html:98 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" @@ -179,30 +183,30 @@ msgstr "" "Wenn Sie Fragen haben, wenden Sie sich bitte an unseren Support unter\n" " %(contact_email)s." -#: payments/templates/balance_deposit_email.html:100 +#: engine/payments/templates/balance_deposit_email.html:100 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "Mit freundlichen Grüßen,
das %(project_name)s-Team" -#: payments/templates/balance_deposit_email.html:106 +#: engine/payments/templates/balance_deposit_email.html:106 msgid "all rights reserved" msgstr "Alle Rechte vorbehalten" -#: payments/utils/__init__.py:8 +#: engine/payments/utils/__init__.py:8 msgid "a provider to get rates from is required" msgstr "Sie benötigen einen Anbieter, bei dem Sie die Preise erfragen können." -#: payments/utils/__init__.py:15 +#: engine/payments/utils/__init__.py:15 #, python-brace-format msgid "couldn't find provider {provider}" msgstr "Anbieter {provider} konnte nicht gefunden werden" -#: payments/utils/emailing.py:27 +#: engine/payments/utils/emailing.py:27 #, python-brace-format msgid "{config.PROJECT_NAME} | balance deposit" msgstr "{config.PROJECT_NAME} | Saldo Einzahlung" -#: payments/viewsets.py:13 +#: engine/payments/viewsets.py:14 msgid "" "ViewSet for handling read-only operations on the Transaction model. This " "class provides a read-only interface for interacting with transaction data. " @@ -211,8 +215,8 @@ msgid "" "permissions, can access the transactions." msgstr "" "ViewSet für die Handhabung von Nur-Lese-Operationen auf dem " -"Transaktionsmodell. Diese Klasse bietet eine schreibgeschützte Schnittstelle" -" für die Interaktion mit Transaktionsdaten. Sie verwendet den " -"TransactionSerializer zur Serialisierung und Deserialisierung der Daten. Die" -" Klasse stellt sicher, dass nur autorisierte Benutzer, die bestimmte " +"Transaktionsmodell. Diese Klasse bietet eine schreibgeschützte Schnittstelle " +"für die Interaktion mit Transaktionsdaten. Sie verwendet den " +"TransactionSerializer zur Serialisierung und Deserialisierung der Daten. Die " +"Klasse stellt sicher, dass nur autorisierte Benutzer, die bestimmte " "Berechtigungen erfüllen, auf die Transaktionen zugreifen können." diff --git a/engine/payments/locale/en_GB/LC_MESSAGES/django.mo b/engine/payments/locale/en_GB/LC_MESSAGES/django.mo new file mode 100644 index 00000000..5f79a96b Binary files /dev/null and b/engine/payments/locale/en_GB/LC_MESSAGES/django.mo differ diff --git a/payments/locale/en_GB/LC_MESSAGES/django.po b/engine/payments/locale/en_GB/LC_MESSAGES/django.po similarity index 68% rename from payments/locale/en_GB/LC_MESSAGES/django.po rename to engine/payments/locale/en_GB/LC_MESSAGES/django.po index 1d4f1c0c..52faf52c 100644 --- a/payments/locale/en_GB/LC_MESSAGES/django.po +++ b/engine/payments/locale/en_GB/LC_MESSAGES/django.po @@ -2,12 +2,12 @@ # Copyright (C) 2025 Egor "fureunoir" Gorbunov # This file is distributed under the same license as the eVibes package. # EGOR GORBUNOV , 2025. -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -17,151 +17,155 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: payments/admin.py:17 payments/models.py:65 +#: engine/payments/admin.py:17 engine/payments/models.py:64 msgid "transaction" msgstr "Transaction" -#: payments/admin.py:18 payments/models.py:66 +#: engine/payments/admin.py:18 engine/payments/models.py:65 msgid "transactions" msgstr "Transactions" -#: payments/admin.py:64 +#: engine/payments/admin.py:64 msgid "can be used" msgstr "Can be used" -#: payments/apps.py:8 +#: engine/payments/apps.py:8 msgid "payments" msgstr "Payments" -#: payments/choices.py:3 +#: engine/payments/choices.py:3 msgid "deposit" msgstr "Deposit" -#: payments/choices.py:3 +#: engine/payments/choices.py:3 msgid "withdraw" msgstr "Withdraw" -#: payments/docs/drf/views.py:10 +#: engine/payments/docs/drf/views.py:10 msgid "deposit to balance" msgstr "Deposit to balance" -#: payments/docs/drf/views.py:11 +#: engine/payments/docs/drf/views.py:11 msgid "deposit some money to balance" msgstr "Deposit some money to balance" -#: payments/docs/drf/viewsets.py:10 +#: engine/payments/docs/drf/viewsets.py:11 msgid "list all transactions (read-only)" msgstr "List all transactions (read-only)" -#: payments/docs/drf/viewsets.py:14 +#: engine/payments/docs/drf/viewsets.py:15 msgid "retrieve a single transaction (read-only)" msgstr "Retrieve a single transaction (read-only)" -#: payments/models.py:38 +#: engine/payments/docs/drf/viewsets.py:20 +msgid "Transaction UUID" +msgstr "Transaction UUID" + +#: engine/payments/models.py:37 msgid "order to process after paid" msgstr "Order to process after paid" -#: payments/models.py:41 +#: engine/payments/models.py:40 msgid "processing details" msgstr "Processing details" -#: payments/models.py:61 +#: engine/payments/models.py:60 #, python-brace-format msgid "" -"transaction amount must fit into " -"{config.PAYMENT_GATEWAY_MINIMUM}-{config.PAYMENT_GATEWAY_MAXIMUM}" +"transaction amount must fit into {config.PAYMENT_GATEWAY_MINIMUM}-{config." +"PAYMENT_GATEWAY_MAXIMUM}" msgstr "" -"Transaction amount must fit into " -"{config.PAYMENT_GATEWAY_MINIMUM}-{config.PAYMENT_GATEWAY_MAXIMUM}" +"Transaction amount must fit into {config.PAYMENT_GATEWAY_MINIMUM}-{config." +"PAYMENT_GATEWAY_MAXIMUM}" -#: payments/models.py:84 +#: engine/payments/models.py:83 msgid "balance" msgstr "Balance" -#: payments/models.py:85 +#: engine/payments/models.py:84 msgid "balances" msgstr "Balances" -#: payments/models.py:95 +#: engine/payments/models.py:94 msgid "name" msgstr "name" -#: payments/models.py:100 +#: engine/payments/models.py:99 msgid "default currency" msgstr "default currency" -#: payments/models.py:107 +#: engine/payments/models.py:106 msgid "currencies" msgstr "currencies" -#: payments/models.py:109 +#: engine/payments/models.py:108 msgid "comma separated list of currencies supported by this gateway, " msgstr "comma separated list of currencies supported by this gateway," -#: payments/models.py:115 +#: engine/payments/models.py:114 msgid "minimum transaction amount" msgstr "minimum transaction amount" -#: payments/models.py:118 +#: engine/payments/models.py:117 msgid "maximum transaction amount" msgstr "maximum transaction amount" -#: payments/models.py:124 +#: engine/payments/models.py:123 msgid "daily limit" msgstr "daily limit" -#: payments/models.py:125 +#: engine/payments/models.py:124 msgid "daily sum limit of transactions' amounts. 0 means no limit" msgstr "daily sum limit of transactions' amounts. 0 means no limit" -#: payments/models.py:131 +#: engine/payments/models.py:130 msgid "monthly limit" msgstr "monthly limit" -#: payments/models.py:132 +#: engine/payments/models.py:131 msgid "monthly sum limit of transactions' amounts. 0 means no limit" msgstr "monthly sum limit of transactions' amounts. 0 means no limit" -#: payments/models.py:134 +#: engine/payments/models.py:133 msgid "priority" msgstr "priority" -#: payments/models.py:135 +#: engine/payments/models.py:134 msgid "integration variables" msgstr "integration variables" -#: payments/models.py:141 +#: engine/payments/models.py:140 msgid "payment gateway" msgstr "payment gateway" -#: payments/models.py:142 +#: engine/payments/models.py:141 msgid "payment gateways" msgstr "payment gateways" -#: payments/models.py:178 +#: engine/payments/models.py:177 msgid "gateway integration path is not set" msgstr "gateway integration path is not set" -#: payments/models.py:183 +#: engine/payments/models.py:182 #, python-format msgid "invalid integration path: %(path)s" msgstr "invalid integration path: %(path)s" -#: payments/templates/balance_deposit_email.html:6 -#: payments/templates/balance_deposit_email.html:93 +#: engine/payments/templates/balance_deposit_email.html:6 +#: engine/payments/templates/balance_deposit_email.html:93 msgid "balance deposit" msgstr "Balance Deposit" -#: payments/templates/balance_deposit_email.html:88 +#: engine/payments/templates/balance_deposit_email.html:88 msgid "logo" msgstr "Logo" -#: payments/templates/balance_deposit_email.html:94 +#: engine/payments/templates/balance_deposit_email.html:94 #, python-format msgid "hello %(user_first_name)s," msgstr "Hello %(user_first_name)s," -#: payments/templates/balance_deposit_email.html:95 +#: engine/payments/templates/balance_deposit_email.html:95 #, python-format msgid "" "we have successfully credited your account with %(amount)s. your current\n" @@ -170,7 +174,7 @@ msgstr "" "We have successfully credited your account with %(amount)s. Your current\n" " balance is %(balance)s." -#: payments/templates/balance_deposit_email.html:98 +#: engine/payments/templates/balance_deposit_email.html:98 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" @@ -179,30 +183,30 @@ msgstr "" "If you have any questions, feel free to contact our support at\n" " %(contact_email)s." -#: payments/templates/balance_deposit_email.html:100 +#: engine/payments/templates/balance_deposit_email.html:100 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "Best regards,
the %(project_name)s team" -#: payments/templates/balance_deposit_email.html:106 +#: engine/payments/templates/balance_deposit_email.html:106 msgid "all rights reserved" msgstr "All rights reserved" -#: payments/utils/__init__.py:8 +#: engine/payments/utils/__init__.py:8 msgid "a provider to get rates from is required" msgstr "A provider to get rates from is required" -#: payments/utils/__init__.py:15 +#: engine/payments/utils/__init__.py:15 #, python-brace-format msgid "couldn't find provider {provider}" msgstr "Couldn't find provider {provider}" -#: payments/utils/emailing.py:27 +#: engine/payments/utils/emailing.py:27 #, python-brace-format msgid "{config.PROJECT_NAME} | balance deposit" msgstr "{config.PROJECT_NAME} | Balance Deposit" -#: payments/viewsets.py:13 +#: engine/payments/viewsets.py:14 msgid "" "ViewSet for handling read-only operations on the Transaction model. This " "class provides a read-only interface for interacting with transaction data. " diff --git a/engine/payments/locale/en_US/LC_MESSAGES/django.mo b/engine/payments/locale/en_US/LC_MESSAGES/django.mo new file mode 100644 index 00000000..9a494098 Binary files /dev/null and b/engine/payments/locale/en_US/LC_MESSAGES/django.mo differ diff --git a/payments/locale/en_US/LC_MESSAGES/django.po b/engine/payments/locale/en_US/LC_MESSAGES/django.po similarity index 67% rename from payments/locale/en_US/LC_MESSAGES/django.po rename to engine/payments/locale/en_US/LC_MESSAGES/django.po index 45632b92..4fa9c3af 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,151 +13,155 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: payments/admin.py:17 payments/models.py:65 +#: engine/payments/admin.py:17 engine/payments/models.py:64 msgid "transaction" msgstr "Transaction" -#: payments/admin.py:18 payments/models.py:66 +#: engine/payments/admin.py:18 engine/payments/models.py:65 msgid "transactions" msgstr "Transactions" -#: payments/admin.py:64 +#: engine/payments/admin.py:64 msgid "can be used" msgstr "Can be used" -#: payments/apps.py:8 +#: engine/payments/apps.py:8 msgid "payments" msgstr "Payments" -#: payments/choices.py:3 +#: engine/payments/choices.py:3 msgid "deposit" msgstr "Deposit" -#: payments/choices.py:3 +#: engine/payments/choices.py:3 msgid "withdraw" msgstr "Withdraw" -#: payments/docs/drf/views.py:10 +#: engine/payments/docs/drf/views.py:10 msgid "deposit to balance" msgstr "Deposit to balance" -#: payments/docs/drf/views.py:11 +#: engine/payments/docs/drf/views.py:11 msgid "deposit some money to balance" msgstr "Deposit some money to balance" -#: payments/docs/drf/viewsets.py:10 +#: engine/payments/docs/drf/viewsets.py:11 msgid "list all transactions (read-only)" msgstr "List all transactions (read-only)" -#: payments/docs/drf/viewsets.py:14 +#: engine/payments/docs/drf/viewsets.py:15 msgid "retrieve a single transaction (read-only)" msgstr "Retrieve a single transaction (read-only)" -#: payments/models.py:38 +#: engine/payments/docs/drf/viewsets.py:20 +msgid "Transaction UUID" +msgstr "Transaction UUID" + +#: engine/payments/models.py:37 msgid "order to process after paid" msgstr "Order to process after paid" -#: payments/models.py:41 +#: engine/payments/models.py:40 msgid "processing details" msgstr "Processing details" -#: payments/models.py:61 +#: engine/payments/models.py:60 #, python-brace-format msgid "" -"transaction amount must fit into " -"{config.PAYMENT_GATEWAY_MINIMUM}-{config.PAYMENT_GATEWAY_MAXIMUM}" +"transaction amount must fit into {config.PAYMENT_GATEWAY_MINIMUM}-{config." +"PAYMENT_GATEWAY_MAXIMUM}" msgstr "" -"Transaction amount must fit into " -"{config.PAYMENT_GATEWAY_MINIMUM}-{config.PAYMENT_GATEWAY_MAXIMUM}" +"Transaction amount must fit into {config.PAYMENT_GATEWAY_MINIMUM}-{config." +"PAYMENT_GATEWAY_MAXIMUM}" -#: payments/models.py:84 +#: engine/payments/models.py:83 msgid "balance" msgstr "Balance" -#: payments/models.py:85 +#: engine/payments/models.py:84 msgid "balances" msgstr "Scales" -#: payments/models.py:95 +#: engine/payments/models.py:94 msgid "name" msgstr "name" -#: payments/models.py:100 +#: engine/payments/models.py:99 msgid "default currency" msgstr "default currency" -#: payments/models.py:107 +#: engine/payments/models.py:106 msgid "currencies" msgstr "currencies" -#: payments/models.py:109 +#: engine/payments/models.py:108 msgid "comma separated list of currencies supported by this gateway, " msgstr "comma separated list of currencies supported by this gateway," -#: payments/models.py:115 +#: engine/payments/models.py:114 msgid "minimum transaction amount" msgstr "minimum transaction amount" -#: payments/models.py:118 +#: engine/payments/models.py:117 msgid "maximum transaction amount" msgstr "maximum transaction amount" -#: payments/models.py:124 +#: engine/payments/models.py:123 msgid "daily limit" msgstr "daily limit" -#: payments/models.py:125 +#: engine/payments/models.py:124 msgid "daily sum limit of transactions' amounts. 0 means no limit" msgstr "daily sum limit of transactions' amounts. 0 means no limit" -#: payments/models.py:131 +#: engine/payments/models.py:130 msgid "monthly limit" msgstr "monthly limit" -#: payments/models.py:132 +#: engine/payments/models.py:131 msgid "monthly sum limit of transactions' amounts. 0 means no limit" msgstr "monthly sum limit of transactions' amounts. 0 means no limit" -#: payments/models.py:134 +#: engine/payments/models.py:133 msgid "priority" msgstr "priority" -#: payments/models.py:135 +#: engine/payments/models.py:134 msgid "integration variables" msgstr "integration variables" -#: payments/models.py:141 +#: engine/payments/models.py:140 msgid "payment gateway" msgstr "payment gateway" -#: payments/models.py:142 +#: engine/payments/models.py:141 msgid "payment gateways" msgstr "payment gateways" -#: payments/models.py:178 +#: engine/payments/models.py:177 msgid "gateway integration path is not set" msgstr "gateway integration path is not set" -#: payments/models.py:183 +#: engine/payments/models.py:182 #, python-format msgid "invalid integration path: %(path)s" msgstr "invalid integration path: %(path)s" -#: payments/templates/balance_deposit_email.html:6 -#: payments/templates/balance_deposit_email.html:93 +#: engine/payments/templates/balance_deposit_email.html:6 +#: engine/payments/templates/balance_deposit_email.html:93 msgid "balance deposit" msgstr "Balance Deposit" -#: payments/templates/balance_deposit_email.html:88 +#: engine/payments/templates/balance_deposit_email.html:88 msgid "logo" msgstr "Logo" -#: payments/templates/balance_deposit_email.html:94 +#: engine/payments/templates/balance_deposit_email.html:94 #, python-format msgid "hello %(user_first_name)s," msgstr "Hello %(user_first_name)s," -#: payments/templates/balance_deposit_email.html:95 +#: engine/payments/templates/balance_deposit_email.html:95 #, python-format msgid "" "we have successfully credited your account with %(amount)s. your current\n" @@ -166,7 +170,7 @@ msgstr "" "We have successfully credited your account with %(amount)s. Your current\n" " balance is %(balance)s." -#: payments/templates/balance_deposit_email.html:98 +#: engine/payments/templates/balance_deposit_email.html:98 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" @@ -175,30 +179,30 @@ msgstr "" "If you have any questions, feel free to contact our support at\n" " %(contact_email)s." -#: payments/templates/balance_deposit_email.html:100 +#: engine/payments/templates/balance_deposit_email.html:100 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "Best regards,
the %(project_name)s team" -#: payments/templates/balance_deposit_email.html:106 +#: engine/payments/templates/balance_deposit_email.html:106 msgid "all rights reserved" msgstr "All rights reserved" -#: payments/utils/__init__.py:8 +#: engine/payments/utils/__init__.py:8 msgid "a provider to get rates from is required" msgstr "A provider to get rates from is required" -#: payments/utils/__init__.py:15 +#: engine/payments/utils/__init__.py:15 #, python-brace-format msgid "couldn't find provider {provider}" msgstr "Couldn't find provider {provider}" -#: payments/utils/emailing.py:27 +#: engine/payments/utils/emailing.py:27 #, python-brace-format msgid "{config.PROJECT_NAME} | balance deposit" msgstr "{config.PROJECT_NAME} | Balance Deposit" -#: payments/viewsets.py:13 +#: engine/payments/viewsets.py:14 msgid "" "ViewSet for handling read-only operations on the Transaction model. This " "class provides a read-only interface for interacting with transaction data. " diff --git a/engine/payments/locale/es_ES/LC_MESSAGES/django.mo b/engine/payments/locale/es_ES/LC_MESSAGES/django.mo new file mode 100644 index 00000000..fa86e3e9 Binary files /dev/null and b/engine/payments/locale/es_ES/LC_MESSAGES/django.mo differ diff --git a/payments/locale/es_ES/LC_MESSAGES/django.po b/engine/payments/locale/es_ES/LC_MESSAGES/django.po similarity index 66% rename from payments/locale/es_ES/LC_MESSAGES/django.po rename to engine/payments/locale/es_ES/LC_MESSAGES/django.po index e3083e32..137825dc 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,155 +13,159 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: payments/admin.py:17 payments/models.py:65 +#: engine/payments/admin.py:17 engine/payments/models.py:64 msgid "transaction" msgstr "Transacción" -#: payments/admin.py:18 payments/models.py:66 +#: engine/payments/admin.py:18 engine/payments/models.py:65 msgid "transactions" msgstr "Transacciones" -#: payments/admin.py:64 +#: engine/payments/admin.py:64 msgid "can be used" msgstr "Puede utilizarse" -#: payments/apps.py:8 +#: engine/payments/apps.py:8 msgid "payments" msgstr "Pagos" -#: payments/choices.py:3 +#: engine/payments/choices.py:3 msgid "deposit" msgstr "Depósito" -#: payments/choices.py:3 +#: engine/payments/choices.py:3 msgid "withdraw" msgstr "Retirar" -#: payments/docs/drf/views.py:10 +#: engine/payments/docs/drf/views.py:10 msgid "deposit to balance" msgstr "Depósito a cuenta" -#: payments/docs/drf/views.py:11 +#: engine/payments/docs/drf/views.py:11 msgid "deposit some money to balance" msgstr "Depositar dinero para equilibrar" -#: payments/docs/drf/viewsets.py:10 +#: engine/payments/docs/drf/viewsets.py:11 msgid "list all transactions (read-only)" msgstr "Listar todas las transacciones (sólo lectura)" -#: payments/docs/drf/viewsets.py:14 +#: engine/payments/docs/drf/viewsets.py:15 msgid "retrieve a single transaction (read-only)" msgstr "Recuperar una única transacción (sólo lectura)" -#: payments/models.py:38 +#: engine/payments/docs/drf/viewsets.py:20 +msgid "Transaction UUID" +msgstr "UUID de la transacción" + +#: engine/payments/models.py:37 msgid "order to process after paid" msgstr "Orden a tramitar una vez pagada" -#: payments/models.py:41 +#: engine/payments/models.py:40 msgid "processing details" msgstr "Detalles del proceso" -#: payments/models.py:61 +#: engine/payments/models.py:60 #, python-brace-format msgid "" -"transaction amount must fit into " -"{config.PAYMENT_GATEWAY_MINIMUM}-{config.PAYMENT_GATEWAY_MAXIMUM}" +"transaction amount must fit into {config.PAYMENT_GATEWAY_MINIMUM}-{config." +"PAYMENT_GATEWAY_MAXIMUM}" msgstr "" -"El importe de la transacción debe ajustarse a " -"{config.PAYMENT_GATEWAY_MINIMUM}-{config.PAYMENT_GATEWAY_MAXIMUM}" +"El importe de la transacción debe ajustarse a {config." +"PAYMENT_GATEWAY_MINIMUM}-{config.PAYMENT_GATEWAY_MAXIMUM}" -#: payments/models.py:84 +#: engine/payments/models.py:83 msgid "balance" msgstr "Saldo" -#: payments/models.py:85 +#: engine/payments/models.py:84 msgid "balances" msgstr "Escalas" -#: payments/models.py:95 +#: engine/payments/models.py:94 msgid "name" msgstr "nombre" -#: payments/models.py:100 +#: engine/payments/models.py:99 msgid "default currency" msgstr "moneda por defecto" -#: payments/models.py:107 +#: engine/payments/models.py:106 msgid "currencies" msgstr "divisas" -#: payments/models.py:109 +#: engine/payments/models.py:108 msgid "comma separated list of currencies supported by this gateway, " msgstr "lista separada por comas de las divisas admitidas por esta pasarela," -#: payments/models.py:115 +#: engine/payments/models.py:114 msgid "minimum transaction amount" msgstr "importe mínimo de transacción" -#: payments/models.py:118 +#: engine/payments/models.py:117 msgid "maximum transaction amount" msgstr "importe máximo de transacción" -#: payments/models.py:124 +#: engine/payments/models.py:123 msgid "daily limit" msgstr "límite diario" -#: payments/models.py:125 +#: engine/payments/models.py:124 msgid "daily sum limit of transactions' amounts. 0 means no limit" msgstr "" "límite de la suma diaria de los importes de las transacciones. 0 significa " "sin límite" -#: payments/models.py:131 +#: engine/payments/models.py:130 msgid "monthly limit" msgstr "límite mensual" -#: payments/models.py:132 +#: engine/payments/models.py:131 msgid "monthly sum limit of transactions' amounts. 0 means no limit" msgstr "" "límite de la suma mensual de los importes de las transacciones. 0 significa " "sin límite" -#: payments/models.py:134 +#: engine/payments/models.py:133 msgid "priority" msgstr "prioridad" -#: payments/models.py:135 +#: engine/payments/models.py:134 msgid "integration variables" msgstr "variables de integración" -#: payments/models.py:141 +#: engine/payments/models.py:140 msgid "payment gateway" msgstr "pasarela de pagos" -#: payments/models.py:142 +#: engine/payments/models.py:141 msgid "payment gateways" msgstr "pasarelas de pago" -#: payments/models.py:178 +#: engine/payments/models.py:177 msgid "gateway integration path is not set" msgstr "la ruta de integración de la pasarela no está configurada" -#: payments/models.py:183 +#: engine/payments/models.py:182 #, python-format msgid "invalid integration path: %(path)s" msgstr "ruta de integración no válida: %(path)s" -#: payments/templates/balance_deposit_email.html:6 -#: payments/templates/balance_deposit_email.html:93 +#: engine/payments/templates/balance_deposit_email.html:6 +#: engine/payments/templates/balance_deposit_email.html:93 msgid "balance deposit" msgstr "Depósito de saldo" -#: payments/templates/balance_deposit_email.html:88 +#: engine/payments/templates/balance_deposit_email.html:88 msgid "logo" msgstr "Logotipo" -#: payments/templates/balance_deposit_email.html:94 +#: engine/payments/templates/balance_deposit_email.html:94 #, python-format msgid "hello %(user_first_name)s," msgstr "Hola %(user_first_name)s," -#: payments/templates/balance_deposit_email.html:95 +#: engine/payments/templates/balance_deposit_email.html:95 #, python-format msgid "" "we have successfully credited your account with %(amount)s. your current\n" @@ -170,39 +174,40 @@ msgstr "" "Hemos ingresado correctamente %(amount)s en su cuenta. Su saldo\n" " actual es de %(balance)s." -#: payments/templates/balance_deposit_email.html:98 +#: engine/payments/templates/balance_deposit_email.html:98 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" " %(contact_email)s." msgstr "" -"Si tiene alguna pregunta, no dude en ponerse en contacto con nuestro servicio de asistencia en\n" +"Si tiene alguna pregunta, no dude en ponerse en contacto con nuestro " +"servicio de asistencia en\n" " %(contact_email)s." -#: payments/templates/balance_deposit_email.html:100 +#: engine/payments/templates/balance_deposit_email.html:100 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "Saludos cordiales,
el equipo %(project_name)s" -#: payments/templates/balance_deposit_email.html:106 +#: engine/payments/templates/balance_deposit_email.html:106 msgid "all rights reserved" msgstr "Todos los derechos reservados" -#: payments/utils/__init__.py:8 +#: engine/payments/utils/__init__.py:8 msgid "a provider to get rates from is required" msgstr "Se necesita un proveedor del que obtener tarifas" -#: payments/utils/__init__.py:15 +#: engine/payments/utils/__init__.py:15 #, python-brace-format msgid "couldn't find provider {provider}" msgstr "No se pudo encontrar el proveedor {provider}" -#: payments/utils/emailing.py:27 +#: engine/payments/utils/emailing.py:27 #, python-brace-format msgid "{config.PROJECT_NAME} | balance deposit" msgstr "{config.PROJECT_NAME} | Depósito de saldo" -#: payments/viewsets.py:13 +#: engine/payments/viewsets.py:14 msgid "" "ViewSet for handling read-only operations on the Transaction model. This " "class provides a read-only interface for interacting with transaction data. " @@ -211,8 +216,8 @@ msgid "" "permissions, can access the transactions." msgstr "" "ViewSet para manejar operaciones de sólo lectura en el modelo Transaction. " -"Esta clase proporciona una interfaz de sólo lectura para interactuar con los" -" datos de la transacción. Utiliza TransactionSerializer para serializar y " +"Esta clase proporciona una interfaz de sólo lectura para interactuar con los " +"datos de la transacción. Utiliza TransactionSerializer para serializar y " "deserializar los datos. La clase garantiza que sólo los usuarios " "autorizados, que cumplan determinados permisos, puedan acceder a las " "transacciones." diff --git a/payments/locale/fa_IR/LC_MESSAGES/django.mo b/engine/payments/locale/fa_IR/LC_MESSAGES/django.mo similarity index 100% rename from payments/locale/fa_IR/LC_MESSAGES/django.mo rename to engine/payments/locale/fa_IR/LC_MESSAGES/django.mo diff --git a/payments/locale/fa_IR/LC_MESSAGES/django.po b/engine/payments/locale/fa_IR/LC_MESSAGES/django.po similarity index 62% rename from payments/locale/fa_IR/LC_MESSAGES/django.po rename to engine/payments/locale/fa_IR/LC_MESSAGES/django.po index fab68752..421adc95 100644 --- a/payments/locale/fa_IR/LC_MESSAGES/django.po +++ b/engine/payments/locale/fa_IR/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,186 +16,190 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: payments/admin.py:17 payments/models.py:65 +#: engine/payments/admin.py:17 engine/payments/models.py:64 msgid "transaction" msgstr "" -#: payments/admin.py:18 payments/models.py:66 +#: engine/payments/admin.py:18 engine/payments/models.py:65 msgid "transactions" msgstr "" -#: payments/admin.py:64 +#: engine/payments/admin.py:64 msgid "can be used" msgstr "" -#: payments/apps.py:8 +#: engine/payments/apps.py:8 msgid "payments" msgstr "" -#: payments/choices.py:3 +#: engine/payments/choices.py:3 msgid "deposit" msgstr "" -#: payments/choices.py:3 +#: engine/payments/choices.py:3 msgid "withdraw" msgstr "" -#: payments/docs/drf/views.py:10 +#: engine/payments/docs/drf/views.py:10 msgid "deposit to balance" msgstr "" -#: payments/docs/drf/views.py:11 +#: engine/payments/docs/drf/views.py:11 msgid "deposit some money to balance" msgstr "" -#: payments/docs/drf/viewsets.py:10 +#: engine/payments/docs/drf/viewsets.py:11 msgid "list all transactions (read-only)" msgstr "" -#: payments/docs/drf/viewsets.py:14 +#: engine/payments/docs/drf/viewsets.py:15 msgid "retrieve a single transaction (read-only)" msgstr "" -#: payments/models.py:38 +#: engine/payments/docs/drf/viewsets.py:20 +msgid "Transaction UUID" +msgstr "" + +#: engine/payments/models.py:37 msgid "order to process after paid" msgstr "" -#: payments/models.py:41 +#: engine/payments/models.py:40 msgid "processing details" msgstr "" -#: payments/models.py:61 +#: engine/payments/models.py:60 #, python-brace-format msgid "" "transaction amount must fit into {config.PAYMENT_GATEWAY_MINIMUM}-{config." "PAYMENT_GATEWAY_MAXIMUM}" msgstr "" -#: payments/models.py:84 +#: engine/payments/models.py:83 msgid "balance" msgstr "" -#: payments/models.py:85 +#: engine/payments/models.py:84 msgid "balances" msgstr "" -#: payments/models.py:95 +#: engine/payments/models.py:94 msgid "name" msgstr "" -#: payments/models.py:100 +#: engine/payments/models.py:99 msgid "default currency" msgstr "" -#: payments/models.py:107 +#: engine/payments/models.py:106 msgid "currencies" msgstr "" -#: payments/models.py:109 +#: engine/payments/models.py:108 msgid "comma separated list of currencies supported by this gateway, " msgstr "" -#: payments/models.py:115 +#: engine/payments/models.py:114 msgid "minimum transaction amount" msgstr "" -#: payments/models.py:118 +#: engine/payments/models.py:117 msgid "maximum transaction amount" msgstr "" -#: payments/models.py:124 +#: engine/payments/models.py:123 msgid "daily limit" msgstr "" -#: payments/models.py:125 +#: engine/payments/models.py:124 msgid "daily sum limit of transactions' amounts. 0 means no limit" msgstr "" -#: payments/models.py:131 +#: engine/payments/models.py:130 msgid "monthly limit" msgstr "" -#: payments/models.py:132 +#: engine/payments/models.py:131 msgid "monthly sum limit of transactions' amounts. 0 means no limit" msgstr "" -#: payments/models.py:134 +#: engine/payments/models.py:133 msgid "priority" msgstr "" -#: payments/models.py:135 +#: engine/payments/models.py:134 msgid "integration variables" msgstr "" -#: payments/models.py:141 +#: engine/payments/models.py:140 msgid "payment gateway" msgstr "" -#: payments/models.py:142 +#: engine/payments/models.py:141 msgid "payment gateways" msgstr "" -#: payments/models.py:178 +#: engine/payments/models.py:177 msgid "gateway integration path is not set" msgstr "" -#: payments/models.py:183 +#: engine/payments/models.py:182 #, python-format msgid "invalid integration path: %(path)s" msgstr "" -#: payments/templates/balance_deposit_email.html:6 -#: payments/templates/balance_deposit_email.html:93 +#: engine/payments/templates/balance_deposit_email.html:6 +#: engine/payments/templates/balance_deposit_email.html:93 msgid "balance deposit" msgstr "" -#: payments/templates/balance_deposit_email.html:88 +#: engine/payments/templates/balance_deposit_email.html:88 msgid "logo" msgstr "" -#: payments/templates/balance_deposit_email.html:94 +#: engine/payments/templates/balance_deposit_email.html:94 #, python-format msgid "hello %(user_first_name)s," msgstr "" -#: payments/templates/balance_deposit_email.html:95 +#: engine/payments/templates/balance_deposit_email.html:95 #, python-format msgid "" "we have successfully credited your account with %(amount)s. your current\n" " balance is %(balance)s." msgstr "" -#: payments/templates/balance_deposit_email.html:98 +#: engine/payments/templates/balance_deposit_email.html:98 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" " %(contact_email)s." msgstr "" -#: payments/templates/balance_deposit_email.html:100 +#: engine/payments/templates/balance_deposit_email.html:100 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "" -#: payments/templates/balance_deposit_email.html:106 +#: engine/payments/templates/balance_deposit_email.html:106 msgid "all rights reserved" msgstr "" -#: payments/utils/__init__.py:8 +#: engine/payments/utils/__init__.py:8 msgid "a provider to get rates from is required" msgstr "" -#: payments/utils/__init__.py:15 +#: engine/payments/utils/__init__.py:15 #, python-brace-format msgid "couldn't find provider {provider}" msgstr "" -#: payments/utils/emailing.py:27 +#: engine/payments/utils/emailing.py:27 #, python-brace-format msgid "{config.PROJECT_NAME} | balance deposit" msgstr "" -#: payments/viewsets.py:13 +#: engine/payments/viewsets.py:14 msgid "" "ViewSet for handling read-only operations on the Transaction model. This " "class provides a read-only interface for interacting with transaction data. " diff --git a/engine/payments/locale/fr_FR/LC_MESSAGES/django.mo b/engine/payments/locale/fr_FR/LC_MESSAGES/django.mo new file mode 100644 index 00000000..f7745baa Binary files /dev/null and b/engine/payments/locale/fr_FR/LC_MESSAGES/django.mo differ diff --git a/payments/locale/fr_FR/LC_MESSAGES/django.po b/engine/payments/locale/fr_FR/LC_MESSAGES/django.po similarity index 66% rename from payments/locale/fr_FR/LC_MESSAGES/django.po rename to engine/payments/locale/fr_FR/LC_MESSAGES/django.po index 54f06e3d..85f37e0b 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,156 +13,159 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: payments/admin.py:17 payments/models.py:65 +#: engine/payments/admin.py:17 engine/payments/models.py:64 msgid "transaction" msgstr "Transaction" -#: payments/admin.py:18 payments/models.py:66 +#: engine/payments/admin.py:18 engine/payments/models.py:65 msgid "transactions" msgstr "Transactions" -#: payments/admin.py:64 +#: engine/payments/admin.py:64 msgid "can be used" msgstr "Peut être utilisé" -#: payments/apps.py:8 +#: engine/payments/apps.py:8 msgid "payments" msgstr "Paiements" -#: payments/choices.py:3 +#: engine/payments/choices.py:3 msgid "deposit" msgstr "Dépôt" -#: payments/choices.py:3 +#: engine/payments/choices.py:3 msgid "withdraw" msgstr "Se retirer" -#: payments/docs/drf/views.py:10 +#: engine/payments/docs/drf/views.py:10 msgid "deposit to balance" msgstr "Dépôt au solde" -#: payments/docs/drf/views.py:11 +#: engine/payments/docs/drf/views.py:11 msgid "deposit some money to balance" msgstr "Déposer de l'argent sur le compte" -#: payments/docs/drf/viewsets.py:10 +#: engine/payments/docs/drf/viewsets.py:11 msgid "list all transactions (read-only)" msgstr "Liste de toutes les transactions (en lecture seule)" -#: payments/docs/drf/viewsets.py:14 +#: engine/payments/docs/drf/viewsets.py:15 msgid "retrieve a single transaction (read-only)" msgstr "Récupérer une transaction unique (en lecture seule)" -#: payments/models.py:38 +#: engine/payments/docs/drf/viewsets.py:20 +msgid "Transaction UUID" +msgstr "UUID de la transaction" + +#: engine/payments/models.py:37 msgid "order to process after paid" msgstr "Commande à traiter après paiement" -#: payments/models.py:41 +#: engine/payments/models.py:40 msgid "processing details" msgstr "Détails du traitement" -#: payments/models.py:61 +#: engine/payments/models.py:60 #, python-brace-format msgid "" -"transaction amount must fit into " -"{config.PAYMENT_GATEWAY_MINIMUM}-{config.PAYMENT_GATEWAY_MAXIMUM}" +"transaction amount must fit into {config.PAYMENT_GATEWAY_MINIMUM}-{config." +"PAYMENT_GATEWAY_MAXIMUM}" msgstr "" -"Le montant de la transaction doit être compris entre " -"{config.PAYMENT_GATEWAY_MINIMUM}-{config.PAYMENT_GATEWAY_MAXIMUM}." +"Le montant de la transaction doit être compris entre {config." +"PAYMENT_GATEWAY_MINIMUM}-{config.PAYMENT_GATEWAY_MAXIMUM}." -#: payments/models.py:84 +#: engine/payments/models.py:83 msgid "balance" msgstr "Balance" -#: payments/models.py:85 +#: engine/payments/models.py:84 msgid "balances" msgstr "Balances" -#: payments/models.py:95 +#: engine/payments/models.py:94 msgid "name" msgstr "nom" -#: payments/models.py:100 +#: engine/payments/models.py:99 msgid "default currency" msgstr "monnaie par défaut" -#: payments/models.py:107 +#: engine/payments/models.py:106 msgid "currencies" msgstr "monnaies" -#: payments/models.py:109 +#: engine/payments/models.py:108 msgid "comma separated list of currencies supported by this gateway, " msgstr "" "liste séparée par des virgules des devises prises en charge par cette " "passerelle," -#: payments/models.py:115 +#: engine/payments/models.py:114 msgid "minimum transaction amount" msgstr "montant minimum de la transaction" -#: payments/models.py:118 +#: engine/payments/models.py:117 msgid "maximum transaction amount" msgstr "montant maximum de la transaction" -#: payments/models.py:124 +#: engine/payments/models.py:123 msgid "daily limit" msgstr "limite journalière" -#: payments/models.py:125 +#: engine/payments/models.py:124 msgid "daily sum limit of transactions' amounts. 0 means no limit" msgstr "" -"la limite quotidienne des montants des transactions. 0 signifie aucune " -"limite" +"la limite quotidienne des montants des transactions. 0 signifie aucune limite" -#: payments/models.py:131 +#: engine/payments/models.py:130 msgid "monthly limit" msgstr "limite mensuelle" -#: payments/models.py:132 +#: engine/payments/models.py:131 msgid "monthly sum limit of transactions' amounts. 0 means no limit" msgstr "" "limite mensuelle des montants des transactions. 0 signifie aucune limite" -#: payments/models.py:134 +#: engine/payments/models.py:133 msgid "priority" msgstr "priorité" -#: payments/models.py:135 +#: engine/payments/models.py:134 msgid "integration variables" msgstr "variables d'intégration" -#: payments/models.py:141 +#: engine/payments/models.py:140 msgid "payment gateway" msgstr "passerelle de paiement" -#: payments/models.py:142 +#: engine/payments/models.py:141 msgid "payment gateways" msgstr "passerelles de paiement" -#: payments/models.py:178 +#: engine/payments/models.py:177 msgid "gateway integration path is not set" msgstr "le chemin d'intégration de la passerelle n'est pas défini" -#: payments/models.py:183 +#: engine/payments/models.py:182 #, python-format msgid "invalid integration path: %(path)s" msgstr "chemin d'intégration non valide : %(path)s" -#: payments/templates/balance_deposit_email.html:6 -#: payments/templates/balance_deposit_email.html:93 +#: engine/payments/templates/balance_deposit_email.html:6 +#: engine/payments/templates/balance_deposit_email.html:93 msgid "balance deposit" msgstr "Balance Deposit" -#: payments/templates/balance_deposit_email.html:88 +#: engine/payments/templates/balance_deposit_email.html:88 msgid "logo" msgstr "Logo" -#: payments/templates/balance_deposit_email.html:94 +#: engine/payments/templates/balance_deposit_email.html:94 #, python-format msgid "hello %(user_first_name)s," msgstr "Bonjour %(user_first_name)s," -#: payments/templates/balance_deposit_email.html:95 +#: engine/payments/templates/balance_deposit_email.html:95 #, python-format msgid "" "we have successfully credited your account with %(amount)s. your current\n" @@ -171,40 +174,40 @@ msgstr "" "Nous avons crédité votre compte de %(amount)s. Votre solde\n" " est de %(balance)s." -#: payments/templates/balance_deposit_email.html:98 +#: engine/payments/templates/balance_deposit_email.html:98 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" " %(contact_email)s." msgstr "" -"Si vous avez des questions, n'hésitez pas à contacter notre service d'assistance à l'adresse suivante\n" +"Si vous avez des questions, n'hésitez pas à contacter notre service " +"d'assistance à l'adresse suivante\n" " %(contact_email)s." -#: payments/templates/balance_deposit_email.html:100 +#: engine/payments/templates/balance_deposit_email.html:100 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "Meilleures salutations,
l'équipe %(project_name)s" -#: payments/templates/balance_deposit_email.html:106 +#: engine/payments/templates/balance_deposit_email.html:106 msgid "all rights reserved" msgstr "Tous droits réservés" -#: payments/utils/__init__.py:8 +#: engine/payments/utils/__init__.py:8 msgid "a provider to get rates from is required" -msgstr "" -"Il est nécessaire de disposer d'un fournisseur pour obtenir des tarifs" +msgstr "Il est nécessaire de disposer d'un fournisseur pour obtenir des tarifs" -#: payments/utils/__init__.py:15 +#: engine/payments/utils/__init__.py:15 #, python-brace-format msgid "couldn't find provider {provider}" msgstr "Impossible de trouver le fournisseur {provider}" -#: payments/utils/emailing.py:27 +#: engine/payments/utils/emailing.py:27 #, python-brace-format msgid "{config.PROJECT_NAME} | balance deposit" msgstr "{config.PROJECT_NAME} | Dépôt de solde" -#: payments/viewsets.py:13 +#: engine/payments/viewsets.py:14 msgid "" "ViewSet for handling read-only operations on the Transaction model. This " "class provides a read-only interface for interacting with transaction data. " diff --git a/engine/payments/locale/he_IL/LC_MESSAGES/django.mo b/engine/payments/locale/he_IL/LC_MESSAGES/django.mo new file mode 100644 index 00000000..48505962 Binary files /dev/null and b/engine/payments/locale/he_IL/LC_MESSAGES/django.mo differ diff --git a/payments/locale/he_IL/LC_MESSAGES/django.po b/engine/payments/locale/he_IL/LC_MESSAGES/django.po similarity index 67% rename from payments/locale/he_IL/LC_MESSAGES/django.po rename to engine/payments/locale/he_IL/LC_MESSAGES/django.po index 78af2875..af2405db 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,151 +13,155 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: payments/admin.py:17 payments/models.py:65 +#: engine/payments/admin.py:17 engine/payments/models.py:64 msgid "transaction" msgstr "עסקה" -#: payments/admin.py:18 payments/models.py:66 +#: engine/payments/admin.py:18 engine/payments/models.py:65 msgid "transactions" msgstr "עסקאות" -#: payments/admin.py:64 +#: engine/payments/admin.py:64 msgid "can be used" msgstr "ניתן להשתמש" -#: payments/apps.py:8 +#: engine/payments/apps.py:8 msgid "payments" msgstr "תשלומים" -#: payments/choices.py:3 +#: engine/payments/choices.py:3 msgid "deposit" msgstr "הפקדה" -#: payments/choices.py:3 +#: engine/payments/choices.py:3 msgid "withdraw" msgstr "למשוך" -#: payments/docs/drf/views.py:10 +#: engine/payments/docs/drf/views.py:10 msgid "deposit to balance" msgstr "הפקדה לאיזון" -#: payments/docs/drf/views.py:11 +#: engine/payments/docs/drf/views.py:11 msgid "deposit some money to balance" msgstr "הפקד סכום כסף כדי לאזן את החשבון" -#: payments/docs/drf/viewsets.py:10 +#: engine/payments/docs/drf/viewsets.py:11 msgid "list all transactions (read-only)" msgstr "הצג את כל העסקאות (לקריאה בלבד)" -#: payments/docs/drf/viewsets.py:14 +#: engine/payments/docs/drf/viewsets.py:15 msgid "retrieve a single transaction (read-only)" msgstr "איתור עסקה בודדת (לקריאה בלבד)" -#: payments/models.py:38 +#: engine/payments/docs/drf/viewsets.py:20 +msgid "Transaction UUID" +msgstr "UUID של העסקה" + +#: engine/payments/models.py:37 msgid "order to process after paid" msgstr "הזמנה לעיבוד לאחר תשלום" -#: payments/models.py:41 +#: engine/payments/models.py:40 msgid "processing details" msgstr "פרטי העיבוד" -#: payments/models.py:61 +#: engine/payments/models.py:60 #, python-brace-format msgid "" -"transaction amount must fit into " -"{config.PAYMENT_GATEWAY_MINIMUM}-{config.PAYMENT_GATEWAY_MAXIMUM}" +"transaction amount must fit into {config.PAYMENT_GATEWAY_MINIMUM}-{config." +"PAYMENT_GATEWAY_MAXIMUM}" msgstr "" -"סכום העסקה חייב להתאים " -"ל-{config.PAYMENT_GATEWAY_MINIMUM}-{config.PAYMENT_GATEWAY_MAXIMUM}" +"סכום העסקה חייב להתאים ל-{config.PAYMENT_GATEWAY_MINIMUM}-{config." +"PAYMENT_GATEWAY_MAXIMUM}" -#: payments/models.py:84 +#: engine/payments/models.py:83 msgid "balance" msgstr "מאזניים" -#: payments/models.py:85 +#: engine/payments/models.py:84 msgid "balances" msgstr "מאזניים" -#: payments/models.py:95 +#: engine/payments/models.py:94 msgid "name" msgstr "שם" -#: payments/models.py:100 +#: engine/payments/models.py:99 msgid "default currency" msgstr "מטבע ברירת מחדל" -#: payments/models.py:107 +#: engine/payments/models.py:106 msgid "currencies" msgstr "מטבעות" -#: payments/models.py:109 +#: engine/payments/models.py:108 msgid "comma separated list of currencies supported by this gateway, " msgstr "רשימה מופרדת בפסיקים של המטבעות הנתמכים על ידי שער זה," -#: payments/models.py:115 +#: engine/payments/models.py:114 msgid "minimum transaction amount" msgstr "סכום העסקה המינימלי" -#: payments/models.py:118 +#: engine/payments/models.py:117 msgid "maximum transaction amount" msgstr "סכום העסקה המקסימלי" -#: payments/models.py:124 +#: engine/payments/models.py:123 msgid "daily limit" msgstr "מגבלה יומית" -#: payments/models.py:125 +#: engine/payments/models.py:124 msgid "daily sum limit of transactions' amounts. 0 means no limit" msgstr "הגבלה יומית על סכום העסקאות. 0 פירושו ללא הגבלה." -#: payments/models.py:131 +#: engine/payments/models.py:130 msgid "monthly limit" msgstr "מגבלה חודשית" -#: payments/models.py:132 +#: engine/payments/models.py:131 msgid "monthly sum limit of transactions' amounts. 0 means no limit" msgstr "הגבלת סכום חודשי של סכומי העסקאות. 0 פירושו ללא הגבלת סכום." -#: payments/models.py:134 +#: engine/payments/models.py:133 msgid "priority" msgstr "עדיפות" -#: payments/models.py:135 +#: engine/payments/models.py:134 msgid "integration variables" msgstr "משתני אינטגרציה" -#: payments/models.py:141 +#: engine/payments/models.py:140 msgid "payment gateway" msgstr "שער תשלום" -#: payments/models.py:142 +#: engine/payments/models.py:141 msgid "payment gateways" msgstr "שערי תשלום" -#: payments/models.py:178 +#: engine/payments/models.py:177 msgid "gateway integration path is not set" msgstr "נתיב שילוב השער אינו מוגדר" -#: payments/models.py:183 +#: engine/payments/models.py:182 #, python-format msgid "invalid integration path: %(path)s" msgstr "נתיב אינטגרציה לא חוקי: %(path)s" -#: payments/templates/balance_deposit_email.html:6 -#: payments/templates/balance_deposit_email.html:93 +#: engine/payments/templates/balance_deposit_email.html:6 +#: engine/payments/templates/balance_deposit_email.html:93 msgid "balance deposit" msgstr "פיקדונות מאזניים" -#: payments/templates/balance_deposit_email.html:88 +#: engine/payments/templates/balance_deposit_email.html:88 msgid "logo" msgstr "לוגו" -#: payments/templates/balance_deposit_email.html:94 +#: engine/payments/templates/balance_deposit_email.html:94 #, python-format msgid "hello %(user_first_name)s," msgstr "שלום %(user_first_name)s," -#: payments/templates/balance_deposit_email.html:95 +#: engine/payments/templates/balance_deposit_email.html:95 #, python-format msgid "" "we have successfully credited your account with %(amount)s. your current\n" @@ -165,37 +169,37 @@ msgid "" msgstr "" "הזכרנו בהצלחה את חשבונך עם %(amount)s. היתרה הנוכחית שלך היא %(balance)s." -#: payments/templates/balance_deposit_email.html:98 +#: engine/payments/templates/balance_deposit_email.html:98 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" " %(contact_email)s." msgstr "אם יש לך שאלות, אל תהסס לפנות לתמיכה שלנו ב-%(contact_email)s." -#: payments/templates/balance_deposit_email.html:100 +#: engine/payments/templates/balance_deposit_email.html:100 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "בברכה,
צוות %(project_name)s" -#: payments/templates/balance_deposit_email.html:106 +#: engine/payments/templates/balance_deposit_email.html:106 msgid "all rights reserved" msgstr "כל הזכויות שמורות" -#: payments/utils/__init__.py:8 +#: engine/payments/utils/__init__.py:8 msgid "a provider to get rates from is required" msgstr "נדרש ספק ממנו ניתן לקבל תעריפים" -#: payments/utils/__init__.py:15 +#: engine/payments/utils/__init__.py:15 #, python-brace-format msgid "couldn't find provider {provider}" msgstr "לא ניתן למצוא את הספק {provider}" -#: payments/utils/emailing.py:27 +#: engine/payments/utils/emailing.py:27 #, python-brace-format msgid "{config.PROJECT_NAME} | balance deposit" msgstr "{config.PROJECT_NAME} | הפקדת יתרה" -#: payments/viewsets.py:13 +#: engine/payments/viewsets.py:14 msgid "" "ViewSet for handling read-only operations on the Transaction model. This " "class provides a read-only interface for interacting with transaction data. " @@ -205,5 +209,5 @@ msgid "" msgstr "" "ViewSet לטיפול בפעולות לקריאה בלבד במודל העסקה. מחלקה זו מספקת ממשק לקריאה " "בלבד לצורך אינטראקציה עם נתוני העסקה. היא משתמשת ב-TransactionSerializer " -"לצורך סידור סדרתי ופירוק סדרתי של הנתונים. המחלקה מבטיחה שרק משתמשים מורשים," -" העומדים בהרשאות ספציפיות, יוכלו לגשת לעסקאות." +"לצורך סידור סדרתי ופירוק סדרתי של הנתונים. המחלקה מבטיחה שרק משתמשים מורשים, " +"העומדים בהרשאות ספציפיות, יוכלו לגשת לעסקאות." diff --git a/engine/payments/locale/hi_IN/LC_MESSAGES/django.mo b/engine/payments/locale/hi_IN/LC_MESSAGES/django.mo new file mode 100644 index 00000000..7640ce00 Binary files /dev/null and b/engine/payments/locale/hi_IN/LC_MESSAGES/django.mo differ diff --git a/payments/locale/kk_KZ/LC_MESSAGES/django.po b/engine/payments/locale/hi_IN/LC_MESSAGES/django.po similarity index 62% rename from payments/locale/kk_KZ/LC_MESSAGES/django.po rename to engine/payments/locale/hi_IN/LC_MESSAGES/django.po index 8454edfe..e7feb00d 100644 --- a/payments/locale/kk_KZ/LC_MESSAGES/django.po +++ b/engine/payments/locale/hi_IN/LC_MESSAGES/django.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: EVIBES 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -16,186 +16,190 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: payments/admin.py:17 payments/models.py:65 +#: engine/payments/admin.py:17 engine/payments/models.py:64 msgid "transaction" msgstr "" -#: payments/admin.py:18 payments/models.py:66 +#: engine/payments/admin.py:18 engine/payments/models.py:65 msgid "transactions" msgstr "" -#: payments/admin.py:64 +#: engine/payments/admin.py:64 msgid "can be used" msgstr "" -#: payments/apps.py:8 +#: engine/payments/apps.py:8 msgid "payments" msgstr "" -#: payments/choices.py:3 +#: engine/payments/choices.py:3 msgid "deposit" msgstr "" -#: payments/choices.py:3 +#: engine/payments/choices.py:3 msgid "withdraw" msgstr "" -#: payments/docs/drf/views.py:10 +#: engine/payments/docs/drf/views.py:10 msgid "deposit to balance" msgstr "" -#: payments/docs/drf/views.py:11 +#: engine/payments/docs/drf/views.py:11 msgid "deposit some money to balance" msgstr "" -#: payments/docs/drf/viewsets.py:10 +#: engine/payments/docs/drf/viewsets.py:11 msgid "list all transactions (read-only)" msgstr "" -#: payments/docs/drf/viewsets.py:14 +#: engine/payments/docs/drf/viewsets.py:15 msgid "retrieve a single transaction (read-only)" msgstr "" -#: payments/models.py:38 +#: engine/payments/docs/drf/viewsets.py:20 +msgid "Transaction UUID" +msgstr "" + +#: engine/payments/models.py:37 msgid "order to process after paid" msgstr "" -#: payments/models.py:41 +#: engine/payments/models.py:40 msgid "processing details" msgstr "" -#: payments/models.py:61 +#: engine/payments/models.py:60 #, python-brace-format msgid "" "transaction amount must fit into {config.PAYMENT_GATEWAY_MINIMUM}-{config." "PAYMENT_GATEWAY_MAXIMUM}" msgstr "" -#: payments/models.py:84 +#: engine/payments/models.py:83 msgid "balance" msgstr "" -#: payments/models.py:85 +#: engine/payments/models.py:84 msgid "balances" msgstr "" -#: payments/models.py:95 +#: engine/payments/models.py:94 msgid "name" msgstr "" -#: payments/models.py:100 +#: engine/payments/models.py:99 msgid "default currency" msgstr "" -#: payments/models.py:107 +#: engine/payments/models.py:106 msgid "currencies" msgstr "" -#: payments/models.py:109 +#: engine/payments/models.py:108 msgid "comma separated list of currencies supported by this gateway, " msgstr "" -#: payments/models.py:115 +#: engine/payments/models.py:114 msgid "minimum transaction amount" msgstr "" -#: payments/models.py:118 +#: engine/payments/models.py:117 msgid "maximum transaction amount" msgstr "" -#: payments/models.py:124 +#: engine/payments/models.py:123 msgid "daily limit" msgstr "" -#: payments/models.py:125 +#: engine/payments/models.py:124 msgid "daily sum limit of transactions' amounts. 0 means no limit" msgstr "" -#: payments/models.py:131 +#: engine/payments/models.py:130 msgid "monthly limit" msgstr "" -#: payments/models.py:132 +#: engine/payments/models.py:131 msgid "monthly sum limit of transactions' amounts. 0 means no limit" msgstr "" -#: payments/models.py:134 +#: engine/payments/models.py:133 msgid "priority" msgstr "" -#: payments/models.py:135 +#: engine/payments/models.py:134 msgid "integration variables" msgstr "" -#: payments/models.py:141 +#: engine/payments/models.py:140 msgid "payment gateway" msgstr "" -#: payments/models.py:142 +#: engine/payments/models.py:141 msgid "payment gateways" msgstr "" -#: payments/models.py:178 +#: engine/payments/models.py:177 msgid "gateway integration path is not set" msgstr "" -#: payments/models.py:183 +#: engine/payments/models.py:182 #, python-format msgid "invalid integration path: %(path)s" msgstr "" -#: payments/templates/balance_deposit_email.html:6 -#: payments/templates/balance_deposit_email.html:93 +#: engine/payments/templates/balance_deposit_email.html:6 +#: engine/payments/templates/balance_deposit_email.html:93 msgid "balance deposit" msgstr "" -#: payments/templates/balance_deposit_email.html:88 +#: engine/payments/templates/balance_deposit_email.html:88 msgid "logo" msgstr "" -#: payments/templates/balance_deposit_email.html:94 +#: engine/payments/templates/balance_deposit_email.html:94 #, python-format msgid "hello %(user_first_name)s," msgstr "" -#: payments/templates/balance_deposit_email.html:95 +#: engine/payments/templates/balance_deposit_email.html:95 #, python-format msgid "" "we have successfully credited your account with %(amount)s. your current\n" " balance is %(balance)s." msgstr "" -#: payments/templates/balance_deposit_email.html:98 +#: engine/payments/templates/balance_deposit_email.html:98 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" " %(contact_email)s." msgstr "" -#: payments/templates/balance_deposit_email.html:100 +#: engine/payments/templates/balance_deposit_email.html:100 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "" -#: payments/templates/balance_deposit_email.html:106 +#: engine/payments/templates/balance_deposit_email.html:106 msgid "all rights reserved" msgstr "" -#: payments/utils/__init__.py:8 +#: engine/payments/utils/__init__.py:8 msgid "a provider to get rates from is required" msgstr "" -#: payments/utils/__init__.py:15 +#: engine/payments/utils/__init__.py:15 #, python-brace-format msgid "couldn't find provider {provider}" msgstr "" -#: payments/utils/emailing.py:27 +#: engine/payments/utils/emailing.py:27 #, python-brace-format msgid "{config.PROJECT_NAME} | balance deposit" msgstr "" -#: payments/viewsets.py:13 +#: engine/payments/viewsets.py:14 msgid "" "ViewSet for handling read-only operations on the Transaction model. This " "class provides a read-only interface for interacting with transaction data. " diff --git a/payments/locale/hr_HR/LC_MESSAGES/django.mo b/engine/payments/locale/hr_HR/LC_MESSAGES/django.mo similarity index 100% rename from payments/locale/hr_HR/LC_MESSAGES/django.mo rename to engine/payments/locale/hr_HR/LC_MESSAGES/django.mo diff --git a/payments/locale/hr_HR/LC_MESSAGES/django.po b/engine/payments/locale/hr_HR/LC_MESSAGES/django.po similarity index 62% rename from payments/locale/hr_HR/LC_MESSAGES/django.po rename to engine/payments/locale/hr_HR/LC_MESSAGES/django.po index fab68752..421adc95 100644 --- a/payments/locale/hr_HR/LC_MESSAGES/django.po +++ b/engine/payments/locale/hr_HR/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,186 +16,190 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: payments/admin.py:17 payments/models.py:65 +#: engine/payments/admin.py:17 engine/payments/models.py:64 msgid "transaction" msgstr "" -#: payments/admin.py:18 payments/models.py:66 +#: engine/payments/admin.py:18 engine/payments/models.py:65 msgid "transactions" msgstr "" -#: payments/admin.py:64 +#: engine/payments/admin.py:64 msgid "can be used" msgstr "" -#: payments/apps.py:8 +#: engine/payments/apps.py:8 msgid "payments" msgstr "" -#: payments/choices.py:3 +#: engine/payments/choices.py:3 msgid "deposit" msgstr "" -#: payments/choices.py:3 +#: engine/payments/choices.py:3 msgid "withdraw" msgstr "" -#: payments/docs/drf/views.py:10 +#: engine/payments/docs/drf/views.py:10 msgid "deposit to balance" msgstr "" -#: payments/docs/drf/views.py:11 +#: engine/payments/docs/drf/views.py:11 msgid "deposit some money to balance" msgstr "" -#: payments/docs/drf/viewsets.py:10 +#: engine/payments/docs/drf/viewsets.py:11 msgid "list all transactions (read-only)" msgstr "" -#: payments/docs/drf/viewsets.py:14 +#: engine/payments/docs/drf/viewsets.py:15 msgid "retrieve a single transaction (read-only)" msgstr "" -#: payments/models.py:38 +#: engine/payments/docs/drf/viewsets.py:20 +msgid "Transaction UUID" +msgstr "" + +#: engine/payments/models.py:37 msgid "order to process after paid" msgstr "" -#: payments/models.py:41 +#: engine/payments/models.py:40 msgid "processing details" msgstr "" -#: payments/models.py:61 +#: engine/payments/models.py:60 #, python-brace-format msgid "" "transaction amount must fit into {config.PAYMENT_GATEWAY_MINIMUM}-{config." "PAYMENT_GATEWAY_MAXIMUM}" msgstr "" -#: payments/models.py:84 +#: engine/payments/models.py:83 msgid "balance" msgstr "" -#: payments/models.py:85 +#: engine/payments/models.py:84 msgid "balances" msgstr "" -#: payments/models.py:95 +#: engine/payments/models.py:94 msgid "name" msgstr "" -#: payments/models.py:100 +#: engine/payments/models.py:99 msgid "default currency" msgstr "" -#: payments/models.py:107 +#: engine/payments/models.py:106 msgid "currencies" msgstr "" -#: payments/models.py:109 +#: engine/payments/models.py:108 msgid "comma separated list of currencies supported by this gateway, " msgstr "" -#: payments/models.py:115 +#: engine/payments/models.py:114 msgid "minimum transaction amount" msgstr "" -#: payments/models.py:118 +#: engine/payments/models.py:117 msgid "maximum transaction amount" msgstr "" -#: payments/models.py:124 +#: engine/payments/models.py:123 msgid "daily limit" msgstr "" -#: payments/models.py:125 +#: engine/payments/models.py:124 msgid "daily sum limit of transactions' amounts. 0 means no limit" msgstr "" -#: payments/models.py:131 +#: engine/payments/models.py:130 msgid "monthly limit" msgstr "" -#: payments/models.py:132 +#: engine/payments/models.py:131 msgid "monthly sum limit of transactions' amounts. 0 means no limit" msgstr "" -#: payments/models.py:134 +#: engine/payments/models.py:133 msgid "priority" msgstr "" -#: payments/models.py:135 +#: engine/payments/models.py:134 msgid "integration variables" msgstr "" -#: payments/models.py:141 +#: engine/payments/models.py:140 msgid "payment gateway" msgstr "" -#: payments/models.py:142 +#: engine/payments/models.py:141 msgid "payment gateways" msgstr "" -#: payments/models.py:178 +#: engine/payments/models.py:177 msgid "gateway integration path is not set" msgstr "" -#: payments/models.py:183 +#: engine/payments/models.py:182 #, python-format msgid "invalid integration path: %(path)s" msgstr "" -#: payments/templates/balance_deposit_email.html:6 -#: payments/templates/balance_deposit_email.html:93 +#: engine/payments/templates/balance_deposit_email.html:6 +#: engine/payments/templates/balance_deposit_email.html:93 msgid "balance deposit" msgstr "" -#: payments/templates/balance_deposit_email.html:88 +#: engine/payments/templates/balance_deposit_email.html:88 msgid "logo" msgstr "" -#: payments/templates/balance_deposit_email.html:94 +#: engine/payments/templates/balance_deposit_email.html:94 #, python-format msgid "hello %(user_first_name)s," msgstr "" -#: payments/templates/balance_deposit_email.html:95 +#: engine/payments/templates/balance_deposit_email.html:95 #, python-format msgid "" "we have successfully credited your account with %(amount)s. your current\n" " balance is %(balance)s." msgstr "" -#: payments/templates/balance_deposit_email.html:98 +#: engine/payments/templates/balance_deposit_email.html:98 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" " %(contact_email)s." msgstr "" -#: payments/templates/balance_deposit_email.html:100 +#: engine/payments/templates/balance_deposit_email.html:100 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "" -#: payments/templates/balance_deposit_email.html:106 +#: engine/payments/templates/balance_deposit_email.html:106 msgid "all rights reserved" msgstr "" -#: payments/utils/__init__.py:8 +#: engine/payments/utils/__init__.py:8 msgid "a provider to get rates from is required" msgstr "" -#: payments/utils/__init__.py:15 +#: engine/payments/utils/__init__.py:15 #, python-brace-format msgid "couldn't find provider {provider}" msgstr "" -#: payments/utils/emailing.py:27 +#: engine/payments/utils/emailing.py:27 #, python-brace-format msgid "{config.PROJECT_NAME} | balance deposit" msgstr "" -#: payments/viewsets.py:13 +#: engine/payments/viewsets.py:14 msgid "" "ViewSet for handling read-only operations on the Transaction model. This " "class provides a read-only interface for interacting with transaction data. " diff --git a/engine/payments/locale/id_ID/LC_MESSAGES/django.mo b/engine/payments/locale/id_ID/LC_MESSAGES/django.mo new file mode 100644 index 00000000..c4334591 Binary files /dev/null and b/engine/payments/locale/id_ID/LC_MESSAGES/django.mo differ diff --git a/payments/locale/id_ID/LC_MESSAGES/django.po b/engine/payments/locale/id_ID/LC_MESSAGES/django.po similarity index 67% rename from payments/locale/id_ID/LC_MESSAGES/django.po rename to engine/payments/locale/id_ID/LC_MESSAGES/django.po index 63014a98..430d34d1 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,193 +13,199 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: payments/admin.py:17 payments/models.py:65 +#: engine/payments/admin.py:17 engine/payments/models.py:64 msgid "transaction" msgstr "Transaksi" -#: payments/admin.py:18 payments/models.py:66 +#: engine/payments/admin.py:18 engine/payments/models.py:65 msgid "transactions" msgstr "Transaksi" -#: payments/admin.py:64 +#: engine/payments/admin.py:64 msgid "can be used" msgstr "Dapat digunakan" -#: payments/apps.py:8 +#: engine/payments/apps.py:8 msgid "payments" msgstr "Pembayaran" -#: payments/choices.py:3 +#: engine/payments/choices.py:3 msgid "deposit" msgstr "Deposit" -#: payments/choices.py:3 +#: engine/payments/choices.py:3 msgid "withdraw" msgstr "Menarik diri" -#: payments/docs/drf/views.py:10 +#: engine/payments/docs/drf/views.py:10 msgid "deposit to balance" msgstr "Setoran ke saldo" -#: payments/docs/drf/views.py:11 +#: engine/payments/docs/drf/views.py:11 msgid "deposit some money to balance" msgstr "Menyetor sejumlah uang untuk menyeimbangkan" -#: payments/docs/drf/viewsets.py:10 +#: engine/payments/docs/drf/viewsets.py:11 msgid "list all transactions (read-only)" msgstr "Daftar semua transaksi (hanya-baca)" -#: payments/docs/drf/viewsets.py:14 +#: engine/payments/docs/drf/viewsets.py:15 msgid "retrieve a single transaction (read-only)" msgstr "Mengambil satu transaksi (hanya-baca)" -#: payments/models.py:38 +#: engine/payments/docs/drf/viewsets.py:20 +msgid "Transaction UUID" +msgstr "UUID Transaksi" + +#: engine/payments/models.py:37 msgid "order to process after paid" msgstr "Pesanan akan diproses setelah dibayar" -#: payments/models.py:41 +#: engine/payments/models.py:40 msgid "processing details" msgstr "Detail pemrosesan" -#: payments/models.py:61 +#: engine/payments/models.py:60 #, python-brace-format msgid "" -"transaction amount must fit into " -"{config.PAYMENT_GATEWAY_MINIMUM}-{config.PAYMENT_GATEWAY_MAXIMUM}" +"transaction amount must fit into {config.PAYMENT_GATEWAY_MINIMUM}-{config." +"PAYMENT_GATEWAY_MAXIMUM}" msgstr "" -"Jumlah transaksi harus sesuai dengan " -"{config.PAYMENT_GATEWAY_MINIMUM}-{config.PAYMENT_GATEWAY_MAXIMUM}" +"Jumlah transaksi harus sesuai dengan {config.PAYMENT_GATEWAY_MINIMUM}-" +"{config.PAYMENT_GATEWAY_MAXIMUM}" -#: payments/models.py:84 +#: engine/payments/models.py:83 msgid "balance" msgstr "Keseimbangan" -#: payments/models.py:85 +#: engine/payments/models.py:84 msgid "balances" msgstr "Timbangan" -#: payments/models.py:95 +#: engine/payments/models.py:94 msgid "name" msgstr "nama" -#: payments/models.py:100 +#: engine/payments/models.py:99 msgid "default currency" msgstr "mata uang default" -#: payments/models.py:107 +#: engine/payments/models.py:106 msgid "currencies" msgstr "mata uang" -#: payments/models.py:109 +#: engine/payments/models.py:108 msgid "comma separated list of currencies supported by this gateway, " msgstr "" "daftar mata uang yang didukung oleh gateway ini yang dipisahkan dengan koma," -#: payments/models.py:115 +#: engine/payments/models.py:114 msgid "minimum transaction amount" msgstr "jumlah transaksi minimum" -#: payments/models.py:118 +#: engine/payments/models.py:117 msgid "maximum transaction amount" msgstr "jumlah transaksi maksimum" -#: payments/models.py:124 +#: engine/payments/models.py:123 msgid "daily limit" msgstr "batas harian" -#: payments/models.py:125 +#: engine/payments/models.py:124 msgid "daily sum limit of transactions' amounts. 0 means no limit" msgstr "batas jumlah transaksi harian. 0 berarti tidak ada batas" -#: payments/models.py:131 +#: engine/payments/models.py:130 msgid "monthly limit" msgstr "batas bulanan" -#: payments/models.py:132 +#: engine/payments/models.py:131 msgid "monthly sum limit of transactions' amounts. 0 means no limit" msgstr "batas jumlah transaksi bulanan. 0 berarti tidak ada limit" -#: payments/models.py:134 +#: engine/payments/models.py:133 msgid "priority" msgstr "prioritas" -#: payments/models.py:135 +#: engine/payments/models.py:134 msgid "integration variables" msgstr "variabel integrasi" -#: payments/models.py:141 +#: engine/payments/models.py:140 msgid "payment gateway" msgstr "gerbang pembayaran" -#: payments/models.py:142 +#: engine/payments/models.py:141 msgid "payment gateways" msgstr "gateway pembayaran" -#: payments/models.py:178 +#: engine/payments/models.py:177 msgid "gateway integration path is not set" msgstr "jalur integrasi gateway tidak ditetapkan" -#: payments/models.py:183 +#: engine/payments/models.py:182 #, python-format msgid "invalid integration path: %(path)s" msgstr "jalur integrasi yang tidak valid: %(path)s" -#: payments/templates/balance_deposit_email.html:6 -#: payments/templates/balance_deposit_email.html:93 +#: engine/payments/templates/balance_deposit_email.html:6 +#: engine/payments/templates/balance_deposit_email.html:93 msgid "balance deposit" msgstr "Setoran Saldo" -#: payments/templates/balance_deposit_email.html:88 +#: engine/payments/templates/balance_deposit_email.html:88 msgid "logo" msgstr "Logo" -#: payments/templates/balance_deposit_email.html:94 +#: engine/payments/templates/balance_deposit_email.html:94 #, python-format msgid "hello %(user_first_name)s," msgstr "Halo %(user_first_name)s," -#: payments/templates/balance_deposit_email.html:95 +#: engine/payments/templates/balance_deposit_email.html:95 #, python-format msgid "" "we have successfully credited your account with %(amount)s. your current\n" " balance is %(balance)s." msgstr "" -"Kami telah berhasil mengkreditkan akun Anda dengan %(amount)s. Saldo Anda saat ini\n" +"Kami telah berhasil mengkreditkan akun Anda dengan %(amount)s. Saldo Anda " +"saat ini\n" " saldo Anda saat ini adalah %(balance)s." -#: payments/templates/balance_deposit_email.html:98 +#: engine/payments/templates/balance_deposit_email.html:98 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" " %(contact_email)s." msgstr "" -"Jika Anda memiliki pertanyaan, jangan ragu untuk menghubungi tim dukungan kami di\n" +"Jika Anda memiliki pertanyaan, jangan ragu untuk menghubungi tim dukungan " +"kami di\n" " %(contact_email)s." -#: payments/templates/balance_deposit_email.html:100 +#: engine/payments/templates/balance_deposit_email.html:100 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "Salam hormat, tim %(project_name)s" -#: payments/templates/balance_deposit_email.html:106 +#: engine/payments/templates/balance_deposit_email.html:106 msgid "all rights reserved" msgstr "Semua hak cipta dilindungi undang-undang" -#: payments/utils/__init__.py:8 +#: engine/payments/utils/__init__.py:8 msgid "a provider to get rates from is required" msgstr "Diperlukan penyedia layanan untuk mendapatkan tarif" -#: payments/utils/__init__.py:15 +#: engine/payments/utils/__init__.py:15 #, python-brace-format msgid "couldn't find provider {provider}" msgstr "Tidak dapat menemukan penyedia {provider}" -#: payments/utils/emailing.py:27 +#: engine/payments/utils/emailing.py:27 #, python-brace-format msgid "{config.PROJECT_NAME} | balance deposit" msgstr "{config.PROJECT_NAME} | Setoran Saldo" -#: payments/viewsets.py:13 +#: engine/payments/viewsets.py:14 msgid "" "ViewSet for handling read-only operations on the Transaction model. This " "class provides a read-only interface for interacting with transaction data. " diff --git a/engine/payments/locale/it_IT/LC_MESSAGES/django.mo b/engine/payments/locale/it_IT/LC_MESSAGES/django.mo new file mode 100644 index 00000000..696a02bc Binary files /dev/null and b/engine/payments/locale/it_IT/LC_MESSAGES/django.mo differ diff --git a/payments/locale/it_IT/LC_MESSAGES/django.po b/engine/payments/locale/it_IT/LC_MESSAGES/django.po similarity index 67% rename from payments/locale/it_IT/LC_MESSAGES/django.po rename to engine/payments/locale/it_IT/LC_MESSAGES/django.po index 118160d5..ee6c0516 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,155 +13,159 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: payments/admin.py:17 payments/models.py:65 +#: engine/payments/admin.py:17 engine/payments/models.py:64 msgid "transaction" msgstr "Transazione" -#: payments/admin.py:18 payments/models.py:66 +#: engine/payments/admin.py:18 engine/payments/models.py:65 msgid "transactions" msgstr "Transazioni" -#: payments/admin.py:64 +#: engine/payments/admin.py:64 msgid "can be used" msgstr "Può essere utilizzato" -#: payments/apps.py:8 +#: engine/payments/apps.py:8 msgid "payments" msgstr "Pagamenti" -#: payments/choices.py:3 +#: engine/payments/choices.py:3 msgid "deposit" msgstr "Deposito" -#: payments/choices.py:3 +#: engine/payments/choices.py:3 msgid "withdraw" msgstr "Ritiro" -#: payments/docs/drf/views.py:10 +#: engine/payments/docs/drf/views.py:10 msgid "deposit to balance" msgstr "Deposito a saldo" -#: payments/docs/drf/views.py:11 +#: engine/payments/docs/drf/views.py:11 msgid "deposit some money to balance" msgstr "Depositare del denaro per bilanciare" -#: payments/docs/drf/viewsets.py:10 +#: engine/payments/docs/drf/viewsets.py:11 msgid "list all transactions (read-only)" msgstr "Elenco di tutte le transazioni (solo lettura)" -#: payments/docs/drf/viewsets.py:14 +#: engine/payments/docs/drf/viewsets.py:15 msgid "retrieve a single transaction (read-only)" msgstr "Recuperare una singola transazione (solo lettura)" -#: payments/models.py:38 +#: engine/payments/docs/drf/viewsets.py:20 +msgid "Transaction UUID" +msgstr "UUID della transazione" + +#: engine/payments/models.py:37 msgid "order to process after paid" msgstr "Ordine da elaborare dopo il pagamento" -#: payments/models.py:41 +#: engine/payments/models.py:40 msgid "processing details" msgstr "Dettagli di elaborazione" -#: payments/models.py:61 +#: engine/payments/models.py:60 #, python-brace-format msgid "" -"transaction amount must fit into " -"{config.PAYMENT_GATEWAY_MINIMUM}-{config.PAYMENT_GATEWAY_MAXIMUM}" +"transaction amount must fit into {config.PAYMENT_GATEWAY_MINIMUM}-{config." +"PAYMENT_GATEWAY_MAXIMUM}" msgstr "" -"L'importo della transazione deve rientrare in " -"{config.PAYMENT_GATEWAY_MINIMUM}-{config.PAYMENT_GATEWAY_MAXIMUM}" +"L'importo della transazione deve rientrare in {config." +"PAYMENT_GATEWAY_MINIMUM}-{config.PAYMENT_GATEWAY_MAXIMUM}" -#: payments/models.py:84 +#: engine/payments/models.py:83 msgid "balance" msgstr "Equilibrio" -#: payments/models.py:85 +#: engine/payments/models.py:84 msgid "balances" msgstr "Bilance" -#: payments/models.py:95 +#: engine/payments/models.py:94 msgid "name" msgstr "nome" -#: payments/models.py:100 +#: engine/payments/models.py:99 msgid "default currency" msgstr "valuta predefinita" -#: payments/models.py:107 +#: engine/payments/models.py:106 msgid "currencies" msgstr "valute" -#: payments/models.py:109 +#: engine/payments/models.py:108 msgid "comma separated list of currencies supported by this gateway, " msgstr "elenco separato da virgole delle valute supportate da questo gateway," -#: payments/models.py:115 +#: engine/payments/models.py:114 msgid "minimum transaction amount" msgstr "importo minimo della transazione" -#: payments/models.py:118 +#: engine/payments/models.py:117 msgid "maximum transaction amount" msgstr "importo massimo della transazione" -#: payments/models.py:124 +#: engine/payments/models.py:123 msgid "daily limit" msgstr "limite giornaliero" -#: payments/models.py:125 +#: engine/payments/models.py:124 msgid "daily sum limit of transactions' amounts. 0 means no limit" msgstr "" "limite di somma giornaliera degli importi delle transazioni. 0 significa " "nessun limite" -#: payments/models.py:131 +#: engine/payments/models.py:130 msgid "monthly limit" msgstr "limite mensile" -#: payments/models.py:132 +#: engine/payments/models.py:131 msgid "monthly sum limit of transactions' amounts. 0 means no limit" msgstr "" "limite di somma mensile degli importi delle transazioni. 0 significa nessun " "limite" -#: payments/models.py:134 +#: engine/payments/models.py:133 msgid "priority" msgstr "priorità" -#: payments/models.py:135 +#: engine/payments/models.py:134 msgid "integration variables" msgstr "variabili di integrazione" -#: payments/models.py:141 +#: engine/payments/models.py:140 msgid "payment gateway" msgstr "gateway di pagamento" -#: payments/models.py:142 +#: engine/payments/models.py:141 msgid "payment gateways" msgstr "gateway di pagamento" -#: payments/models.py:178 +#: engine/payments/models.py:177 msgid "gateway integration path is not set" msgstr "Il percorso di integrazione del gateway non è impostato" -#: payments/models.py:183 +#: engine/payments/models.py:182 #, python-format msgid "invalid integration path: %(path)s" msgstr "percorso di integrazione non valido: %(path)s" -#: payments/templates/balance_deposit_email.html:6 -#: payments/templates/balance_deposit_email.html:93 +#: engine/payments/templates/balance_deposit_email.html:6 +#: engine/payments/templates/balance_deposit_email.html:93 msgid "balance deposit" msgstr "Saldo Deposito" -#: payments/templates/balance_deposit_email.html:88 +#: engine/payments/templates/balance_deposit_email.html:88 msgid "logo" msgstr "Logo" -#: payments/templates/balance_deposit_email.html:94 +#: engine/payments/templates/balance_deposit_email.html:94 #, python-format msgid "hello %(user_first_name)s," msgstr "Hello %(user_first_name)s," -#: payments/templates/balance_deposit_email.html:95 +#: engine/payments/templates/balance_deposit_email.html:95 #, python-format msgid "" "we have successfully credited your account with %(amount)s. your current\n" @@ -170,39 +174,40 @@ msgstr "" "Abbiamo accreditato il vostro conto con %(amount)s. Il suo saldo attuale\n" " saldo è %(balance)s." -#: payments/templates/balance_deposit_email.html:98 +#: engine/payments/templates/balance_deposit_email.html:98 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" " %(contact_email)s." msgstr "" -"In caso di domande, non esitate a contattare il nostro supporto all'indirizzo\n" +"In caso di domande, non esitate a contattare il nostro supporto " +"all'indirizzo\n" " %(contact_email)s." -#: payments/templates/balance_deposit_email.html:100 +#: engine/payments/templates/balance_deposit_email.html:100 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "Cordiali saluti,
il team %(project_name)s" -#: payments/templates/balance_deposit_email.html:106 +#: engine/payments/templates/balance_deposit_email.html:106 msgid "all rights reserved" msgstr "Tutti i diritti riservati" -#: payments/utils/__init__.py:8 +#: engine/payments/utils/__init__.py:8 msgid "a provider to get rates from is required" msgstr "È necessario un fornitore da cui ottenere le tariffe" -#: payments/utils/__init__.py:15 +#: engine/payments/utils/__init__.py:15 #, python-brace-format msgid "couldn't find provider {provider}" msgstr "Impossibile trovare il fornitore {provider}" -#: payments/utils/emailing.py:27 +#: engine/payments/utils/emailing.py:27 #, python-brace-format msgid "{config.PROJECT_NAME} | balance deposit" msgstr "{config.PROJECT_NAME} | Deposito a saldo" -#: payments/viewsets.py:13 +#: engine/payments/viewsets.py:14 msgid "" "ViewSet for handling read-only operations on the Transaction model. This " "class provides a read-only interface for interacting with transaction data. " @@ -214,5 +219,5 @@ msgstr "" "transazioni. Questa classe fornisce un'interfaccia di sola lettura per " "interagire con i dati delle transazioni. Utilizza TransactionSerializer per " "serializzare e deserializzare i dati. La classe garantisce che solo gli " -"utenti autorizzati, che soddisfano specifici permessi, possano accedere alle" -" transazioni." +"utenti autorizzati, che soddisfano specifici permessi, possano accedere alle " +"transazioni." diff --git a/engine/payments/locale/ja_JP/LC_MESSAGES/django.mo b/engine/payments/locale/ja_JP/LC_MESSAGES/django.mo new file mode 100644 index 00000000..46f2e161 Binary files /dev/null and b/engine/payments/locale/ja_JP/LC_MESSAGES/django.mo differ diff --git a/payments/locale/ja_JP/LC_MESSAGES/django.po b/engine/payments/locale/ja_JP/LC_MESSAGES/django.po similarity index 63% rename from payments/locale/ja_JP/LC_MESSAGES/django.po rename to engine/payments/locale/ja_JP/LC_MESSAGES/django.po index 5c3f6f25..2c3bda0f 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,150 +13,155 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: payments/admin.py:17 payments/models.py:65 +#: engine/payments/admin.py:17 engine/payments/models.py:64 msgid "transaction" msgstr "トランザクション" -#: payments/admin.py:18 payments/models.py:66 +#: engine/payments/admin.py:18 engine/payments/models.py:65 msgid "transactions" msgstr "トランザクション" -#: payments/admin.py:64 +#: engine/payments/admin.py:64 msgid "can be used" msgstr "使用可能" -#: payments/apps.py:8 +#: engine/payments/apps.py:8 msgid "payments" msgstr "支払い" -#: payments/choices.py:3 +#: engine/payments/choices.py:3 msgid "deposit" msgstr "デポジット" -#: payments/choices.py:3 +#: engine/payments/choices.py:3 msgid "withdraw" msgstr "辞退" -#: payments/docs/drf/views.py:10 +#: engine/payments/docs/drf/views.py:10 msgid "deposit to balance" msgstr "預金残高" -#: payments/docs/drf/views.py:11 +#: engine/payments/docs/drf/views.py:11 msgid "deposit some money to balance" msgstr "預金残高を増やす" -#: payments/docs/drf/viewsets.py:10 +#: engine/payments/docs/drf/viewsets.py:11 msgid "list all transactions (read-only)" msgstr "全トランザクションのリスト(読み取り専用)" -#: payments/docs/drf/viewsets.py:14 +#: engine/payments/docs/drf/viewsets.py:15 msgid "retrieve a single transaction (read-only)" msgstr "単一のトランザクションを取得する(読み取り専用)" -#: payments/models.py:38 +#: engine/payments/docs/drf/viewsets.py:20 +msgid "Transaction UUID" +msgstr "トランザクションUUID" + +#: engine/payments/models.py:37 msgid "order to process after paid" msgstr "支払い後の処理順序" -#: payments/models.py:41 +#: engine/payments/models.py:40 msgid "processing details" msgstr "加工内容" -#: payments/models.py:61 +#: engine/payments/models.py:60 #, python-brace-format msgid "" -"transaction amount must fit into " -"{config.PAYMENT_GATEWAY_MINIMUM}-{config.PAYMENT_GATEWAY_MAXIMUM}" +"transaction amount must fit into {config.PAYMENT_GATEWAY_MINIMUM}-{config." +"PAYMENT_GATEWAY_MAXIMUM}" msgstr "" -"取引金額は{config.PAYMENT_GATEWAY_MINIMUM}-{config.PAYMENT_GATEWAY_MAXIMUM}に収まる必要があります。" +"取引金額は{config.PAYMENT_GATEWAY_MINIMUM}-{config.PAYMENT_GATEWAY_MAXIMUM}に" +"収まる必要があります。" -#: payments/models.py:84 +#: engine/payments/models.py:83 msgid "balance" msgstr "バランス" -#: payments/models.py:85 +#: engine/payments/models.py:84 msgid "balances" msgstr "体重計" -#: payments/models.py:95 +#: engine/payments/models.py:94 msgid "name" msgstr "名称" -#: payments/models.py:100 +#: engine/payments/models.py:99 msgid "default currency" msgstr "デフォルト通貨" -#: payments/models.py:107 +#: engine/payments/models.py:106 msgid "currencies" msgstr "通貨" -#: payments/models.py:109 +#: engine/payments/models.py:108 msgid "comma separated list of currencies supported by this gateway, " msgstr "このゲートウェイがサポートする通貨のカンマ区切りリスト、" -#: payments/models.py:115 +#: engine/payments/models.py:114 msgid "minimum transaction amount" msgstr "最低取引金額" -#: payments/models.py:118 +#: engine/payments/models.py:117 msgid "maximum transaction amount" msgstr "最高取引額" -#: payments/models.py:124 +#: engine/payments/models.py:123 msgid "daily limit" msgstr "デイリーリミット" -#: payments/models.py:125 +#: engine/payments/models.py:124 msgid "daily sum limit of transactions' amounts. 0 means no limit" msgstr "取引金額の日次合計限度額。0は制限なし" -#: payments/models.py:131 +#: engine/payments/models.py:130 msgid "monthly limit" msgstr "月間限度額" -#: payments/models.py:132 +#: engine/payments/models.py:131 msgid "monthly sum limit of transactions' amounts. 0 means no limit" msgstr "取引金額の月間合計限度額。0は制限なし" -#: payments/models.py:134 +#: engine/payments/models.py:133 msgid "priority" msgstr "優先順位" -#: payments/models.py:135 +#: engine/payments/models.py:134 msgid "integration variables" msgstr "統合変数" -#: payments/models.py:141 +#: engine/payments/models.py:140 msgid "payment gateway" msgstr "ペイメントゲートウェイ" -#: payments/models.py:142 +#: engine/payments/models.py:141 msgid "payment gateways" msgstr "ペイメントゲートウェイ" -#: payments/models.py:178 +#: engine/payments/models.py:177 msgid "gateway integration path is not set" msgstr "ゲートウェイ統合パスが設定されていない" -#: payments/models.py:183 +#: engine/payments/models.py:182 #, python-format msgid "invalid integration path: %(path)s" msgstr "無効な統合パスです:%(path)s" -#: payments/templates/balance_deposit_email.html:6 -#: payments/templates/balance_deposit_email.html:93 +#: engine/payments/templates/balance_deposit_email.html:6 +#: engine/payments/templates/balance_deposit_email.html:93 msgid "balance deposit" msgstr "預金残高" -#: payments/templates/balance_deposit_email.html:88 +#: engine/payments/templates/balance_deposit_email.html:88 msgid "logo" msgstr "ロゴ" -#: payments/templates/balance_deposit_email.html:94 +#: engine/payments/templates/balance_deposit_email.html:94 #, python-format msgid "hello %(user_first_name)s," msgstr "こんにちは%(user_first_name)s、" -#: payments/templates/balance_deposit_email.html:95 +#: engine/payments/templates/balance_deposit_email.html:95 #, python-format msgid "" "we have successfully credited your account with %(amount)s. your current\n" @@ -165,7 +170,7 @@ msgstr "" "お客様の口座に%(amount)sが入金されました。あなたの現在の\n" " 現在の残高は%(balance)sです。" -#: payments/templates/balance_deposit_email.html:98 +#: engine/payments/templates/balance_deposit_email.html:98 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" @@ -174,30 +179,30 @@ msgstr "" "ご不明な点がございましたら、お気軽に下記までお問い合わせください。\n" " %(contact_email)s。" -#: payments/templates/balance_deposit_email.html:100 +#: engine/payments/templates/balance_deposit_email.html:100 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "よろしくお願いします、
%(project_name)sチーム" -#: payments/templates/balance_deposit_email.html:106 +#: engine/payments/templates/balance_deposit_email.html:106 msgid "all rights reserved" msgstr "無断複写・転載を禁じます。" -#: payments/utils/__init__.py:8 +#: engine/payments/utils/__init__.py:8 msgid "a provider to get rates from is required" msgstr "レートを取得するプロバイダーが必要" -#: payments/utils/__init__.py:15 +#: engine/payments/utils/__init__.py:15 #, python-brace-format msgid "couldn't find provider {provider}" msgstr "プロバイダーが見つかりませんでした {provider} 。" -#: payments/utils/emailing.py:27 +#: engine/payments/utils/emailing.py:27 #, python-brace-format msgid "{config.PROJECT_NAME} | balance deposit" msgstr "{config.PROJECT_NAME}| 預金残高" -#: payments/viewsets.py:13 +#: engine/payments/viewsets.py:14 msgid "" "ViewSet for handling read-only operations on the Transaction model. This " "class provides a read-only interface for interacting with transaction data. " @@ -205,6 +210,8 @@ msgid "" "data. The class ensures that only authorized users, who meet specific " "permissions, can access the transactions." msgstr "" -"Transactionモデルの読み取り専用操作を扱うためのViewSet。このクラスは、トランザクション・データを操作するための読み取り専用インタフェースを提供します。データのシリアライズとデシリアライズには" -" TransactionSerializer " -"を使用します。このクラスは、特定のパーミッションを満たす許可されたユーザのみがトランザクションにアクセスできることを保証します。" +"Transactionモデルの読み取り専用操作を扱うためのViewSet。このクラスは、トラン" +"ザクション・データを操作するための読み取り専用インタフェースを提供します。" +"データのシリアライズとデシリアライズには TransactionSerializer を使用します。" +"このクラスは、特定のパーミッションを満たす許可されたユーザのみがトランザク" +"ションにアクセスできることを保証します。" diff --git a/engine/payments/locale/kk_KZ/LC_MESSAGES/django.mo b/engine/payments/locale/kk_KZ/LC_MESSAGES/django.mo new file mode 100644 index 00000000..7640ce00 Binary files /dev/null and b/engine/payments/locale/kk_KZ/LC_MESSAGES/django.mo differ diff --git a/payments/locale/hi_IN/LC_MESSAGES/django.po b/engine/payments/locale/kk_KZ/LC_MESSAGES/django.po similarity index 62% rename from payments/locale/hi_IN/LC_MESSAGES/django.po rename to engine/payments/locale/kk_KZ/LC_MESSAGES/django.po index 8454edfe..e7feb00d 100644 --- a/payments/locale/hi_IN/LC_MESSAGES/django.po +++ b/engine/payments/locale/kk_KZ/LC_MESSAGES/django.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: EVIBES 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -16,186 +16,190 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: payments/admin.py:17 payments/models.py:65 +#: engine/payments/admin.py:17 engine/payments/models.py:64 msgid "transaction" msgstr "" -#: payments/admin.py:18 payments/models.py:66 +#: engine/payments/admin.py:18 engine/payments/models.py:65 msgid "transactions" msgstr "" -#: payments/admin.py:64 +#: engine/payments/admin.py:64 msgid "can be used" msgstr "" -#: payments/apps.py:8 +#: engine/payments/apps.py:8 msgid "payments" msgstr "" -#: payments/choices.py:3 +#: engine/payments/choices.py:3 msgid "deposit" msgstr "" -#: payments/choices.py:3 +#: engine/payments/choices.py:3 msgid "withdraw" msgstr "" -#: payments/docs/drf/views.py:10 +#: engine/payments/docs/drf/views.py:10 msgid "deposit to balance" msgstr "" -#: payments/docs/drf/views.py:11 +#: engine/payments/docs/drf/views.py:11 msgid "deposit some money to balance" msgstr "" -#: payments/docs/drf/viewsets.py:10 +#: engine/payments/docs/drf/viewsets.py:11 msgid "list all transactions (read-only)" msgstr "" -#: payments/docs/drf/viewsets.py:14 +#: engine/payments/docs/drf/viewsets.py:15 msgid "retrieve a single transaction (read-only)" msgstr "" -#: payments/models.py:38 +#: engine/payments/docs/drf/viewsets.py:20 +msgid "Transaction UUID" +msgstr "" + +#: engine/payments/models.py:37 msgid "order to process after paid" msgstr "" -#: payments/models.py:41 +#: engine/payments/models.py:40 msgid "processing details" msgstr "" -#: payments/models.py:61 +#: engine/payments/models.py:60 #, python-brace-format msgid "" "transaction amount must fit into {config.PAYMENT_GATEWAY_MINIMUM}-{config." "PAYMENT_GATEWAY_MAXIMUM}" msgstr "" -#: payments/models.py:84 +#: engine/payments/models.py:83 msgid "balance" msgstr "" -#: payments/models.py:85 +#: engine/payments/models.py:84 msgid "balances" msgstr "" -#: payments/models.py:95 +#: engine/payments/models.py:94 msgid "name" msgstr "" -#: payments/models.py:100 +#: engine/payments/models.py:99 msgid "default currency" msgstr "" -#: payments/models.py:107 +#: engine/payments/models.py:106 msgid "currencies" msgstr "" -#: payments/models.py:109 +#: engine/payments/models.py:108 msgid "comma separated list of currencies supported by this gateway, " msgstr "" -#: payments/models.py:115 +#: engine/payments/models.py:114 msgid "minimum transaction amount" msgstr "" -#: payments/models.py:118 +#: engine/payments/models.py:117 msgid "maximum transaction amount" msgstr "" -#: payments/models.py:124 +#: engine/payments/models.py:123 msgid "daily limit" msgstr "" -#: payments/models.py:125 +#: engine/payments/models.py:124 msgid "daily sum limit of transactions' amounts. 0 means no limit" msgstr "" -#: payments/models.py:131 +#: engine/payments/models.py:130 msgid "monthly limit" msgstr "" -#: payments/models.py:132 +#: engine/payments/models.py:131 msgid "monthly sum limit of transactions' amounts. 0 means no limit" msgstr "" -#: payments/models.py:134 +#: engine/payments/models.py:133 msgid "priority" msgstr "" -#: payments/models.py:135 +#: engine/payments/models.py:134 msgid "integration variables" msgstr "" -#: payments/models.py:141 +#: engine/payments/models.py:140 msgid "payment gateway" msgstr "" -#: payments/models.py:142 +#: engine/payments/models.py:141 msgid "payment gateways" msgstr "" -#: payments/models.py:178 +#: engine/payments/models.py:177 msgid "gateway integration path is not set" msgstr "" -#: payments/models.py:183 +#: engine/payments/models.py:182 #, python-format msgid "invalid integration path: %(path)s" msgstr "" -#: payments/templates/balance_deposit_email.html:6 -#: payments/templates/balance_deposit_email.html:93 +#: engine/payments/templates/balance_deposit_email.html:6 +#: engine/payments/templates/balance_deposit_email.html:93 msgid "balance deposit" msgstr "" -#: payments/templates/balance_deposit_email.html:88 +#: engine/payments/templates/balance_deposit_email.html:88 msgid "logo" msgstr "" -#: payments/templates/balance_deposit_email.html:94 +#: engine/payments/templates/balance_deposit_email.html:94 #, python-format msgid "hello %(user_first_name)s," msgstr "" -#: payments/templates/balance_deposit_email.html:95 +#: engine/payments/templates/balance_deposit_email.html:95 #, python-format msgid "" "we have successfully credited your account with %(amount)s. your current\n" " balance is %(balance)s." msgstr "" -#: payments/templates/balance_deposit_email.html:98 +#: engine/payments/templates/balance_deposit_email.html:98 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" " %(contact_email)s." msgstr "" -#: payments/templates/balance_deposit_email.html:100 +#: engine/payments/templates/balance_deposit_email.html:100 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "" -#: payments/templates/balance_deposit_email.html:106 +#: engine/payments/templates/balance_deposit_email.html:106 msgid "all rights reserved" msgstr "" -#: payments/utils/__init__.py:8 +#: engine/payments/utils/__init__.py:8 msgid "a provider to get rates from is required" msgstr "" -#: payments/utils/__init__.py:15 +#: engine/payments/utils/__init__.py:15 #, python-brace-format msgid "couldn't find provider {provider}" msgstr "" -#: payments/utils/emailing.py:27 +#: engine/payments/utils/emailing.py:27 #, python-brace-format msgid "{config.PROJECT_NAME} | balance deposit" msgstr "" -#: payments/viewsets.py:13 +#: engine/payments/viewsets.py:14 msgid "" "ViewSet for handling read-only operations on the Transaction model. This " "class provides a read-only interface for interacting with transaction data. " diff --git a/engine/payments/locale/ko_KR/LC_MESSAGES/django.mo b/engine/payments/locale/ko_KR/LC_MESSAGES/django.mo new file mode 100644 index 00000000..09635ae2 Binary files /dev/null and b/engine/payments/locale/ko_KR/LC_MESSAGES/django.mo differ diff --git a/payments/locale/ko_KR/LC_MESSAGES/django.po b/engine/payments/locale/ko_KR/LC_MESSAGES/django.po similarity index 63% rename from payments/locale/ko_KR/LC_MESSAGES/django.po rename to engine/payments/locale/ko_KR/LC_MESSAGES/django.po index 3eb228e4..aa858daa 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,151 +13,155 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: payments/admin.py:17 payments/models.py:65 +#: engine/payments/admin.py:17 engine/payments/models.py:64 msgid "transaction" msgstr "거래" -#: payments/admin.py:18 payments/models.py:66 +#: engine/payments/admin.py:18 engine/payments/models.py:65 msgid "transactions" msgstr "거래" -#: payments/admin.py:64 +#: engine/payments/admin.py:64 msgid "can be used" msgstr "사용 가능" -#: payments/apps.py:8 +#: engine/payments/apps.py:8 msgid "payments" msgstr "결제" -#: payments/choices.py:3 +#: engine/payments/choices.py:3 msgid "deposit" msgstr "입금" -#: payments/choices.py:3 +#: engine/payments/choices.py:3 msgid "withdraw" msgstr "철회" -#: payments/docs/drf/views.py:10 +#: engine/payments/docs/drf/views.py:10 msgid "deposit to balance" msgstr "잔액 입금" -#: payments/docs/drf/views.py:11 +#: engine/payments/docs/drf/views.py:11 msgid "deposit some money to balance" msgstr "잔액을 입금하여 균형 맞추기" -#: payments/docs/drf/viewsets.py:10 +#: engine/payments/docs/drf/viewsets.py:11 msgid "list all transactions (read-only)" msgstr "모든 트랜잭션 나열(읽기 전용)" -#: payments/docs/drf/viewsets.py:14 +#: engine/payments/docs/drf/viewsets.py:15 msgid "retrieve a single transaction (read-only)" msgstr "단일 트랜잭션 검색(읽기 전용)" -#: payments/models.py:38 +#: engine/payments/docs/drf/viewsets.py:20 +msgid "Transaction UUID" +msgstr "트랜잭션 UUID" + +#: engine/payments/models.py:37 msgid "order to process after paid" msgstr "결제 후 처리할 주문" -#: payments/models.py:41 +#: engine/payments/models.py:40 msgid "processing details" msgstr "처리 세부 정보" -#: payments/models.py:61 +#: engine/payments/models.py:60 #, python-brace-format msgid "" -"transaction amount must fit into " -"{config.PAYMENT_GATEWAY_MINIMUM}-{config.PAYMENT_GATEWAY_MAXIMUM}" +"transaction amount must fit into {config.PAYMENT_GATEWAY_MINIMUM}-{config." +"PAYMENT_GATEWAY_MAXIMUM}" msgstr "" -"거래 금액은 {config.PAYMENT_GATEWAY_MINIMUM}-{config.PAYMENT_GATEWAY_MAXIMUM}에 " -"맞아야 합니다." +"거래 금액은 {config.PAYMENT_GATEWAY_MINIMUM}-{config.PAYMENT_GATEWAY_MAXIMUM}" +"에 맞아야 합니다." -#: payments/models.py:84 +#: engine/payments/models.py:83 msgid "balance" msgstr "잔액" -#: payments/models.py:85 +#: engine/payments/models.py:84 msgid "balances" msgstr "저울" -#: payments/models.py:95 +#: engine/payments/models.py:94 msgid "name" msgstr "이름" -#: payments/models.py:100 +#: engine/payments/models.py:99 msgid "default currency" msgstr "기본 통화" -#: payments/models.py:107 +#: engine/payments/models.py:106 msgid "currencies" msgstr "통화" -#: payments/models.py:109 +#: engine/payments/models.py:108 msgid "comma separated list of currencies supported by this gateway, " msgstr "쉼표로 구분된 이 게이트웨이에서 지원하는 통화 목록입니다," -#: payments/models.py:115 +#: engine/payments/models.py:114 msgid "minimum transaction amount" msgstr "최소 거래 금액" -#: payments/models.py:118 +#: engine/payments/models.py:117 msgid "maximum transaction amount" msgstr "최대 거래 금액" -#: payments/models.py:124 +#: engine/payments/models.py:123 msgid "daily limit" msgstr "일일 한도" -#: payments/models.py:125 +#: engine/payments/models.py:124 msgid "daily sum limit of transactions' amounts. 0 means no limit" msgstr "거래 금액의 일일 합산 한도입니다. 0은 한도가 없음을 의미합니다." -#: payments/models.py:131 +#: engine/payments/models.py:130 msgid "monthly limit" msgstr "월별 한도" -#: payments/models.py:132 +#: engine/payments/models.py:131 msgid "monthly sum limit of transactions' amounts. 0 means no limit" msgstr "거래 금액의 월별 합산 한도입니다. 0은 한도가 없음을 의미합니다." -#: payments/models.py:134 +#: engine/payments/models.py:133 msgid "priority" msgstr "우선순위" -#: payments/models.py:135 +#: engine/payments/models.py:134 msgid "integration variables" msgstr "통합 변수" -#: payments/models.py:141 +#: engine/payments/models.py:140 msgid "payment gateway" msgstr "결제 게이트웨이" -#: payments/models.py:142 +#: engine/payments/models.py:141 msgid "payment gateways" msgstr "결제 게이트웨이" -#: payments/models.py:178 +#: engine/payments/models.py:177 msgid "gateway integration path is not set" msgstr "게이트웨이 통합 경로가 설정되지 않았습니다." -#: payments/models.py:183 +#: engine/payments/models.py:182 #, python-format msgid "invalid integration path: %(path)s" msgstr "잘못된 통합 경로입니다: %(path)s" -#: payments/templates/balance_deposit_email.html:6 -#: payments/templates/balance_deposit_email.html:93 +#: engine/payments/templates/balance_deposit_email.html:6 +#: engine/payments/templates/balance_deposit_email.html:93 msgid "balance deposit" msgstr "잔액 입금" -#: payments/templates/balance_deposit_email.html:88 +#: engine/payments/templates/balance_deposit_email.html:88 msgid "logo" msgstr "로고" -#: payments/templates/balance_deposit_email.html:94 +#: engine/payments/templates/balance_deposit_email.html:94 #, python-format msgid "hello %(user_first_name)s," msgstr "안녕하세요 %(user_first_name)s," -#: payments/templates/balance_deposit_email.html:95 +#: engine/payments/templates/balance_deposit_email.html:95 #, python-format msgid "" "we have successfully credited your account with %(amount)s. your current\n" @@ -166,7 +170,7 @@ msgstr "" "귀하의 계정에 %(amount)s가 성공적으로 적립되었습니다. 현재\n" " 잔액은 %(balance)s입니다." -#: payments/templates/balance_deposit_email.html:98 +#: engine/payments/templates/balance_deposit_email.html:98 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" @@ -175,30 +179,30 @@ msgstr "" "궁금한 점이 있으면 언제든지 다음 주소로 지원팀에 문의하세요.\n" " %(contact_email)s." -#: payments/templates/balance_deposit_email.html:100 +#: engine/payments/templates/balance_deposit_email.html:100 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "감사합니다,
%(project_name)s 팀" -#: payments/templates/balance_deposit_email.html:106 +#: engine/payments/templates/balance_deposit_email.html:106 msgid "all rights reserved" msgstr "모든 권리 보유" -#: payments/utils/__init__.py:8 +#: engine/payments/utils/__init__.py:8 msgid "a provider to get rates from is required" msgstr "요금을 받을 공급업체가 필요합니다." -#: payments/utils/__init__.py:15 +#: engine/payments/utils/__init__.py:15 #, python-brace-format msgid "couldn't find provider {provider}" msgstr "공급자를 찾을 수 없습니다 {provider}." -#: payments/utils/emailing.py:27 +#: engine/payments/utils/emailing.py:27 #, python-brace-format msgid "{config.PROJECT_NAME} | balance deposit" msgstr "{config.PROJECT_NAME} | 잔액 입금" -#: payments/viewsets.py:13 +#: engine/payments/viewsets.py:14 msgid "" "ViewSet for handling read-only operations on the Transaction model. This " "class provides a read-only interface for interacting with transaction data. " @@ -206,6 +210,8 @@ msgid "" "data. The class ensures that only authorized users, who meet specific " "permissions, can access the transactions." msgstr "" -"트랜잭션 모델에서 읽기 전용 작업을 처리하기 위한 뷰셋입니다. 이 클래스는 트랜잭션 데이터와 상호 작용하기 위한 읽기 전용 인터페이스를 " -"제공합니다. 데이터를 직렬화 및 역직렬화하기 위해 TransactionSerializer를 사용합니다. 이 클래스는 특정 권한을 충족하는" -" 권한이 있는 사용자만 트랜잭션에 액세스할 수 있도록 합니다." +"트랜잭션 모델에서 읽기 전용 작업을 처리하기 위한 뷰셋입니다. 이 클래스는 트랜" +"잭션 데이터와 상호 작용하기 위한 읽기 전용 인터페이스를 제공합니다. 데이터를 " +"직렬화 및 역직렬화하기 위해 TransactionSerializer를 사용합니다. 이 클래스는 " +"특정 권한을 충족하는 권한이 있는 사용자만 트랜잭션에 액세스할 수 있도록 합니" +"다." diff --git a/engine/payments/locale/nl_NL/LC_MESSAGES/django.mo b/engine/payments/locale/nl_NL/LC_MESSAGES/django.mo new file mode 100644 index 00000000..b51ecf93 Binary files /dev/null and b/engine/payments/locale/nl_NL/LC_MESSAGES/django.mo differ diff --git a/payments/locale/nl_NL/LC_MESSAGES/django.po b/engine/payments/locale/nl_NL/LC_MESSAGES/django.po similarity index 67% rename from payments/locale/nl_NL/LC_MESSAGES/django.po rename to engine/payments/locale/nl_NL/LC_MESSAGES/django.po index 9961228d..f8e133c9 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,153 +13,157 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: payments/admin.py:17 payments/models.py:65 +#: engine/payments/admin.py:17 engine/payments/models.py:64 msgid "transaction" msgstr "Transactie" -#: payments/admin.py:18 payments/models.py:66 +#: engine/payments/admin.py:18 engine/payments/models.py:65 msgid "transactions" msgstr "Transacties" -#: payments/admin.py:64 +#: engine/payments/admin.py:64 msgid "can be used" msgstr "Kan worden gebruikt" -#: payments/apps.py:8 +#: engine/payments/apps.py:8 msgid "payments" msgstr "Betalingen" -#: payments/choices.py:3 +#: engine/payments/choices.py:3 msgid "deposit" msgstr "Statiegeld" -#: payments/choices.py:3 +#: engine/payments/choices.py:3 msgid "withdraw" msgstr "Intrekken" -#: payments/docs/drf/views.py:10 +#: engine/payments/docs/drf/views.py:10 msgid "deposit to balance" msgstr "Storting op saldo" -#: payments/docs/drf/views.py:11 +#: engine/payments/docs/drf/views.py:11 msgid "deposit some money to balance" msgstr "Stort wat geld om te balanceren" -#: payments/docs/drf/viewsets.py:10 +#: engine/payments/docs/drf/viewsets.py:11 msgid "list all transactions (read-only)" msgstr "Alle transacties weergeven (alleen-lezen)" -#: payments/docs/drf/viewsets.py:14 +#: engine/payments/docs/drf/viewsets.py:15 msgid "retrieve a single transaction (read-only)" msgstr "Een enkele transactie ophalen (alleen-lezen)" -#: payments/models.py:38 +#: engine/payments/docs/drf/viewsets.py:20 +msgid "Transaction UUID" +msgstr "UUID transactie" + +#: engine/payments/models.py:37 msgid "order to process after paid" msgstr "Order te verwerken na betaling" -#: payments/models.py:41 +#: engine/payments/models.py:40 msgid "processing details" msgstr "Verwerkingsdetails" -#: payments/models.py:61 +#: engine/payments/models.py:60 #, python-brace-format msgid "" -"transaction amount must fit into " -"{config.PAYMENT_GATEWAY_MINIMUM}-{config.PAYMENT_GATEWAY_MAXIMUM}" +"transaction amount must fit into {config.PAYMENT_GATEWAY_MINIMUM}-{config." +"PAYMENT_GATEWAY_MAXIMUM}" msgstr "" -"Het transactiebedrag moet passen binnen " -"{config.PAYMENT_GATEWAY_MINIMUM}-{config.PAYMENT_GATEWAY_MAXIMUM}." +"Het transactiebedrag moet passen binnen {config.PAYMENT_GATEWAY_MINIMUM}-" +"{config.PAYMENT_GATEWAY_MAXIMUM}." -#: payments/models.py:84 +#: engine/payments/models.py:83 msgid "balance" msgstr "Saldo" -#: payments/models.py:85 +#: engine/payments/models.py:84 msgid "balances" msgstr "Weegschaal" -#: payments/models.py:95 +#: engine/payments/models.py:94 msgid "name" msgstr "naam" -#: payments/models.py:100 +#: engine/payments/models.py:99 msgid "default currency" msgstr "standaardvaluta" -#: payments/models.py:107 +#: engine/payments/models.py:106 msgid "currencies" msgstr "valuta" -#: payments/models.py:109 +#: engine/payments/models.py:108 msgid "comma separated list of currencies supported by this gateway, " msgstr "" "door komma's gescheiden lijst van munteenheden die door deze gateway worden " "ondersteund," -#: payments/models.py:115 +#: engine/payments/models.py:114 msgid "minimum transaction amount" msgstr "minimum transactiebedrag" -#: payments/models.py:118 +#: engine/payments/models.py:117 msgid "maximum transaction amount" msgstr "maximaal transactiebedrag" -#: payments/models.py:124 +#: engine/payments/models.py:123 msgid "daily limit" msgstr "daglimiet" -#: payments/models.py:125 +#: engine/payments/models.py:124 msgid "daily sum limit of transactions' amounts. 0 means no limit" msgstr "dagelijkse somlimiet van transactiebedragen. 0 betekent geen limiet" -#: payments/models.py:131 +#: engine/payments/models.py:130 msgid "monthly limit" msgstr "maandelijkse limiet" -#: payments/models.py:132 +#: engine/payments/models.py:131 msgid "monthly sum limit of transactions' amounts. 0 means no limit" msgstr "maandelijkse somlimiet van transactiebedragen. 0 betekent geen limiet" -#: payments/models.py:134 +#: engine/payments/models.py:133 msgid "priority" msgstr "prioriteit" -#: payments/models.py:135 +#: engine/payments/models.py:134 msgid "integration variables" msgstr "integratievariabelen" -#: payments/models.py:141 +#: engine/payments/models.py:140 msgid "payment gateway" msgstr "betalingsgateway" -#: payments/models.py:142 +#: engine/payments/models.py:141 msgid "payment gateways" msgstr "betalingsgateways" -#: payments/models.py:178 +#: engine/payments/models.py:177 msgid "gateway integration path is not set" msgstr "gateway integratiepad is niet ingesteld" -#: payments/models.py:183 +#: engine/payments/models.py:182 #, python-format msgid "invalid integration path: %(path)s" msgstr "ongeldig integratiepad: %(path)s" -#: payments/templates/balance_deposit_email.html:6 -#: payments/templates/balance_deposit_email.html:93 +#: engine/payments/templates/balance_deposit_email.html:6 +#: engine/payments/templates/balance_deposit_email.html:93 msgid "balance deposit" msgstr "Saldo Storting" -#: payments/templates/balance_deposit_email.html:88 +#: engine/payments/templates/balance_deposit_email.html:88 msgid "logo" msgstr "Logo" -#: payments/templates/balance_deposit_email.html:94 +#: engine/payments/templates/balance_deposit_email.html:94 #, python-format msgid "hello %(user_first_name)s," msgstr "Hallo %(user_first_name)s," -#: payments/templates/balance_deposit_email.html:95 +#: engine/payments/templates/balance_deposit_email.html:95 #, python-format msgid "" "we have successfully credited your account with %(amount)s. your current\n" @@ -168,7 +172,7 @@ msgstr "" "We hebben uw rekening succesvol gecrediteerd met %(amount)s. Uw huidige\n" " saldo is %(balance)s." -#: payments/templates/balance_deposit_email.html:98 +#: engine/payments/templates/balance_deposit_email.html:98 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" @@ -177,30 +181,30 @@ msgstr "" "Als u vragen hebt, kunt u contact opnemen met onze klantenservice op\n" " %(contact_email)s." -#: payments/templates/balance_deposit_email.html:100 +#: engine/payments/templates/balance_deposit_email.html:100 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "Vriendelijke groeten,
het %(project_name)s team" -#: payments/templates/balance_deposit_email.html:106 +#: engine/payments/templates/balance_deposit_email.html:106 msgid "all rights reserved" msgstr "Alle rechten voorbehouden" -#: payments/utils/__init__.py:8 +#: engine/payments/utils/__init__.py:8 msgid "a provider to get rates from is required" msgstr "Een provider om tarieven van te krijgen is vereist" -#: payments/utils/__init__.py:15 +#: engine/payments/utils/__init__.py:15 #, python-brace-format msgid "couldn't find provider {provider}" msgstr "Kon provider {provider} niet vinden." -#: payments/utils/emailing.py:27 +#: engine/payments/utils/emailing.py:27 #, python-brace-format msgid "{config.PROJECT_NAME} | balance deposit" msgstr "{config.PROJECT_NAME} | Saldo storting" -#: payments/viewsets.py:13 +#: engine/payments/viewsets.py:14 msgid "" "ViewSet for handling read-only operations on the Transaction model. This " "class provides a read-only interface for interacting with transaction data. " diff --git a/engine/payments/locale/no_NO/LC_MESSAGES/django.mo b/engine/payments/locale/no_NO/LC_MESSAGES/django.mo new file mode 100644 index 00000000..6427f6b5 Binary files /dev/null and b/engine/payments/locale/no_NO/LC_MESSAGES/django.mo differ diff --git a/payments/locale/no_NO/LC_MESSAGES/django.po b/engine/payments/locale/no_NO/LC_MESSAGES/django.po similarity index 66% rename from payments/locale/no_NO/LC_MESSAGES/django.po rename to engine/payments/locale/no_NO/LC_MESSAGES/django.po index f186f0ab..c2ebb300 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,151 +13,155 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: payments/admin.py:17 payments/models.py:65 +#: engine/payments/admin.py:17 engine/payments/models.py:64 msgid "transaction" msgstr "Transaksjon" -#: payments/admin.py:18 payments/models.py:66 +#: engine/payments/admin.py:18 engine/payments/models.py:65 msgid "transactions" msgstr "Transaksjoner" -#: payments/admin.py:64 +#: engine/payments/admin.py:64 msgid "can be used" msgstr "Kan brukes" -#: payments/apps.py:8 +#: engine/payments/apps.py:8 msgid "payments" msgstr "Betalinger" -#: payments/choices.py:3 +#: engine/payments/choices.py:3 msgid "deposit" msgstr "Innskudd" -#: payments/choices.py:3 +#: engine/payments/choices.py:3 msgid "withdraw" msgstr "Trekke tilbake" -#: payments/docs/drf/views.py:10 +#: engine/payments/docs/drf/views.py:10 msgid "deposit to balance" msgstr "Innskudd til saldo" -#: payments/docs/drf/views.py:11 +#: engine/payments/docs/drf/views.py:11 msgid "deposit some money to balance" msgstr "Sett inn litt penger for å balansere" -#: payments/docs/drf/viewsets.py:10 +#: engine/payments/docs/drf/viewsets.py:11 msgid "list all transactions (read-only)" msgstr "Liste over alle transaksjoner (skrivebeskyttet)" -#: payments/docs/drf/viewsets.py:14 +#: engine/payments/docs/drf/viewsets.py:15 msgid "retrieve a single transaction (read-only)" msgstr "Hent en enkelttransaksjon (skrivebeskyttet)" -#: payments/models.py:38 +#: engine/payments/docs/drf/viewsets.py:20 +msgid "Transaction UUID" +msgstr "UUID for transaksjon" + +#: engine/payments/models.py:37 msgid "order to process after paid" msgstr "Ordre som skal behandles etter betaling" -#: payments/models.py:41 +#: engine/payments/models.py:40 msgid "processing details" msgstr "Detaljer om behandlingen" -#: payments/models.py:61 +#: engine/payments/models.py:60 #, python-brace-format msgid "" -"transaction amount must fit into " -"{config.PAYMENT_GATEWAY_MINIMUM}-{config.PAYMENT_GATEWAY_MAXIMUM}" +"transaction amount must fit into {config.PAYMENT_GATEWAY_MINIMUM}-{config." +"PAYMENT_GATEWAY_MAXIMUM}" msgstr "" -"Transaksjonsbeløpet må passe inn i " -"{config.PAYMENT_GATEWAY_MINIMUM}-{config.PAYMENT_GATEWAY_MAXIMUM}." +"Transaksjonsbeløpet må passe inn i {config.PAYMENT_GATEWAY_MINIMUM}-{config." +"PAYMENT_GATEWAY_MAXIMUM}." -#: payments/models.py:84 +#: engine/payments/models.py:83 msgid "balance" msgstr "Balanse" -#: payments/models.py:85 +#: engine/payments/models.py:84 msgid "balances" msgstr "Vekt" -#: payments/models.py:95 +#: engine/payments/models.py:94 msgid "name" msgstr "navn" -#: payments/models.py:100 +#: engine/payments/models.py:99 msgid "default currency" msgstr "standard valuta" -#: payments/models.py:107 +#: engine/payments/models.py:106 msgid "currencies" msgstr "valutaer" -#: payments/models.py:109 +#: engine/payments/models.py:108 msgid "comma separated list of currencies supported by this gateway, " msgstr "kommaseparert liste over valutaer som støttes av denne gatewayen," -#: payments/models.py:115 +#: engine/payments/models.py:114 msgid "minimum transaction amount" msgstr "minimum transaksjonsbeløp" -#: payments/models.py:118 +#: engine/payments/models.py:117 msgid "maximum transaction amount" msgstr "maksimalt transaksjonsbeløp" -#: payments/models.py:124 +#: engine/payments/models.py:123 msgid "daily limit" msgstr "daglig grense" -#: payments/models.py:125 +#: engine/payments/models.py:124 msgid "daily sum limit of transactions' amounts. 0 means no limit" msgstr "daglig sumgrense for transaksjonsbeløp. 0 betyr ingen grense" -#: payments/models.py:131 +#: engine/payments/models.py:130 msgid "monthly limit" msgstr "månedlig grense" -#: payments/models.py:132 +#: engine/payments/models.py:131 msgid "monthly sum limit of transactions' amounts. 0 means no limit" msgstr "månedlig sumgrense for transaksjonsbeløp. 0 betyr ingen grense" -#: payments/models.py:134 +#: engine/payments/models.py:133 msgid "priority" msgstr "prioritet" -#: payments/models.py:135 +#: engine/payments/models.py:134 msgid "integration variables" msgstr "integrasjonsvariabler" -#: payments/models.py:141 +#: engine/payments/models.py:140 msgid "payment gateway" msgstr "betalingsgateway" -#: payments/models.py:142 +#: engine/payments/models.py:141 msgid "payment gateways" msgstr "betalingsportaler" -#: payments/models.py:178 +#: engine/payments/models.py:177 msgid "gateway integration path is not set" msgstr "gateway-integrasjonsbanen er ikke angitt" -#: payments/models.py:183 +#: engine/payments/models.py:182 #, python-format msgid "invalid integration path: %(path)s" msgstr "ugyldig integrasjonsbane: %(path)s" -#: payments/templates/balance_deposit_email.html:6 -#: payments/templates/balance_deposit_email.html:93 +#: engine/payments/templates/balance_deposit_email.html:6 +#: engine/payments/templates/balance_deposit_email.html:93 msgid "balance deposit" msgstr "Saldo innskudd" -#: payments/templates/balance_deposit_email.html:88 +#: engine/payments/templates/balance_deposit_email.html:88 msgid "logo" msgstr "Logo" -#: payments/templates/balance_deposit_email.html:94 +#: engine/payments/templates/balance_deposit_email.html:94 #, python-format msgid "hello %(user_first_name)s," msgstr "Hallo %(user_first_name)s," -#: payments/templates/balance_deposit_email.html:95 +#: engine/payments/templates/balance_deposit_email.html:95 #, python-format msgid "" "we have successfully credited your account with %(amount)s. your current\n" @@ -166,7 +170,7 @@ msgstr "" "Vi har kreditert kontoen din med %(amount)s. Din nåværende\n" " saldo er %(balance)s." -#: payments/templates/balance_deposit_email.html:98 +#: engine/payments/templates/balance_deposit_email.html:98 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" @@ -175,30 +179,30 @@ msgstr "" "Hvis du har spørsmål, er du velkommen til å kontakte vår support på\n" " %(contact_email)s." -#: payments/templates/balance_deposit_email.html:100 +#: engine/payments/templates/balance_deposit_email.html:100 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "Med vennlig hilsen,
teamet %(project_name)s" -#: payments/templates/balance_deposit_email.html:106 +#: engine/payments/templates/balance_deposit_email.html:106 msgid "all rights reserved" msgstr "Alle rettigheter forbeholdt" -#: payments/utils/__init__.py:8 +#: engine/payments/utils/__init__.py:8 msgid "a provider to get rates from is required" msgstr "Det kreves en leverandør å få priser fra" -#: payments/utils/__init__.py:15 +#: engine/payments/utils/__init__.py:15 #, python-brace-format msgid "couldn't find provider {provider}" msgstr "Fant ikke leverandøren {provider}." -#: payments/utils/emailing.py:27 +#: engine/payments/utils/emailing.py:27 #, python-brace-format msgid "{config.PROJECT_NAME} | balance deposit" msgstr "{config.PROJECT_NAME} | Saldo innskudd" -#: payments/viewsets.py:13 +#: engine/payments/viewsets.py:14 msgid "" "ViewSet for handling read-only operations on the Transaction model. This " "class provides a read-only interface for interacting with transaction data. " @@ -208,6 +212,6 @@ msgid "" msgstr "" "ViewSet for håndtering av skrivebeskyttede operasjoner på " "transaksjonsmodellen. Denne klassen tilbyr et skrivebeskyttet grensesnitt " -"for interaksjon med transaksjonsdata. Den bruker TransactionSerializer til å" -" serialisere og deserialisere dataene. Klassen sikrer at bare autoriserte " +"for interaksjon med transaksjonsdata. Den bruker TransactionSerializer til å " +"serialisere og deserialisere dataene. Klassen sikrer at bare autoriserte " "brukere med bestemte rettigheter får tilgang til transaksjonene." diff --git a/engine/payments/locale/pl_PL/LC_MESSAGES/django.mo b/engine/payments/locale/pl_PL/LC_MESSAGES/django.mo new file mode 100644 index 00000000..aa5a90c7 Binary files /dev/null and b/engine/payments/locale/pl_PL/LC_MESSAGES/django.mo differ diff --git a/payments/locale/pl_PL/LC_MESSAGES/django.po b/engine/payments/locale/pl_PL/LC_MESSAGES/django.po similarity index 65% rename from payments/locale/pl_PL/LC_MESSAGES/django.po rename to engine/payments/locale/pl_PL/LC_MESSAGES/django.po index fd8a68d0..83391e32 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,151 +13,155 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: payments/admin.py:17 payments/models.py:65 +#: engine/payments/admin.py:17 engine/payments/models.py:64 msgid "transaction" msgstr "Transakcja" -#: payments/admin.py:18 payments/models.py:66 +#: engine/payments/admin.py:18 engine/payments/models.py:65 msgid "transactions" msgstr "Transakcje" -#: payments/admin.py:64 +#: engine/payments/admin.py:64 msgid "can be used" msgstr "Może być używany" -#: payments/apps.py:8 +#: engine/payments/apps.py:8 msgid "payments" msgstr "Płatności" -#: payments/choices.py:3 +#: engine/payments/choices.py:3 msgid "deposit" msgstr "Depozyt" -#: payments/choices.py:3 +#: engine/payments/choices.py:3 msgid "withdraw" msgstr "Wycofać się" -#: payments/docs/drf/views.py:10 +#: engine/payments/docs/drf/views.py:10 msgid "deposit to balance" msgstr "Wpłata na saldo" -#: payments/docs/drf/views.py:11 +#: engine/payments/docs/drf/views.py:11 msgid "deposit some money to balance" msgstr "Wpłać trochę pieniędzy na saldo" -#: payments/docs/drf/viewsets.py:10 +#: engine/payments/docs/drf/viewsets.py:11 msgid "list all transactions (read-only)" msgstr "Lista wszystkich transakcji (tylko do odczytu)" -#: payments/docs/drf/viewsets.py:14 +#: engine/payments/docs/drf/viewsets.py:15 msgid "retrieve a single transaction (read-only)" msgstr "Pobieranie pojedynczej transakcji (tylko do odczytu)" -#: payments/models.py:38 +#: engine/payments/docs/drf/viewsets.py:20 +msgid "Transaction UUID" +msgstr "UUID transakcji" + +#: engine/payments/models.py:37 msgid "order to process after paid" msgstr "Zamówienie do przetworzenia po opłaceniu" -#: payments/models.py:41 +#: engine/payments/models.py:40 msgid "processing details" msgstr "Szczegóły przetwarzania" -#: payments/models.py:61 +#: engine/payments/models.py:60 #, python-brace-format msgid "" -"transaction amount must fit into " -"{config.PAYMENT_GATEWAY_MINIMUM}-{config.PAYMENT_GATEWAY_MAXIMUM}" +"transaction amount must fit into {config.PAYMENT_GATEWAY_MINIMUM}-{config." +"PAYMENT_GATEWAY_MAXIMUM}" msgstr "" -"Kwota transakcji musi mieścić się w przedziale " -"{config.PAYMENT_GATEWAY_MINIMUM}-{config.PAYMENT_GATEWAY_MAXIMUM}." +"Kwota transakcji musi mieścić się w przedziale {config." +"PAYMENT_GATEWAY_MINIMUM}-{config.PAYMENT_GATEWAY_MAXIMUM}." -#: payments/models.py:84 +#: engine/payments/models.py:83 msgid "balance" msgstr "Równowaga" -#: payments/models.py:85 +#: engine/payments/models.py:84 msgid "balances" msgstr "Wagi" -#: payments/models.py:95 +#: engine/payments/models.py:94 msgid "name" msgstr "nazwa" -#: payments/models.py:100 +#: engine/payments/models.py:99 msgid "default currency" msgstr "waluta domyślna" -#: payments/models.py:107 +#: engine/payments/models.py:106 msgid "currencies" msgstr "waluty" -#: payments/models.py:109 +#: engine/payments/models.py:108 msgid "comma separated list of currencies supported by this gateway, " msgstr "rozdzielana przecinkami lista walut obsługiwanych przez tę bramę," -#: payments/models.py:115 +#: engine/payments/models.py:114 msgid "minimum transaction amount" msgstr "minimalna kwota transakcji" -#: payments/models.py:118 +#: engine/payments/models.py:117 msgid "maximum transaction amount" msgstr "maksymalna kwota transakcji" -#: payments/models.py:124 +#: engine/payments/models.py:123 msgid "daily limit" msgstr "limit dzienny" -#: payments/models.py:125 +#: engine/payments/models.py:124 msgid "daily sum limit of transactions' amounts. 0 means no limit" msgstr "dzienny limit sumy kwot transakcji. 0 oznacza brak limitu" -#: payments/models.py:131 +#: engine/payments/models.py:130 msgid "monthly limit" msgstr "limit miesięczny" -#: payments/models.py:132 +#: engine/payments/models.py:131 msgid "monthly sum limit of transactions' amounts. 0 means no limit" msgstr "miesięczny limit sumy kwot transakcji. 0 oznacza brak limitu" -#: payments/models.py:134 +#: engine/payments/models.py:133 msgid "priority" msgstr "priorytet" -#: payments/models.py:135 +#: engine/payments/models.py:134 msgid "integration variables" msgstr "zmienne integracji" -#: payments/models.py:141 +#: engine/payments/models.py:140 msgid "payment gateway" msgstr "bramka płatności" -#: payments/models.py:142 +#: engine/payments/models.py:141 msgid "payment gateways" msgstr "bramki płatności" -#: payments/models.py:178 +#: engine/payments/models.py:177 msgid "gateway integration path is not set" msgstr "ścieżka integracji bramy nie jest ustawiona" -#: payments/models.py:183 +#: engine/payments/models.py:182 #, python-format msgid "invalid integration path: %(path)s" msgstr "Nieprawidłowa ścieżka integracji: %(path)s" -#: payments/templates/balance_deposit_email.html:6 -#: payments/templates/balance_deposit_email.html:93 +#: engine/payments/templates/balance_deposit_email.html:6 +#: engine/payments/templates/balance_deposit_email.html:93 msgid "balance deposit" msgstr "Saldo depozytu" -#: payments/templates/balance_deposit_email.html:88 +#: engine/payments/templates/balance_deposit_email.html:88 msgid "logo" msgstr "Logo" -#: payments/templates/balance_deposit_email.html:94 +#: engine/payments/templates/balance_deposit_email.html:94 #, python-format msgid "hello %(user_first_name)s," msgstr "Witaj %(user_first_name)s," -#: payments/templates/balance_deposit_email.html:95 +#: engine/payments/templates/balance_deposit_email.html:95 #, python-format msgid "" "we have successfully credited your account with %(amount)s. your current\n" @@ -166,39 +170,40 @@ msgstr "" "Twoje konto zostało pomyślnie zasilone kwotą %(amount)s. Aktualne\n" " wynosi %(balance)s." -#: payments/templates/balance_deposit_email.html:98 +#: engine/payments/templates/balance_deposit_email.html:98 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" " %(contact_email)s." msgstr "" -"Jeśli masz jakiekolwiek pytania, skontaktuj się z naszym działem pomocy technicznej pod adresem\n" +"Jeśli masz jakiekolwiek pytania, skontaktuj się z naszym działem pomocy " +"technicznej pod adresem\n" " %(contact_email)s." -#: payments/templates/balance_deposit_email.html:100 +#: engine/payments/templates/balance_deposit_email.html:100 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "Najlepsze pozdrowienia,
zespół %(project_name)s" -#: payments/templates/balance_deposit_email.html:106 +#: engine/payments/templates/balance_deposit_email.html:106 msgid "all rights reserved" msgstr "Wszelkie prawa zastrzeżone" -#: payments/utils/__init__.py:8 +#: engine/payments/utils/__init__.py:8 msgid "a provider to get rates from is required" msgstr "Wymagany jest dostawca, od którego można uzyskać stawki" -#: payments/utils/__init__.py:15 +#: engine/payments/utils/__init__.py:15 #, python-brace-format msgid "couldn't find provider {provider}" msgstr "Nie można znaleźć dostawcy {provider}" -#: payments/utils/emailing.py:27 +#: engine/payments/utils/emailing.py:27 #, python-brace-format msgid "{config.PROJECT_NAME} | balance deposit" msgstr "{config.PROJECT_NAME} | Wpłata salda" -#: payments/viewsets.py:13 +#: engine/payments/viewsets.py:14 msgid "" "ViewSet for handling read-only operations on the Transaction model. This " "class provides a read-only interface for interacting with transaction data. " @@ -207,7 +212,7 @@ msgid "" "permissions, can access the transactions." msgstr "" "ViewSet do obsługi operacji tylko do odczytu na modelu transakcji. Ta klasa " -"zapewnia interfejs tylko do odczytu do interakcji z danymi transakcji. Używa" -" TransactionSerializer do serializacji i deserializacji danych. Klasa " +"zapewnia interfejs tylko do odczytu do interakcji z danymi transakcji. Używa " +"TransactionSerializer do serializacji i deserializacji danych. Klasa " "zapewnia, że tylko autoryzowani użytkownicy, którzy spełniają określone " "uprawnienia, mogą uzyskać dostęp do transakcji." diff --git a/engine/payments/locale/pt_BR/LC_MESSAGES/django.mo b/engine/payments/locale/pt_BR/LC_MESSAGES/django.mo new file mode 100644 index 00000000..406893f4 Binary files /dev/null and b/engine/payments/locale/pt_BR/LC_MESSAGES/django.mo differ diff --git a/payments/locale/pt_BR/LC_MESSAGES/django.po b/engine/payments/locale/pt_BR/LC_MESSAGES/django.po similarity index 68% rename from payments/locale/pt_BR/LC_MESSAGES/django.po rename to engine/payments/locale/pt_BR/LC_MESSAGES/django.po index ab537b93..43ca52bf 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,154 +13,158 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: payments/admin.py:17 payments/models.py:65 +#: engine/payments/admin.py:17 engine/payments/models.py:64 msgid "transaction" msgstr "Transação" -#: payments/admin.py:18 payments/models.py:66 +#: engine/payments/admin.py:18 engine/payments/models.py:65 msgid "transactions" msgstr "Transações" -#: payments/admin.py:64 +#: engine/payments/admin.py:64 msgid "can be used" msgstr "Pode ser usado" -#: payments/apps.py:8 +#: engine/payments/apps.py:8 msgid "payments" msgstr "Pagamentos" -#: payments/choices.py:3 +#: engine/payments/choices.py:3 msgid "deposit" msgstr "Deposit" -#: payments/choices.py:3 +#: engine/payments/choices.py:3 msgid "withdraw" msgstr "Retirada" -#: payments/docs/drf/views.py:10 +#: engine/payments/docs/drf/views.py:10 msgid "deposit to balance" msgstr "Depósito no saldo" -#: payments/docs/drf/views.py:11 +#: engine/payments/docs/drf/views.py:11 msgid "deposit some money to balance" msgstr "Depositar algum dinheiro no saldo" -#: payments/docs/drf/viewsets.py:10 +#: engine/payments/docs/drf/viewsets.py:11 msgid "list all transactions (read-only)" msgstr "Listar todas as transações (somente leitura)" -#: payments/docs/drf/viewsets.py:14 +#: engine/payments/docs/drf/viewsets.py:15 msgid "retrieve a single transaction (read-only)" msgstr "Recuperar uma única transação (somente leitura)" -#: payments/models.py:38 +#: engine/payments/docs/drf/viewsets.py:20 +msgid "Transaction UUID" +msgstr "UUID da transação" + +#: engine/payments/models.py:37 msgid "order to process after paid" msgstr "Ordem a ser processada após o pagamento" -#: payments/models.py:41 +#: engine/payments/models.py:40 msgid "processing details" msgstr "Detalhes do processamento" -#: payments/models.py:61 +#: engine/payments/models.py:60 #, python-brace-format msgid "" -"transaction amount must fit into " -"{config.PAYMENT_GATEWAY_MINIMUM}-{config.PAYMENT_GATEWAY_MAXIMUM}" +"transaction amount must fit into {config.PAYMENT_GATEWAY_MINIMUM}-{config." +"PAYMENT_GATEWAY_MAXIMUM}" msgstr "" -"O valor da transação deve se enquadrar em " -"{config.PAYMENT_GATEWAY_MINIMUM}-{config.PAYMENT_GATEWAY_MAXIMUM}" +"O valor da transação deve se enquadrar em {config.PAYMENT_GATEWAY_MINIMUM}-" +"{config.PAYMENT_GATEWAY_MAXIMUM}" -#: payments/models.py:84 +#: engine/payments/models.py:83 msgid "balance" msgstr "Equilíbrio" -#: payments/models.py:85 +#: engine/payments/models.py:84 msgid "balances" msgstr "Balanças" -#: payments/models.py:95 +#: engine/payments/models.py:94 msgid "name" msgstr "nome" -#: payments/models.py:100 +#: engine/payments/models.py:99 msgid "default currency" msgstr "moeda padrão" -#: payments/models.py:107 +#: engine/payments/models.py:106 msgid "currencies" msgstr "moedas" -#: payments/models.py:109 +#: engine/payments/models.py:108 msgid "comma separated list of currencies supported by this gateway, " msgstr "lista separada por vírgulas das moedas aceitas por esse gateway," -#: payments/models.py:115 +#: engine/payments/models.py:114 msgid "minimum transaction amount" msgstr "valor mínimo da transação" -#: payments/models.py:118 +#: engine/payments/models.py:117 msgid "maximum transaction amount" msgstr "valor máximo da transação" -#: payments/models.py:124 +#: engine/payments/models.py:123 msgid "daily limit" msgstr "limite diário" -#: payments/models.py:125 +#: engine/payments/models.py:124 msgid "daily sum limit of transactions' amounts. 0 means no limit" msgstr "" "limite de soma diária dos valores das transações. 0 significa que não há " "limite" -#: payments/models.py:131 +#: engine/payments/models.py:130 msgid "monthly limit" msgstr "limite mensal" -#: payments/models.py:132 +#: engine/payments/models.py:131 msgid "monthly sum limit of transactions' amounts. 0 means no limit" msgstr "" "limite de soma mensal dos valores das transações. 0 significa sem limite" -#: payments/models.py:134 +#: engine/payments/models.py:133 msgid "priority" msgstr "prioridade" -#: payments/models.py:135 +#: engine/payments/models.py:134 msgid "integration variables" msgstr "variáveis de integração" -#: payments/models.py:141 +#: engine/payments/models.py:140 msgid "payment gateway" msgstr "gateway de pagamento" -#: payments/models.py:142 +#: engine/payments/models.py:141 msgid "payment gateways" msgstr "gateways de pagamento" -#: payments/models.py:178 +#: engine/payments/models.py:177 msgid "gateway integration path is not set" msgstr "O caminho de integração do gateway não está definido" -#: payments/models.py:183 +#: engine/payments/models.py:182 #, python-format msgid "invalid integration path: %(path)s" msgstr "Caminho de integração inválido: %(path)s" -#: payments/templates/balance_deposit_email.html:6 -#: payments/templates/balance_deposit_email.html:93 +#: engine/payments/templates/balance_deposit_email.html:6 +#: engine/payments/templates/balance_deposit_email.html:93 msgid "balance deposit" msgstr "Depósito de saldo" -#: payments/templates/balance_deposit_email.html:88 +#: engine/payments/templates/balance_deposit_email.html:88 msgid "logo" msgstr "Logotipo" -#: payments/templates/balance_deposit_email.html:94 +#: engine/payments/templates/balance_deposit_email.html:94 #, python-format msgid "hello %(user_first_name)s," msgstr "Olá %(user_first_name)s," -#: payments/templates/balance_deposit_email.html:95 +#: engine/payments/templates/balance_deposit_email.html:95 #, python-format msgid "" "we have successfully credited your account with %(amount)s. your current\n" @@ -169,7 +173,7 @@ msgstr "" "Creditamos sua conta com %(amount)s com sucesso. Seu saldo atual\n" " saldo atual é %(balance)s." -#: payments/templates/balance_deposit_email.html:98 +#: engine/payments/templates/balance_deposit_email.html:98 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" @@ -178,30 +182,30 @@ msgstr "" "Se tiver alguma dúvida, entre em contato com o nosso suporte em\n" " %(contact_email)s." -#: payments/templates/balance_deposit_email.html:100 +#: engine/payments/templates/balance_deposit_email.html:100 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "Atenciosamente,
a equipe %(project_name)s" -#: payments/templates/balance_deposit_email.html:106 +#: engine/payments/templates/balance_deposit_email.html:106 msgid "all rights reserved" msgstr "Todos os direitos reservados" -#: payments/utils/__init__.py:8 +#: engine/payments/utils/__init__.py:8 msgid "a provider to get rates from is required" msgstr "É necessário um provedor para obter as tarifas" -#: payments/utils/__init__.py:15 +#: engine/payments/utils/__init__.py:15 #, python-brace-format msgid "couldn't find provider {provider}" msgstr "Não foi possível encontrar o provedor {provider}" -#: payments/utils/emailing.py:27 +#: engine/payments/utils/emailing.py:27 #, python-brace-format msgid "{config.PROJECT_NAME} | balance deposit" msgstr "{config.PROJECT_NAME} | Depósito de saldo" -#: payments/viewsets.py:13 +#: engine/payments/viewsets.py:14 msgid "" "ViewSet for handling read-only operations on the Transaction model. This " "class provides a read-only interface for interacting with transaction data. " diff --git a/engine/payments/locale/ro_RO/LC_MESSAGES/django.mo b/engine/payments/locale/ro_RO/LC_MESSAGES/django.mo new file mode 100644 index 00000000..1cff5037 Binary files /dev/null and b/engine/payments/locale/ro_RO/LC_MESSAGES/django.mo differ diff --git a/payments/locale/ro_RO/LC_MESSAGES/django.po b/engine/payments/locale/ro_RO/LC_MESSAGES/django.po similarity index 67% rename from payments/locale/ro_RO/LC_MESSAGES/django.po rename to engine/payments/locale/ro_RO/LC_MESSAGES/django.po index 8499eb99..e0ad997f 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,151 +13,155 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: payments/admin.py:17 payments/models.py:65 +#: engine/payments/admin.py:17 engine/payments/models.py:64 msgid "transaction" msgstr "Tranzacție" -#: payments/admin.py:18 payments/models.py:66 +#: engine/payments/admin.py:18 engine/payments/models.py:65 msgid "transactions" msgstr "Tranzacții" -#: payments/admin.py:64 +#: engine/payments/admin.py:64 msgid "can be used" msgstr "Poate fi utilizat" -#: payments/apps.py:8 +#: engine/payments/apps.py:8 msgid "payments" msgstr "Plăți" -#: payments/choices.py:3 +#: engine/payments/choices.py:3 msgid "deposit" msgstr "Depozit" -#: payments/choices.py:3 +#: engine/payments/choices.py:3 msgid "withdraw" msgstr "Retragere" -#: payments/docs/drf/views.py:10 +#: engine/payments/docs/drf/views.py:10 msgid "deposit to balance" msgstr "Depozit la sold" -#: payments/docs/drf/views.py:11 +#: engine/payments/docs/drf/views.py:11 msgid "deposit some money to balance" msgstr "Depuneți niște bani la sold" -#: payments/docs/drf/viewsets.py:10 +#: engine/payments/docs/drf/viewsets.py:11 msgid "list all transactions (read-only)" msgstr "Lista tuturor tranzacțiilor (doar pentru citire)" -#: payments/docs/drf/viewsets.py:14 +#: engine/payments/docs/drf/viewsets.py:15 msgid "retrieve a single transaction (read-only)" msgstr "Recuperează o singură tranzacție (numai citire)" -#: payments/models.py:38 +#: engine/payments/docs/drf/viewsets.py:20 +msgid "Transaction UUID" +msgstr "UUID al tranzacției" + +#: engine/payments/models.py:37 msgid "order to process after paid" msgstr "Ordin de procesare după plată" -#: payments/models.py:41 +#: engine/payments/models.py:40 msgid "processing details" msgstr "Detalii de prelucrare" -#: payments/models.py:61 +#: engine/payments/models.py:60 #, python-brace-format msgid "" -"transaction amount must fit into " -"{config.PAYMENT_GATEWAY_MINIMUM}-{config.PAYMENT_GATEWAY_MAXIMUM}" +"transaction amount must fit into {config.PAYMENT_GATEWAY_MINIMUM}-{config." +"PAYMENT_GATEWAY_MAXIMUM}" msgstr "" -"Valoarea tranzacției trebuie să se încadreze în " -"{config.PAYMENT_GATEWAY_MINIMUM}-{config.PAYMENT_GATEWAY_MAXIMUM}" +"Valoarea tranzacției trebuie să se încadreze în {config." +"PAYMENT_GATEWAY_MINIMUM}-{config.PAYMENT_GATEWAY_MAXIMUM}" -#: payments/models.py:84 +#: engine/payments/models.py:83 msgid "balance" msgstr "Echilibru" -#: payments/models.py:85 +#: engine/payments/models.py:84 msgid "balances" msgstr "Balanță" -#: payments/models.py:95 +#: engine/payments/models.py:94 msgid "name" msgstr "nume" -#: payments/models.py:100 +#: engine/payments/models.py:99 msgid "default currency" msgstr "moneda implicită" -#: payments/models.py:107 +#: engine/payments/models.py:106 msgid "currencies" msgstr "valute" -#: payments/models.py:109 +#: engine/payments/models.py:108 msgid "comma separated list of currencies supported by this gateway, " msgstr "listă separată prin virgulă a valutelor acceptate de acest gateway," -#: payments/models.py:115 +#: engine/payments/models.py:114 msgid "minimum transaction amount" msgstr "valoarea minimă a tranzacției" -#: payments/models.py:118 +#: engine/payments/models.py:117 msgid "maximum transaction amount" msgstr "valoarea maximă a tranzacției" -#: payments/models.py:124 +#: engine/payments/models.py:123 msgid "daily limit" msgstr "limită zilnică" -#: payments/models.py:125 +#: engine/payments/models.py:124 msgid "daily sum limit of transactions' amounts. 0 means no limit" msgstr "suma limită zilnică a sumelor tranzacțiilor. 0 înseamnă nicio limită" -#: payments/models.py:131 +#: engine/payments/models.py:130 msgid "monthly limit" msgstr "limită lunară" -#: payments/models.py:132 +#: engine/payments/models.py:131 msgid "monthly sum limit of transactions' amounts. 0 means no limit" msgstr "limita sumei lunare a sumelor tranzacțiilor. 0 înseamnă nicio limită" -#: payments/models.py:134 +#: engine/payments/models.py:133 msgid "priority" msgstr "prioritate" -#: payments/models.py:135 +#: engine/payments/models.py:134 msgid "integration variables" msgstr "variabile de integrare" -#: payments/models.py:141 +#: engine/payments/models.py:140 msgid "payment gateway" msgstr "gateway de plată" -#: payments/models.py:142 +#: engine/payments/models.py:141 msgid "payment gateways" msgstr "gateway-uri de plată" -#: payments/models.py:178 +#: engine/payments/models.py:177 msgid "gateway integration path is not set" msgstr "calea de integrare a gateway-ului nu este setată" -#: payments/models.py:183 +#: engine/payments/models.py:182 #, python-format msgid "invalid integration path: %(path)s" msgstr "cale de integrare invalidă: %(path)s" -#: payments/templates/balance_deposit_email.html:6 -#: payments/templates/balance_deposit_email.html:93 +#: engine/payments/templates/balance_deposit_email.html:6 +#: engine/payments/templates/balance_deposit_email.html:93 msgid "balance deposit" msgstr "Sold Depozit" -#: payments/templates/balance_deposit_email.html:88 +#: engine/payments/templates/balance_deposit_email.html:88 msgid "logo" msgstr "Logo" -#: payments/templates/balance_deposit_email.html:94 +#: engine/payments/templates/balance_deposit_email.html:94 #, python-format msgid "hello %(user_first_name)s," msgstr "Bună ziua %(user_first_name)s," -#: payments/templates/balance_deposit_email.html:95 +#: engine/payments/templates/balance_deposit_email.html:95 #, python-format msgid "" "we have successfully credited your account with %(amount)s. your current\n" @@ -166,7 +170,7 @@ msgstr "" "Am creditat cu succes contul dvs. cu %(amount)s. Soldul dvs. actual\n" " actual este %(balance)s." -#: payments/templates/balance_deposit_email.html:98 +#: engine/payments/templates/balance_deposit_email.html:98 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" @@ -175,30 +179,30 @@ msgstr "" "Dacă aveți întrebări, nu ezitați să contactați asistența noastră la\n" " %(contact_email)s." -#: payments/templates/balance_deposit_email.html:100 +#: engine/payments/templates/balance_deposit_email.html:100 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "Cele mai bune salutări,
echipa %(project_name)s" -#: payments/templates/balance_deposit_email.html:106 +#: engine/payments/templates/balance_deposit_email.html:106 msgid "all rights reserved" msgstr "Toate drepturile rezervate" -#: payments/utils/__init__.py:8 +#: engine/payments/utils/__init__.py:8 msgid "a provider to get rates from is required" msgstr "Este necesar un furnizor de la care să se obțină tarife" -#: payments/utils/__init__.py:15 +#: engine/payments/utils/__init__.py:15 #, python-brace-format msgid "couldn't find provider {provider}" msgstr "Nu am putut găsi furnizorul {provider}" -#: payments/utils/emailing.py:27 +#: engine/payments/utils/emailing.py:27 #, python-brace-format msgid "{config.PROJECT_NAME} | balance deposit" msgstr "{config.PROJECT_NAME} | Depozit sold" -#: payments/viewsets.py:13 +#: engine/payments/viewsets.py:14 msgid "" "ViewSet for handling read-only operations on the Transaction model. This " "class provides a read-only interface for interacting with transaction data. " diff --git a/engine/payments/locale/ru_RU/LC_MESSAGES/django.mo b/engine/payments/locale/ru_RU/LC_MESSAGES/django.mo new file mode 100644 index 00000000..cb55af6a Binary files /dev/null and b/engine/payments/locale/ru_RU/LC_MESSAGES/django.mo differ diff --git a/payments/locale/ru_RU/LC_MESSAGES/django.po b/engine/payments/locale/ru_RU/LC_MESSAGES/django.po similarity index 68% rename from payments/locale/ru_RU/LC_MESSAGES/django.po rename to engine/payments/locale/ru_RU/LC_MESSAGES/django.po index 90647066..392e160d 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,151 +13,155 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: payments/admin.py:17 payments/models.py:65 +#: engine/payments/admin.py:17 engine/payments/models.py:64 msgid "transaction" msgstr "Транзакция" -#: payments/admin.py:18 payments/models.py:66 +#: engine/payments/admin.py:18 engine/payments/models.py:65 msgid "transactions" msgstr "Транзакции" -#: payments/admin.py:64 +#: engine/payments/admin.py:64 msgid "can be used" msgstr "Можно использовать" -#: payments/apps.py:8 +#: engine/payments/apps.py:8 msgid "payments" msgstr "Платежи" -#: payments/choices.py:3 +#: engine/payments/choices.py:3 msgid "deposit" msgstr "Депозит" -#: payments/choices.py:3 +#: engine/payments/choices.py:3 msgid "withdraw" msgstr "Вывести" -#: payments/docs/drf/views.py:10 +#: engine/payments/docs/drf/views.py:10 msgid "deposit to balance" msgstr "Депозит на баланс" -#: payments/docs/drf/views.py:11 +#: engine/payments/docs/drf/views.py:11 msgid "deposit some money to balance" msgstr "Внесите немного денег на баланс" -#: payments/docs/drf/viewsets.py:10 +#: engine/payments/docs/drf/viewsets.py:11 msgid "list all transactions (read-only)" msgstr "Список всех транзакций (только для чтения)" -#: payments/docs/drf/viewsets.py:14 +#: engine/payments/docs/drf/viewsets.py:15 msgid "retrieve a single transaction (read-only)" msgstr "Получение одной транзакции (только для чтения)" -#: payments/models.py:38 +#: engine/payments/docs/drf/viewsets.py:20 +msgid "Transaction UUID" +msgstr "UUID транзакции" + +#: engine/payments/models.py:37 msgid "order to process after paid" msgstr "Заказ на обработку после оплаты" -#: payments/models.py:41 +#: engine/payments/models.py:40 msgid "processing details" msgstr "Детали обработки" -#: payments/models.py:61 +#: engine/payments/models.py:60 #, python-brace-format msgid "" -"transaction amount must fit into " -"{config.PAYMENT_GATEWAY_MINIMUM}-{config.PAYMENT_GATEWAY_MAXIMUM}" +"transaction amount must fit into {config.PAYMENT_GATEWAY_MINIMUM}-{config." +"PAYMENT_GATEWAY_MAXIMUM}" msgstr "" -"Сумма транзакции должна вписываться в " -"{config.PAYMENT_GATEWAY_MINIMUM}-{config.PAYMENT_GATEWAY_MAXIMUM}" +"Сумма транзакции должна вписываться в {config.PAYMENT_GATEWAY_MINIMUM}-" +"{config.PAYMENT_GATEWAY_MAXIMUM}" -#: payments/models.py:84 +#: engine/payments/models.py:83 msgid "balance" msgstr "Баланс" -#: payments/models.py:85 +#: engine/payments/models.py:84 msgid "balances" msgstr "Балансы" -#: payments/models.py:95 +#: engine/payments/models.py:94 msgid "name" msgstr "имя" -#: payments/models.py:100 +#: engine/payments/models.py:99 msgid "default currency" msgstr "валюта по умолчанию" -#: payments/models.py:107 +#: engine/payments/models.py:106 msgid "currencies" msgstr "валюты" -#: payments/models.py:109 +#: engine/payments/models.py:108 msgid "comma separated list of currencies supported by this gateway, " msgstr "список валют, поддерживаемых данным шлюзом, разделенный запятыми," -#: payments/models.py:115 +#: engine/payments/models.py:114 msgid "minimum transaction amount" msgstr "минимальная сумма транзакции" -#: payments/models.py:118 +#: engine/payments/models.py:117 msgid "maximum transaction amount" msgstr "максимальная сумма транзакции" -#: payments/models.py:124 +#: engine/payments/models.py:123 msgid "daily limit" msgstr "суточный лимит" -#: payments/models.py:125 +#: engine/payments/models.py:124 msgid "daily sum limit of transactions' amounts. 0 means no limit" msgstr "суточный лимит сумм транзакций. 0 означает отсутствие лимита" -#: payments/models.py:131 +#: engine/payments/models.py:130 msgid "monthly limit" msgstr "месячный лимит" -#: payments/models.py:132 +#: engine/payments/models.py:131 msgid "monthly sum limit of transactions' amounts. 0 means no limit" msgstr "месячный лимит сумм транзакций. 0 означает отсутствие лимита" -#: payments/models.py:134 +#: engine/payments/models.py:133 msgid "priority" msgstr "приоритет" -#: payments/models.py:135 +#: engine/payments/models.py:134 msgid "integration variables" msgstr "интеграционные переменные" -#: payments/models.py:141 +#: engine/payments/models.py:140 msgid "payment gateway" msgstr "платёжный шлюз" -#: payments/models.py:142 +#: engine/payments/models.py:141 msgid "payment gateways" msgstr "платёжные шлюзы" -#: payments/models.py:178 +#: engine/payments/models.py:177 msgid "gateway integration path is not set" msgstr "путь интеграции шлюза не установлен" -#: payments/models.py:183 +#: engine/payments/models.py:182 #, python-format msgid "invalid integration path: %(path)s" msgstr "Неверный путь интеграции: %(path)s" -#: payments/templates/balance_deposit_email.html:6 -#: payments/templates/balance_deposit_email.html:93 +#: engine/payments/templates/balance_deposit_email.html:6 +#: engine/payments/templates/balance_deposit_email.html:93 msgid "balance deposit" msgstr "Балансовый депозит" -#: payments/templates/balance_deposit_email.html:88 +#: engine/payments/templates/balance_deposit_email.html:88 msgid "logo" msgstr "Логотип" -#: payments/templates/balance_deposit_email.html:94 +#: engine/payments/templates/balance_deposit_email.html:94 #, python-format msgid "hello %(user_first_name)s," msgstr "Привет %(user_first_name)s," -#: payments/templates/balance_deposit_email.html:95 +#: engine/payments/templates/balance_deposit_email.html:95 #, python-format msgid "" "we have successfully credited your account with %(amount)s. your current\n" @@ -166,7 +170,7 @@ msgstr "" "Мы успешно зачислили на ваш счет %(amount)s. Ваш текущий\n" " баланс составляет %(balance)s." -#: payments/templates/balance_deposit_email.html:98 +#: engine/payments/templates/balance_deposit_email.html:98 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" @@ -175,30 +179,30 @@ msgstr "" "Если у вас возникнут вопросы, обращайтесь в нашу службу поддержки по адресу\n" " %(contact_email)s." -#: payments/templates/balance_deposit_email.html:100 +#: engine/payments/templates/balance_deposit_email.html:100 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "С наилучшими пожеланиями,
команда %(project_name)s" -#: payments/templates/balance_deposit_email.html:106 +#: engine/payments/templates/balance_deposit_email.html:106 msgid "all rights reserved" msgstr "Все права защищены" -#: payments/utils/__init__.py:8 +#: engine/payments/utils/__init__.py:8 msgid "a provider to get rates from is required" msgstr "Требуется поставщик, у которого можно получить тарифы" -#: payments/utils/__init__.py:15 +#: engine/payments/utils/__init__.py:15 #, python-brace-format msgid "couldn't find provider {provider}" msgstr "Не удалось найти провайдера {provider}" -#: payments/utils/emailing.py:27 +#: engine/payments/utils/emailing.py:27 #, python-brace-format msgid "{config.PROJECT_NAME} | balance deposit" msgstr "{config.PROJECT_NAME} | Депозит баланса" -#: payments/viewsets.py:13 +#: engine/payments/viewsets.py:14 msgid "" "ViewSet for handling read-only operations on the Transaction model. This " "class provides a read-only interface for interacting with transaction data. " @@ -206,8 +210,8 @@ msgid "" "data. The class ensures that only authorized users, who meet specific " "permissions, can access the transactions." msgstr "" -"ViewSet для обработки операций с моделью Transaction только для чтения. Этот" -" класс предоставляет интерфейс только для чтения для взаимодействия с " -"данными транзакции. Он использует TransactionSerializer для сериализации и " +"ViewSet для обработки операций с моделью Transaction только для чтения. Этот " +"класс предоставляет интерфейс только для чтения для взаимодействия с данными " +"транзакции. Он использует TransactionSerializer для сериализации и " "десериализации данных. Класс гарантирует, что доступ к транзакциям могут " "получить только авторизованные пользователи с определенными правами." diff --git a/engine/payments/locale/sv_SE/LC_MESSAGES/django.mo b/engine/payments/locale/sv_SE/LC_MESSAGES/django.mo new file mode 100644 index 00000000..42b97e7c Binary files /dev/null and b/engine/payments/locale/sv_SE/LC_MESSAGES/django.mo differ diff --git a/payments/locale/sv_SE/LC_MESSAGES/django.po b/engine/payments/locale/sv_SE/LC_MESSAGES/django.po similarity index 67% rename from payments/locale/sv_SE/LC_MESSAGES/django.po rename to engine/payments/locale/sv_SE/LC_MESSAGES/django.po index 5dc39419..8407f9b2 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,153 +13,157 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: payments/admin.py:17 payments/models.py:65 +#: engine/payments/admin.py:17 engine/payments/models.py:64 msgid "transaction" msgstr "Transaktion" -#: payments/admin.py:18 payments/models.py:66 +#: engine/payments/admin.py:18 engine/payments/models.py:65 msgid "transactions" msgstr "Transaktioner" -#: payments/admin.py:64 +#: engine/payments/admin.py:64 msgid "can be used" msgstr "Kan användas" -#: payments/apps.py:8 +#: engine/payments/apps.py:8 msgid "payments" msgstr "Betalningar" -#: payments/choices.py:3 +#: engine/payments/choices.py:3 msgid "deposit" msgstr "Insättning" -#: payments/choices.py:3 +#: engine/payments/choices.py:3 msgid "withdraw" msgstr "Uttag" -#: payments/docs/drf/views.py:10 +#: engine/payments/docs/drf/views.py:10 msgid "deposit to balance" msgstr "Insättning till saldo" -#: payments/docs/drf/views.py:11 +#: engine/payments/docs/drf/views.py:11 msgid "deposit some money to balance" msgstr "Sätt in pengar på saldot" -#: payments/docs/drf/viewsets.py:10 +#: engine/payments/docs/drf/viewsets.py:11 msgid "list all transactions (read-only)" msgstr "Lista alla transaktioner (skrivskyddad)" -#: payments/docs/drf/viewsets.py:14 +#: engine/payments/docs/drf/viewsets.py:15 msgid "retrieve a single transaction (read-only)" msgstr "Hämta en enskild transaktion (skrivskyddad)" -#: payments/models.py:38 +#: engine/payments/docs/drf/viewsets.py:20 +msgid "Transaction UUID" +msgstr "Transaktionens UUID" + +#: engine/payments/models.py:37 msgid "order to process after paid" msgstr "Order att bearbeta efter betald" -#: payments/models.py:41 +#: engine/payments/models.py:40 msgid "processing details" msgstr "Bearbetning av detaljer" -#: payments/models.py:61 +#: engine/payments/models.py:60 #, python-brace-format msgid "" -"transaction amount must fit into " -"{config.PAYMENT_GATEWAY_MINIMUM}-{config.PAYMENT_GATEWAY_MAXIMUM}" +"transaction amount must fit into {config.PAYMENT_GATEWAY_MINIMUM}-{config." +"PAYMENT_GATEWAY_MAXIMUM}" msgstr "" -"Transaktionsbeloppet måste rymmas inom " -"{config.PAYMENT_GATEWAY_MINIMUM}-{config.PAYMENT_GATEWAY_MAXIMUM}" +"Transaktionsbeloppet måste rymmas inom {config.PAYMENT_GATEWAY_MINIMUM}-" +"{config.PAYMENT_GATEWAY_MAXIMUM}" -#: payments/models.py:84 +#: engine/payments/models.py:83 msgid "balance" msgstr "Balans" -#: payments/models.py:85 +#: engine/payments/models.py:84 msgid "balances" msgstr "Vågskålar" -#: payments/models.py:95 +#: engine/payments/models.py:94 msgid "name" msgstr "namn" -#: payments/models.py:100 +#: engine/payments/models.py:99 msgid "default currency" msgstr "standardvaluta" -#: payments/models.py:107 +#: engine/payments/models.py:106 msgid "currencies" msgstr "valutor" -#: payments/models.py:109 +#: engine/payments/models.py:108 msgid "comma separated list of currencies supported by this gateway, " msgstr "Kommaseparerad lista över valutor som stöds av denna gateway," -#: payments/models.py:115 +#: engine/payments/models.py:114 msgid "minimum transaction amount" msgstr "minsta transaktionsbelopp" -#: payments/models.py:118 +#: engine/payments/models.py:117 msgid "maximum transaction amount" msgstr "högsta transaktionsbelopp" -#: payments/models.py:124 +#: engine/payments/models.py:123 msgid "daily limit" msgstr "daglig gräns" -#: payments/models.py:125 +#: engine/payments/models.py:124 msgid "daily sum limit of transactions' amounts. 0 means no limit" msgstr "" "gräns för daglig summa av transaktionernas belopp. 0 betyder ingen gräns" -#: payments/models.py:131 +#: engine/payments/models.py:130 msgid "monthly limit" msgstr "månadsgräns" -#: payments/models.py:132 +#: engine/payments/models.py:131 msgid "monthly sum limit of transactions' amounts. 0 means no limit" msgstr "" "månadsgräns för summan av transaktionernas belopp. 0 betyder ingen gräns" -#: payments/models.py:134 +#: engine/payments/models.py:133 msgid "priority" msgstr "prioritet" -#: payments/models.py:135 +#: engine/payments/models.py:134 msgid "integration variables" msgstr "integrationsvariabler" -#: payments/models.py:141 +#: engine/payments/models.py:140 msgid "payment gateway" msgstr "Betalningsgateway" -#: payments/models.py:142 +#: engine/payments/models.py:141 msgid "payment gateways" msgstr "Betalningsgateways" -#: payments/models.py:178 +#: engine/payments/models.py:177 msgid "gateway integration path is not set" msgstr "Integrationsvägen för gateway är inte inställd" -#: payments/models.py:183 +#: engine/payments/models.py:182 #, python-format msgid "invalid integration path: %(path)s" msgstr "ogiltig integrationsväg: %(path)s" -#: payments/templates/balance_deposit_email.html:6 -#: payments/templates/balance_deposit_email.html:93 +#: engine/payments/templates/balance_deposit_email.html:6 +#: engine/payments/templates/balance_deposit_email.html:93 msgid "balance deposit" msgstr "Saldo insättning" -#: payments/templates/balance_deposit_email.html:88 +#: engine/payments/templates/balance_deposit_email.html:88 msgid "logo" msgstr "Logotyp" -#: payments/templates/balance_deposit_email.html:94 +#: engine/payments/templates/balance_deposit_email.html:94 #, python-format msgid "hello %(user_first_name)s," msgstr "Hej %(user_first_name)s," -#: payments/templates/balance_deposit_email.html:95 +#: engine/payments/templates/balance_deposit_email.html:95 #, python-format msgid "" "we have successfully credited your account with %(amount)s. your current\n" @@ -168,7 +172,7 @@ msgstr "" "Vi har framgångsrikt krediterat ditt konto med %(amount)s. Ditt nuvarande\n" " saldo är %(balance)s." -#: payments/templates/balance_deposit_email.html:98 +#: engine/payments/templates/balance_deposit_email.html:98 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" @@ -177,30 +181,30 @@ msgstr "" "Om du har några frågor är du välkommen att kontakta vår support på\n" " %(contact_email)s." -#: payments/templates/balance_deposit_email.html:100 +#: engine/payments/templates/balance_deposit_email.html:100 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "Bästa hälsningar,
teamet %(project_name)s" -#: payments/templates/balance_deposit_email.html:106 +#: engine/payments/templates/balance_deposit_email.html:106 msgid "all rights reserved" msgstr "Alla rättigheter förbehållna" -#: payments/utils/__init__.py:8 +#: engine/payments/utils/__init__.py:8 msgid "a provider to get rates from is required" msgstr "En leverantör att få priser från krävs" -#: payments/utils/__init__.py:15 +#: engine/payments/utils/__init__.py:15 #, python-brace-format msgid "couldn't find provider {provider}" msgstr "Kunde inte hitta leverantören {provider}" -#: payments/utils/emailing.py:27 +#: engine/payments/utils/emailing.py:27 #, python-brace-format msgid "{config.PROJECT_NAME} | balance deposit" msgstr "{config.PROJECT_NAME} | Saldo insättning" -#: payments/viewsets.py:13 +#: engine/payments/viewsets.py:14 msgid "" "ViewSet for handling read-only operations on the Transaction model. This " "class provides a read-only interface for interacting with transaction data. " diff --git a/engine/payments/locale/th_TH/LC_MESSAGES/django.mo b/engine/payments/locale/th_TH/LC_MESSAGES/django.mo new file mode 100644 index 00000000..03a1e98a Binary files /dev/null and b/engine/payments/locale/th_TH/LC_MESSAGES/django.mo differ diff --git a/payments/locale/th_TH/LC_MESSAGES/django.po b/engine/payments/locale/th_TH/LC_MESSAGES/django.po similarity index 72% rename from payments/locale/th_TH/LC_MESSAGES/django.po rename to engine/payments/locale/th_TH/LC_MESSAGES/django.po index b35d271b..3665a9d0 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,151 +13,155 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: payments/admin.py:17 payments/models.py:65 +#: engine/payments/admin.py:17 engine/payments/models.py:64 msgid "transaction" msgstr "ธุรกรรม" -#: payments/admin.py:18 payments/models.py:66 +#: engine/payments/admin.py:18 engine/payments/models.py:65 msgid "transactions" msgstr "ธุรกรรม" -#: payments/admin.py:64 +#: engine/payments/admin.py:64 msgid "can be used" msgstr "สามารถใช้ได้" -#: payments/apps.py:8 +#: engine/payments/apps.py:8 msgid "payments" msgstr "การชำระเงิน" -#: payments/choices.py:3 +#: engine/payments/choices.py:3 msgid "deposit" msgstr "เงินฝาก" -#: payments/choices.py:3 +#: engine/payments/choices.py:3 msgid "withdraw" msgstr "ถอน" -#: payments/docs/drf/views.py:10 +#: engine/payments/docs/drf/views.py:10 msgid "deposit to balance" msgstr "ฝากเงินเพื่อปรับยอด" -#: payments/docs/drf/views.py:11 +#: engine/payments/docs/drf/views.py:11 msgid "deposit some money to balance" msgstr "ฝากเงินเพื่อปรับยอด" -#: payments/docs/drf/viewsets.py:10 +#: engine/payments/docs/drf/viewsets.py:11 msgid "list all transactions (read-only)" msgstr "รายการธุรกรรมทั้งหมด (อ่านอย่างเดียว)" -#: payments/docs/drf/viewsets.py:14 +#: engine/payments/docs/drf/viewsets.py:15 msgid "retrieve a single transaction (read-only)" msgstr "ดึงข้อมูลธุรกรรมเดียว (อ่านอย่างเดียว)" -#: payments/models.py:38 +#: engine/payments/docs/drf/viewsets.py:20 +msgid "Transaction UUID" +msgstr "รหัส UUID ของธุรกรรม" + +#: engine/payments/models.py:37 msgid "order to process after paid" msgstr "คำสั่งซื้อเพื่อดำเนินการหลังจากชำระเงินแล้ว" -#: payments/models.py:41 +#: engine/payments/models.py:40 msgid "processing details" msgstr "รายละเอียดการประมวลผล" -#: payments/models.py:61 +#: engine/payments/models.py:60 #, python-brace-format msgid "" -"transaction amount must fit into " -"{config.PAYMENT_GATEWAY_MINIMUM}-{config.PAYMENT_GATEWAY_MAXIMUM}" +"transaction amount must fit into {config.PAYMENT_GATEWAY_MINIMUM}-{config." +"PAYMENT_GATEWAY_MAXIMUM}" msgstr "" -"จำนวนเงินต้องอยู่ในช่วง " -"{config.PAYMENT_GATEWAY_MINIMUM}-{config.PAYMENT_GATEWAY_MAXIMUM}" +"จำนวนเงินต้องอยู่ในช่วง {config.PAYMENT_GATEWAY_MINIMUM}-{config." +"PAYMENT_GATEWAY_MAXIMUM}" -#: payments/models.py:84 +#: engine/payments/models.py:83 msgid "balance" msgstr "สมดุล" -#: payments/models.py:85 +#: engine/payments/models.py:84 msgid "balances" msgstr "สเกล" -#: payments/models.py:95 +#: engine/payments/models.py:94 msgid "name" msgstr "ชื่อ" -#: payments/models.py:100 +#: engine/payments/models.py:99 msgid "default currency" msgstr "สกุลเงินเริ่มต้น" -#: payments/models.py:107 +#: engine/payments/models.py:106 msgid "currencies" msgstr "สกุลเงิน" -#: payments/models.py:109 +#: engine/payments/models.py:108 msgid "comma separated list of currencies supported by this gateway, " msgstr "รายการสกุลเงินที่รองรับโดยเกตเวย์นี้ แยกด้วยเครื่องหมายจุลภาค" -#: payments/models.py:115 +#: engine/payments/models.py:114 msgid "minimum transaction amount" msgstr "จำนวนเงินการทำรายการขั้นต่ำ" -#: payments/models.py:118 +#: engine/payments/models.py:117 msgid "maximum transaction amount" msgstr "จำนวนเงินสูงสุดต่อรายการ" -#: payments/models.py:124 +#: engine/payments/models.py:123 msgid "daily limit" msgstr "ขีดจำกัดรายวัน" -#: payments/models.py:125 +#: engine/payments/models.py:124 msgid "daily sum limit of transactions' amounts. 0 means no limit" msgstr "ขีดจำกัดยอดรวมต่อวันของจำนวนเงินธุรกรรม 0 หมายถึงไม่มีขีดจำกัด" -#: payments/models.py:131 +#: engine/payments/models.py:130 msgid "monthly limit" msgstr "วงเงินรายเดือน" -#: payments/models.py:132 +#: engine/payments/models.py:131 msgid "monthly sum limit of transactions' amounts. 0 means no limit" msgstr "วงเงินรวมรายเดือนของจำนวนธุรกรรม 0 หมายถึงไม่มีขีดจำกัด" -#: payments/models.py:134 +#: engine/payments/models.py:133 msgid "priority" msgstr "ลำดับความสำคัญ" -#: payments/models.py:135 +#: engine/payments/models.py:134 msgid "integration variables" msgstr "ตัวแปรการรวม" -#: payments/models.py:141 +#: engine/payments/models.py:140 msgid "payment gateway" msgstr "เกตเวย์การชำระเงิน" -#: payments/models.py:142 +#: engine/payments/models.py:141 msgid "payment gateways" msgstr "เกตเวย์การชำระเงิน" -#: payments/models.py:178 +#: engine/payments/models.py:177 msgid "gateway integration path is not set" msgstr "ไม่ได้ตั้งค่าเส้นทางการรวมเกตเวย์" -#: payments/models.py:183 +#: engine/payments/models.py:182 #, python-format msgid "invalid integration path: %(path)s" msgstr "เส้นทางบูรณาการไม่ถูกต้อง: %(path)s" -#: payments/templates/balance_deposit_email.html:6 -#: payments/templates/balance_deposit_email.html:93 +#: engine/payments/templates/balance_deposit_email.html:6 +#: engine/payments/templates/balance_deposit_email.html:93 msgid "balance deposit" msgstr "เงินฝากสมดุล" -#: payments/templates/balance_deposit_email.html:88 +#: engine/payments/templates/balance_deposit_email.html:88 msgid "logo" msgstr "โลโก้" -#: payments/templates/balance_deposit_email.html:94 +#: engine/payments/templates/balance_deposit_email.html:94 #, python-format msgid "hello %(user_first_name)s," msgstr "สวัสดีครับ/ค่ะ %(user_first_name)s," -#: payments/templates/balance_deposit_email.html:95 +#: engine/payments/templates/balance_deposit_email.html:95 #, python-format msgid "" "we have successfully credited your account with %(amount)s. your current\n" @@ -166,37 +170,37 @@ msgstr "" "เราได้ทำการเครดิตเงินเข้าบัญชีของคุณเรียบร้อยแล้วเป็นจำนวน %(amount)s " "ยอดเงินคงเหลือปัจจุบันของคุณคือ %(balance)s" -#: payments/templates/balance_deposit_email.html:98 +#: engine/payments/templates/balance_deposit_email.html:98 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" " %(contact_email)s." msgstr "หากคุณมีคำถามใด ๆ โปรดติดต่อทีมสนับสนุนของเราได้ที่ %(contact_email)s" -#: payments/templates/balance_deposit_email.html:100 +#: engine/payments/templates/balance_deposit_email.html:100 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "ขอแสดงความนับถือ
ทีมงาน %(project_name)s" -#: payments/templates/balance_deposit_email.html:106 +#: engine/payments/templates/balance_deposit_email.html:106 msgid "all rights reserved" msgstr "สงวนลิขสิทธิ์" -#: payments/utils/__init__.py:8 +#: engine/payments/utils/__init__.py:8 msgid "a provider to get rates from is required" msgstr "จำเป็นต้องมีผู้ให้บริการเพื่อรับอัตราค่าบริการ" -#: payments/utils/__init__.py:15 +#: engine/payments/utils/__init__.py:15 #, python-brace-format msgid "couldn't find provider {provider}" msgstr "ไม่พบผู้ให้บริการ {provider}" -#: payments/utils/emailing.py:27 +#: engine/payments/utils/emailing.py:27 #, python-brace-format msgid "{config.PROJECT_NAME} | balance deposit" msgstr "{config.PROJECT_NAME} | ยอดเงินฝากคงเหลือ" -#: payments/viewsets.py:13 +#: engine/payments/viewsets.py:14 msgid "" "ViewSet for handling read-only operations on the Transaction model. This " "class provides a read-only interface for interacting with transaction data. " @@ -205,7 +209,6 @@ msgid "" "permissions, can access the transactions." msgstr "" "ViewSet สำหรับการจัดการการดำเนินการแบบอ่านอย่างเดียวบนโมเดล Transaction " -"คลาสนี้ให้อินเทอร์เฟซแบบอ่านอย่างเดียวสำหรับการโต้ตอบกับข้อมูลธุรกรรม โดยใช้" -" TransactionSerializer สำหรับการแปลงข้อมูลเป็นลำดับและถอดลำดับข้อมูล " -"คลาสนี้รับรองว่ามีเพียงผู้ใช้ที่ได้รับอนุญาตเท่านั้น ซึ่งตรงตามสิทธิ์เฉพาะ " -"สามารถเข้าถึงธุรกรรมได้" +"คลาสนี้ให้อินเทอร์เฟซแบบอ่านอย่างเดียวสำหรับการโต้ตอบกับข้อมูลธุรกรรม โดยใช้ " +"TransactionSerializer สำหรับการแปลงข้อมูลเป็นลำดับและถอดลำดับข้อมูล " +"คลาสนี้รับรองว่ามีเพียงผู้ใช้ที่ได้รับอนุญาตเท่านั้น ซึ่งตรงตามสิทธิ์เฉพาะ สามารถเข้าถึงธุรกรรมได้" diff --git a/engine/payments/locale/tr_TR/LC_MESSAGES/django.mo b/engine/payments/locale/tr_TR/LC_MESSAGES/django.mo new file mode 100644 index 00000000..d532c4d1 Binary files /dev/null and b/engine/payments/locale/tr_TR/LC_MESSAGES/django.mo differ diff --git a/payments/locale/tr_TR/LC_MESSAGES/django.po b/engine/payments/locale/tr_TR/LC_MESSAGES/django.po similarity index 67% rename from payments/locale/tr_TR/LC_MESSAGES/django.po rename to engine/payments/locale/tr_TR/LC_MESSAGES/django.po index fa94cd1f..5ccfd932 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,154 +13,157 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: payments/admin.py:17 payments/models.py:65 +#: engine/payments/admin.py:17 engine/payments/models.py:64 msgid "transaction" msgstr "İşlem" -#: payments/admin.py:18 payments/models.py:66 +#: engine/payments/admin.py:18 engine/payments/models.py:65 msgid "transactions" msgstr "İşlemler" -#: payments/admin.py:64 +#: engine/payments/admin.py:64 msgid "can be used" msgstr "Kullanılabilir" -#: payments/apps.py:8 +#: engine/payments/apps.py:8 msgid "payments" msgstr "Ödemeler" -#: payments/choices.py:3 +#: engine/payments/choices.py:3 msgid "deposit" msgstr "Depozito" -#: payments/choices.py:3 +#: engine/payments/choices.py:3 msgid "withdraw" msgstr "Geri Çekilme" -#: payments/docs/drf/views.py:10 +#: engine/payments/docs/drf/views.py:10 msgid "deposit to balance" msgstr "Bakiyeye yatırma" -#: payments/docs/drf/views.py:11 +#: engine/payments/docs/drf/views.py:11 msgid "deposit some money to balance" msgstr "Bakiye için biraz para yatırın" -#: payments/docs/drf/viewsets.py:10 +#: engine/payments/docs/drf/viewsets.py:11 msgid "list all transactions (read-only)" msgstr "Tüm işlemleri listele (salt okunur)" -#: payments/docs/drf/viewsets.py:14 +#: engine/payments/docs/drf/viewsets.py:15 msgid "retrieve a single transaction (read-only)" msgstr "Tek bir işlemi alma (salt okunur)" -#: payments/models.py:38 +#: engine/payments/docs/drf/viewsets.py:20 +msgid "Transaction UUID" +msgstr "İşlem UUID'si" + +#: engine/payments/models.py:37 msgid "order to process after paid" msgstr "Ödeme yapıldıktan sonra işleme alınacak sipariş" -#: payments/models.py:41 +#: engine/payments/models.py:40 msgid "processing details" msgstr "İşleme ayrıntıları" -#: payments/models.py:61 +#: engine/payments/models.py:60 #, python-brace-format msgid "" -"transaction amount must fit into " -"{config.PAYMENT_GATEWAY_MINIMUM}-{config.PAYMENT_GATEWAY_MAXIMUM}" +"transaction amount must fit into {config.PAYMENT_GATEWAY_MINIMUM}-{config." +"PAYMENT_GATEWAY_MAXIMUM}" msgstr "" -"İşlem tutarı " -"{config.PAYMENT_GATEWAY_MINIMUM}-{config.PAYMENT_GATEWAY_MAXIMUM} içine " -"sığmalıdır" +"İşlem tutarı {config.PAYMENT_GATEWAY_MINIMUM}-{config." +"PAYMENT_GATEWAY_MAXIMUM} içine sığmalıdır" -#: payments/models.py:84 +#: engine/payments/models.py:83 msgid "balance" msgstr "Denge" -#: payments/models.py:85 +#: engine/payments/models.py:84 msgid "balances" msgstr "Terazi" -#: payments/models.py:95 +#: engine/payments/models.py:94 msgid "name" msgstr "isim" -#: payments/models.py:100 +#: engine/payments/models.py:99 msgid "default currency" msgstr "varsayılan para birimi" -#: payments/models.py:107 +#: engine/payments/models.py:106 msgid "currencies" msgstr "para birimleri" -#: payments/models.py:109 +#: engine/payments/models.py:108 msgid "comma separated list of currencies supported by this gateway, " msgstr "" "Bu ağ geçidi tarafından desteklenen para birimlerinin virgülle ayrılmış " "listesi," -#: payments/models.py:115 +#: engine/payments/models.py:114 msgid "minimum transaction amount" msgstr "minimum işlem tutarı" -#: payments/models.py:118 +#: engine/payments/models.py:117 msgid "maximum transaction amount" msgstr "maksimum işlem tutarı" -#: payments/models.py:124 +#: engine/payments/models.py:123 msgid "daily limit" msgstr "günlük limit" -#: payments/models.py:125 +#: engine/payments/models.py:124 msgid "daily sum limit of transactions' amounts. 0 means no limit" msgstr "işlem tutarlarının günlük toplam limiti. 0 limit yok anlamına gelir" -#: payments/models.py:131 +#: engine/payments/models.py:130 msgid "monthly limit" msgstr "aylık limit" -#: payments/models.py:132 +#: engine/payments/models.py:131 msgid "monthly sum limit of transactions' amounts. 0 means no limit" msgstr "işlem tutarlarının aylık toplam limiti. 0 limit yok anlamına gelir" -#: payments/models.py:134 +#: engine/payments/models.py:133 msgid "priority" msgstr "öncelik" -#: payments/models.py:135 +#: engine/payments/models.py:134 msgid "integration variables" msgstr "entegrasyon değişkenleri" -#: payments/models.py:141 +#: engine/payments/models.py:140 msgid "payment gateway" msgstr "ödeme ağ geçidi" -#: payments/models.py:142 +#: engine/payments/models.py:141 msgid "payment gateways" msgstr "ödeme ağ geçitleri" -#: payments/models.py:178 +#: engine/payments/models.py:177 msgid "gateway integration path is not set" msgstr "ağ geçidi entegrasyon yolu ayarlanmamış" -#: payments/models.py:183 +#: engine/payments/models.py:182 #, python-format msgid "invalid integration path: %(path)s" msgstr "geçersiz entegrasyon yolu: %(path)s" -#: payments/templates/balance_deposit_email.html:6 -#: payments/templates/balance_deposit_email.html:93 +#: engine/payments/templates/balance_deposit_email.html:6 +#: engine/payments/templates/balance_deposit_email.html:93 msgid "balance deposit" msgstr "Bakiye Yatırma" -#: payments/templates/balance_deposit_email.html:88 +#: engine/payments/templates/balance_deposit_email.html:88 msgid "logo" msgstr "Logo" -#: payments/templates/balance_deposit_email.html:94 +#: engine/payments/templates/balance_deposit_email.html:94 #, python-format msgid "hello %(user_first_name)s," msgstr "Merhaba %(user_first_name)s," -#: payments/templates/balance_deposit_email.html:95 +#: engine/payments/templates/balance_deposit_email.html:95 #, python-format msgid "" "we have successfully credited your account with %(amount)s. your current\n" @@ -169,39 +172,40 @@ msgstr "" "Hesabınıza başarılı bir şekilde %(amount)s yatırdık. Şu anki\n" " denge %(balance)s." -#: payments/templates/balance_deposit_email.html:98 +#: engine/payments/templates/balance_deposit_email.html:98 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" " %(contact_email)s." msgstr "" -"Herhangi bir sorunuz varsa, destek ekibimizle iletişime geçmekten çekinmeyin\n" +"Herhangi bir sorunuz varsa, destek ekibimizle iletişime geçmekten " +"çekinmeyin\n" " %(contact_email)s." -#: payments/templates/balance_deposit_email.html:100 +#: engine/payments/templates/balance_deposit_email.html:100 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "Saygılarımla,
the %(project_name)s team" -#: payments/templates/balance_deposit_email.html:106 +#: engine/payments/templates/balance_deposit_email.html:106 msgid "all rights reserved" msgstr "Tüm hakları saklıdır" -#: payments/utils/__init__.py:8 +#: engine/payments/utils/__init__.py:8 msgid "a provider to get rates from is required" msgstr "Fiyat almak için bir sağlayıcı gereklidir" -#: payments/utils/__init__.py:15 +#: engine/payments/utils/__init__.py:15 #, python-brace-format msgid "couldn't find provider {provider}" msgstr "Sağlayıcı bulunamadı {provider}" -#: payments/utils/emailing.py:27 +#: engine/payments/utils/emailing.py:27 #, python-brace-format msgid "{config.PROJECT_NAME} | balance deposit" msgstr "{config.PROJECT_NAME} | Bakiye Yatırma" -#: payments/viewsets.py:13 +#: engine/payments/viewsets.py:14 msgid "" "ViewSet for handling read-only operations on the Transaction model. This " "class provides a read-only interface for interacting with transaction data. " diff --git a/engine/payments/locale/vi_VN/LC_MESSAGES/django.mo b/engine/payments/locale/vi_VN/LC_MESSAGES/django.mo new file mode 100644 index 00000000..9957f8de Binary files /dev/null and b/engine/payments/locale/vi_VN/LC_MESSAGES/django.mo differ diff --git a/payments/locale/vi_VN/LC_MESSAGES/django.po b/engine/payments/locale/vi_VN/LC_MESSAGES/django.po similarity index 68% rename from payments/locale/vi_VN/LC_MESSAGES/django.po rename to engine/payments/locale/vi_VN/LC_MESSAGES/django.po index def4a918..2cb573e7 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,155 +13,159 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: payments/admin.py:17 payments/models.py:65 +#: engine/payments/admin.py:17 engine/payments/models.py:64 msgid "transaction" msgstr "Giao dịch" -#: payments/admin.py:18 payments/models.py:66 +#: engine/payments/admin.py:18 engine/payments/models.py:65 msgid "transactions" msgstr "Giao dịch" -#: payments/admin.py:64 +#: engine/payments/admin.py:64 msgid "can be used" msgstr "Có thể sử dụng" -#: payments/apps.py:8 +#: engine/payments/apps.py:8 msgid "payments" msgstr "Thanh toán" -#: payments/choices.py:3 +#: engine/payments/choices.py:3 msgid "deposit" msgstr "Tiền gửi" -#: payments/choices.py:3 +#: engine/payments/choices.py:3 msgid "withdraw" msgstr "Rút tiền" -#: payments/docs/drf/views.py:10 +#: engine/payments/docs/drf/views.py:10 msgid "deposit to balance" msgstr "Gửi tiền vào tài khoản" -#: payments/docs/drf/views.py:11 +#: engine/payments/docs/drf/views.py:11 msgid "deposit some money to balance" msgstr "Gửi một số tiền để cân bằng." -#: payments/docs/drf/viewsets.py:10 +#: engine/payments/docs/drf/viewsets.py:11 msgid "list all transactions (read-only)" msgstr "Danh sách tất cả các giao dịch (chỉ đọc)" -#: payments/docs/drf/viewsets.py:14 +#: engine/payments/docs/drf/viewsets.py:15 msgid "retrieve a single transaction (read-only)" msgstr "Lấy một giao dịch duy nhất (chỉ đọc)" -#: payments/models.py:38 +#: engine/payments/docs/drf/viewsets.py:20 +msgid "Transaction UUID" +msgstr "Mã giao dịch UUID" + +#: engine/payments/models.py:37 msgid "order to process after paid" msgstr "Đơn hàng sẽ được xử lý sau khi thanh toán." -#: payments/models.py:41 +#: engine/payments/models.py:40 msgid "processing details" msgstr "Chi tiết xử lý" -#: payments/models.py:61 +#: engine/payments/models.py:60 #, python-brace-format msgid "" -"transaction amount must fit into " -"{config.PAYMENT_GATEWAY_MINIMUM}-{config.PAYMENT_GATEWAY_MAXIMUM}" +"transaction amount must fit into {config.PAYMENT_GATEWAY_MINIMUM}-{config." +"PAYMENT_GATEWAY_MAXIMUM}" msgstr "" -"Số tiền giao dịch phải nằm trong khoảng " -"{config.PAYMENT_GATEWAY_MINIMUM}-{config.PAYMENT_GATEWAY_MAXIMUM}" +"Số tiền giao dịch phải nằm trong khoảng {config.PAYMENT_GATEWAY_MINIMUM}-" +"{config.PAYMENT_GATEWAY_MAXIMUM}" -#: payments/models.py:84 +#: engine/payments/models.py:83 msgid "balance" msgstr "Cân bằng" -#: payments/models.py:85 +#: engine/payments/models.py:84 msgid "balances" msgstr "Cân" -#: payments/models.py:95 +#: engine/payments/models.py:94 msgid "name" msgstr "tên" -#: payments/models.py:100 +#: engine/payments/models.py:99 msgid "default currency" msgstr "Tiền tệ mặc định" -#: payments/models.py:107 +#: engine/payments/models.py:106 msgid "currencies" msgstr "tiền tệ" -#: payments/models.py:109 +#: engine/payments/models.py:108 msgid "comma separated list of currencies supported by this gateway, " msgstr "" "Danh sách các loại tiền tệ được hỗ trợ bởi cổng thanh toán này, được phân " "tách bằng dấu phẩy," -#: payments/models.py:115 +#: engine/payments/models.py:114 msgid "minimum transaction amount" msgstr "Số tiền giao dịch tối thiểu" -#: payments/models.py:118 +#: engine/payments/models.py:117 msgid "maximum transaction amount" msgstr "Số tiền giao dịch tối đa" -#: payments/models.py:124 +#: engine/payments/models.py:123 msgid "daily limit" msgstr "giới hạn hàng ngày" -#: payments/models.py:125 +#: engine/payments/models.py:124 msgid "daily sum limit of transactions' amounts. 0 means no limit" msgstr "" "Giới hạn tổng số tiền giao dịch hàng ngày. 0 có nghĩa là không có giới hạn." -#: payments/models.py:131 +#: engine/payments/models.py:130 msgid "monthly limit" msgstr "giới hạn hàng tháng" -#: payments/models.py:132 +#: engine/payments/models.py:131 msgid "monthly sum limit of transactions' amounts. 0 means no limit" msgstr "" "Giới hạn tổng số tiền giao dịch hàng tháng. 0 có nghĩa là không có giới hạn." -#: payments/models.py:134 +#: engine/payments/models.py:133 msgid "priority" msgstr "ưu tiên" -#: payments/models.py:135 +#: engine/payments/models.py:134 msgid "integration variables" msgstr "biến tích phân" -#: payments/models.py:141 +#: engine/payments/models.py:140 msgid "payment gateway" msgstr "cổng thanh toán" -#: payments/models.py:142 +#: engine/payments/models.py:141 msgid "payment gateways" msgstr "Cổng thanh toán" -#: payments/models.py:178 +#: engine/payments/models.py:177 msgid "gateway integration path is not set" msgstr "Đường dẫn tích hợp cổng không được thiết lập." -#: payments/models.py:183 +#: engine/payments/models.py:182 #, python-format msgid "invalid integration path: %(path)s" msgstr "Đường dẫn tích hợp không hợp lệ: %(path)s" -#: payments/templates/balance_deposit_email.html:6 -#: payments/templates/balance_deposit_email.html:93 +#: engine/payments/templates/balance_deposit_email.html:6 +#: engine/payments/templates/balance_deposit_email.html:93 msgid "balance deposit" msgstr "Số dư tiền gửi" -#: payments/templates/balance_deposit_email.html:88 +#: engine/payments/templates/balance_deposit_email.html:88 msgid "logo" msgstr "Biểu trưng" -#: payments/templates/balance_deposit_email.html:94 +#: engine/payments/templates/balance_deposit_email.html:94 #, python-format msgid "hello %(user_first_name)s," msgstr "Xin chào %(user_first_name)s," -#: payments/templates/balance_deposit_email.html:95 +#: engine/payments/templates/balance_deposit_email.html:95 #, python-format msgid "" "we have successfully credited your account with %(amount)s. your current\n" @@ -170,39 +174,39 @@ msgstr "" "Chúng tôi đã thành công trong việc nạp tiền vào tài khoản của bạn với số " "tiền %(amount)s. Số dư hiện tại của bạn là %(balance)s." -#: payments/templates/balance_deposit_email.html:98 +#: engine/payments/templates/balance_deposit_email.html:98 #, python-format 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." -#: payments/templates/balance_deposit_email.html:100 +#: engine/payments/templates/balance_deposit_email.html:100 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "Trân trọng,
Đội ngũ %(project_name)s" -#: payments/templates/balance_deposit_email.html:106 +#: engine/payments/templates/balance_deposit_email.html:106 msgid "all rights reserved" msgstr "Tất cả các quyền được bảo lưu." -#: payments/utils/__init__.py:8 +#: engine/payments/utils/__init__.py:8 msgid "a provider to get rates from is required" msgstr "Cần có nhà cung cấp để lấy báo giá." -#: payments/utils/__init__.py:15 +#: engine/payments/utils/__init__.py:15 #, python-brace-format msgid "couldn't find provider {provider}" msgstr "Không thể tìm thấy nhà cung cấp {provider}" -#: payments/utils/emailing.py:27 +#: engine/payments/utils/emailing.py:27 #, python-brace-format msgid "{config.PROJECT_NAME} | balance deposit" msgstr "{config.PROJECT_NAME} | Số dư tiền gửi" -#: payments/viewsets.py:13 +#: engine/payments/viewsets.py:14 msgid "" "ViewSet for handling read-only operations on the Transaction model. This " "class provides a read-only interface for interacting with transaction data. " diff --git a/engine/payments/locale/zh_Hans/LC_MESSAGES/django.mo b/engine/payments/locale/zh_Hans/LC_MESSAGES/django.mo new file mode 100644 index 00000000..639c5477 Binary files /dev/null and b/engine/payments/locale/zh_Hans/LC_MESSAGES/django.mo differ diff --git a/payments/locale/zh_Hans/LC_MESSAGES/django.po b/engine/payments/locale/zh_Hans/LC_MESSAGES/django.po similarity index 63% rename from payments/locale/zh_Hans/LC_MESSAGES/django.po rename to engine/payments/locale/zh_Hans/LC_MESSAGES/django.po index add00a38..b648ddb6 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,151 +13,155 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: payments/admin.py:17 payments/models.py:65 +#: engine/payments/admin.py:17 engine/payments/models.py:64 msgid "transaction" msgstr "交易" -#: payments/admin.py:18 payments/models.py:66 +#: engine/payments/admin.py:18 engine/payments/models.py:65 msgid "transactions" msgstr "交易" -#: payments/admin.py:64 +#: engine/payments/admin.py:64 msgid "can be used" msgstr "可以使用" -#: payments/apps.py:8 +#: engine/payments/apps.py:8 msgid "payments" msgstr "付款" -#: payments/choices.py:3 +#: engine/payments/choices.py:3 msgid "deposit" msgstr "存款" -#: payments/choices.py:3 +#: engine/payments/choices.py:3 msgid "withdraw" msgstr "退出" -#: payments/docs/drf/views.py:10 +#: engine/payments/docs/drf/views.py:10 msgid "deposit to balance" msgstr "余额存款" -#: payments/docs/drf/views.py:11 +#: engine/payments/docs/drf/views.py:11 msgid "deposit some money to balance" msgstr "为余额存入一些钱" -#: payments/docs/drf/viewsets.py:10 +#: engine/payments/docs/drf/viewsets.py:11 msgid "list all transactions (read-only)" msgstr "列出所有交易(只读)" -#: payments/docs/drf/viewsets.py:14 +#: engine/payments/docs/drf/viewsets.py:15 msgid "retrieve a single transaction (read-only)" msgstr "检索单个事务(只读)" -#: payments/models.py:38 +#: engine/payments/docs/drf/viewsets.py:20 +msgid "Transaction UUID" +msgstr "事务 UUID" + +#: engine/payments/models.py:37 msgid "order to process after paid" msgstr "付款后处理订单" -#: payments/models.py:41 +#: engine/payments/models.py:40 msgid "processing details" msgstr "处理细节" -#: payments/models.py:61 +#: engine/payments/models.py:60 #, python-brace-format msgid "" -"transaction amount must fit into " -"{config.PAYMENT_GATEWAY_MINIMUM}-{config.PAYMENT_GATEWAY_MAXIMUM}" +"transaction amount must fit into {config.PAYMENT_GATEWAY_MINIMUM}-{config." +"PAYMENT_GATEWAY_MAXIMUM}" msgstr "" -"交易金额必须符合 {config.PAYMENT_GATEWAY_MINIMUM}-{config.PAYMENT_GATEWAY_MAXIMUM} " -"的规定。" +"交易金额必须符合 {config.PAYMENT_GATEWAY_MINIMUM}-{config." +"PAYMENT_GATEWAY_MAXIMUM} 的规定。" -#: payments/models.py:84 +#: engine/payments/models.py:83 msgid "balance" msgstr "平衡" -#: payments/models.py:85 +#: engine/payments/models.py:84 msgid "balances" msgstr "天平" -#: payments/models.py:95 +#: engine/payments/models.py:94 msgid "name" msgstr "名字" -#: payments/models.py:100 +#: engine/payments/models.py:99 msgid "default currency" msgstr "默认货币" -#: payments/models.py:107 +#: engine/payments/models.py:106 msgid "currencies" msgstr "货币" -#: payments/models.py:109 +#: engine/payments/models.py:108 msgid "comma separated list of currencies supported by this gateway, " msgstr "以逗号分隔的该网关支持的货币列表、" -#: payments/models.py:115 +#: engine/payments/models.py:114 msgid "minimum transaction amount" msgstr "最低交易额" -#: payments/models.py:118 +#: engine/payments/models.py:117 msgid "maximum transaction amount" msgstr "最高交易额" -#: payments/models.py:124 +#: engine/payments/models.py:123 msgid "daily limit" msgstr "每日限额" -#: payments/models.py:125 +#: engine/payments/models.py:124 msgid "daily sum limit of transactions' amounts. 0 means no limit" msgstr "交易金额的每日总限额。0 表示无限额" -#: payments/models.py:131 +#: engine/payments/models.py:130 msgid "monthly limit" msgstr "月限额" -#: payments/models.py:132 +#: engine/payments/models.py:131 msgid "monthly sum limit of transactions' amounts. 0 means no limit" msgstr "交易金额的月限额。0 表示无限额" -#: payments/models.py:134 +#: engine/payments/models.py:133 msgid "priority" msgstr "优先权" -#: payments/models.py:135 +#: engine/payments/models.py:134 msgid "integration variables" msgstr "整合变量" -#: payments/models.py:141 +#: engine/payments/models.py:140 msgid "payment gateway" msgstr "支付网关" -#: payments/models.py:142 +#: engine/payments/models.py:141 msgid "payment gateways" msgstr "支付网关" -#: payments/models.py:178 +#: engine/payments/models.py:177 msgid "gateway integration path is not set" msgstr "网关集成路径未设置" -#: payments/models.py:183 +#: engine/payments/models.py:182 #, python-format msgid "invalid integration path: %(path)s" msgstr "集成路径无效:%(path)s" -#: payments/templates/balance_deposit_email.html:6 -#: payments/templates/balance_deposit_email.html:93 +#: engine/payments/templates/balance_deposit_email.html:6 +#: engine/payments/templates/balance_deposit_email.html:93 msgid "balance deposit" msgstr "余额存款" -#: payments/templates/balance_deposit_email.html:88 +#: engine/payments/templates/balance_deposit_email.html:88 msgid "logo" msgstr "标志" -#: payments/templates/balance_deposit_email.html:94 +#: engine/payments/templates/balance_deposit_email.html:94 #, python-format msgid "hello %(user_first_name)s," msgstr "你好%(user_first_name)s_、" -#: payments/templates/balance_deposit_email.html:95 +#: engine/payments/templates/balance_deposit_email.html:95 #, python-format msgid "" "we have successfully credited your account with %(amount)s. your current\n" @@ -166,7 +170,7 @@ msgstr "" "我们已成功地将 %(amount)s_记入您的账户。您目前的\n" " 余额为%(balance)s_。" -#: payments/templates/balance_deposit_email.html:98 +#: engine/payments/templates/balance_deposit_email.html:98 #, python-format msgid "" "if you have any questions, feel free to contact our support at\n" @@ -175,30 +179,30 @@ msgstr "" "如果您有任何问题,请随时通过以下方式联系我们的支持人员\n" " %(contact_email)s." -#: payments/templates/balance_deposit_email.html:100 +#: engine/payments/templates/balance_deposit_email.html:100 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "致以最诚挚的问候,
%(project_name)s_团队" -#: payments/templates/balance_deposit_email.html:106 +#: engine/payments/templates/balance_deposit_email.html:106 msgid "all rights reserved" msgstr "保留所有权利" -#: payments/utils/__init__.py:8 +#: engine/payments/utils/__init__.py:8 msgid "a provider to get rates from is required" msgstr "需要提供商提供费率" -#: payments/utils/__init__.py:15 +#: engine/payments/utils/__init__.py:15 #, python-brace-format msgid "couldn't find provider {provider}" msgstr "找不到提供商 {provider}" -#: payments/utils/emailing.py:27 +#: engine/payments/utils/emailing.py:27 #, python-brace-format msgid "{config.PROJECT_NAME} | balance deposit" msgstr "{config.PROJECT_NAME}| 余额存款" -#: payments/viewsets.py:13 +#: engine/payments/viewsets.py:14 msgid "" "ViewSet for handling read-only operations on the Transaction model. This " "class provides a read-only interface for interacting with transaction data. " @@ -206,5 +210,6 @@ msgid "" "data. The class ensures that only authorized users, who meet specific " "permissions, can access the transactions." msgstr "" -"ViewSet 用于处理对事务模型的只读操作。该类提供了与事务数据交互的只读接口。它使用 TransactionSerializer " -"对数据进行序列化和反序列化。该类确保只有符合特定权限的授权用户才能访问事务。" +"ViewSet 用于处理对事务模型的只读操作。该类提供了与事务数据交互的只读接口。它" +"使用 TransactionSerializer 对数据进行序列化和反序列化。该类确保只有符合特定权" +"限的授权用户才能访问事务。" diff --git a/payments/managers.py b/engine/payments/managers.py similarity index 95% rename from payments/managers.py rename to engine/payments/managers.py index c909afc3..14e2ffbb 100644 --- a/payments/managers.py +++ b/engine/payments/managers.py @@ -39,6 +39,6 @@ class GatewayQuerySet(QuerySet): ).order_by("-priority") -class GatewayManager(Manager.from_queryset(GatewayQuerySet)): +class GatewayManager(Manager.from_queryset(GatewayQuerySet)): # type: ignore [misc] def get_queryset(self) -> QuerySet: return super().get_queryset().can_be_used() diff --git a/payments/migrations/0001_initial.py b/engine/payments/migrations/0001_initial.py similarity index 98% rename from payments/migrations/0001_initial.py rename to engine/payments/migrations/0001_initial.py index 06280b64..388b1f81 100644 --- a/payments/migrations/0001_initial.py +++ b/engine/payments/migrations/0001_initial.py @@ -1,5 +1,3 @@ -# Generated by Django 5.1.5 on 2025-03-10 11:38 - import uuid import django_extensions.db.fields diff --git a/payments/migrations/0002_initial.py b/engine/payments/migrations/0002_initial.py similarity index 97% rename from payments/migrations/0002_initial.py rename to engine/payments/migrations/0002_initial.py index 480ec9b6..434a1fcf 100644 --- a/payments/migrations/0002_initial.py +++ b/engine/payments/migrations/0002_initial.py @@ -1,5 +1,3 @@ -# Generated by Django 5.1.5 on 2025-03-10 11:38 - import django.contrib.postgres.indexes import django.db.models.deletion from django.conf import settings diff --git a/payments/migrations/0003_alter_transaction_balance.py b/engine/payments/migrations/0003_alter_transaction_balance.py similarity index 92% rename from payments/migrations/0003_alter_transaction_balance.py rename to engine/payments/migrations/0003_alter_transaction_balance.py index 029e2448..03bea1fc 100644 --- a/payments/migrations/0003_alter_transaction_balance.py +++ b/engine/payments/migrations/0003_alter_transaction_balance.py @@ -1,5 +1,3 @@ -# Generated by Django 5.1.8 on 2025-04-29 11:32 - import django.db.models.deletion from django.db import migrations, models diff --git a/payments/migrations/0004_alter_transaction_payment_method.py b/engine/payments/migrations/0004_alter_transaction_payment_method.py similarity index 88% rename from payments/migrations/0004_alter_transaction_payment_method.py rename to engine/payments/migrations/0004_alter_transaction_payment_method.py index 978c5214..ed3a74a4 100644 --- a/payments/migrations/0004_alter_transaction_payment_method.py +++ b/engine/payments/migrations/0004_alter_transaction_payment_method.py @@ -1,5 +1,3 @@ -# Generated by Django 5.1.8 on 2025-04-30 13:29 - from django.db import migrations, models diff --git a/payments/migrations/0005_gateway_transaction_gateway.py b/engine/payments/migrations/0005_gateway_transaction_gateway.py similarity index 99% rename from payments/migrations/0005_gateway_transaction_gateway.py rename to engine/payments/migrations/0005_gateway_transaction_gateway.py index 506c5f6b..ae4f7775 100644 --- a/payments/migrations/0005_gateway_transaction_gateway.py +++ b/engine/payments/migrations/0005_gateway_transaction_gateway.py @@ -1,5 +1,3 @@ -# Generated by Django 5.2 on 2025-10-21 09:24 - import django.db.models.deletion import django_extensions.db.fields import uuid diff --git a/payments/migrations/0006_transaction_payments_tr_created_95e595_idx.py b/engine/payments/migrations/0006_transaction_payments_tr_created_95e595_idx.py similarity index 89% rename from payments/migrations/0006_transaction_payments_tr_created_95e595_idx.py rename to engine/payments/migrations/0006_transaction_payments_tr_created_95e595_idx.py index 66ff0fec..97213d3d 100644 --- a/payments/migrations/0006_transaction_payments_tr_created_95e595_idx.py +++ b/engine/payments/migrations/0006_transaction_payments_tr_created_95e595_idx.py @@ -1,5 +1,3 @@ -# Generated by Django 5.2.7 on 2025-10-24 23:17 - from django.db import migrations, models diff --git a/payments/templates/__init__.py b/engine/payments/migrations/__init__.py similarity index 100% rename from payments/templates/__init__.py rename to engine/payments/migrations/__init__.py diff --git a/payments/models.py b/engine/payments/models.py similarity index 95% rename from payments/models.py rename to engine/payments/models.py index 05ecce11..ca7843ea 100644 --- a/payments/models.py +++ b/engine/payments/models.py @@ -1,5 +1,4 @@ from datetime import datetime, time -from typing import Type from constance import config from django.conf import settings @@ -9,20 +8,20 @@ from django.db.models import ( CharField, FloatField, ForeignKey, + Index, JSONField, OneToOneField, PositiveIntegerField, QuerySet, Sum, - Index, ) from django.utils import timezone from django.utils.translation import gettext_lazy as _ -from core.abstract import NiceModel +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 payments.gateways import AbstractGateway -from payments.managers import GatewayManager class Transaction(NiceModel): @@ -73,7 +72,7 @@ class Transaction(NiceModel): class Balance(NiceModel): amount = FloatField(null=False, blank=False, default=0) user = OneToOneField( - to="vibes_auth.User", on_delete=CASCADE, blank=True, null=True, related_name="payments_balance" + to=settings.AUTH_USER_MODEL, on_delete=CASCADE, blank=True, null=True, related_name="payments_balance" ) transactions: QuerySet["Transaction"] @@ -172,7 +171,7 @@ class Gateway(NiceModel): def can_be_used(self, value: bool): self.__dict__["can_be_used"] = value - def get_integration_class_object(self, raise_exc: bool = True) -> Type[AbstractGateway] | None: + def get_integration_class_object(self, raise_exc: bool = True) -> AbstractGateway | None: if not self.integration_path: if raise_exc: raise ValueError(_("gateway integration path is not set")) diff --git a/payments/serializers.py b/engine/payments/serializers.py similarity index 95% rename from payments/serializers.py rename to engine/payments/serializers.py index 6062c3a0..9025e971 100644 --- a/payments/serializers.py +++ b/engine/payments/serializers.py @@ -1,7 +1,7 @@ from rest_framework.fields import FloatField, JSONField, SerializerMethodField from rest_framework.serializers import ModelSerializer, Serializer -from payments.models import Transaction +from engine.payments.models import Transaction class DepositSerializer(Serializer): # type: ignore [type-arg] diff --git a/payments/signals.py b/engine/payments/signals.py similarity index 81% rename from payments/signals.py rename to engine/payments/signals.py index d108edac..eaa848db 100644 --- a/payments/signals.py +++ b/engine/payments/signals.py @@ -5,11 +5,11 @@ from typing import Any from django.db.models.signals import post_save from django.dispatch import receiver -from payments.models import Balance, Transaction, Gateway -from payments.utils.emailing import balance_deposit_email -from vibes_auth.models import User +from engine.payments.models import Balance, Transaction, Gateway +from engine.payments.utils.emailing import balance_deposit_email +from engine.vibes_auth.models import User -logger = logging.getLogger("django") +logger = logging.getLogger(__name__) # noinspection PyUnusedLocal @@ -27,7 +27,7 @@ def process_transaction_changes(instance: Transaction, created: bool, **kwargs: instance.gateway = Gateway.objects.can_be_used().first() try: gateway = instance.gateway.get_integration_class_object() - gateway.process_transaction(instance) + gateway.process_transaction(instance) # type: ignore [union-attr] except Exception as e: instance.process = {"status": "ERRORED", "error": str(e)} logger.error(f"Error processing transaction {instance.uuid}: {e}\n{traceback.format_exc()}") diff --git a/payments/tests.py b/engine/payments/static/.gitkeep similarity index 100% rename from payments/tests.py rename to engine/payments/static/.gitkeep diff --git a/vibes_auth/__init__.py b/engine/payments/templates/__init__.py similarity index 100% rename from vibes_auth/__init__.py rename to engine/payments/templates/__init__.py diff --git a/payments/templates/balance_deposit_email.html b/engine/payments/templates/balance_deposit_email.html similarity index 100% rename from payments/templates/balance_deposit_email.html rename to engine/payments/templates/balance_deposit_email.html diff --git a/vibes_auth/tests.py b/engine/payments/tests.py similarity index 100% rename from vibes_auth/tests.py rename to engine/payments/tests.py diff --git a/payments/urls.py b/engine/payments/urls.py similarity index 78% rename from payments/urls.py rename to engine/payments/urls.py index 4c567fde..02abddf3 100644 --- a/payments/urls.py +++ b/engine/payments/urls.py @@ -1,8 +1,8 @@ from django.urls import include, path from rest_framework.routers import DefaultRouter -from payments.views import CallbackAPIView, DepositView -from payments.viewsets import TransactionViewSet +from engine.payments.views import CallbackAPIView, DepositView +from engine.payments.viewsets import TransactionViewSet app_name = "payments" diff --git a/payments/utils/__init__.py b/engine/payments/utils/__init__.py similarity index 86% rename from payments/utils/__init__.py rename to engine/payments/utils/__init__.py index f8503c4a..984df9bd 100644 --- a/payments/utils/__init__.py +++ b/engine/payments/utils/__init__.py @@ -1,6 +1,6 @@ from django.utils.translation import gettext_lazy as _ -from payments.utils.cbr import get_rates as get_rates_cbr +from engine.payments.utils.cbr import get_rates as get_rates_cbr def get_rates(provider: str) -> dict[str, float] | None: diff --git a/payments/utils/cbr.py b/engine/payments/utils/cbr.py similarity index 100% rename from payments/utils/cbr.py rename to engine/payments/utils/cbr.py diff --git a/payments/utils/currencies.py b/engine/payments/utils/currencies.py similarity index 82% rename from payments/utils/currencies.py rename to engine/payments/utils/currencies.py index 23dc2a4e..f5f907f1 100644 --- a/payments/utils/currencies.py +++ b/engine/payments/utils/currencies.py @@ -1,11 +1,15 @@ +import logging from decimal import Decimal import requests from constance import config from django.core.cache import cache +logger = logging.getLogger(__name__) + def update_currencies_to_euro(currency: str, amount: str | float | int | Decimal) -> float: + logger.warning("update_currencies_to_euro will be deprecated soon!") rates = cache.get("rates", None) if not rates: diff --git a/payments/utils/emailing.py b/engine/payments/utils/emailing.py similarity index 89% rename from payments/utils/emailing.py rename to engine/payments/utils/emailing.py index b804b9ee..3e5af9d4 100644 --- a/payments/utils/emailing.py +++ b/engine/payments/utils/emailing.py @@ -7,8 +7,8 @@ from django.template.loader import render_to_string from django.utils.translation import activate from django.utils.translation import gettext_lazy as _ -from core.utils import get_dynamic_email_connection -from payments.models import Transaction +from engine.core.utils import get_dynamic_email_connection +from engine.payments.models import Transaction @shared_task(queue="default") @@ -26,7 +26,7 @@ def balance_deposit_email(transaction_pk: str) -> tuple[bool, str]: email = EmailMessage( _(f"{config.PROJECT_NAME} | balance deposit"), render_to_string( - template_name="balance_deposit_email.html", + template_name="../templates/balance_deposit_email.html", context={ "amount": transaction.amount, "balance": transaction.balance.amount, diff --git a/payments/utils/gateways.py b/engine/payments/utils/gateways.py similarity index 87% rename from payments/utils/gateways.py rename to engine/payments/utils/gateways.py index 522adc68..d4109ec9 100644 --- a/payments/utils/gateways.py +++ b/engine/payments/utils/gateways.py @@ -1,8 +1,8 @@ from typing import Type from evibes.utils.misc import create_object -from payments.gateways import AbstractGateway -from payments.models import Gateway +from engine.payments.gateways import AbstractGateway +from engine.payments.models import Gateway def get_gateways_integrations(name: str | None = None) -> list[Type[AbstractGateway]]: diff --git a/payments/views.py b/engine/payments/views.py similarity index 91% rename from payments/views.py rename to engine/payments/views.py index a151d1c1..dde5012c 100644 --- a/payments/views.py +++ b/engine/payments/views.py @@ -8,12 +8,12 @@ from rest_framework.request import Request from rest_framework.response import Response from rest_framework.views import APIView -from payments.docs.drf.views import DEPOSIT_SCHEMA -from payments.gateways import UnknownGatewayError -from payments.models import Transaction -from payments.serializers import DepositSerializer, TransactionProcessSerializer +from engine.payments.docs.drf.views import DEPOSIT_SCHEMA +from engine.payments.gateways import UnknownGatewayError +from engine.payments.models import Transaction +from engine.payments.serializers import DepositSerializer, TransactionProcessSerializer -logger = logging.getLogger("django") +logger = logging.getLogger(__name__) @extend_schema_view(**DEPOSIT_SCHEMA) @@ -71,7 +71,6 @@ class CallbackAPIView(APIView): """ def post(self, request: Request, *args: list[Any], **kwargs: dict[Any, Any]) -> Response: - logger.debug(f"{request.__dict__}\n") try: gateway = kwargs.get("gateway", "") # noinspection PyUnreachableCode diff --git a/payments/viewsets.py b/engine/payments/viewsets.py similarity index 70% rename from payments/viewsets.py rename to engine/payments/viewsets.py index 52cdc04a..61a2f0bb 100644 --- a/payments/viewsets.py +++ b/engine/payments/viewsets.py @@ -2,9 +2,10 @@ from django.utils.translation import gettext_lazy as _ from drf_spectacular.utils import extend_schema_view from rest_framework.viewsets import ReadOnlyModelViewSet -from core.permissions import EvibesPermission, IsOwner -from payments.serializers import TransactionSerializer -from payments.docs.drf.viewsets import TRANSACTION_SCHEMA +from engine.core.permissions import EvibesPermission, IsOwner +from engine.payments.serializers import TransactionSerializer +from engine.payments.docs.drf.viewsets import TRANSACTION_SCHEMA +from engine.payments.models import Transaction @extend_schema_view(**TRANSACTION_SCHEMA) @@ -17,5 +18,8 @@ class TransactionViewSet(ReadOnlyModelViewSet): # type: ignore "permissions, can access the transactions." ) + queryset = Transaction.objects.all() + lookup_field = "uuid" + lookup_url_kwarg = "uuid" serializer_class = TransactionSerializer permission_classes = (EvibesPermission, IsOwner) diff --git a/vibes_auth/docs/__init__.py b/engine/vibes_auth/__init__.py similarity index 100% rename from vibes_auth/docs/__init__.py rename to engine/vibes_auth/__init__.py diff --git a/vibes_auth/admin.py b/engine/vibes_auth/admin.py similarity index 68% rename from vibes_auth/admin.py rename to engine/vibes_auth/admin.py index 551ab544..e97810e2 100644 --- a/vibes_auth/admin.py +++ b/engine/vibes_auth/admin.py @@ -25,11 +25,12 @@ from rest_framework_simplejwt.token_blacklist.models import ( OutstandingToken as BaseOutstandingToken, ) -from core.admin import ActivationActionsMixin -from core.models import Order -from payments.models import Balance -from vibes_auth.forms import UserForm -from vibes_auth.models import BlacklistedToken, Group, OutstandingToken, User +from engine.core.admin import ActivationActionsMixin +from engine.core.models import Order +from engine.payments.models import Balance +from engine.vibes_auth.forms import UserForm +from engine.vibes_auth.messaging.models import ChatMessage, ChatThread, ThreadStatus +from engine.vibes_auth.models import BlacklistedToken, Group, OutstandingToken, User class BalanceInline(admin.TabularInline): # type: ignore [type-arg] @@ -113,6 +114,52 @@ class UserAdmin(ActivationActionsMixin, BaseUserAdmin): # type: ignore [misc, t super().save_model(request, obj, form, change) +# noinspection PyUnusedLocal +@admin.register(ChatThread) +class ChatThreadAdmin(admin.ModelAdmin): + list_display = ( + "uuid", + "user", + "email", + "assigned_to", + "status", + "last_message_at", + "is_active", + "created", + "modified", + ) + list_filter = ( + "status", + "is_active", + ("assigned_to", admin.EmptyFieldListFilter), + ) + search_fields = ("uuid", "email", "user__email", "user__username") + autocomplete_fields = ("user", "assigned_to") + actions = ( + "close_threads", + "open_threads", + "delete_selected", + ) + readonly_fields = ("created", "modified") + + @admin.action(description=_("Close selected threads")) + def close_threads(self, request, queryset): # type: ignore[no-untyped-def] + queryset.update(status=ThreadStatus.CLOSED) + + @admin.action(description=_("Open selected threads")) + def open_threads(self, request, queryset): # type: ignore[no-untyped-def] + queryset.update(status=ThreadStatus.OPEN) + + +@admin.register(ChatMessage) +class ChatMessageAdmin(admin.ModelAdmin): + list_display = ("uuid", "thread", "sender_type", "sender_user", "sent_at") + list_filter = ("sender_type",) + search_fields = ("uuid", "thread__uuid", "sender_user__email") + autocomplete_fields = ("thread", "sender_user") + readonly_fields = ("created", "modified") + + class GroupAdmin(BaseGroupAdmin): pass diff --git a/vibes_auth/apps.py b/engine/vibes_auth/apps.py similarity index 78% rename from vibes_auth/apps.py rename to engine/vibes_auth/apps.py index 150780c2..7f213c59 100644 --- a/vibes_auth/apps.py +++ b/engine/vibes_auth/apps.py @@ -4,11 +4,11 @@ from django.utils.translation import gettext_lazy as _ class VibesAuthConfig(AppConfig): default_auto_field = "django.db.models.BigAutoField" - name = "vibes_auth" + name = "engine.vibes_auth" verbose_name = _("authentication") icon = "fa fa-solid fa-user" priority = 89 hide = False def ready(self) -> None: - import vibes_auth.signals # noqa: F401 + import engine.vibes_auth.signals # noqa: F401 diff --git a/vibes_auth/docs/drf/__init__.py b/engine/vibes_auth/docs/__init__.py similarity index 100% rename from vibes_auth/docs/drf/__init__.py rename to engine/vibes_auth/docs/__init__.py diff --git a/vibes_auth/graphene/__init__.py b/engine/vibes_auth/docs/drf/__init__.py similarity index 100% rename from vibes_auth/graphene/__init__.py rename to engine/vibes_auth/docs/drf/__init__.py diff --git a/vibes_auth/docs/drf/views.py b/engine/vibes_auth/docs/drf/views.py similarity index 96% rename from vibes_auth/docs/drf/views.py rename to engine/vibes_auth/docs/drf/views.py index e7229433..acfc2b72 100644 --- a/vibes_auth/docs/drf/views.py +++ b/engine/vibes_auth/docs/drf/views.py @@ -2,8 +2,8 @@ from django.utils.translation import gettext_lazy as _ from drf_spectacular.utils import extend_schema, inline_serializer from rest_framework import serializers, status -from core.docs.drf import error -from vibes_auth.serializers import ( +from engine.core.docs.drf import error +from engine.vibes_auth.serializers import ( TokenObtainPairSerializer, TokenRefreshSerializer, TokenVerifySerializer, diff --git a/vibes_auth/docs/drf/viewsets.py b/engine/vibes_auth/docs/drf/viewsets.py similarity index 96% rename from vibes_auth/docs/drf/viewsets.py rename to engine/vibes_auth/docs/drf/viewsets.py index e8cead2b..be8c1f57 100644 --- a/vibes_auth/docs/drf/viewsets.py +++ b/engine/vibes_auth/docs/drf/viewsets.py @@ -2,8 +2,8 @@ from django.utils.translation import gettext_lazy as _ from drf_spectacular.utils import extend_schema from rest_framework import status -from core.docs.drf import BASE_ERRORS -from vibes_auth.serializers import ( +from engine.core.docs.drf import BASE_ERRORS +from engine.vibes_auth.serializers import ( ActivateEmailSerializer, ConfirmPasswordResetSerializer, MergeRecentlyViewedSerializer, diff --git a/vibes_auth/filters.py b/engine/vibes_auth/filters.py similarity index 93% rename from vibes_auth/filters.py rename to engine/vibes_auth/filters.py index ed366c2b..b2eba096 100644 --- a/vibes_auth/filters.py +++ b/engine/vibes_auth/filters.py @@ -1,6 +1,6 @@ import django_filters -from vibes_auth.models import User +from engine.vibes_auth.models import User class UserFilter(django_filters.FilterSet): diff --git a/vibes_auth/forms.py b/engine/vibes_auth/forms.py similarity index 71% rename from vibes_auth/forms.py rename to engine/vibes_auth/forms.py index bd8f5e14..fd224947 100644 --- a/vibes_auth/forms.py +++ b/engine/vibes_auth/forms.py @@ -1,7 +1,7 @@ from django.forms import ModelForm -from core.widgets import JSONTableWidget -from vibes_auth.models import User +from engine.core.widgets import JSONTableWidget +from engine.vibes_auth.models import User class UserForm(ModelForm): # type: ignore [type-arg] diff --git a/vibes_auth/messaging/__init__.py b/engine/vibes_auth/graphene/__init__.py similarity index 100% rename from vibes_auth/messaging/__init__.py rename to engine/vibes_auth/graphene/__init__.py diff --git a/vibes_auth/graphene/mutations.py b/engine/vibes_auth/graphene/mutations.py similarity index 95% rename from vibes_auth/graphene/mutations.py rename to engine/vibes_auth/graphene/mutations.py index aaba1d36..2e336e00 100644 --- a/vibes_auth/graphene/mutations.py +++ b/engine/vibes_auth/graphene/mutations.py @@ -1,6 +1,7 @@ import logging from hmac import compare_digest +from django.conf import settings from django.contrib.auth.password_validation import validate_password from django.contrib.auth.tokens import PasswordResetTokenGenerator from django.core.exceptions import BadRequest, PermissionDenied, ValidationError @@ -12,20 +13,19 @@ from graphene import UUID, Boolean, Field, List, String from graphene.types.generic import GenericScalar from graphene_file_upload.scalars import Upload -from core.graphene import BaseMutation -from core.utils.messages import permission_denied_message -from evibes.settings import LANGUAGE_CODE -from vibes_auth.graphene.object_types import UserType -from vibes_auth.models import User -from vibes_auth.serializers import ( +from engine.core.graphene import BaseMutation +from engine.core.utils.messages import permission_denied_message +from engine.vibes_auth.graphene.object_types import UserType +from engine.vibes_auth.models import User +from engine.vibes_auth.serializers import ( TokenObtainPairSerializer, TokenRefreshSerializer, TokenVerifySerializer, ) -from vibes_auth.utils.emailing import send_reset_password_email_task -from vibes_auth.validators import is_valid_email, is_valid_phone_number +from engine.vibes_auth.utils.emailing import send_reset_password_email_task +from engine.vibes_auth.validators import is_valid_email, is_valid_phone_number -logger = logging.getLogger("django") +logger = logging.getLogger(__name__) class CreateUser(BaseMutation): @@ -67,7 +67,7 @@ class CreateUser(BaseMutation): first_name=first_name, phone_number=phone_number, is_subscribed=is_subscribed if is_subscribed else False, - language=language if language else LANGUAGE_CODE, + language=language if language else settings.LANGUAGE_CODE, attributes={"referrer": kwargs.get("referrer", "")} if kwargs.get("referrer", "") else {}, ) # noinspection PyTypeChecker diff --git a/vibes_auth/graphene/object_types.py b/engine/vibes_auth/graphene/object_types.py similarity index 90% rename from vibes_auth/graphene/object_types.py rename to engine/vibes_auth/graphene/object_types.py index 71c32035..2916df54 100644 --- a/vibes_auth/graphene/object_types.py +++ b/engine/vibes_auth/graphene/object_types.py @@ -1,3 +1,4 @@ +from django.conf import settings from django.contrib.auth.models import Group, Permission from django.utils.translation import gettext_lazy as _ from graphene import Field, List, String, relay @@ -5,12 +6,11 @@ from graphene.types.generic import GenericScalar from graphene_django import DjangoObjectType from graphql_relay.connection.array_connection import connection_from_array -from core.graphene.object_types import OrderType, ProductType, WishlistType, AddressType -from core.models import Product, Wishlist -from evibes.settings import LANGUAGE_CODE, LANGUAGES -from payments.graphene.object_types import BalanceType -from payments.models import Balance -from vibes_auth.models import User +from engine.core.graphene.object_types import OrderType, ProductType, WishlistType, AddressType +from engine.core.models import Product, Wishlist +from engine.payments.graphene.object_types import BalanceType +from engine.payments.models import Balance +from engine.vibes_auth.models import User class GroupType(DjangoObjectType): @@ -46,7 +46,9 @@ class UserType(DjangoObjectType): balance = Field(lambda: BalanceType, source="payments_balance", description=_("balance")) avatar = String(description=_("avatar")) attributes = GenericScalar(description=_("attributes may be used to store custom data")) - language = String(description=_(f"language is one of the {LANGUAGES} with default {LANGUAGE_CODE}")) + language = String( + description=_(f"language is one of the {settings.LANGUAGES} with default {settings.LANGUAGE_CODE}") + ) addresses = Field(lambda: AddressType, source="address_set", description=_("address set")) class Meta: diff --git a/vibes_auth/locale/ar_AR/LC_MESSAGES/django.mo b/engine/vibes_auth/locale/ar_AR/LC_MESSAGES/django.mo similarity index 66% rename from vibes_auth/locale/ar_AR/LC_MESSAGES/django.mo rename to engine/vibes_auth/locale/ar_AR/LC_MESSAGES/django.mo index c5a01497..ccdbf513 100644 Binary files a/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/vibes_auth/locale/ar_AR/LC_MESSAGES/django.po b/engine/vibes_auth/locale/ar_AR/LC_MESSAGES/django.po similarity index 71% rename from vibes_auth/locale/ar_AR/LC_MESSAGES/django.po rename to engine/vibes_auth/locale/ar_AR/LC_MESSAGES/django.po index cbba574e..ab8ebe8a 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,260 +13,267 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: vibes_auth/admin.py:39 vibes_auth/admin.py:40 -#: vibes_auth/graphene/object_types.py:46 +#: engine/vibes_auth/admin.py:40 engine/vibes_auth/admin.py:41 +#: engine/vibes_auth/graphene/object_types.py:46 msgid "balance" msgstr "الرصيد" -#: vibes_auth/admin.py:48 +#: engine/vibes_auth/admin.py:49 msgid "order" msgstr "الطلب" -#: vibes_auth/admin.py:49 vibes_auth/graphene/object_types.py:44 +#: engine/vibes_auth/admin.py:50 engine/vibes_auth/graphene/object_types.py:44 msgid "orders" msgstr "الطلبات" -#: vibes_auth/admin.py:59 +#: engine/vibes_auth/admin.py:60 msgid "personal info" msgstr "معلومات شخصية" -#: vibes_auth/admin.py:63 vibes_auth/graphene/object_types.py:43 +#: engine/vibes_auth/admin.py:64 engine/vibes_auth/graphene/object_types.py:43 msgid "permissions" msgstr "الأذونات" -#: vibes_auth/admin.py:76 +#: engine/vibes_auth/admin.py:77 msgid "important dates" msgstr "تواريخ مهمة" -#: vibes_auth/admin.py:77 +#: engine/vibes_auth/admin.py:78 msgid "additional info" msgstr "معلومات إضافية" -#: vibes_auth/apps.py:8 +#: engine/vibes_auth/admin.py:145 +msgid "Close selected threads" +msgstr "إغلاق المواضيع المحددة" + +#: engine/vibes_auth/admin.py:149 +msgid "Open selected threads" +msgstr "فتح المواضيع المحددة" + +#: engine/vibes_auth/apps.py:8 msgid "authentication" msgstr "المصادقة" -#: vibes_auth/docs/drf/views.py:15 +#: engine/vibes_auth/docs/drf/views.py:15 msgid "obtain a token pair" msgstr "الحصول على زوج رمزي" -#: vibes_auth/docs/drf/views.py:16 +#: engine/vibes_auth/docs/drf/views.py:16 msgid "obtain a token pair (refresh and access) for authentication." msgstr "الحصول على زوج رمز مميز (التحديث والوصول) للمصادقة." -#: vibes_auth/docs/drf/views.py:35 +#: engine/vibes_auth/docs/drf/views.py:35 msgid "refresh a token pair" msgstr "تحديث زوج من الرمز المميز" -#: vibes_auth/docs/drf/views.py:36 +#: engine/vibes_auth/docs/drf/views.py:36 msgid "refresh a token pair (refresh and access)." msgstr "تحديث زوج الرموز (التحديث والوصول)." -#: vibes_auth/docs/drf/views.py:55 +#: engine/vibes_auth/docs/drf/views.py:55 msgid "verify a token" msgstr "التحقق من الرمز المميز" -#: vibes_auth/docs/drf/views.py:56 +#: engine/vibes_auth/docs/drf/views.py:56 msgid "Verify a token (refresh or access)." msgstr "التحقق من الرمز المميز (التحديث أو الوصول)." -#: vibes_auth/docs/drf/views.py:62 vibes_auth/views.py:78 +#: engine/vibes_auth/docs/drf/views.py:62 engine/vibes_auth/views.py:78 msgid "the token is valid" msgstr "الرمز المميز صالح" -#: vibes_auth/docs/drf/viewsets.py:16 +#: engine/vibes_auth/docs/drf/viewsets.py:16 msgid "create a new user" msgstr "إنشاء مستخدم جديد" -#: vibes_auth/docs/drf/viewsets.py:21 +#: engine/vibes_auth/docs/drf/viewsets.py:21 msgid "retrieve a user's details" msgstr "استرداد تفاصيل المستخدم" -#: vibes_auth/docs/drf/viewsets.py:25 +#: engine/vibes_auth/docs/drf/viewsets.py:25 msgid "update a user's details" msgstr "تحديث تفاصيل المستخدم" -#: vibes_auth/docs/drf/viewsets.py:30 +#: engine/vibes_auth/docs/drf/viewsets.py:30 msgid "delete a user" msgstr "حذف مستخدم" -#: vibes_auth/docs/drf/viewsets.py:34 +#: engine/vibes_auth/docs/drf/viewsets.py:34 msgid "reset a user's password by sending a reset password email" msgstr "" "إعادة تعيين كلمة مرور المستخدم عن طريق إرسال بريد إلكتروني لإعادة تعيين كلمة " "المرور" -#: vibes_auth/docs/drf/viewsets.py:39 +#: engine/vibes_auth/docs/drf/viewsets.py:39 msgid "handle avatar upload for a user" msgstr "التعامل مع تحميل الصورة الرمزية للمستخدم" -#: vibes_auth/docs/drf/viewsets.py:54 +#: engine/vibes_auth/docs/drf/viewsets.py:54 msgid "confirm a user's password reset" msgstr "تأكيد إعادة تعيين كلمة مرور المستخدم" -#: vibes_auth/docs/drf/viewsets.py:58 vibes_auth/graphene/mutations.py:320 -#: vibes_auth/serializers.py:105 vibes_auth/serializers.py:109 -#: vibes_auth/viewsets.py:84 +#: engine/vibes_auth/docs/drf/viewsets.py:58 +#: engine/vibes_auth/graphene/mutations.py:320 +#: engine/vibes_auth/serializers.py:105 engine/vibes_auth/serializers.py:109 +#: engine/vibes_auth/viewsets.py:84 msgid "passwords do not match" msgstr "كلمات المرور غير متطابقة" -#: vibes_auth/docs/drf/viewsets.py:63 +#: engine/vibes_auth/docs/drf/viewsets.py:63 msgid "activate a user's account" msgstr "تنشيط حساب مستخدم" -#: vibes_auth/docs/drf/viewsets.py:67 +#: engine/vibes_auth/docs/drf/viewsets.py:67 msgid "activation link is invalid or account already activated" msgstr "رابط التفعيل غير صالح أو أن الحساب مفعل بالفعل" -#: vibes_auth/docs/drf/viewsets.py:72 +#: engine/vibes_auth/docs/drf/viewsets.py:72 msgid "merge client-stored recently viewed products" msgstr "دمج المنتجات التي تم عرضها مؤخراً المخزنة لدى العميل" -#: vibes_auth/graphene/mutations.py:41 +#: engine/vibes_auth/graphene/mutations.py:41 msgid "the user's b64-encoded uuid who referred the new user to us." msgstr "معرّف المستخدم الذي تم ترميزه بـ b64 الذي أحال المستخدم الجديد إلينا." -#: vibes_auth/graphene/mutations.py:61 +#: engine/vibes_auth/graphene/mutations.py:61 msgid "password too weak" msgstr "كلمة المرور ضعيفة جداً" -#: vibes_auth/graphene/mutations.py:110 +#: engine/vibes_auth/graphene/mutations.py:110 #, python-brace-format msgid "{name} does not exist: {uuid}" msgstr "{name} غير موجود: {uuid}!" -#: vibes_auth/graphene/mutations.py:120 +#: engine/vibes_auth/graphene/mutations.py:120 msgid "malformed email" msgstr "بريد إلكتروني مشوه" -#: vibes_auth/graphene/mutations.py:127 vibes_auth/serializers.py:115 +#: engine/vibes_auth/graphene/mutations.py:127 +#: engine/vibes_auth/serializers.py:115 #, python-brace-format msgid "malformed phone number: {phone_number}" msgstr "رقم هاتف مشوه: {phone_number}!" -#: vibes_auth/graphene/mutations.py:149 +#: engine/vibes_auth/graphene/mutations.py:149 #, python-brace-format msgid "Invalid attribute format: {attribute_pair}" msgstr "تنسيق السمة غير صالح: {attribute_pair}!" -#: vibes_auth/graphene/mutations.py:273 vibes_auth/viewsets.py:127 -#: vibes_auth/viewsets.py:146 +#: engine/vibes_auth/graphene/mutations.py:273 +#: engine/vibes_auth/viewsets.py:127 engine/vibes_auth/viewsets.py:146 msgid "activation link is invalid!" msgstr "رابط التفعيل غير صالح!" -#: vibes_auth/graphene/mutations.py:276 +#: engine/vibes_auth/graphene/mutations.py:276 msgid "account already activated..." msgstr "تم تفعيل الحساب بالفعل..." -#: vibes_auth/graphene/mutations.py:283 vibes_auth/graphene/mutations.py:339 +#: engine/vibes_auth/graphene/mutations.py:283 +#: engine/vibes_auth/graphene/mutations.py:339 msgid "something went wrong: {e!s}" msgstr "حدث خطأ ما: {e!s}" -#: vibes_auth/graphene/mutations.py:327 vibes_auth/viewsets.py:95 +#: engine/vibes_auth/graphene/mutations.py:327 engine/vibes_auth/viewsets.py:95 msgid "token is invalid!" msgstr "الرمز غير صالح!" -#: vibes_auth/graphene/object_types.py:40 +#: engine/vibes_auth/graphene/object_types.py:40 msgid "" "the products this user has viewed most recently (max 48), in reverse‐" "chronological order" msgstr "" "المنتجات التي شاهدها هذا المستخدم مؤخرًا (بحد أقصى 48)، بترتيب زمني عكسي." -#: vibes_auth/graphene/object_types.py:42 vibes_auth/models.py:132 +#: engine/vibes_auth/graphene/object_types.py:42 +#: engine/vibes_auth/models.py:123 msgid "groups" msgstr "المجموعات" -#: vibes_auth/graphene/object_types.py:45 +#: engine/vibes_auth/graphene/object_types.py:45 msgid "wishlist" msgstr "قائمة الرغبات" -#: vibes_auth/graphene/object_types.py:47 vibes_auth/models.py:58 +#: engine/vibes_auth/graphene/object_types.py:47 engine/vibes_auth/models.py:59 msgid "avatar" msgstr "الصورة الرمزية" -#: vibes_auth/graphene/object_types.py:48 +#: engine/vibes_auth/graphene/object_types.py:48 msgid "attributes may be used to store custom data" msgstr "يمكن استخدام السمات لتخزين البيانات المخصصة" -#: vibes_auth/graphene/object_types.py:49 +#: engine/vibes_auth/graphene/object_types.py:50 #, python-brace-format -msgid "language is one of the {LANGUAGES} with default {LANGUAGE_CODE}" -msgstr "اللغة هي واحدة من {LANGUAGES} مع {LANGUAGE_CODE} الافتراضي" +msgid "" +"language is one of the {settings.LANGUAGES} with default {settings." +"LANGUAGE_CODE}" +msgstr "اللغة هي واحدة من {settings.LANGUAGES} مع {settings.LANGUAGE_CODE}" -#: vibes_auth/graphene/object_types.py:50 +#: engine/vibes_auth/graphene/object_types.py:52 msgid "address set" msgstr "العناوين" -#: vibes_auth/messaging/admin.py:36 -msgid "Close selected threads" -msgstr "إغلاق المواضيع المحددة" - -#: vibes_auth/messaging/admin.py:40 -msgid "Open selected threads" -msgstr "فتح المواضيع المحددة" - -#: vibes_auth/messaging/models.py:24 +#: engine/vibes_auth/messaging/models.py:24 msgid "Open" msgstr "مفتوح" -#: vibes_auth/messaging/models.py:25 +#: engine/vibes_auth/messaging/models.py:25 msgid "Closed" msgstr "مغلق" -#: vibes_auth/messaging/models.py:29 +#: engine/vibes_auth/messaging/models.py:29 msgid "User" msgstr "المستخدم" -#: vibes_auth/messaging/models.py:30 +#: engine/vibes_auth/messaging/models.py:30 msgid "Staff" msgstr "الموظفون" -#: vibes_auth/messaging/models.py:31 +#: engine/vibes_auth/messaging/models.py:31 msgid "System" msgstr "النظام" -#: vibes_auth/messaging/models.py:36 +#: engine/vibes_auth/messaging/models.py:36 msgid "For anonymous threads" msgstr "بالنسبة للمواضيع المجهولة" -#: vibes_auth/messaging/models.py:50 +#: engine/vibes_auth/messaging/models.py:50 msgid "Chat thread" msgstr "موضوع المحادثة" -#: vibes_auth/messaging/models.py:51 +#: engine/vibes_auth/messaging/models.py:51 msgid "Chat threads" msgstr "خيوط الدردشة" -#: vibes_auth/messaging/models.py:56 +#: engine/vibes_auth/messaging/models.py:56 msgid "Provide user or email for anonymous thread." msgstr "توفير مستخدم أو بريد إلكتروني لموضوع مجهول." -#: vibes_auth/messaging/models.py:58 vibes_auth/messaging/services.py:133 +#: engine/vibes_auth/messaging/models.py:58 +#: engine/vibes_auth/messaging/services.py:132 msgid "Assignee must be a staff user." msgstr "يجب أن يكون المعين مستخدمًا من الموظفين." -#: vibes_auth/messaging/models.py:74 +#: engine/vibes_auth/messaging/models.py:74 msgid "Chat message" msgstr "رسالة الدردشة" -#: vibes_auth/messaging/models.py:75 +#: engine/vibes_auth/messaging/models.py:75 msgid "Chat messages" msgstr "رسائل المحادثة" -#: vibes_auth/messaging/services.py:48 +#: engine/vibes_auth/messaging/services.py:47 msgid "Valid email is required for anonymous chats." msgstr "مطلوب بريد إلكتروني صالح للمحادثات المجهولة." -#: vibes_auth/messaging/services.py:56 +#: engine/vibes_auth/messaging/services.py:55 msgid "Message must be 1..1028 characters." msgstr "يجب أن تتكون الرسالة من 1...1028 حرفاً." -#: vibes_auth/messaging/services.py:90 +#: engine/vibes_auth/messaging/services.py:89 msgid "We're searching for the operator to answer you already, hold by!" msgstr "نحن نبحث عن عامل التشغيل للرد عليك بالفعل، انتظر!" -#: vibes_auth/models.py:30 +#: engine/vibes_auth/models.py:31 msgid "" "Represents a User entity with customized fields and methods for extended " "functionality. This class extends the AbstractUser model and integrates " @@ -283,152 +290,152 @@ msgstr "" "إلى الرمز المميز للتحقق من الحسابات. تم تصميم نموذج المستخدم للتعامل مع " "حالات استخدام محددة لإدارة المستخدم المحسنة." -#: vibes_auth/models.py:41 +#: engine/vibes_auth/models.py:42 msgid "email" msgstr "البريد الإلكتروني" -#: vibes_auth/models.py:41 +#: engine/vibes_auth/models.py:42 msgid "user email address" msgstr "عنوان البريد الإلكتروني للمستخدم" -#: vibes_auth/models.py:43 +#: engine/vibes_auth/models.py:44 msgid "phone_number" msgstr "رقم الهاتف" -#: vibes_auth/models.py:48 +#: engine/vibes_auth/models.py:49 msgid "user phone number" msgstr "رقم هاتف المستخدم" -#: vibes_auth/models.py:54 +#: engine/vibes_auth/models.py:55 msgid "first_name" msgstr "الاسم الأول" -#: vibes_auth/models.py:55 +#: engine/vibes_auth/models.py:56 msgid "last_name" msgstr "اسم العائلة" -#: vibes_auth/models.py:61 +#: engine/vibes_auth/models.py:62 msgid "user profile image" msgstr "صورة ملف تعريف المستخدم" -#: vibes_auth/models.py:66 +#: engine/vibes_auth/models.py:67 msgid "is verified" msgstr "تم التحقق" -#: vibes_auth/models.py:67 +#: engine/vibes_auth/models.py:68 msgid "user verification status" msgstr "حالة التحقق من المستخدم" -#: vibes_auth/models.py:70 +#: engine/vibes_auth/models.py:71 msgid "is_active" msgstr "نشط" -#: vibes_auth/models.py:72 +#: engine/vibes_auth/models.py:73 msgid "unselect this instead of deleting accounts" msgstr "قم بإلغاء تحديد هذا بدلاً من حذف الحسابات" -#: vibes_auth/models.py:75 +#: engine/vibes_auth/models.py:76 msgid "is_subscribed" msgstr "مشترك" -#: vibes_auth/models.py:75 +#: engine/vibes_auth/models.py:76 msgid "user's newsletter subscription status" msgstr "حالة اشتراك المستخدم في النشرة الإخبارية" -#: vibes_auth/models.py:78 +#: engine/vibes_auth/models.py:79 msgid "activation token" msgstr "رمز التفعيل" -#: vibes_auth/models.py:80 +#: engine/vibes_auth/models.py:83 msgid "attributes" msgstr "السمات" -#: vibes_auth/models.py:110 +#: engine/vibes_auth/models.py:115 msgid "user" msgstr "المستخدم" -#: vibes_auth/models.py:111 +#: engine/vibes_auth/models.py:116 msgid "users" msgstr "المستخدمون" -#: vibes_auth/models.py:131 +#: engine/vibes_auth/models.py:122 msgid "group" msgstr "المجموعة" -#: vibes_auth/models.py:148 +#: engine/vibes_auth/models.py:129 msgid "outstanding token" msgstr "الرمز المميز" -#: vibes_auth/models.py:149 +#: engine/vibes_auth/models.py:130 msgid "outstanding tokens" msgstr "الرموز المميزة المعلقة" -#: vibes_auth/models.py:167 +#: engine/vibes_auth/models.py:136 msgid "blacklisted token" msgstr "الرمز المميز المدرج في القائمة السوداء" -#: vibes_auth/models.py:168 +#: engine/vibes_auth/models.py:137 msgid "blacklisted tokens" msgstr "الرموز المميزة المدرجة في القائمة السوداء" -#: vibes_auth/serializers.py:99 +#: engine/vibes_auth/serializers.py:99 msgid "attributes must be a dictionary" msgstr "يجب أن تكون 'السمات' قاموسًا" -#: vibes_auth/serializers.py:101 +#: engine/vibes_auth/serializers.py:101 msgid "business identificator is required when registering as a business" msgstr "مُعرِّف الأعمال مطلوب عند التسجيل كشركة تجارية" -#: vibes_auth/serializers.py:121 +#: engine/vibes_auth/serializers.py:121 #, python-brace-format msgid "malformed email: {email}" msgstr "بريد إلكتروني مشوه: {email}" -#: vibes_auth/serializers.py:142 vibes_auth/serializers.py:164 -#: vibes_auth/serializers.py:186 vibes_auth/serializers.py:198 +#: engine/vibes_auth/serializers.py:142 engine/vibes_auth/serializers.py:164 +#: engine/vibes_auth/serializers.py:184 engine/vibes_auth/serializers.py:194 msgid "no active account" msgstr "لم يتم العثور على حساب نشط" -#: vibes_auth/serializers.py:174 +#: engine/vibes_auth/serializers.py:174 msgid "must set token_class attribute on class." msgstr "يجب تعيين سمة token_class على الفئة!" -#: vibes_auth/serializers.py:246 +#: engine/vibes_auth/serializers.py:240 msgid "token_blacklisted" msgstr "تم إدراج الرمز المميز في القائمة السوداء" -#: vibes_auth/serializers.py:251 +#: engine/vibes_auth/serializers.py:245 msgid "invalid token" msgstr "رمز غير صالح" -#: vibes_auth/serializers.py:257 +#: engine/vibes_auth/serializers.py:251 msgid "no user uuid claim present in token" msgstr "لا توجد مطالبة معرف المستخدم في الرمز المميز" -#: vibes_auth/serializers.py:259 +#: engine/vibes_auth/serializers.py:253 msgid "user does not exist" msgstr "المستخدم غير موجود" -#: vibes_auth/templates/user_reset_password_email.html:7 +#: engine/vibes_auth/templates/user_reset_password_email.html:7 msgid "reset your password" msgstr "إعادة تعيين كلمة المرور" -#: vibes_auth/templates/user_reset_password_email.html:85 -#: vibes_auth/templates/user_verification_email.html:85 +#: engine/vibes_auth/templates/user_reset_password_email.html:85 +#: engine/vibes_auth/templates/user_verification_email.html:85 msgid "logo" msgstr "الشعار" -#: vibes_auth/templates/user_reset_password_email.html:90 +#: engine/vibes_auth/templates/user_reset_password_email.html:90 msgid "password reset confirmation" msgstr "تأكيد إعادة تعيين كلمة المرور" -#: vibes_auth/templates/user_reset_password_email.html:91 -#: vibes_auth/templates/user_verification_email.html:91 +#: engine/vibes_auth/templates/user_reset_password_email.html:91 +#: engine/vibes_auth/templates/user_verification_email.html:91 #, python-format msgid "hello %(user_first_name)s," msgstr "مرحباً %(user_first_name)s," -#: vibes_auth/templates/user_reset_password_email.html:92 +#: 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" @@ -437,12 +444,12 @@ msgstr "" "لقد تلقينا طلباً لإعادة تعيين كلمة المرور الخاصة بك. يرجى إعادة تعيين كلمة " "المرور الخاصة بك عن طريق النقر على الزر أدناه:" -#: vibes_auth/templates/user_reset_password_email.html:95 +#: engine/vibes_auth/templates/user_reset_password_email.html:95 msgid "reset password" msgstr "إعادة تعيين كلمة المرور" -#: vibes_auth/templates/user_reset_password_email.html:97 -#: vibes_auth/templates/user_verification_email.html:99 +#: engine/vibes_auth/templates/user_reset_password_email.html:97 +#: engine/vibes_auth/templates/user_verification_email.html:99 msgid "" "if the button above does not work, please copy and paste the following URL\n" " into your web browser:" @@ -450,7 +457,7 @@ msgstr "" "إذا كان الزر أعلاه لا يعمل، يرجى نسخ ولصق عنوان URL التالي\n" " في متصفح الويب الخاص بك:" -#: vibes_auth/templates/user_reset_password_email.html:100 +#: engine/vibes_auth/templates/user_reset_password_email.html:100 msgid "" "if you did not send this request, please ignore this\n" " email." @@ -458,22 +465,22 @@ msgstr "" "إذا لم تقم بإرسال هذا الطلب، يرجى تجاهل هذا\n" " البريد الإلكتروني" -#: vibes_auth/templates/user_reset_password_email.html:102 +#: engine/vibes_auth/templates/user_reset_password_email.html:102 #, python-format msgid "best regards,
The %(project_name)s team" msgstr "مع أطيب التحيات,
فريق %(project_name)s" -#: vibes_auth/templates/user_reset_password_email.html:108 -#: vibes_auth/templates/user_verification_email.html:108 +#: engine/vibes_auth/templates/user_reset_password_email.html:108 +#: engine/vibes_auth/templates/user_verification_email.html:108 msgid "all rights reserved" msgstr "جميع الحقوق محفوظة" -#: vibes_auth/templates/user_verification_email.html:7 -#: vibes_auth/templates/user_verification_email.html:90 +#: engine/vibes_auth/templates/user_verification_email.html:7 +#: engine/vibes_auth/templates/user_verification_email.html:90 msgid "activate your account" msgstr "قم بتفعيل حسابك" -#: vibes_auth/templates/user_verification_email.html:92 +#: engine/vibes_auth/templates/user_verification_email.html:92 #, python-format msgid "" "thank you for signing up for %(project_name)s. please activate your account\n" @@ -482,7 +489,7 @@ msgstr "" "شكراً لك على تسجيلك في %(project_name)s. يرجى تفعيل حسابك بالنقر على الزر " "أدناه:" -#: vibes_auth/templates/user_verification_email.html:96 +#: engine/vibes_auth/templates/user_verification_email.html:96 msgid "" "activate\n" " account" @@ -490,22 +497,22 @@ msgstr "" "تفعيل\n" " الحساب" -#: vibes_auth/templates/user_verification_email.html:102 +#: engine/vibes_auth/templates/user_verification_email.html:102 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "مع أطيب تحياتي،
فريق %(project_name)s" -#: vibes_auth/utils/emailing.py:23 +#: engine/vibes_auth/utils/emailing.py:23 #, python-brace-format msgid "{config.PROJECT_NAME} | Activate Account" msgstr "{config.PROJECT_NAME} | تفعيل الحساب" -#: vibes_auth/utils/emailing.py:62 +#: engine/vibes_auth/utils/emailing.py:62 #, python-brace-format msgid "{config.PROJECT_NAME} | Reset Password" msgstr "{config.PROJECT_NAME} | إعادة تعيين كلمة المرور" -#: vibes_auth/validators.py:13 +#: engine/vibes_auth/validators.py:13 msgid "" "invalid phone number format. the number must be entered in the format: " "\"+999999999\". up to 15 digits allowed." @@ -513,7 +520,7 @@ msgstr "" "تنسيق رقم الهاتف غير صالح. يجب إدخال الرقم بالصيغة: \"+999999999\". يُسمح " "بإدخال 15 رقماً كحد أقصى." -#: vibes_auth/views.py:30 +#: engine/vibes_auth/views.py:30 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 " @@ -527,7 +534,7 @@ msgstr "" "الاعتماد المقدمة. وهو مبني على طريقة عرض الرمز المميز الأساسي ويضمن تحديد " "المعدل المناسب للحماية من هجمات القوة الغاشمة." -#: vibes_auth/views.py:48 +#: engine/vibes_auth/views.py:48 msgid "" "Handles refreshing of tokens for authentication purposes. This class is used " "to provide functionality for token refresh operations as part of an " @@ -540,7 +547,7 @@ msgstr "" "طلب رمز محدث ضمن حدود المعدل المحدد. تعتمد طريقة العرض على أداة التسلسل " "المرتبطة بها للتحقق من صحة مدخلات تحديث الرمز المميز وإنتاج مخرجات مناسبة." -#: vibes_auth/views.py:67 +#: engine/vibes_auth/views.py:67 msgid "" "Represents a view for verifying JSON Web Tokens (JWT) using specific " "serialization and validation logic. " @@ -548,11 +555,11 @@ msgstr "" "يمثل طريقة عرض للتحقق من رموز JSON Web Tokens (JWT) باستخدام تسلسل محدد " "ومنطق التحقق من الصحة." -#: vibes_auth/views.py:80 +#: engine/vibes_auth/views.py:80 msgid "the token is invalid" msgstr "الرمز المميز غير صالح" -#: vibes_auth/viewsets.py:45 +#: engine/vibes_auth/viewsets.py:45 msgid "" "User view set implementation.\n" "Provides a set of actions that manage user-related data such as creation, " @@ -567,10 +574,10 @@ msgstr "" "تعمل هذه الفئة على توسيع mixins و GenericViewSet لمعالجة واجهة برمجة " "التطبيقات القوية." -#: vibes_auth/viewsets.py:99 +#: engine/vibes_auth/viewsets.py:99 msgid "password reset successfully" msgstr "تمت إعادة تعيين كلمة المرور بنجاح!" -#: vibes_auth/viewsets.py:132 +#: engine/vibes_auth/viewsets.py:132 msgid "account already activated!" msgstr "لقد قمت بتفعيل الحساب بالفعل..." diff --git a/vibes_auth/locale/cs_CZ/LC_MESSAGES/django.mo b/engine/vibes_auth/locale/cs_CZ/LC_MESSAGES/django.mo similarity index 67% rename from vibes_auth/locale/cs_CZ/LC_MESSAGES/django.mo rename to engine/vibes_auth/locale/cs_CZ/LC_MESSAGES/django.mo index 7ee73750..1bf22691 100644 Binary files a/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/vibes_auth/locale/cs_CZ/LC_MESSAGES/django.po b/engine/vibes_auth/locale/cs_CZ/LC_MESSAGES/django.po similarity index 67% rename from vibes_auth/locale/cs_CZ/LC_MESSAGES/django.po rename to engine/vibes_auth/locale/cs_CZ/LC_MESSAGES/django.po index 221f7535..e566a225 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,158 +13,169 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: vibes_auth/admin.py:39 vibes_auth/admin.py:40 -#: vibes_auth/graphene/object_types.py:46 +#: engine/vibes_auth/admin.py:40 engine/vibes_auth/admin.py:41 +#: engine/vibes_auth/graphene/object_types.py:46 msgid "balance" msgstr "Bilance" -#: vibes_auth/admin.py:48 +#: engine/vibes_auth/admin.py:49 msgid "order" msgstr "Objednávka" -#: vibes_auth/admin.py:49 vibes_auth/graphene/object_types.py:44 +#: engine/vibes_auth/admin.py:50 engine/vibes_auth/graphene/object_types.py:44 msgid "orders" msgstr "Objednávky" -#: vibes_auth/admin.py:59 +#: engine/vibes_auth/admin.py:60 msgid "personal info" msgstr "Osobní informace" -#: vibes_auth/admin.py:63 vibes_auth/graphene/object_types.py:43 +#: engine/vibes_auth/admin.py:64 engine/vibes_auth/graphene/object_types.py:43 msgid "permissions" msgstr "Oprávnění" -#: vibes_auth/admin.py:76 +#: engine/vibes_auth/admin.py:77 msgid "important dates" msgstr "Důležitá data" -#: vibes_auth/admin.py:77 +#: engine/vibes_auth/admin.py:78 msgid "additional info" msgstr "Další informace" -#: vibes_auth/apps.py:8 +#: engine/vibes_auth/admin.py:145 +msgid "Close selected threads" +msgstr "Zavřít vybraná vlákna" + +#: engine/vibes_auth/admin.py:149 +msgid "Open selected threads" +msgstr "Otevřít vybraná vlákna" + +#: engine/vibes_auth/apps.py:8 msgid "authentication" msgstr "Ověřování" -#: vibes_auth/docs/drf/views.py:15 +#: engine/vibes_auth/docs/drf/views.py:15 msgid "obtain a token pair" msgstr "Získání páru tokenů" -#: vibes_auth/docs/drf/views.py:16 +#: engine/vibes_auth/docs/drf/views.py:16 msgid "obtain a token pair (refresh and access) for authentication." msgstr "Získat pár tokenů (obnovení a přístup) pro ověření." -#: vibes_auth/docs/drf/views.py:35 +#: engine/vibes_auth/docs/drf/views.py:35 msgid "refresh a token pair" msgstr "Obnovení páru tokenů" -#: vibes_auth/docs/drf/views.py:36 +#: engine/vibes_auth/docs/drf/views.py:36 msgid "refresh a token pair (refresh and access)." msgstr "Obnovení dvojice tokenů (obnovení a přístup)." -#: vibes_auth/docs/drf/views.py:55 +#: engine/vibes_auth/docs/drf/views.py:55 msgid "verify a token" msgstr "Ověření tokenu" -#: vibes_auth/docs/drf/views.py:56 +#: engine/vibes_auth/docs/drf/views.py:56 msgid "Verify a token (refresh or access)." msgstr "Ověření tokenu (obnovení nebo přístup)." -#: vibes_auth/docs/drf/views.py:62 vibes_auth/views.py:78 +#: engine/vibes_auth/docs/drf/views.py:62 engine/vibes_auth/views.py:78 msgid "the token is valid" msgstr "Token je platný" -#: vibes_auth/docs/drf/viewsets.py:16 +#: engine/vibes_auth/docs/drf/viewsets.py:16 msgid "create a new user" msgstr "Vytvoření nového uživatele" -#: vibes_auth/docs/drf/viewsets.py:21 +#: engine/vibes_auth/docs/drf/viewsets.py:21 msgid "retrieve a user's details" msgstr "Získání údajů o uživateli" -#: vibes_auth/docs/drf/viewsets.py:25 +#: engine/vibes_auth/docs/drf/viewsets.py:25 msgid "update a user's details" msgstr "Aktualizace údajů uživatele" -#: vibes_auth/docs/drf/viewsets.py:30 +#: engine/vibes_auth/docs/drf/viewsets.py:30 msgid "delete a user" msgstr "Odstranění uživatele" -#: vibes_auth/docs/drf/viewsets.py:34 +#: engine/vibes_auth/docs/drf/viewsets.py:34 msgid "reset a user's password by sending a reset password email" msgstr "Obnovení hesla uživatele odesláním e-mailu s obnovením hesla." -#: vibes_auth/docs/drf/viewsets.py:39 +#: engine/vibes_auth/docs/drf/viewsets.py:39 msgid "handle avatar upload for a user" msgstr "Zpracování nahrávání avataru pro uživatele" -#: vibes_auth/docs/drf/viewsets.py:54 +#: engine/vibes_auth/docs/drf/viewsets.py:54 msgid "confirm a user's password reset" msgstr "Potvrzení obnovení hesla uživatele" -#: vibes_auth/docs/drf/viewsets.py:58 vibes_auth/graphene/mutations.py:320 -#: vibes_auth/serializers.py:105 vibes_auth/serializers.py:109 -#: vibes_auth/viewsets.py:84 +#: engine/vibes_auth/docs/drf/viewsets.py:58 +#: engine/vibes_auth/graphene/mutations.py:320 +#: engine/vibes_auth/serializers.py:105 engine/vibes_auth/serializers.py:109 +#: engine/vibes_auth/viewsets.py:84 msgid "passwords do not match" msgstr "Hesla se neshodují" -#: vibes_auth/docs/drf/viewsets.py:63 +#: engine/vibes_auth/docs/drf/viewsets.py:63 msgid "activate a user's account" msgstr "Aktivace účtu uživatele" -#: vibes_auth/docs/drf/viewsets.py:67 +#: engine/vibes_auth/docs/drf/viewsets.py:67 msgid "activation link is invalid or account already activated" msgstr "Aktivační odkaz je neplatný nebo je účet již aktivován" -#: vibes_auth/docs/drf/viewsets.py:72 +#: engine/vibes_auth/docs/drf/viewsets.py:72 msgid "merge client-stored recently viewed products" msgstr "Sloučení naposledy zobrazených produktů uložených u klienta" -#: vibes_auth/graphene/mutations.py:41 +#: engine/vibes_auth/graphene/mutations.py:41 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." -#: vibes_auth/graphene/mutations.py:61 +#: engine/vibes_auth/graphene/mutations.py:61 msgid "password too weak" msgstr "Heslo je příliš slabé" -#: vibes_auth/graphene/mutations.py:110 +#: engine/vibes_auth/graphene/mutations.py:110 #, python-brace-format msgid "{name} does not exist: {uuid}" msgstr "{name} neexistuje: {uuid}!" -#: vibes_auth/graphene/mutations.py:120 +#: engine/vibes_auth/graphene/mutations.py:120 msgid "malformed email" msgstr "Špatně formulovaný e-mail" -#: vibes_auth/graphene/mutations.py:127 vibes_auth/serializers.py:115 +#: engine/vibes_auth/graphene/mutations.py:127 +#: engine/vibes_auth/serializers.py:115 #, python-brace-format msgid "malformed phone number: {phone_number}" msgstr "Chybně zadané telefonní číslo: {phone_number}!" -#: vibes_auth/graphene/mutations.py:149 +#: engine/vibes_auth/graphene/mutations.py:149 #, python-brace-format msgid "Invalid attribute format: {attribute_pair}" msgstr "Nesprávný formát atributu: {attribute_pair}!" -#: vibes_auth/graphene/mutations.py:273 vibes_auth/viewsets.py:127 -#: vibes_auth/viewsets.py:146 +#: engine/vibes_auth/graphene/mutations.py:273 +#: engine/vibes_auth/viewsets.py:127 engine/vibes_auth/viewsets.py:146 msgid "activation link is invalid!" msgstr "Aktivační odkaz je neplatný!" -#: vibes_auth/graphene/mutations.py:276 +#: engine/vibes_auth/graphene/mutations.py:276 msgid "account already activated..." msgstr "Účet byl již aktivován..." -#: vibes_auth/graphene/mutations.py:283 vibes_auth/graphene/mutations.py:339 +#: engine/vibes_auth/graphene/mutations.py:283 +#: engine/vibes_auth/graphene/mutations.py:339 msgid "something went wrong: {e!s}" msgstr "Něco se pokazilo: {e!s}" -#: vibes_auth/graphene/mutations.py:327 vibes_auth/viewsets.py:95 +#: engine/vibes_auth/graphene/mutations.py:327 engine/vibes_auth/viewsets.py:95 msgid "token is invalid!" msgstr "Token je neplatný!" -#: vibes_auth/graphene/object_types.py:40 +#: engine/vibes_auth/graphene/object_types.py:40 msgid "" "the products this user has viewed most recently (max 48), in reverse‐" "chronological order" @@ -172,100 +183,97 @@ msgstr "" "Produkty, které si tento uživatel prohlížel naposledy (max. 48), seřazené v " "opačném pořadí." -#: vibes_auth/graphene/object_types.py:42 vibes_auth/models.py:132 +#: engine/vibes_auth/graphene/object_types.py:42 +#: engine/vibes_auth/models.py:123 msgid "groups" msgstr "Skupiny" -#: vibes_auth/graphene/object_types.py:45 +#: engine/vibes_auth/graphene/object_types.py:45 msgid "wishlist" msgstr "Seznam přání" -#: vibes_auth/graphene/object_types.py:47 vibes_auth/models.py:58 +#: engine/vibes_auth/graphene/object_types.py:47 engine/vibes_auth/models.py:59 msgid "avatar" msgstr "Avatar" -#: vibes_auth/graphene/object_types.py:48 +#: engine/vibes_auth/graphene/object_types.py:48 msgid "attributes may be used to store custom data" msgstr "Atributy lze použít k uložení vlastních dat." -#: vibes_auth/graphene/object_types.py:49 +#: engine/vibes_auth/graphene/object_types.py:50 #, python-brace-format -msgid "language is one of the {LANGUAGES} with default {LANGUAGE_CODE}" -msgstr "Jazyk je jeden z {LANGUAGES} s výchozím {LANGUAGE_CODE}" +msgid "" +"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}" -#: vibes_auth/graphene/object_types.py:50 +#: engine/vibes_auth/graphene/object_types.py:52 msgid "address set" msgstr "Adresy" -#: vibes_auth/messaging/admin.py:36 -msgid "Close selected threads" -msgstr "Zavřít vybraná vlákna" - -#: vibes_auth/messaging/admin.py:40 -msgid "Open selected threads" -msgstr "Otevřít vybraná vlákna" - -#: vibes_auth/messaging/models.py:24 +#: engine/vibes_auth/messaging/models.py:24 msgid "Open" msgstr "Otevřít" -#: vibes_auth/messaging/models.py:25 +#: engine/vibes_auth/messaging/models.py:25 msgid "Closed" msgstr "Uzavřeno" -#: vibes_auth/messaging/models.py:29 +#: engine/vibes_auth/messaging/models.py:29 msgid "User" msgstr "Uživatel" -#: vibes_auth/messaging/models.py:30 +#: engine/vibes_auth/messaging/models.py:30 msgid "Staff" msgstr "Zaměstnanci" -#: vibes_auth/messaging/models.py:31 +#: engine/vibes_auth/messaging/models.py:31 msgid "System" msgstr "Systém" -#: vibes_auth/messaging/models.py:36 +#: engine/vibes_auth/messaging/models.py:36 msgid "For anonymous threads" msgstr "Pro anonymní vlákna" -#: vibes_auth/messaging/models.py:50 +#: engine/vibes_auth/messaging/models.py:50 msgid "Chat thread" msgstr "Vlákno chatu" -#: vibes_auth/messaging/models.py:51 +#: engine/vibes_auth/messaging/models.py:51 msgid "Chat threads" msgstr "Vlákna chatu" -#: vibes_auth/messaging/models.py:56 +#: engine/vibes_auth/messaging/models.py:56 msgid "Provide user or email for anonymous thread." msgstr "Zadejte uživatele nebo e-mail pro anonymní vlákno." -#: vibes_auth/messaging/models.py:58 vibes_auth/messaging/services.py:133 +#: engine/vibes_auth/messaging/models.py:58 +#: engine/vibes_auth/messaging/services.py:132 msgid "Assignee must be a staff user." msgstr "Příjemce musí být zaměstnanecký uživatel." -#: vibes_auth/messaging/models.py:74 +#: engine/vibes_auth/messaging/models.py:74 msgid "Chat message" msgstr "Zpráva na chatu" -#: vibes_auth/messaging/models.py:75 +#: engine/vibes_auth/messaging/models.py:75 msgid "Chat messages" msgstr "Zprávy v chatu" -#: vibes_auth/messaging/services.py:48 +#: engine/vibes_auth/messaging/services.py:47 msgid "Valid email is required for anonymous chats." msgstr "Pro anonymní chaty je vyžadován platný e-mail." -#: vibes_auth/messaging/services.py:56 +#: engine/vibes_auth/messaging/services.py:55 msgid "Message must be 1..1028 characters." msgstr "Zpráva musí mít 1..1028 znaků." -#: vibes_auth/messaging/services.py:90 +#: engine/vibes_auth/messaging/services.py:89 msgid "We're searching for the operator to answer you already, hold by!" msgstr "Už hledáme operátora, který vám odpoví, vydržte!" -#: vibes_auth/models.py:30 +#: engine/vibes_auth/models.py:31 msgid "" "Represents a User entity with customized fields and methods for extended " "functionality. This class extends the AbstractUser model and integrates " @@ -283,152 +291,152 @@ msgstr "" "User je navržen tak, aby zvládal specifické případy použití pro rozšířenou " "správu uživatelů." -#: vibes_auth/models.py:41 +#: engine/vibes_auth/models.py:42 msgid "email" msgstr "E-mail" -#: vibes_auth/models.py:41 +#: engine/vibes_auth/models.py:42 msgid "user email address" msgstr "E-mailová adresa uživatele" -#: vibes_auth/models.py:43 +#: engine/vibes_auth/models.py:44 msgid "phone_number" msgstr "Telefonní číslo" -#: vibes_auth/models.py:48 +#: engine/vibes_auth/models.py:49 msgid "user phone number" msgstr "Telefonní číslo uživatele" -#: vibes_auth/models.py:54 +#: engine/vibes_auth/models.py:55 msgid "first_name" msgstr "Křestní jméno" -#: vibes_auth/models.py:55 +#: engine/vibes_auth/models.py:56 msgid "last_name" msgstr "Příjmení" -#: vibes_auth/models.py:61 +#: engine/vibes_auth/models.py:62 msgid "user profile image" msgstr "Obrázek profilu uživatele" -#: vibes_auth/models.py:66 +#: engine/vibes_auth/models.py:67 msgid "is verified" msgstr "Je ověřeno" -#: vibes_auth/models.py:67 +#: engine/vibes_auth/models.py:68 msgid "user verification status" msgstr "Stav ověření uživatele" -#: vibes_auth/models.py:70 +#: engine/vibes_auth/models.py:71 msgid "is_active" msgstr "Je aktivní" -#: vibes_auth/models.py:72 +#: engine/vibes_auth/models.py:73 msgid "unselect this instead of deleting accounts" msgstr "Zrušení výběru této možnosti místo odstranění účtů" -#: vibes_auth/models.py:75 +#: engine/vibes_auth/models.py:76 msgid "is_subscribed" msgstr "Je přihlášena k odběru" -#: vibes_auth/models.py:75 +#: engine/vibes_auth/models.py:76 msgid "user's newsletter subscription status" msgstr "Stav odběru newsletteru uživatele" -#: vibes_auth/models.py:78 +#: engine/vibes_auth/models.py:79 msgid "activation token" msgstr "Aktivační token" -#: vibes_auth/models.py:80 +#: engine/vibes_auth/models.py:83 msgid "attributes" msgstr "Atributy" -#: vibes_auth/models.py:110 +#: engine/vibes_auth/models.py:115 msgid "user" msgstr "Uživatel" -#: vibes_auth/models.py:111 +#: engine/vibes_auth/models.py:116 msgid "users" msgstr "Uživatelé" -#: vibes_auth/models.py:131 +#: engine/vibes_auth/models.py:122 msgid "group" msgstr "Skupina" -#: vibes_auth/models.py:148 +#: engine/vibes_auth/models.py:129 msgid "outstanding token" msgstr "Vynikající žeton" -#: vibes_auth/models.py:149 +#: engine/vibes_auth/models.py:130 msgid "outstanding tokens" msgstr "Nevyplacené žetony" -#: vibes_auth/models.py:167 +#: engine/vibes_auth/models.py:136 msgid "blacklisted token" msgstr "Token na černé listině" -#: vibes_auth/models.py:168 +#: engine/vibes_auth/models.py:137 msgid "blacklisted tokens" msgstr "Tokeny na černé listině" -#: vibes_auth/serializers.py:99 +#: engine/vibes_auth/serializers.py:99 msgid "attributes must be a dictionary" msgstr "`attributes` musí být slovník" -#: vibes_auth/serializers.py:101 +#: engine/vibes_auth/serializers.py:101 msgid "business identificator is required when registering as a business" msgstr "Při registraci podniku je vyžadován identifikátor podniku." -#: vibes_auth/serializers.py:121 +#: engine/vibes_auth/serializers.py:121 #, python-brace-format msgid "malformed email: {email}" msgstr "nesprávně formulovaný e-mail: {email}" -#: vibes_auth/serializers.py:142 vibes_auth/serializers.py:164 -#: vibes_auth/serializers.py:186 vibes_auth/serializers.py:198 +#: engine/vibes_auth/serializers.py:142 engine/vibes_auth/serializers.py:164 +#: engine/vibes_auth/serializers.py:184 engine/vibes_auth/serializers.py:194 msgid "no active account" msgstr "Nebyl nalezen žádný aktivní účet" -#: vibes_auth/serializers.py:174 +#: engine/vibes_auth/serializers.py:174 msgid "must set token_class attribute on class." msgstr "Musí být nastaven atribut token_class na třídě!" -#: vibes_auth/serializers.py:246 +#: engine/vibes_auth/serializers.py:240 msgid "token_blacklisted" msgstr "Token na černé listině" -#: vibes_auth/serializers.py:251 +#: engine/vibes_auth/serializers.py:245 msgid "invalid token" msgstr "Neplatný token" -#: vibes_auth/serializers.py:257 +#: engine/vibes_auth/serializers.py:251 msgid "no user uuid claim present in token" msgstr "V tokenu není deklarace uuid uživatele" -#: vibes_auth/serializers.py:259 +#: engine/vibes_auth/serializers.py:253 msgid "user does not exist" msgstr "Uživatel neexistuje" -#: vibes_auth/templates/user_reset_password_email.html:7 +#: engine/vibes_auth/templates/user_reset_password_email.html:7 msgid "reset your password" msgstr "Obnovení hesla" -#: vibes_auth/templates/user_reset_password_email.html:85 -#: vibes_auth/templates/user_verification_email.html:85 +#: engine/vibes_auth/templates/user_reset_password_email.html:85 +#: engine/vibes_auth/templates/user_verification_email.html:85 msgid "logo" msgstr "Logo" -#: vibes_auth/templates/user_reset_password_email.html:90 +#: engine/vibes_auth/templates/user_reset_password_email.html:90 msgid "password reset confirmation" msgstr "Potvrzení obnovení hesla" -#: vibes_auth/templates/user_reset_password_email.html:91 -#: vibes_auth/templates/user_verification_email.html:91 +#: engine/vibes_auth/templates/user_reset_password_email.html:91 +#: engine/vibes_auth/templates/user_verification_email.html:91 #, python-format msgid "hello %(user_first_name)s," msgstr "Ahoj %(user_first_name)s," -#: vibes_auth/templates/user_reset_password_email.html:92 +#: 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" @@ -437,12 +445,12 @@ msgstr "" "Obdrželi jsme žádost o obnovení vašeho hesla. Kliknutím na níže uvedené " "tlačítko obnovte své heslo:" -#: vibes_auth/templates/user_reset_password_email.html:95 +#: engine/vibes_auth/templates/user_reset_password_email.html:95 msgid "reset password" msgstr "obnovení hesla" -#: vibes_auth/templates/user_reset_password_email.html:97 -#: vibes_auth/templates/user_verification_email.html:99 +#: engine/vibes_auth/templates/user_reset_password_email.html:97 +#: engine/vibes_auth/templates/user_verification_email.html:99 msgid "" "if the button above does not work, please copy and paste the following URL\n" " into your web browser:" @@ -451,7 +459,7 @@ msgstr "" "adresu URL\n" " do webového prohlížeče:" -#: vibes_auth/templates/user_reset_password_email.html:100 +#: engine/vibes_auth/templates/user_reset_password_email.html:100 msgid "" "if you did not send this request, please ignore this\n" " email." @@ -459,22 +467,22 @@ msgstr "" "pokud jste tuto žádost neposlali, ignorujte ji.\n" " e-mail." -#: vibes_auth/templates/user_reset_password_email.html:102 +#: engine/vibes_auth/templates/user_reset_password_email.html:102 #, python-format msgid "best regards,
The %(project_name)s team" msgstr "S pozdravem,
Tým %(project_name)s" -#: vibes_auth/templates/user_reset_password_email.html:108 -#: vibes_auth/templates/user_verification_email.html:108 +#: engine/vibes_auth/templates/user_reset_password_email.html:108 +#: engine/vibes_auth/templates/user_verification_email.html:108 msgid "all rights reserved" msgstr "Všechna práva vyhrazena" -#: vibes_auth/templates/user_verification_email.html:7 -#: vibes_auth/templates/user_verification_email.html:90 +#: engine/vibes_auth/templates/user_verification_email.html:7 +#: engine/vibes_auth/templates/user_verification_email.html:90 msgid "activate your account" msgstr "Aktivace účtu" -#: vibes_auth/templates/user_verification_email.html:92 +#: engine/vibes_auth/templates/user_verification_email.html:92 #, python-format msgid "" "thank you for signing up for %(project_name)s. please activate your account\n" @@ -483,7 +491,7 @@ msgstr "" "Děkujeme, že jste se přihlásili k projektu %(project_name)s. Aktivujte " "prosím svůj účet kliknutím na tlačítko níže:" -#: vibes_auth/templates/user_verification_email.html:96 +#: engine/vibes_auth/templates/user_verification_email.html:96 msgid "" "activate\n" " account" @@ -491,22 +499,22 @@ msgstr "" "Aktivace\n" " účet" -#: vibes_auth/templates/user_verification_email.html:102 +#: engine/vibes_auth/templates/user_verification_email.html:102 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "S pozdravem,
tým %(project_name)s" -#: vibes_auth/utils/emailing.py:23 +#: engine/vibes_auth/utils/emailing.py:23 #, python-brace-format msgid "{config.PROJECT_NAME} | Activate Account" msgstr "{config.PROJECT_NAME} | Aktivovat účet" -#: vibes_auth/utils/emailing.py:62 +#: engine/vibes_auth/utils/emailing.py:62 #, python-brace-format msgid "{config.PROJECT_NAME} | Reset Password" msgstr "{config.PROJECT_NAME} | Obnovit heslo" -#: vibes_auth/validators.py:13 +#: engine/vibes_auth/validators.py:13 msgid "" "invalid phone number format. the number must be entered in the format: " "\"+999999999\". up to 15 digits allowed." @@ -514,7 +522,7 @@ msgstr "" "Nesprávný formát telefonního čísla. Číslo musí být zadáno ve formátu: " "\"+999999999\". Povoleno je až 15 číslic." -#: vibes_auth/views.py:30 +#: engine/vibes_auth/views.py:30 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 " @@ -529,7 +537,7 @@ msgstr "" "zobrazením tokenu a zajišťuje správné omezení rychlosti pro ochranu před " "útoky hrubou silou." -#: vibes_auth/views.py:48 +#: engine/vibes_auth/views.py:48 msgid "" "Handles refreshing of tokens for authentication purposes. This class is used " "to provide functionality for token refresh operations as part of an " @@ -543,7 +551,7 @@ msgstr "" "limitů rychlosti. Zobrazení se spoléhá na přidružený serializér, který " "ověřuje vstupy pro obnovení tokenu a vytváří příslušné výstupy." -#: vibes_auth/views.py:67 +#: engine/vibes_auth/views.py:67 msgid "" "Represents a view for verifying JSON Web Tokens (JWT) using specific " "serialization and validation logic. " @@ -551,11 +559,11 @@ msgstr "" "Představuje zobrazení pro ověřování webových tokenů JSON (JWT) pomocí " "specifické serializační a validační logiky." -#: vibes_auth/views.py:80 +#: engine/vibes_auth/views.py:80 msgid "the token is invalid" msgstr "Token je neplatný" -#: vibes_auth/viewsets.py:45 +#: engine/vibes_auth/viewsets.py:45 msgid "" "User view set implementation.\n" "Provides a set of actions that manage user-related data such as creation, " @@ -570,10 +578,10 @@ msgstr "" "položek. Tato třída rozšiřuje mixiny a GenericViewSet pro robustní " "zpracování API." -#: vibes_auth/viewsets.py:99 +#: engine/vibes_auth/viewsets.py:99 msgid "password reset successfully" msgstr "Heslo bylo úspěšně resetováno!" -#: vibes_auth/viewsets.py:132 +#: engine/vibes_auth/viewsets.py:132 msgid "account already activated!" msgstr "Účet jste již aktivovali..." diff --git a/vibes_auth/locale/da_DK/LC_MESSAGES/django.mo b/engine/vibes_auth/locale/da_DK/LC_MESSAGES/django.mo similarity index 65% rename from vibes_auth/locale/da_DK/LC_MESSAGES/django.mo rename to engine/vibes_auth/locale/da_DK/LC_MESSAGES/django.mo index 9e350889..0d82ed6e 100644 Binary files a/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/vibes_auth/locale/da_DK/LC_MESSAGES/django.po b/engine/vibes_auth/locale/da_DK/LC_MESSAGES/django.po similarity index 67% rename from vibes_auth/locale/da_DK/LC_MESSAGES/django.po rename to engine/vibes_auth/locale/da_DK/LC_MESSAGES/django.po index 6c59e216..94d92222 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,160 +13,171 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: vibes_auth/admin.py:39 vibes_auth/admin.py:40 -#: vibes_auth/graphene/object_types.py:46 +#: engine/vibes_auth/admin.py:40 engine/vibes_auth/admin.py:41 +#: engine/vibes_auth/graphene/object_types.py:46 msgid "balance" msgstr "Balance" -#: vibes_auth/admin.py:48 +#: engine/vibes_auth/admin.py:49 msgid "order" msgstr "Bestil" -#: vibes_auth/admin.py:49 vibes_auth/graphene/object_types.py:44 +#: engine/vibes_auth/admin.py:50 engine/vibes_auth/graphene/object_types.py:44 msgid "orders" msgstr "Bestillinger" -#: vibes_auth/admin.py:59 +#: engine/vibes_auth/admin.py:60 msgid "personal info" msgstr "Personlig information" -#: vibes_auth/admin.py:63 vibes_auth/graphene/object_types.py:43 +#: engine/vibes_auth/admin.py:64 engine/vibes_auth/graphene/object_types.py:43 msgid "permissions" msgstr "Tilladelser" -#: vibes_auth/admin.py:76 +#: engine/vibes_auth/admin.py:77 msgid "important dates" msgstr "Vigtige datoer" -#: vibes_auth/admin.py:77 +#: engine/vibes_auth/admin.py:78 msgid "additional info" msgstr "Yderligere information" -#: vibes_auth/apps.py:8 +#: engine/vibes_auth/admin.py:145 +msgid "Close selected threads" +msgstr "Luk udvalgte tråde" + +#: engine/vibes_auth/admin.py:149 +msgid "Open selected threads" +msgstr "Åbn udvalgte tråde" + +#: engine/vibes_auth/apps.py:8 msgid "authentication" msgstr "Autentificering" -#: vibes_auth/docs/drf/views.py:15 +#: engine/vibes_auth/docs/drf/views.py:15 msgid "obtain a token pair" msgstr "Få et token-par" -#: vibes_auth/docs/drf/views.py:16 +#: engine/vibes_auth/docs/drf/views.py:16 msgid "obtain a token pair (refresh and access) for authentication." msgstr "Hent et tokenpar (refresh og access) til autentificering." -#: vibes_auth/docs/drf/views.py:35 +#: engine/vibes_auth/docs/drf/views.py:35 msgid "refresh a token pair" msgstr "Opdater et token-par" -#: vibes_auth/docs/drf/views.py:36 +#: engine/vibes_auth/docs/drf/views.py:36 msgid "refresh a token pair (refresh and access)." msgstr "Opdater et tokenpar (refresh og access)." -#: vibes_auth/docs/drf/views.py:55 +#: engine/vibes_auth/docs/drf/views.py:55 msgid "verify a token" msgstr "Bekræft et token" -#: vibes_auth/docs/drf/views.py:56 +#: engine/vibes_auth/docs/drf/views.py:56 msgid "Verify a token (refresh or access)." msgstr "Bekræft et token (opdatering eller adgang)." -#: vibes_auth/docs/drf/views.py:62 vibes_auth/views.py:78 +#: engine/vibes_auth/docs/drf/views.py:62 engine/vibes_auth/views.py:78 msgid "the token is valid" msgstr "Tokenet er gyldigt" -#: vibes_auth/docs/drf/viewsets.py:16 +#: engine/vibes_auth/docs/drf/viewsets.py:16 msgid "create a new user" msgstr "Opret en ny bruger" -#: vibes_auth/docs/drf/viewsets.py:21 +#: engine/vibes_auth/docs/drf/viewsets.py:21 msgid "retrieve a user's details" msgstr "Hent oplysninger om en bruger" -#: vibes_auth/docs/drf/viewsets.py:25 +#: engine/vibes_auth/docs/drf/viewsets.py:25 msgid "update a user's details" msgstr "Opdater en brugers oplysninger" -#: vibes_auth/docs/drf/viewsets.py:30 +#: engine/vibes_auth/docs/drf/viewsets.py:30 msgid "delete a user" msgstr "Slet en bruger" -#: vibes_auth/docs/drf/viewsets.py:34 +#: engine/vibes_auth/docs/drf/viewsets.py:34 msgid "reset a user's password by sending a reset password email" msgstr "" "Nulstil en brugers adgangskode ved at sende en e-mail om nulstilling af " "adgangskode" -#: vibes_auth/docs/drf/viewsets.py:39 +#: engine/vibes_auth/docs/drf/viewsets.py:39 msgid "handle avatar upload for a user" msgstr "Håndter upload af avatar for en bruger" -#: vibes_auth/docs/drf/viewsets.py:54 +#: engine/vibes_auth/docs/drf/viewsets.py:54 msgid "confirm a user's password reset" msgstr "Bekræft nulstilling af en brugers adgangskode" -#: vibes_auth/docs/drf/viewsets.py:58 vibes_auth/graphene/mutations.py:320 -#: vibes_auth/serializers.py:105 vibes_auth/serializers.py:109 -#: vibes_auth/viewsets.py:84 +#: engine/vibes_auth/docs/drf/viewsets.py:58 +#: engine/vibes_auth/graphene/mutations.py:320 +#: engine/vibes_auth/serializers.py:105 engine/vibes_auth/serializers.py:109 +#: engine/vibes_auth/viewsets.py:84 msgid "passwords do not match" msgstr "Adgangskoderne stemmer ikke overens" -#: vibes_auth/docs/drf/viewsets.py:63 +#: engine/vibes_auth/docs/drf/viewsets.py:63 msgid "activate a user's account" msgstr "Aktivér en brugers konto" -#: vibes_auth/docs/drf/viewsets.py:67 +#: engine/vibes_auth/docs/drf/viewsets.py:67 msgid "activation link is invalid or account already activated" msgstr "Aktiveringslinket er ugyldigt, eller kontoen er allerede aktiveret" -#: vibes_auth/docs/drf/viewsets.py:72 +#: engine/vibes_auth/docs/drf/viewsets.py:72 msgid "merge client-stored recently viewed products" msgstr "Flet nyligt viste produkter, der er gemt af klienten" -#: vibes_auth/graphene/mutations.py:41 +#: engine/vibes_auth/graphene/mutations.py:41 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." -#: vibes_auth/graphene/mutations.py:61 +#: engine/vibes_auth/graphene/mutations.py:61 msgid "password too weak" msgstr "Adgangskoden er for svag" -#: vibes_auth/graphene/mutations.py:110 +#: engine/vibes_auth/graphene/mutations.py:110 #, python-brace-format msgid "{name} does not exist: {uuid}" msgstr "{name} findes ikke: {uuid}!" -#: vibes_auth/graphene/mutations.py:120 +#: engine/vibes_auth/graphene/mutations.py:120 msgid "malformed email" msgstr "Misdannet e-mail" -#: vibes_auth/graphene/mutations.py:127 vibes_auth/serializers.py:115 +#: engine/vibes_auth/graphene/mutations.py:127 +#: engine/vibes_auth/serializers.py:115 #, python-brace-format msgid "malformed phone number: {phone_number}" msgstr "Misdannet telefonnummer: {phone_number}!" -#: vibes_auth/graphene/mutations.py:149 +#: engine/vibes_auth/graphene/mutations.py:149 #, python-brace-format msgid "Invalid attribute format: {attribute_pair}" msgstr "Ugyldigt attributformat: {attribute_pair}!" -#: vibes_auth/graphene/mutations.py:273 vibes_auth/viewsets.py:127 -#: vibes_auth/viewsets.py:146 +#: engine/vibes_auth/graphene/mutations.py:273 +#: engine/vibes_auth/viewsets.py:127 engine/vibes_auth/viewsets.py:146 msgid "activation link is invalid!" msgstr "Aktiveringslinket er ugyldigt!" -#: vibes_auth/graphene/mutations.py:276 +#: engine/vibes_auth/graphene/mutations.py:276 msgid "account already activated..." msgstr "Kontoen er allerede aktiveret..." -#: vibes_auth/graphene/mutations.py:283 vibes_auth/graphene/mutations.py:339 +#: engine/vibes_auth/graphene/mutations.py:283 +#: engine/vibes_auth/graphene/mutations.py:339 msgid "something went wrong: {e!s}" msgstr "Noget gik galt: {e!s}" -#: vibes_auth/graphene/mutations.py:327 vibes_auth/viewsets.py:95 +#: engine/vibes_auth/graphene/mutations.py:327 engine/vibes_auth/viewsets.py:95 msgid "token is invalid!" msgstr "Token er ugyldig!" -#: vibes_auth/graphene/object_types.py:40 +#: engine/vibes_auth/graphene/object_types.py:40 msgid "" "the products this user has viewed most recently (max 48), in reverse‐" "chronological order" @@ -174,100 +185,97 @@ msgstr "" "De produkter, som denne bruger har set for nylig (maks. 48), i omvendt " "kronologisk rækkefølge." -#: vibes_auth/graphene/object_types.py:42 vibes_auth/models.py:132 +#: engine/vibes_auth/graphene/object_types.py:42 +#: engine/vibes_auth/models.py:123 msgid "groups" msgstr "Grupper" -#: vibes_auth/graphene/object_types.py:45 +#: engine/vibes_auth/graphene/object_types.py:45 msgid "wishlist" msgstr "Ønskeliste" -#: vibes_auth/graphene/object_types.py:47 vibes_auth/models.py:58 +#: engine/vibes_auth/graphene/object_types.py:47 engine/vibes_auth/models.py:59 msgid "avatar" msgstr "Avatar" -#: vibes_auth/graphene/object_types.py:48 +#: engine/vibes_auth/graphene/object_types.py:48 msgid "attributes may be used to store custom data" msgstr "Attributter kan bruges til at gemme brugerdefinerede data" -#: vibes_auth/graphene/object_types.py:49 +#: engine/vibes_auth/graphene/object_types.py:50 #, python-brace-format -msgid "language is one of the {LANGUAGES} with default {LANGUAGE_CODE}" -msgstr "Sprog er en af {LANGUAGES} med standard {LANGUAGE_CODE}." +msgid "" +"language is one of the {settings.LANGUAGES} with default {settings." +"LANGUAGE_CODE}" +msgstr "" +"Sprog er en af {settings.LANGUAGES} med standard {settings.LANGUAGE_CODE}." -#: vibes_auth/graphene/object_types.py:50 +#: engine/vibes_auth/graphene/object_types.py:52 msgid "address set" msgstr "Adresser" -#: vibes_auth/messaging/admin.py:36 -msgid "Close selected threads" -msgstr "Luk udvalgte tråde" - -#: vibes_auth/messaging/admin.py:40 -msgid "Open selected threads" -msgstr "Åbn udvalgte tråde" - -#: vibes_auth/messaging/models.py:24 +#: engine/vibes_auth/messaging/models.py:24 msgid "Open" msgstr "Åben" -#: vibes_auth/messaging/models.py:25 +#: engine/vibes_auth/messaging/models.py:25 msgid "Closed" msgstr "Lukket" -#: vibes_auth/messaging/models.py:29 +#: engine/vibes_auth/messaging/models.py:29 msgid "User" msgstr "Bruger" -#: vibes_auth/messaging/models.py:30 +#: engine/vibes_auth/messaging/models.py:30 msgid "Staff" msgstr "Personale" -#: vibes_auth/messaging/models.py:31 +#: engine/vibes_auth/messaging/models.py:31 msgid "System" msgstr "System" -#: vibes_auth/messaging/models.py:36 +#: engine/vibes_auth/messaging/models.py:36 msgid "For anonymous threads" msgstr "Til anonyme tråde" -#: vibes_auth/messaging/models.py:50 +#: engine/vibes_auth/messaging/models.py:50 msgid "Chat thread" msgstr "Chat-tråd" -#: vibes_auth/messaging/models.py:51 +#: engine/vibes_auth/messaging/models.py:51 msgid "Chat threads" msgstr "Chat-tråde" -#: vibes_auth/messaging/models.py:56 +#: engine/vibes_auth/messaging/models.py:56 msgid "Provide user or email for anonymous thread." msgstr "Angiv bruger eller e-mail for anonym tråd." -#: vibes_auth/messaging/models.py:58 vibes_auth/messaging/services.py:133 +#: engine/vibes_auth/messaging/models.py:58 +#: engine/vibes_auth/messaging/services.py:132 msgid "Assignee must be a staff user." msgstr "Modtageren skal være en personalebruger." -#: vibes_auth/messaging/models.py:74 +#: engine/vibes_auth/messaging/models.py:74 msgid "Chat message" msgstr "Chat-besked" -#: vibes_auth/messaging/models.py:75 +#: engine/vibes_auth/messaging/models.py:75 msgid "Chat messages" msgstr "Chat-beskeder" -#: vibes_auth/messaging/services.py:48 +#: engine/vibes_auth/messaging/services.py:47 msgid "Valid email is required for anonymous chats." msgstr "Gyldig e-mail er påkrævet for anonyme chats." -#: vibes_auth/messaging/services.py:56 +#: engine/vibes_auth/messaging/services.py:55 msgid "Message must be 1..1028 characters." msgstr "Beskeden skal bestå af 1..1028 tegn." -#: vibes_auth/messaging/services.py:90 +#: engine/vibes_auth/messaging/services.py:89 msgid "We're searching for the operator to answer you already, hold by!" msgstr "Vi leder allerede efter en operatør, der kan svare dig, så vent!" -#: vibes_auth/models.py:30 +#: engine/vibes_auth/models.py:31 msgid "" "Represents a User entity with customized fields and methods for extended " "functionality. This class extends the AbstractUser model and integrates " @@ -285,153 +293,153 @@ msgstr "" "aktivering til verificering af konti. User-modellen er designet til at " "håndtere specifikke brugsscenarier for forbedret brugeradministration." -#: vibes_auth/models.py:41 +#: engine/vibes_auth/models.py:42 msgid "email" msgstr "E-mail" -#: vibes_auth/models.py:41 +#: engine/vibes_auth/models.py:42 msgid "user email address" msgstr "Brugerens e-mailadresse" -#: vibes_auth/models.py:43 +#: engine/vibes_auth/models.py:44 msgid "phone_number" msgstr "Telefonnummer" -#: vibes_auth/models.py:48 +#: engine/vibes_auth/models.py:49 msgid "user phone number" msgstr "Brugerens telefonnummer" -#: vibes_auth/models.py:54 +#: engine/vibes_auth/models.py:55 msgid "first_name" msgstr "Fornavn" -#: vibes_auth/models.py:55 +#: engine/vibes_auth/models.py:56 msgid "last_name" msgstr "Efternavn" -#: vibes_auth/models.py:61 +#: engine/vibes_auth/models.py:62 msgid "user profile image" msgstr "Billede af brugerprofil" -#: vibes_auth/models.py:66 +#: engine/vibes_auth/models.py:67 msgid "is verified" msgstr "Er verificeret" -#: vibes_auth/models.py:67 +#: engine/vibes_auth/models.py:68 msgid "user verification status" msgstr "Brugerens verifikationsstatus" -#: vibes_auth/models.py:70 +#: engine/vibes_auth/models.py:71 msgid "is_active" msgstr "Er aktiv" -#: vibes_auth/models.py:72 +#: engine/vibes_auth/models.py:73 msgid "unselect this instead of deleting accounts" msgstr "Fravælg dette i stedet for at slette konti" -#: vibes_auth/models.py:75 +#: engine/vibes_auth/models.py:76 msgid "is_subscribed" msgstr "Er tilmeldt" -#: vibes_auth/models.py:75 +#: engine/vibes_auth/models.py:76 msgid "user's newsletter subscription status" msgstr "Status for brugerens abonnement på nyhedsbrev" -#: vibes_auth/models.py:78 +#: engine/vibes_auth/models.py:79 msgid "activation token" msgstr "Aktiveringstoken" -#: vibes_auth/models.py:80 +#: engine/vibes_auth/models.py:83 msgid "attributes" msgstr "Egenskaber" -#: vibes_auth/models.py:110 +#: engine/vibes_auth/models.py:115 msgid "user" msgstr "Bruger" -#: vibes_auth/models.py:111 +#: engine/vibes_auth/models.py:116 msgid "users" msgstr "Brugere" -#: vibes_auth/models.py:131 +#: engine/vibes_auth/models.py:122 msgid "group" msgstr "Gruppe" -#: vibes_auth/models.py:148 +#: engine/vibes_auth/models.py:129 msgid "outstanding token" msgstr "Enestående token" -#: vibes_auth/models.py:149 +#: engine/vibes_auth/models.py:130 msgid "outstanding tokens" msgstr "Udestående tokens" -#: vibes_auth/models.py:167 +#: engine/vibes_auth/models.py:136 msgid "blacklisted token" msgstr "Sortlistet token" -#: vibes_auth/models.py:168 +#: engine/vibes_auth/models.py:137 msgid "blacklisted tokens" msgstr "Sortlistede tokens" -#: vibes_auth/serializers.py:99 +#: engine/vibes_auth/serializers.py:99 msgid "attributes must be a dictionary" msgstr "`attributes` skal være en ordbog" -#: vibes_auth/serializers.py:101 +#: engine/vibes_auth/serializers.py:101 msgid "business identificator is required when registering as a business" msgstr "" "Virksomhedsidentifikator er påkrævet, når man registrerer sig som virksomhed" -#: vibes_auth/serializers.py:121 +#: engine/vibes_auth/serializers.py:121 #, python-brace-format msgid "malformed email: {email}" msgstr "Misdannet e-mail: {email}." -#: vibes_auth/serializers.py:142 vibes_auth/serializers.py:164 -#: vibes_auth/serializers.py:186 vibes_auth/serializers.py:198 +#: engine/vibes_auth/serializers.py:142 engine/vibes_auth/serializers.py:164 +#: engine/vibes_auth/serializers.py:184 engine/vibes_auth/serializers.py:194 msgid "no active account" msgstr "Ingen aktiv konto fundet" -#: vibes_auth/serializers.py:174 +#: engine/vibes_auth/serializers.py:174 msgid "must set token_class attribute on class." msgstr "Skal sætte token_class-attributten på klassen!" -#: vibes_auth/serializers.py:246 +#: engine/vibes_auth/serializers.py:240 msgid "token_blacklisted" msgstr "Token blacklistet" -#: vibes_auth/serializers.py:251 +#: engine/vibes_auth/serializers.py:245 msgid "invalid token" msgstr "Ugyldigt token" -#: vibes_auth/serializers.py:257 +#: engine/vibes_auth/serializers.py:251 msgid "no user uuid claim present in token" msgstr "Ingen bruger-uuid-krav til stede i token" -#: vibes_auth/serializers.py:259 +#: engine/vibes_auth/serializers.py:253 msgid "user does not exist" msgstr "Brugeren findes ikke" -#: vibes_auth/templates/user_reset_password_email.html:7 +#: engine/vibes_auth/templates/user_reset_password_email.html:7 msgid "reset your password" msgstr "Nulstil din adgangskode" -#: vibes_auth/templates/user_reset_password_email.html:85 -#: vibes_auth/templates/user_verification_email.html:85 +#: engine/vibes_auth/templates/user_reset_password_email.html:85 +#: engine/vibes_auth/templates/user_verification_email.html:85 msgid "logo" msgstr "Logo" -#: vibes_auth/templates/user_reset_password_email.html:90 +#: engine/vibes_auth/templates/user_reset_password_email.html:90 msgid "password reset confirmation" msgstr "Bekræftelse af nulstilling af adgangskode" -#: vibes_auth/templates/user_reset_password_email.html:91 -#: vibes_auth/templates/user_verification_email.html:91 +#: engine/vibes_auth/templates/user_reset_password_email.html:91 +#: engine/vibes_auth/templates/user_verification_email.html:91 #, python-format msgid "hello %(user_first_name)s," msgstr "Hej %(user_first_name)s," -#: vibes_auth/templates/user_reset_password_email.html:92 +#: 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" @@ -440,12 +448,12 @@ msgstr "" "Vi har modtaget en anmodning om at nulstille din adgangskode. Nulstil " "venligst din adgangskode ved at klikke på knappen nedenfor:" -#: vibes_auth/templates/user_reset_password_email.html:95 +#: engine/vibes_auth/templates/user_reset_password_email.html:95 msgid "reset password" msgstr "Nulstil adgangskode" -#: vibes_auth/templates/user_reset_password_email.html:97 -#: vibes_auth/templates/user_verification_email.html:99 +#: engine/vibes_auth/templates/user_reset_password_email.html:97 +#: engine/vibes_auth/templates/user_verification_email.html:99 msgid "" "if the button above does not work, please copy and paste the following URL\n" " into your web browser:" @@ -454,29 +462,29 @@ msgstr "" "URL\n" " i din webbrowser:" -#: vibes_auth/templates/user_reset_password_email.html:100 +#: engine/vibes_auth/templates/user_reset_password_email.html:100 msgid "" "if you did not send this request, please ignore this\n" " email." msgstr "" "Hvis du ikke har sendt denne anmodning, bedes du ignorere denne e-mail." -#: vibes_auth/templates/user_reset_password_email.html:102 +#: engine/vibes_auth/templates/user_reset_password_email.html:102 #, python-format msgid "best regards,
The %(project_name)s team" msgstr "Bedste hilsner,
The %(project_name)s team" -#: vibes_auth/templates/user_reset_password_email.html:108 -#: vibes_auth/templates/user_verification_email.html:108 +#: engine/vibes_auth/templates/user_reset_password_email.html:108 +#: engine/vibes_auth/templates/user_verification_email.html:108 msgid "all rights reserved" msgstr "Alle rettigheder forbeholdes" -#: vibes_auth/templates/user_verification_email.html:7 -#: vibes_auth/templates/user_verification_email.html:90 +#: engine/vibes_auth/templates/user_verification_email.html:7 +#: engine/vibes_auth/templates/user_verification_email.html:90 msgid "activate your account" msgstr "Aktivér din konto" -#: vibes_auth/templates/user_verification_email.html:92 +#: engine/vibes_auth/templates/user_verification_email.html:92 #, python-format msgid "" "thank you for signing up for %(project_name)s. please activate your account\n" @@ -485,7 +493,7 @@ msgstr "" "Tak, fordi du har tilmeldt dig %(project_name)s. Aktivér venligst din konto " "ved at klikke på knappen nedenfor:" -#: vibes_auth/templates/user_verification_email.html:96 +#: engine/vibes_auth/templates/user_verification_email.html:96 msgid "" "activate\n" " account" @@ -493,22 +501,22 @@ msgstr "" "Aktiver\n" " Konto" -#: vibes_auth/templates/user_verification_email.html:102 +#: engine/vibes_auth/templates/user_verification_email.html:102 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "Med venlig hilsen,
teamet %(project_name)s." -#: vibes_auth/utils/emailing.py:23 +#: engine/vibes_auth/utils/emailing.py:23 #, python-brace-format msgid "{config.PROJECT_NAME} | Activate Account" msgstr "{config.PROJECT_NAME} | Aktiver konto" -#: vibes_auth/utils/emailing.py:62 +#: engine/vibes_auth/utils/emailing.py:62 #, python-brace-format msgid "{config.PROJECT_NAME} | Reset Password" msgstr "{config.PROJECT_NAME} | Nulstil adgangskode" -#: vibes_auth/validators.py:13 +#: engine/vibes_auth/validators.py:13 msgid "" "invalid phone number format. the number must be entered in the format: " "\"+999999999\". up to 15 digits allowed." @@ -516,7 +524,7 @@ msgstr "" "Ugyldigt telefonnummerformat. Nummeret skal indtastes i formatet: " "\"+999999999\". Op til 15 cifre er tilladt." -#: vibes_auth/views.py:30 +#: engine/vibes_auth/views.py:30 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 " @@ -531,7 +539,7 @@ msgstr "" "oven på en basis-tokenvisning og sikrer korrekt hastighedsbegrænsning for at " "beskytte mod brute force-angreb." -#: vibes_auth/views.py:48 +#: engine/vibes_auth/views.py:48 msgid "" "Handles refreshing of tokens for authentication purposes. This class is used " "to provide functionality for token refresh operations as part of an " @@ -546,7 +554,7 @@ msgstr "" "tilknyttede serializer til at validere tokenopdateringsinput og producere " "passende output." -#: vibes_auth/views.py:67 +#: engine/vibes_auth/views.py:67 msgid "" "Represents a view for verifying JSON Web Tokens (JWT) using specific " "serialization and validation logic. " @@ -554,11 +562,11 @@ msgstr "" "Repræsenterer en visning til verificering af JSON Web Tokens (JWT) ved hjælp " "af specifik serialiserings- og valideringslogik." -#: vibes_auth/views.py:80 +#: engine/vibes_auth/views.py:80 msgid "the token is invalid" msgstr "Tokenet er ugyldigt" -#: vibes_auth/viewsets.py:45 +#: engine/vibes_auth/viewsets.py:45 msgid "" "User view set implementation.\n" "Provides a set of actions that manage user-related data such as creation, " @@ -573,10 +581,10 @@ msgstr "" "sammenlægning af nyligt viste elementer. Denne klasse udvider mixins og " "GenericViewSet til robust API-håndtering." -#: vibes_auth/viewsets.py:99 +#: engine/vibes_auth/viewsets.py:99 msgid "password reset successfully" msgstr "Adgangskoden er blevet nulstillet med succes!" -#: vibes_auth/viewsets.py:132 +#: engine/vibes_auth/viewsets.py:132 msgid "account already activated!" msgstr "Du har allerede aktiveret kontoen..." diff --git a/vibes_auth/locale/de_DE/LC_MESSAGES/django.mo b/engine/vibes_auth/locale/de_DE/LC_MESSAGES/django.mo similarity index 66% rename from vibes_auth/locale/de_DE/LC_MESSAGES/django.mo rename to engine/vibes_auth/locale/de_DE/LC_MESSAGES/django.mo index 113c06b6..c2974a8f 100644 Binary files a/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/vibes_auth/locale/de_DE/LC_MESSAGES/django.po b/engine/vibes_auth/locale/de_DE/LC_MESSAGES/django.po similarity index 68% rename from vibes_auth/locale/de_DE/LC_MESSAGES/django.po rename to engine/vibes_auth/locale/de_DE/LC_MESSAGES/django.po index 9e39f342..3ff49645 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,164 +13,175 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: vibes_auth/admin.py:39 vibes_auth/admin.py:40 -#: vibes_auth/graphene/object_types.py:46 +#: engine/vibes_auth/admin.py:40 engine/vibes_auth/admin.py:41 +#: engine/vibes_auth/graphene/object_types.py:46 msgid "balance" msgstr "Waage" -#: vibes_auth/admin.py:48 +#: engine/vibes_auth/admin.py:49 msgid "order" msgstr "Bestellung" -#: vibes_auth/admin.py:49 vibes_auth/graphene/object_types.py:44 +#: engine/vibes_auth/admin.py:50 engine/vibes_auth/graphene/object_types.py:44 msgid "orders" msgstr "Bestellungen" -#: vibes_auth/admin.py:59 +#: engine/vibes_auth/admin.py:60 msgid "personal info" msgstr "Persönliche Informationen" -#: vibes_auth/admin.py:63 vibes_auth/graphene/object_types.py:43 +#: engine/vibes_auth/admin.py:64 engine/vibes_auth/graphene/object_types.py:43 msgid "permissions" msgstr "Erlaubnisse" -#: vibes_auth/admin.py:76 +#: engine/vibes_auth/admin.py:77 msgid "important dates" msgstr "Wichtige Termine" -#: vibes_auth/admin.py:77 +#: engine/vibes_auth/admin.py:78 msgid "additional info" msgstr "Zusätzliche Informationen" -#: vibes_auth/apps.py:8 +#: engine/vibes_auth/admin.py:145 +msgid "Close selected threads" +msgstr "Ausgewählte Threads schließen" + +#: engine/vibes_auth/admin.py:149 +msgid "Open selected threads" +msgstr "Ausgewählte Themen öffnen" + +#: engine/vibes_auth/apps.py:8 msgid "authentication" msgstr "Authentifizierung" -#: vibes_auth/docs/drf/views.py:15 +#: engine/vibes_auth/docs/drf/views.py:15 msgid "obtain a token pair" msgstr "Erhalten Sie ein Token-Paar" -#: vibes_auth/docs/drf/views.py:16 +#: engine/vibes_auth/docs/drf/views.py:16 msgid "obtain a token pair (refresh and access) for authentication." msgstr "" "Beziehen Sie ein Token-Paar (Refresh und Access) für die Authentifizierung." -#: vibes_auth/docs/drf/views.py:35 +#: engine/vibes_auth/docs/drf/views.py:35 msgid "refresh a token pair" msgstr "Ein Token-Paar aktualisieren" -#: vibes_auth/docs/drf/views.py:36 +#: engine/vibes_auth/docs/drf/views.py:36 msgid "refresh a token pair (refresh and access)." msgstr "Auffrischen eines Tokenpaares (Refresh und Access)." -#: vibes_auth/docs/drf/views.py:55 +#: engine/vibes_auth/docs/drf/views.py:55 msgid "verify a token" msgstr "Überprüfen eines Tokens" -#: vibes_auth/docs/drf/views.py:56 +#: engine/vibes_auth/docs/drf/views.py:56 msgid "Verify a token (refresh or access)." msgstr "Überprüfen eines Tokens (Aktualisierung oder Zugriff)." -#: vibes_auth/docs/drf/views.py:62 vibes_auth/views.py:78 +#: engine/vibes_auth/docs/drf/views.py:62 engine/vibes_auth/views.py:78 msgid "the token is valid" msgstr "Das Token ist gültig" -#: vibes_auth/docs/drf/viewsets.py:16 +#: engine/vibes_auth/docs/drf/viewsets.py:16 msgid "create a new user" msgstr "Einen neuen Benutzer anlegen" -#: vibes_auth/docs/drf/viewsets.py:21 +#: engine/vibes_auth/docs/drf/viewsets.py:21 msgid "retrieve a user's details" msgstr "Abrufen der Details eines Benutzers" -#: vibes_auth/docs/drf/viewsets.py:25 +#: engine/vibes_auth/docs/drf/viewsets.py:25 msgid "update a user's details" msgstr "Aktualisieren der Benutzerdaten" -#: vibes_auth/docs/drf/viewsets.py:30 +#: engine/vibes_auth/docs/drf/viewsets.py:30 msgid "delete a user" msgstr "Einen Benutzer löschen" -#: vibes_auth/docs/drf/viewsets.py:34 +#: engine/vibes_auth/docs/drf/viewsets.py:34 msgid "reset a user's password by sending a reset password email" msgstr "" "Zurücksetzen des Kennworts eines Benutzers durch Senden einer E-Mail zum " "Zurücksetzen des Kennworts" -#: vibes_auth/docs/drf/viewsets.py:39 +#: engine/vibes_auth/docs/drf/viewsets.py:39 msgid "handle avatar upload for a user" msgstr "Avatar-Upload für einen Benutzer verwalten" -#: vibes_auth/docs/drf/viewsets.py:54 +#: engine/vibes_auth/docs/drf/viewsets.py:54 msgid "confirm a user's password reset" msgstr "Bestätigen Sie das Zurücksetzen des Passworts eines Benutzers" -#: vibes_auth/docs/drf/viewsets.py:58 vibes_auth/graphene/mutations.py:320 -#: vibes_auth/serializers.py:105 vibes_auth/serializers.py:109 -#: vibes_auth/viewsets.py:84 +#: engine/vibes_auth/docs/drf/viewsets.py:58 +#: engine/vibes_auth/graphene/mutations.py:320 +#: engine/vibes_auth/serializers.py:105 engine/vibes_auth/serializers.py:109 +#: engine/vibes_auth/viewsets.py:84 msgid "passwords do not match" msgstr "Passwörter stimmen nicht überein" -#: vibes_auth/docs/drf/viewsets.py:63 +#: engine/vibes_auth/docs/drf/viewsets.py:63 msgid "activate a user's account" msgstr "Aktivieren eines Benutzerkontos" -#: vibes_auth/docs/drf/viewsets.py:67 +#: engine/vibes_auth/docs/drf/viewsets.py:67 msgid "activation link is invalid or account already activated" msgstr "Aktivierungslink ist ungültig oder Konto bereits aktiviert" -#: vibes_auth/docs/drf/viewsets.py:72 +#: engine/vibes_auth/docs/drf/viewsets.py:72 msgid "merge client-stored recently viewed products" msgstr "" "Zusammenführen der vom Kunden gespeicherten, zuletzt angesehenen Produkte" -#: vibes_auth/graphene/mutations.py:41 +#: engine/vibes_auth/graphene/mutations.py:41 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." -#: vibes_auth/graphene/mutations.py:61 +#: engine/vibes_auth/graphene/mutations.py:61 msgid "password too weak" msgstr "Das Passwort ist zu schwach" -#: vibes_auth/graphene/mutations.py:110 +#: engine/vibes_auth/graphene/mutations.py:110 #, python-brace-format msgid "{name} does not exist: {uuid}" msgstr "{name} existiert nicht: {uuid}!" -#: vibes_auth/graphene/mutations.py:120 +#: engine/vibes_auth/graphene/mutations.py:120 msgid "malformed email" msgstr "Fehlerhafte E-Mail" -#: vibes_auth/graphene/mutations.py:127 vibes_auth/serializers.py:115 +#: engine/vibes_auth/graphene/mutations.py:127 +#: engine/vibes_auth/serializers.py:115 #, python-brace-format msgid "malformed phone number: {phone_number}" msgstr "Missgebildete Telefonnummer: {phone_number}!" -#: vibes_auth/graphene/mutations.py:149 +#: engine/vibes_auth/graphene/mutations.py:149 #, python-brace-format msgid "Invalid attribute format: {attribute_pair}" msgstr "Ungültiges Attributformat: {attribute_pair}!" -#: vibes_auth/graphene/mutations.py:273 vibes_auth/viewsets.py:127 -#: vibes_auth/viewsets.py:146 +#: engine/vibes_auth/graphene/mutations.py:273 +#: engine/vibes_auth/viewsets.py:127 engine/vibes_auth/viewsets.py:146 msgid "activation link is invalid!" msgstr "Der Aktivierungslink ist ungültig!" -#: vibes_auth/graphene/mutations.py:276 +#: engine/vibes_auth/graphene/mutations.py:276 msgid "account already activated..." msgstr "Das Konto wurde bereits aktiviert..." -#: vibes_auth/graphene/mutations.py:283 vibes_auth/graphene/mutations.py:339 +#: engine/vibes_auth/graphene/mutations.py:283 +#: engine/vibes_auth/graphene/mutations.py:339 msgid "something went wrong: {e!s}" msgstr "Etwas ist schief gelaufen: {e!s}" -#: vibes_auth/graphene/mutations.py:327 vibes_auth/viewsets.py:95 +#: engine/vibes_auth/graphene/mutations.py:327 engine/vibes_auth/viewsets.py:95 msgid "token is invalid!" msgstr "Token ist ungültig!" -#: vibes_auth/graphene/object_types.py:40 +#: engine/vibes_auth/graphene/object_types.py:40 msgid "" "the products this user has viewed most recently (max 48), in reverse‐" "chronological order" @@ -178,104 +189,102 @@ msgstr "" "Die Produkte, die dieser Benutzer zuletzt angesehen hat (maximal 48), in " "umgekehrter chronologischer Reihenfolge." -#: vibes_auth/graphene/object_types.py:42 vibes_auth/models.py:132 +#: engine/vibes_auth/graphene/object_types.py:42 +#: engine/vibes_auth/models.py:123 msgid "groups" msgstr "Gruppen" -#: vibes_auth/graphene/object_types.py:45 +#: engine/vibes_auth/graphene/object_types.py:45 msgid "wishlist" msgstr "Wunschzettel" -#: vibes_auth/graphene/object_types.py:47 vibes_auth/models.py:58 +#: engine/vibes_auth/graphene/object_types.py:47 engine/vibes_auth/models.py:59 msgid "avatar" msgstr "Avatar" -#: vibes_auth/graphene/object_types.py:48 +#: engine/vibes_auth/graphene/object_types.py:48 msgid "attributes may be used to store custom data" msgstr "" "Attribute können verwendet werden, um benutzerdefinierte Daten zu speichern" -#: vibes_auth/graphene/object_types.py:49 +#: engine/vibes_auth/graphene/object_types.py:50 #, python-brace-format -msgid "language is one of the {LANGUAGES} with default {LANGUAGE_CODE}" -msgstr "Sprache ist eine der {LANGUAGES} mit Voreinstellung {LANGUAGE_CODE}" +msgid "" +"language is one of the {settings.LANGUAGES} with default {settings." +"LANGUAGE_CODE}" +msgstr "" +"Sprache ist eine der {settings.LANGUAGES} mit Voreinstellung {settings." +"LANGUAGE_CODE}" -#: vibes_auth/graphene/object_types.py:50 +#: engine/vibes_auth/graphene/object_types.py:52 msgid "address set" msgstr "Adressen" -#: vibes_auth/messaging/admin.py:36 -msgid "Close selected threads" -msgstr "Ausgewählte Threads schließen" - -#: vibes_auth/messaging/admin.py:40 -msgid "Open selected threads" -msgstr "Ausgewählte Themen öffnen" - -#: vibes_auth/messaging/models.py:24 +#: engine/vibes_auth/messaging/models.py:24 msgid "Open" msgstr "Öffnen Sie" -#: vibes_auth/messaging/models.py:25 +#: engine/vibes_auth/messaging/models.py:25 msgid "Closed" msgstr "Geschlossen" -#: vibes_auth/messaging/models.py:29 +#: engine/vibes_auth/messaging/models.py:29 msgid "User" msgstr "Benutzer" -#: vibes_auth/messaging/models.py:30 +#: engine/vibes_auth/messaging/models.py:30 msgid "Staff" msgstr "Personal" -#: vibes_auth/messaging/models.py:31 +#: engine/vibes_auth/messaging/models.py:31 msgid "System" msgstr "System" -#: vibes_auth/messaging/models.py:36 +#: engine/vibes_auth/messaging/models.py:36 msgid "For anonymous threads" msgstr "Für anonyme Themen" -#: vibes_auth/messaging/models.py:50 +#: engine/vibes_auth/messaging/models.py:50 msgid "Chat thread" msgstr "Chat-Thread" -#: vibes_auth/messaging/models.py:51 +#: engine/vibes_auth/messaging/models.py:51 msgid "Chat threads" msgstr "Chat-Themen" -#: vibes_auth/messaging/models.py:56 +#: engine/vibes_auth/messaging/models.py:56 msgid "Provide user or email for anonymous thread." msgstr "" "Geben Sie einen Benutzer oder eine E-Mail für einen anonymen Thread an." -#: vibes_auth/messaging/models.py:58 vibes_auth/messaging/services.py:133 +#: engine/vibes_auth/messaging/models.py:58 +#: engine/vibes_auth/messaging/services.py:132 msgid "Assignee must be a staff user." msgstr "Der Abtretungsempfänger muss ein Mitarbeiter sein." -#: vibes_auth/messaging/models.py:74 +#: engine/vibes_auth/messaging/models.py:74 msgid "Chat message" msgstr "Chat-Nachricht" -#: vibes_auth/messaging/models.py:75 +#: engine/vibes_auth/messaging/models.py:75 msgid "Chat messages" msgstr "Chat-Nachrichten" -#: vibes_auth/messaging/services.py:48 +#: engine/vibes_auth/messaging/services.py:47 msgid "Valid email is required for anonymous chats." msgstr "Für anonyme Chats ist eine gültige E-Mail erforderlich." -#: vibes_auth/messaging/services.py:56 +#: engine/vibes_auth/messaging/services.py:55 msgid "Message must be 1..1028 characters." msgstr "Die Nachricht muss 1..1028 Zeichen lang sein." -#: vibes_auth/messaging/services.py:90 +#: engine/vibes_auth/messaging/services.py:89 msgid "We're searching for the operator to answer you already, hold by!" msgstr "" "Wir suchen bereits nach dem Operator, um Ihnen zu antworten, bleiben Sie " "dran!" -#: vibes_auth/models.py:30 +#: engine/vibes_auth/models.py:31 msgid "" "Represents a User entity with customized fields and methods for extended " "functionality. This class extends the AbstractUser model and integrates " @@ -295,154 +304,154 @@ msgstr "" "entwickelt, um spezielle Anwendungsfälle für eine erweiterte " "Benutzerverwaltung zu behandeln." -#: vibes_auth/models.py:41 +#: engine/vibes_auth/models.py:42 msgid "email" msgstr "E-Mail" -#: vibes_auth/models.py:41 +#: engine/vibes_auth/models.py:42 msgid "user email address" msgstr "E-Mail Adresse des Benutzers" -#: vibes_auth/models.py:43 +#: engine/vibes_auth/models.py:44 msgid "phone_number" msgstr "Rufnummer" -#: vibes_auth/models.py:48 +#: engine/vibes_auth/models.py:49 msgid "user phone number" msgstr "Rufnummer des Benutzers" -#: vibes_auth/models.py:54 +#: engine/vibes_auth/models.py:55 msgid "first_name" msgstr "Vornamen" -#: vibes_auth/models.py:55 +#: engine/vibes_auth/models.py:56 msgid "last_name" msgstr "Nachname" -#: vibes_auth/models.py:61 +#: engine/vibes_auth/models.py:62 msgid "user profile image" msgstr "Bild des Benutzerprofils" -#: vibes_auth/models.py:66 +#: engine/vibes_auth/models.py:67 msgid "is verified" msgstr "Wird überprüft" -#: vibes_auth/models.py:67 +#: engine/vibes_auth/models.py:68 msgid "user verification status" msgstr "Verifizierungsstatus des Benutzers" -#: vibes_auth/models.py:70 +#: engine/vibes_auth/models.py:71 msgid "is_active" msgstr "Ist aktiv" -#: vibes_auth/models.py:72 +#: engine/vibes_auth/models.py:73 msgid "unselect this instead of deleting accounts" msgstr "Deaktivieren Sie diese Option, anstatt Konten zu löschen" -#: vibes_auth/models.py:75 +#: engine/vibes_auth/models.py:76 msgid "is_subscribed" msgstr "Ist abonniert" -#: vibes_auth/models.py:75 +#: engine/vibes_auth/models.py:76 msgid "user's newsletter subscription status" msgstr "Status des Newsletter-Abonnements des Benutzers" -#: vibes_auth/models.py:78 +#: engine/vibes_auth/models.py:79 msgid "activation token" msgstr "Aktivierungs-Token" -#: vibes_auth/models.py:80 +#: engine/vibes_auth/models.py:83 msgid "attributes" msgstr "Attribute" -#: vibes_auth/models.py:110 +#: engine/vibes_auth/models.py:115 msgid "user" msgstr "Benutzer" -#: vibes_auth/models.py:111 +#: engine/vibes_auth/models.py:116 msgid "users" msgstr "Benutzer" -#: vibes_auth/models.py:131 +#: engine/vibes_auth/models.py:122 msgid "group" msgstr "Gruppe" -#: vibes_auth/models.py:148 +#: engine/vibes_auth/models.py:129 msgid "outstanding token" msgstr "Hervorragende Wertmarke" -#: vibes_auth/models.py:149 +#: engine/vibes_auth/models.py:130 msgid "outstanding tokens" msgstr "Ausstehende Wertmarken" -#: vibes_auth/models.py:167 +#: engine/vibes_auth/models.py:136 msgid "blacklisted token" msgstr "Token auf der schwarzen Liste" -#: vibes_auth/models.py:168 +#: engine/vibes_auth/models.py:137 msgid "blacklisted tokens" msgstr "Token auf der schwarzen Liste" -#: vibes_auth/serializers.py:99 +#: engine/vibes_auth/serializers.py:99 msgid "attributes must be a dictionary" msgstr "Attribute\" muss ein Wörterbuch sein" -#: vibes_auth/serializers.py:101 +#: engine/vibes_auth/serializers.py:101 msgid "business identificator is required when registering as a business" msgstr "" "Die Unternehmenskennung ist erforderlich, wenn Sie sich als Unternehmen " "registrieren lassen." -#: vibes_auth/serializers.py:121 +#: engine/vibes_auth/serializers.py:121 #, python-brace-format msgid "malformed email: {email}" msgstr "missgebildete E-Mail: {email}" -#: vibes_auth/serializers.py:142 vibes_auth/serializers.py:164 -#: vibes_auth/serializers.py:186 vibes_auth/serializers.py:198 +#: engine/vibes_auth/serializers.py:142 engine/vibes_auth/serializers.py:164 +#: engine/vibes_auth/serializers.py:184 engine/vibes_auth/serializers.py:194 msgid "no active account" msgstr "Kein aktives Konto gefunden" -#: vibes_auth/serializers.py:174 +#: engine/vibes_auth/serializers.py:174 msgid "must set token_class attribute on class." msgstr "Das Attribut token_class muss auf class gesetzt werden!" -#: vibes_auth/serializers.py:246 +#: engine/vibes_auth/serializers.py:240 msgid "token_blacklisted" msgstr "Token auf der schwarzen Liste" -#: vibes_auth/serializers.py:251 +#: engine/vibes_auth/serializers.py:245 msgid "invalid token" msgstr "Ungültiges Token" -#: vibes_auth/serializers.py:257 +#: engine/vibes_auth/serializers.py:251 msgid "no user uuid claim present in token" msgstr "Kein Benutzer uuid-Anspruch im Token vorhanden" -#: vibes_auth/serializers.py:259 +#: engine/vibes_auth/serializers.py:253 msgid "user does not exist" msgstr "Benutzer existiert nicht" -#: vibes_auth/templates/user_reset_password_email.html:7 +#: engine/vibes_auth/templates/user_reset_password_email.html:7 msgid "reset your password" msgstr "Ihr Passwort zurücksetzen" -#: vibes_auth/templates/user_reset_password_email.html:85 -#: vibes_auth/templates/user_verification_email.html:85 +#: engine/vibes_auth/templates/user_reset_password_email.html:85 +#: engine/vibes_auth/templates/user_verification_email.html:85 msgid "logo" msgstr "Logo" -#: vibes_auth/templates/user_reset_password_email.html:90 +#: engine/vibes_auth/templates/user_reset_password_email.html:90 msgid "password reset confirmation" msgstr "Bestätigung der Passwortrücksetzung" -#: vibes_auth/templates/user_reset_password_email.html:91 -#: vibes_auth/templates/user_verification_email.html:91 +#: engine/vibes_auth/templates/user_reset_password_email.html:91 +#: engine/vibes_auth/templates/user_verification_email.html:91 #, python-format msgid "hello %(user_first_name)s," msgstr "Hallo %(user_first_name)s," -#: vibes_auth/templates/user_reset_password_email.html:92 +#: 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" @@ -451,12 +460,12 @@ msgstr "" "Wir haben eine Anfrage erhalten, Ihr Passwort zurückzusetzen. Bitte setzen " "Sie Ihr Passwort zurück, indem Sie auf die Schaltfläche unten klicken:" -#: vibes_auth/templates/user_reset_password_email.html:95 +#: engine/vibes_auth/templates/user_reset_password_email.html:95 msgid "reset password" msgstr "Passwort zurücksetzen" -#: vibes_auth/templates/user_reset_password_email.html:97 -#: vibes_auth/templates/user_verification_email.html:99 +#: engine/vibes_auth/templates/user_reset_password_email.html:97 +#: engine/vibes_auth/templates/user_verification_email.html:99 msgid "" "if the button above does not work, please copy and paste the following URL\n" " into your web browser:" @@ -465,7 +474,7 @@ msgstr "" "folgende URL und fügen Sie sie in Ihren Browser ein\n" " in Ihren Webbrowser ein:" -#: vibes_auth/templates/user_reset_password_email.html:100 +#: engine/vibes_auth/templates/user_reset_password_email.html:100 msgid "" "if you did not send this request, please ignore this\n" " email." @@ -473,22 +482,22 @@ msgstr "" "Wenn Sie diese Anfrage nicht gesendet haben, ignorieren Sie bitte diese E-" "Mail." -#: vibes_auth/templates/user_reset_password_email.html:102 +#: engine/vibes_auth/templates/user_reset_password_email.html:102 #, python-format msgid "best regards,
The %(project_name)s team" msgstr "Mit freundlichen Grüßen,
Das %(project_name)s-Team" -#: vibes_auth/templates/user_reset_password_email.html:108 -#: vibes_auth/templates/user_verification_email.html:108 +#: engine/vibes_auth/templates/user_reset_password_email.html:108 +#: engine/vibes_auth/templates/user_verification_email.html:108 msgid "all rights reserved" msgstr "Alle Rechte vorbehalten" -#: vibes_auth/templates/user_verification_email.html:7 -#: vibes_auth/templates/user_verification_email.html:90 +#: engine/vibes_auth/templates/user_verification_email.html:7 +#: engine/vibes_auth/templates/user_verification_email.html:90 msgid "activate your account" msgstr "Aktivieren Sie Ihr Konto" -#: vibes_auth/templates/user_verification_email.html:92 +#: engine/vibes_auth/templates/user_verification_email.html:92 #, python-format msgid "" "thank you for signing up for %(project_name)s. please activate your account\n" @@ -497,7 +506,7 @@ msgstr "" "Vielen Dank, dass Sie sich für %(project_name)s angemeldet haben. Bitte " "aktivieren Sie Ihr Konto, indem Sie auf die Schaltfläche unten klicken:" -#: vibes_auth/templates/user_verification_email.html:96 +#: engine/vibes_auth/templates/user_verification_email.html:96 msgid "" "activate\n" " account" @@ -505,22 +514,22 @@ msgstr "" "Aktivieren Sie\n" " Konto" -#: vibes_auth/templates/user_verification_email.html:102 +#: engine/vibes_auth/templates/user_verification_email.html:102 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "Mit freundlichen Grüßen,
das %(project_name)s-Team" -#: vibes_auth/utils/emailing.py:23 +#: engine/vibes_auth/utils/emailing.py:23 #, python-brace-format msgid "{config.PROJECT_NAME} | Activate Account" msgstr "{config.PROJECT_NAME} | Konto freischalten" -#: vibes_auth/utils/emailing.py:62 +#: engine/vibes_auth/utils/emailing.py:62 #, python-brace-format msgid "{config.PROJECT_NAME} | Reset Password" msgstr "{config.PROJECT_NAME} | Passwort zurücksetzen" -#: vibes_auth/validators.py:13 +#: engine/vibes_auth/validators.py:13 msgid "" "invalid phone number format. the number must be entered in the format: " "\"+999999999\". up to 15 digits allowed." @@ -528,7 +537,7 @@ msgstr "" "Ungültiges Telefonnummernformat. Die Nummer muss in dem Format eingegeben " "werden: \"+999999999\". Bis zu 15 Ziffern sind erlaubt." -#: vibes_auth/views.py:30 +#: engine/vibes_auth/views.py:30 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 " @@ -544,7 +553,7 @@ msgstr "" "Basis-Token-Ansicht auf und gewährleistet eine angemessene Ratenbegrenzung " "zum Schutz vor Brute-Force-Angriffen." -#: vibes_auth/views.py:48 +#: engine/vibes_auth/views.py:48 msgid "" "Handles refreshing of tokens for authentication purposes. This class is used " "to provide functionality for token refresh operations as part of an " @@ -560,7 +569,7 @@ msgstr "" "um die Eingaben für die Token-Aktualisierung zu validieren und entsprechende " "Ausgaben zu erzeugen." -#: vibes_auth/views.py:67 +#: engine/vibes_auth/views.py:67 msgid "" "Represents a view for verifying JSON Web Tokens (JWT) using specific " "serialization and validation logic. " @@ -568,11 +577,11 @@ msgstr "" "Stellt eine Ansicht zur Überprüfung von JSON-Web-Token (JWT) unter " "Verwendung einer spezifischen Serialisierungs- und Validierungslogik dar." -#: vibes_auth/views.py:80 +#: engine/vibes_auth/views.py:80 msgid "the token is invalid" msgstr "Das Token ist ungültig" -#: vibes_auth/viewsets.py:45 +#: engine/vibes_auth/viewsets.py:45 msgid "" "User view set implementation.\n" "Provides a set of actions that manage user-related data such as creation, " @@ -587,10 +596,10 @@ msgstr "" "kürzlich angesehener Elemente verwalten. Diese Klasse erweitert die Mixins " "und GenericViewSet für eine robuste API-Behandlung." -#: vibes_auth/viewsets.py:99 +#: engine/vibes_auth/viewsets.py:99 msgid "password reset successfully" msgstr "Das Passwort wurde erfolgreich zurückgesetzt!" -#: vibes_auth/viewsets.py:132 +#: engine/vibes_auth/viewsets.py:132 msgid "account already activated!" msgstr "Sie haben das Konto bereits aktiviert..." diff --git a/vibes_auth/locale/en_GB/LC_MESSAGES/django.mo b/engine/vibes_auth/locale/en_GB/LC_MESSAGES/django.mo similarity index 67% rename from vibes_auth/locale/en_GB/LC_MESSAGES/django.mo rename to engine/vibes_auth/locale/en_GB/LC_MESSAGES/django.mo index e4f23e2a..338e0883 100644 Binary files a/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/vibes_auth/locale/en_GB/LC_MESSAGES/django.po b/engine/vibes_auth/locale/en_GB/LC_MESSAGES/django.po similarity index 66% rename from vibes_auth/locale/en_GB/LC_MESSAGES/django.po rename to engine/vibes_auth/locale/en_GB/LC_MESSAGES/django.po index 3db26f9e..cf6bd562 100644 --- a/vibes_auth/locale/en_GB/LC_MESSAGES/django.po +++ b/engine/vibes_auth/locale/en_GB/LC_MESSAGES/django.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: EVIBES 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -17,158 +17,169 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: vibes_auth/admin.py:39 vibes_auth/admin.py:40 -#: vibes_auth/graphene/object_types.py:46 +#: engine/vibes_auth/admin.py:40 engine/vibes_auth/admin.py:41 +#: engine/vibes_auth/graphene/object_types.py:46 msgid "balance" msgstr "Balance" -#: vibes_auth/admin.py:48 +#: engine/vibes_auth/admin.py:49 msgid "order" msgstr "Order" -#: vibes_auth/admin.py:49 vibes_auth/graphene/object_types.py:44 +#: engine/vibes_auth/admin.py:50 engine/vibes_auth/graphene/object_types.py:44 msgid "orders" msgstr "Orders" -#: vibes_auth/admin.py:59 +#: engine/vibes_auth/admin.py:60 msgid "personal info" msgstr "Personal Info" -#: vibes_auth/admin.py:63 vibes_auth/graphene/object_types.py:43 +#: engine/vibes_auth/admin.py:64 engine/vibes_auth/graphene/object_types.py:43 msgid "permissions" msgstr "Permissions" -#: vibes_auth/admin.py:76 +#: engine/vibes_auth/admin.py:77 msgid "important dates" msgstr "Important dates" -#: vibes_auth/admin.py:77 +#: engine/vibes_auth/admin.py:78 msgid "additional info" msgstr "Additional Info" -#: vibes_auth/apps.py:8 +#: engine/vibes_auth/admin.py:145 +msgid "Close selected threads" +msgstr "Close selected threads" + +#: engine/vibes_auth/admin.py:149 +msgid "Open selected threads" +msgstr "Open selected threads" + +#: engine/vibes_auth/apps.py:8 msgid "authentication" msgstr "Authentication" -#: vibes_auth/docs/drf/views.py:15 +#: engine/vibes_auth/docs/drf/views.py:15 msgid "obtain a token pair" msgstr "Obtain a token pair" -#: vibes_auth/docs/drf/views.py:16 +#: engine/vibes_auth/docs/drf/views.py:16 msgid "obtain a token pair (refresh and access) for authentication." msgstr "Obtain a token pair (refresh and access) for authentication." -#: vibes_auth/docs/drf/views.py:35 +#: engine/vibes_auth/docs/drf/views.py:35 msgid "refresh a token pair" msgstr "Refresh a token pair" -#: vibes_auth/docs/drf/views.py:36 +#: engine/vibes_auth/docs/drf/views.py:36 msgid "refresh a token pair (refresh and access)." msgstr "Refresh a token pair (refresh and access)." -#: vibes_auth/docs/drf/views.py:55 +#: engine/vibes_auth/docs/drf/views.py:55 msgid "verify a token" msgstr "Verify a token" -#: vibes_auth/docs/drf/views.py:56 +#: engine/vibes_auth/docs/drf/views.py:56 msgid "Verify a token (refresh or access)." msgstr "Verify a token (refresh or access)." -#: vibes_auth/docs/drf/views.py:62 vibes_auth/views.py:78 +#: engine/vibes_auth/docs/drf/views.py:62 engine/vibes_auth/views.py:78 msgid "the token is valid" msgstr "The token is valid" -#: vibes_auth/docs/drf/viewsets.py:16 +#: engine/vibes_auth/docs/drf/viewsets.py:16 msgid "create a new user" msgstr "Create a new user" -#: vibes_auth/docs/drf/viewsets.py:21 +#: engine/vibes_auth/docs/drf/viewsets.py:21 msgid "retrieve a user's details" msgstr "Retrieve a user's details" -#: vibes_auth/docs/drf/viewsets.py:25 +#: engine/vibes_auth/docs/drf/viewsets.py:25 msgid "update a user's details" msgstr "Update a user's details" -#: vibes_auth/docs/drf/viewsets.py:30 +#: engine/vibes_auth/docs/drf/viewsets.py:30 msgid "delete a user" msgstr "Delete a user" -#: vibes_auth/docs/drf/viewsets.py:34 +#: engine/vibes_auth/docs/drf/viewsets.py:34 msgid "reset a user's password by sending a reset password email" msgstr "Reset a user's password by sending a reset password email" -#: vibes_auth/docs/drf/viewsets.py:39 +#: engine/vibes_auth/docs/drf/viewsets.py:39 msgid "handle avatar upload for a user" msgstr "Handle avatar upload for a user" -#: vibes_auth/docs/drf/viewsets.py:54 +#: engine/vibes_auth/docs/drf/viewsets.py:54 msgid "confirm a user's password reset" msgstr "Confirm a user's password reset" -#: vibes_auth/docs/drf/viewsets.py:58 vibes_auth/graphene/mutations.py:320 -#: vibes_auth/serializers.py:105 vibes_auth/serializers.py:109 -#: vibes_auth/viewsets.py:84 +#: engine/vibes_auth/docs/drf/viewsets.py:58 +#: engine/vibes_auth/graphene/mutations.py:320 +#: engine/vibes_auth/serializers.py:105 engine/vibes_auth/serializers.py:109 +#: engine/vibes_auth/viewsets.py:84 msgid "passwords do not match" msgstr "Passwords do not match" -#: vibes_auth/docs/drf/viewsets.py:63 +#: engine/vibes_auth/docs/drf/viewsets.py:63 msgid "activate a user's account" msgstr "Activate a user's account" -#: vibes_auth/docs/drf/viewsets.py:67 +#: engine/vibes_auth/docs/drf/viewsets.py:67 msgid "activation link is invalid or account already activated" msgstr "Activation link is invalid or account already activated" -#: vibes_auth/docs/drf/viewsets.py:72 +#: engine/vibes_auth/docs/drf/viewsets.py:72 msgid "merge client-stored recently viewed products" msgstr "Merge client-stored recently viewed products" -#: vibes_auth/graphene/mutations.py:41 +#: engine/vibes_auth/graphene/mutations.py:41 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." -#: vibes_auth/graphene/mutations.py:61 +#: engine/vibes_auth/graphene/mutations.py:61 msgid "password too weak" msgstr "The password is too weak" -#: vibes_auth/graphene/mutations.py:110 +#: engine/vibes_auth/graphene/mutations.py:110 #, python-brace-format msgid "{name} does not exist: {uuid}" msgstr "{name} does not exist: {uuid}!" -#: vibes_auth/graphene/mutations.py:120 +#: engine/vibes_auth/graphene/mutations.py:120 msgid "malformed email" msgstr "Malformed email" -#: vibes_auth/graphene/mutations.py:127 vibes_auth/serializers.py:115 +#: engine/vibes_auth/graphene/mutations.py:127 +#: engine/vibes_auth/serializers.py:115 #, python-brace-format msgid "malformed phone number: {phone_number}" msgstr "Malformed phone number: {phone_number}!" -#: vibes_auth/graphene/mutations.py:149 +#: engine/vibes_auth/graphene/mutations.py:149 #, python-brace-format msgid "Invalid attribute format: {attribute_pair}" msgstr "Invalid attribute format: {attribute_pair}!" -#: vibes_auth/graphene/mutations.py:273 vibes_auth/viewsets.py:127 -#: vibes_auth/viewsets.py:146 +#: engine/vibes_auth/graphene/mutations.py:273 +#: engine/vibes_auth/viewsets.py:127 engine/vibes_auth/viewsets.py:146 msgid "activation link is invalid!" msgstr "Activation link is invalid!" -#: vibes_auth/graphene/mutations.py:276 +#: engine/vibes_auth/graphene/mutations.py:276 msgid "account already activated..." msgstr "Account has been already activated..." -#: vibes_auth/graphene/mutations.py:283 vibes_auth/graphene/mutations.py:339 +#: engine/vibes_auth/graphene/mutations.py:283 +#: engine/vibes_auth/graphene/mutations.py:339 msgid "something went wrong: {e!s}" msgstr "Something went wrong: {e!s}" -#: vibes_auth/graphene/mutations.py:327 vibes_auth/viewsets.py:95 +#: engine/vibes_auth/graphene/mutations.py:327 engine/vibes_auth/viewsets.py:95 msgid "token is invalid!" msgstr "Token is invalid!" -#: vibes_auth/graphene/object_types.py:40 +#: engine/vibes_auth/graphene/object_types.py:40 msgid "" "the products this user has viewed most recently (max 48), in reverse‐" "chronological order" @@ -176,100 +187,98 @@ msgstr "" "The products this user has viewed most recently (max 48), in reverse-" "chronological order." -#: vibes_auth/graphene/object_types.py:42 vibes_auth/models.py:132 +#: engine/vibes_auth/graphene/object_types.py:42 +#: engine/vibes_auth/models.py:123 msgid "groups" msgstr "Groups" -#: vibes_auth/graphene/object_types.py:45 +#: engine/vibes_auth/graphene/object_types.py:45 msgid "wishlist" msgstr "Wishlist" -#: vibes_auth/graphene/object_types.py:47 vibes_auth/models.py:58 +#: engine/vibes_auth/graphene/object_types.py:47 engine/vibes_auth/models.py:59 msgid "avatar" msgstr "Avatar" -#: vibes_auth/graphene/object_types.py:48 +#: engine/vibes_auth/graphene/object_types.py:48 msgid "attributes may be used to store custom data" msgstr "Attributes may be used to store custom data" -#: vibes_auth/graphene/object_types.py:49 +#: engine/vibes_auth/graphene/object_types.py:50 #, python-brace-format -msgid "language is one of the {LANGUAGES} with default {LANGUAGE_CODE}" -msgstr "Language is one of the {LANGUAGES} with default {LANGUAGE_CODE}" +msgid "" +"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}" -#: vibes_auth/graphene/object_types.py:50 +#: engine/vibes_auth/graphene/object_types.py:52 msgid "address set" msgstr "Adresses" -#: vibes_auth/messaging/admin.py:36 -msgid "Close selected threads" -msgstr "Close selected threads" - -#: vibes_auth/messaging/admin.py:40 -msgid "Open selected threads" -msgstr "Open selected threads" - -#: vibes_auth/messaging/models.py:24 +#: engine/vibes_auth/messaging/models.py:24 msgid "Open" msgstr "Open" -#: vibes_auth/messaging/models.py:25 +#: engine/vibes_auth/messaging/models.py:25 msgid "Closed" msgstr "Closed" -#: vibes_auth/messaging/models.py:29 +#: engine/vibes_auth/messaging/models.py:29 msgid "User" msgstr "User" -#: vibes_auth/messaging/models.py:30 +#: engine/vibes_auth/messaging/models.py:30 msgid "Staff" msgstr "Staff" -#: vibes_auth/messaging/models.py:31 +#: engine/vibes_auth/messaging/models.py:31 msgid "System" msgstr "System" -#: vibes_auth/messaging/models.py:36 +#: engine/vibes_auth/messaging/models.py:36 msgid "For anonymous threads" msgstr "For anonymous threads" -#: vibes_auth/messaging/models.py:50 +#: engine/vibes_auth/messaging/models.py:50 msgid "Chat thread" msgstr "Chat thread" -#: vibes_auth/messaging/models.py:51 +#: engine/vibes_auth/messaging/models.py:51 msgid "Chat threads" msgstr "Chat threads" -#: vibes_auth/messaging/models.py:56 +#: engine/vibes_auth/messaging/models.py:56 msgid "Provide user or email for anonymous thread." msgstr "Provide user or email for anonymous thread." -#: vibes_auth/messaging/models.py:58 vibes_auth/messaging/services.py:133 +#: engine/vibes_auth/messaging/models.py:58 +#: engine/vibes_auth/messaging/services.py:132 msgid "Assignee must be a staff user." msgstr "Assignee must be a staff user." -#: vibes_auth/messaging/models.py:74 +#: engine/vibes_auth/messaging/models.py:74 msgid "Chat message" msgstr "Chat message" -#: vibes_auth/messaging/models.py:75 +#: engine/vibes_auth/messaging/models.py:75 msgid "Chat messages" msgstr "Chat messages" -#: vibes_auth/messaging/services.py:48 +#: engine/vibes_auth/messaging/services.py:47 msgid "Valid email is required for anonymous chats." msgstr "Valid email is required for anonymous chats." -#: vibes_auth/messaging/services.py:56 +#: engine/vibes_auth/messaging/services.py:55 msgid "Message must be 1..1028 characters." msgstr "Message must be 1..1028 characters." -#: vibes_auth/messaging/services.py:90 +#: engine/vibes_auth/messaging/services.py:89 msgid "We're searching for the operator to answer you already, hold by!" msgstr "We're searching for the operator to answer you already, hold by!" -#: vibes_auth/models.py:30 +#: engine/vibes_auth/models.py:31 msgid "" "Represents a User entity with customized fields and methods for extended " "functionality. This class extends the AbstractUser model and integrates " @@ -287,152 +296,152 @@ msgstr "" "verifying accounts. The User model is designed to handle specific use cases " "for enhanced user management." -#: vibes_auth/models.py:41 +#: engine/vibes_auth/models.py:42 msgid "email" msgstr "E-mail" -#: vibes_auth/models.py:41 +#: engine/vibes_auth/models.py:42 msgid "user email address" msgstr "User's email address" -#: vibes_auth/models.py:43 +#: engine/vibes_auth/models.py:44 msgid "phone_number" msgstr "Phone Number" -#: vibes_auth/models.py:48 +#: engine/vibes_auth/models.py:49 msgid "user phone number" msgstr "User phone number" -#: vibes_auth/models.py:54 +#: engine/vibes_auth/models.py:55 msgid "first_name" msgstr "First name" -#: vibes_auth/models.py:55 +#: engine/vibes_auth/models.py:56 msgid "last_name" msgstr "Last name" -#: vibes_auth/models.py:61 +#: engine/vibes_auth/models.py:62 msgid "user profile image" msgstr "User profile image" -#: vibes_auth/models.py:66 +#: engine/vibes_auth/models.py:67 msgid "is verified" msgstr "Is verified" -#: vibes_auth/models.py:67 +#: engine/vibes_auth/models.py:68 msgid "user verification status" msgstr "User's verification status" -#: vibes_auth/models.py:70 +#: engine/vibes_auth/models.py:71 msgid "is_active" msgstr "Is active" -#: vibes_auth/models.py:72 +#: engine/vibes_auth/models.py:73 msgid "unselect this instead of deleting accounts" msgstr "Unselect this instead of deleting accounts" -#: vibes_auth/models.py:75 +#: engine/vibes_auth/models.py:76 msgid "is_subscribed" msgstr "Is subscribed" -#: vibes_auth/models.py:75 +#: engine/vibes_auth/models.py:76 msgid "user's newsletter subscription status" msgstr "User's newsletter subscription status" -#: vibes_auth/models.py:78 +#: engine/vibes_auth/models.py:79 msgid "activation token" msgstr "Activation token" -#: vibes_auth/models.py:80 +#: engine/vibes_auth/models.py:83 msgid "attributes" msgstr "Attributes" -#: vibes_auth/models.py:110 +#: engine/vibes_auth/models.py:115 msgid "user" msgstr "User" -#: vibes_auth/models.py:111 +#: engine/vibes_auth/models.py:116 msgid "users" msgstr "Users" -#: vibes_auth/models.py:131 +#: engine/vibes_auth/models.py:122 msgid "group" msgstr "Group" -#: vibes_auth/models.py:148 +#: engine/vibes_auth/models.py:129 msgid "outstanding token" msgstr "Outstanding token" -#: vibes_auth/models.py:149 +#: engine/vibes_auth/models.py:130 msgid "outstanding tokens" msgstr "Outstanding tokens" -#: vibes_auth/models.py:167 +#: engine/vibes_auth/models.py:136 msgid "blacklisted token" msgstr "Blacklisted token" -#: vibes_auth/models.py:168 +#: engine/vibes_auth/models.py:137 msgid "blacklisted tokens" msgstr "Blacklisted tokens" -#: vibes_auth/serializers.py:99 +#: engine/vibes_auth/serializers.py:99 msgid "attributes must be a dictionary" msgstr "`attributes` must be a dictionary" -#: vibes_auth/serializers.py:101 +#: engine/vibes_auth/serializers.py:101 msgid "business identificator is required when registering as a business" msgstr "Business identificator is required when registering as a business" -#: vibes_auth/serializers.py:121 +#: engine/vibes_auth/serializers.py:121 #, python-brace-format msgid "malformed email: {email}" msgstr "malformed email: {email}" -#: vibes_auth/serializers.py:142 vibes_auth/serializers.py:164 -#: vibes_auth/serializers.py:186 vibes_auth/serializers.py:198 +#: engine/vibes_auth/serializers.py:142 engine/vibes_auth/serializers.py:164 +#: engine/vibes_auth/serializers.py:184 engine/vibes_auth/serializers.py:194 msgid "no active account" msgstr "No active account found" -#: vibes_auth/serializers.py:174 +#: engine/vibes_auth/serializers.py:174 msgid "must set token_class attribute on class." msgstr "Must set token_class attribute on class!" -#: vibes_auth/serializers.py:246 +#: engine/vibes_auth/serializers.py:240 msgid "token_blacklisted" msgstr "Token blacklisted" -#: vibes_auth/serializers.py:251 +#: engine/vibes_auth/serializers.py:245 msgid "invalid token" msgstr "Invalid token" -#: vibes_auth/serializers.py:257 +#: engine/vibes_auth/serializers.py:251 msgid "no user uuid claim present in token" msgstr "No user uuid claim present in token" -#: vibes_auth/serializers.py:259 +#: engine/vibes_auth/serializers.py:253 msgid "user does not exist" msgstr "User does not exist" -#: vibes_auth/templates/user_reset_password_email.html:7 +#: engine/vibes_auth/templates/user_reset_password_email.html:7 msgid "reset your password" msgstr "Reset your password" -#: vibes_auth/templates/user_reset_password_email.html:85 -#: vibes_auth/templates/user_verification_email.html:85 +#: engine/vibes_auth/templates/user_reset_password_email.html:85 +#: engine/vibes_auth/templates/user_verification_email.html:85 msgid "logo" msgstr "Logo" -#: vibes_auth/templates/user_reset_password_email.html:90 +#: engine/vibes_auth/templates/user_reset_password_email.html:90 msgid "password reset confirmation" msgstr "Password reset confirmation" -#: vibes_auth/templates/user_reset_password_email.html:91 -#: vibes_auth/templates/user_verification_email.html:91 +#: engine/vibes_auth/templates/user_reset_password_email.html:91 +#: engine/vibes_auth/templates/user_verification_email.html:91 #, python-format msgid "hello %(user_first_name)s," msgstr "Hello %(user_first_name)s," -#: vibes_auth/templates/user_reset_password_email.html:92 +#: 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" @@ -441,12 +450,12 @@ msgstr "" "We have received a request to reset your password. Please reset your " "password by clicking the button below:" -#: vibes_auth/templates/user_reset_password_email.html:95 +#: engine/vibes_auth/templates/user_reset_password_email.html:95 msgid "reset password" msgstr "reset password" -#: vibes_auth/templates/user_reset_password_email.html:97 -#: vibes_auth/templates/user_verification_email.html:99 +#: engine/vibes_auth/templates/user_reset_password_email.html:97 +#: engine/vibes_auth/templates/user_verification_email.html:99 msgid "" "if the button above does not work, please copy and paste the following URL\n" " into your web browser:" @@ -454,7 +463,7 @@ msgstr "" "If the button above does not work, please copy and paste the following URL\n" " into your web browser:" -#: vibes_auth/templates/user_reset_password_email.html:100 +#: engine/vibes_auth/templates/user_reset_password_email.html:100 msgid "" "if you did not send this request, please ignore this\n" " email." @@ -462,22 +471,22 @@ msgstr "" "if you did not send this request, please ignore this\n" " email." -#: vibes_auth/templates/user_reset_password_email.html:102 +#: engine/vibes_auth/templates/user_reset_password_email.html:102 #, python-format msgid "best regards,
The %(project_name)s team" msgstr "Best regards,
The %(project_name)s team" -#: vibes_auth/templates/user_reset_password_email.html:108 -#: vibes_auth/templates/user_verification_email.html:108 +#: engine/vibes_auth/templates/user_reset_password_email.html:108 +#: engine/vibes_auth/templates/user_verification_email.html:108 msgid "all rights reserved" msgstr "All rights reserved" -#: vibes_auth/templates/user_verification_email.html:7 -#: vibes_auth/templates/user_verification_email.html:90 +#: engine/vibes_auth/templates/user_verification_email.html:7 +#: engine/vibes_auth/templates/user_verification_email.html:90 msgid "activate your account" msgstr "Activate your account" -#: vibes_auth/templates/user_verification_email.html:92 +#: engine/vibes_auth/templates/user_verification_email.html:92 #, python-format msgid "" "thank you for signing up for %(project_name)s. please activate your account\n" @@ -486,7 +495,7 @@ msgstr "" "Thank you for signing up for %(project_name)s. Please activate your account " "by clicking the button below:" -#: vibes_auth/templates/user_verification_email.html:96 +#: engine/vibes_auth/templates/user_verification_email.html:96 msgid "" "activate\n" " account" @@ -494,22 +503,22 @@ msgstr "" "Activate\n" " account" -#: vibes_auth/templates/user_verification_email.html:102 +#: engine/vibes_auth/templates/user_verification_email.html:102 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "Best regards,
the %(project_name)s team" -#: vibes_auth/utils/emailing.py:23 +#: engine/vibes_auth/utils/emailing.py:23 #, python-brace-format msgid "{config.PROJECT_NAME} | Activate Account" msgstr "{config.PROJECT_NAME} | Activate Account" -#: vibes_auth/utils/emailing.py:62 +#: engine/vibes_auth/utils/emailing.py:62 #, python-brace-format msgid "{config.PROJECT_NAME} | Reset Password" msgstr "{config.PROJECT_NAME} | Reset Password" -#: vibes_auth/validators.py:13 +#: engine/vibes_auth/validators.py:13 msgid "" "invalid phone number format. the number must be entered in the format: " "\"+999999999\". up to 15 digits allowed." @@ -517,7 +526,7 @@ msgstr "" "Invalid phone number format. The number must be entered in the format: " "\"+999999999\". Up to 15 digits allowed." -#: vibes_auth/views.py:30 +#: engine/vibes_auth/views.py:30 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 " @@ -531,7 +540,7 @@ msgstr "" "provided credentials. It is built on top of a base token view and ensures " "proper rate limiting to protect against brute force attacks." -#: vibes_auth/views.py:48 +#: engine/vibes_auth/views.py:48 msgid "" "Handles refreshing of tokens for authentication purposes. This class is used " "to provide functionality for token refresh operations as part of an " @@ -545,7 +554,7 @@ msgstr "" "within defined rate limits. The view relies on the associated serializer to " "validate token refresh inputs and produce appropriate outputs." -#: vibes_auth/views.py:67 +#: engine/vibes_auth/views.py:67 msgid "" "Represents a view for verifying JSON Web Tokens (JWT) using specific " "serialization and validation logic. " @@ -553,11 +562,11 @@ msgstr "" "Represents a view for verifying JSON Web Tokens (JWT) using specific " "serialization and validation logic." -#: vibes_auth/views.py:80 +#: engine/vibes_auth/views.py:80 msgid "the token is invalid" msgstr "The token is invalid" -#: vibes_auth/viewsets.py:45 +#: engine/vibes_auth/viewsets.py:45 msgid "" "User view set implementation.\n" "Provides a set of actions that manage user-related data such as creation, " @@ -571,10 +580,10 @@ msgstr "" "avatar upload, account activation, and recently viewed items merging. This " "class extends the mixins and GenericViewSet for robust API handling." -#: vibes_auth/viewsets.py:99 +#: engine/vibes_auth/viewsets.py:99 msgid "password reset successfully" msgstr "Password has been reset successfully!" -#: vibes_auth/viewsets.py:132 +#: engine/vibes_auth/viewsets.py:132 msgid "account already activated!" msgstr "You have already activated the account..." diff --git a/vibes_auth/locale/en_US/LC_MESSAGES/django.mo b/engine/vibes_auth/locale/en_US/LC_MESSAGES/django.mo similarity index 67% rename from vibes_auth/locale/en_US/LC_MESSAGES/django.mo rename to engine/vibes_auth/locale/en_US/LC_MESSAGES/django.mo index 2547a992..3264ec03 100644 Binary files a/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/vibes_auth/locale/en_US/LC_MESSAGES/django.po b/engine/vibes_auth/locale/en_US/LC_MESSAGES/django.po similarity index 66% rename from vibes_auth/locale/en_US/LC_MESSAGES/django.po rename to engine/vibes_auth/locale/en_US/LC_MESSAGES/django.po index b26c5a32..5589a780 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,158 +13,169 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: vibes_auth/admin.py:39 vibes_auth/admin.py:40 -#: vibes_auth/graphene/object_types.py:46 +#: engine/vibes_auth/admin.py:40 engine/vibes_auth/admin.py:41 +#: engine/vibes_auth/graphene/object_types.py:46 msgid "balance" msgstr "Balance" -#: vibes_auth/admin.py:48 +#: engine/vibes_auth/admin.py:49 msgid "order" msgstr "Order" -#: vibes_auth/admin.py:49 vibes_auth/graphene/object_types.py:44 +#: engine/vibes_auth/admin.py:50 engine/vibes_auth/graphene/object_types.py:44 msgid "orders" msgstr "Orders" -#: vibes_auth/admin.py:59 +#: engine/vibes_auth/admin.py:60 msgid "personal info" msgstr "Personal Info" -#: vibes_auth/admin.py:63 vibes_auth/graphene/object_types.py:43 +#: engine/vibes_auth/admin.py:64 engine/vibes_auth/graphene/object_types.py:43 msgid "permissions" msgstr "Permissions" -#: vibes_auth/admin.py:76 +#: engine/vibes_auth/admin.py:77 msgid "important dates" msgstr "Important dates" -#: vibes_auth/admin.py:77 +#: engine/vibes_auth/admin.py:78 msgid "additional info" msgstr "Additional Info" -#: vibes_auth/apps.py:8 +#: engine/vibes_auth/admin.py:145 +msgid "Close selected threads" +msgstr "Close selected threads" + +#: engine/vibes_auth/admin.py:149 +msgid "Open selected threads" +msgstr "Open selected threads" + +#: engine/vibes_auth/apps.py:8 msgid "authentication" msgstr "Authentication" -#: vibes_auth/docs/drf/views.py:15 +#: engine/vibes_auth/docs/drf/views.py:15 msgid "obtain a token pair" msgstr "Obtain a token pair" -#: vibes_auth/docs/drf/views.py:16 +#: engine/vibes_auth/docs/drf/views.py:16 msgid "obtain a token pair (refresh and access) for authentication." msgstr "Obtain a token pair (refresh and access) for authentication." -#: vibes_auth/docs/drf/views.py:35 +#: engine/vibes_auth/docs/drf/views.py:35 msgid "refresh a token pair" msgstr "Refresh a token pair" -#: vibes_auth/docs/drf/views.py:36 +#: engine/vibes_auth/docs/drf/views.py:36 msgid "refresh a token pair (refresh and access)." msgstr "Refresh a token pair (refresh and access)." -#: vibes_auth/docs/drf/views.py:55 +#: engine/vibes_auth/docs/drf/views.py:55 msgid "verify a token" msgstr "Verify a token" -#: vibes_auth/docs/drf/views.py:56 +#: engine/vibes_auth/docs/drf/views.py:56 msgid "Verify a token (refresh or access)." msgstr "Verify a token (refresh or access)." -#: vibes_auth/docs/drf/views.py:62 vibes_auth/views.py:78 +#: engine/vibes_auth/docs/drf/views.py:62 engine/vibes_auth/views.py:78 msgid "the token is valid" msgstr "The token is valid" -#: vibes_auth/docs/drf/viewsets.py:16 +#: engine/vibes_auth/docs/drf/viewsets.py:16 msgid "create a new user" msgstr "Create a new user" -#: vibes_auth/docs/drf/viewsets.py:21 +#: engine/vibes_auth/docs/drf/viewsets.py:21 msgid "retrieve a user's details" msgstr "Retrieve a user's details" -#: vibes_auth/docs/drf/viewsets.py:25 +#: engine/vibes_auth/docs/drf/viewsets.py:25 msgid "update a user's details" msgstr "Update a user's details" -#: vibes_auth/docs/drf/viewsets.py:30 +#: engine/vibes_auth/docs/drf/viewsets.py:30 msgid "delete a user" msgstr "Delete a user" -#: vibes_auth/docs/drf/viewsets.py:34 +#: engine/vibes_auth/docs/drf/viewsets.py:34 msgid "reset a user's password by sending a reset password email" msgstr "Reset a user's password by sending a reset password email" -#: vibes_auth/docs/drf/viewsets.py:39 +#: engine/vibes_auth/docs/drf/viewsets.py:39 msgid "handle avatar upload for a user" msgstr "Handle avatar upload for a user" -#: vibes_auth/docs/drf/viewsets.py:54 +#: engine/vibes_auth/docs/drf/viewsets.py:54 msgid "confirm a user's password reset" msgstr "Confirm a user's password reset" -#: vibes_auth/docs/drf/viewsets.py:58 vibes_auth/graphene/mutations.py:320 -#: vibes_auth/serializers.py:105 vibes_auth/serializers.py:109 -#: vibes_auth/viewsets.py:84 +#: engine/vibes_auth/docs/drf/viewsets.py:58 +#: engine/vibes_auth/graphene/mutations.py:320 +#: engine/vibes_auth/serializers.py:105 engine/vibes_auth/serializers.py:109 +#: engine/vibes_auth/viewsets.py:84 msgid "passwords do not match" msgstr "Passwords do not match" -#: vibes_auth/docs/drf/viewsets.py:63 +#: engine/vibes_auth/docs/drf/viewsets.py:63 msgid "activate a user's account" msgstr "Activate a user's account" -#: vibes_auth/docs/drf/viewsets.py:67 +#: engine/vibes_auth/docs/drf/viewsets.py:67 msgid "activation link is invalid or account already activated" msgstr "Activation link is invalid or account already activated" -#: vibes_auth/docs/drf/viewsets.py:72 +#: engine/vibes_auth/docs/drf/viewsets.py:72 msgid "merge client-stored recently viewed products" msgstr "Merge client-stored recently viewed products" -#: vibes_auth/graphene/mutations.py:41 +#: engine/vibes_auth/graphene/mutations.py:41 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." -#: vibes_auth/graphene/mutations.py:61 +#: engine/vibes_auth/graphene/mutations.py:61 msgid "password too weak" msgstr "The password is too weak" -#: vibes_auth/graphene/mutations.py:110 +#: engine/vibes_auth/graphene/mutations.py:110 #, python-brace-format msgid "{name} does not exist: {uuid}" msgstr "{name} does not exist: {uuid}!" -#: vibes_auth/graphene/mutations.py:120 +#: engine/vibes_auth/graphene/mutations.py:120 msgid "malformed email" msgstr "Malformed email" -#: vibes_auth/graphene/mutations.py:127 vibes_auth/serializers.py:115 +#: engine/vibes_auth/graphene/mutations.py:127 +#: engine/vibes_auth/serializers.py:115 #, python-brace-format msgid "malformed phone number: {phone_number}" msgstr "Malformed phone number: {phone_number}!" -#: vibes_auth/graphene/mutations.py:149 +#: engine/vibes_auth/graphene/mutations.py:149 #, python-brace-format msgid "Invalid attribute format: {attribute_pair}" msgstr "Invalid attribute format: {attribute_pair}!" -#: vibes_auth/graphene/mutations.py:273 vibes_auth/viewsets.py:127 -#: vibes_auth/viewsets.py:146 +#: engine/vibes_auth/graphene/mutations.py:273 +#: engine/vibes_auth/viewsets.py:127 engine/vibes_auth/viewsets.py:146 msgid "activation link is invalid!" msgstr "Activation link is invalid!" -#: vibes_auth/graphene/mutations.py:276 +#: engine/vibes_auth/graphene/mutations.py:276 msgid "account already activated..." msgstr "Account has been already activated..." -#: vibes_auth/graphene/mutations.py:283 vibes_auth/graphene/mutations.py:339 +#: engine/vibes_auth/graphene/mutations.py:283 +#: engine/vibes_auth/graphene/mutations.py:339 msgid "something went wrong: {e!s}" msgstr "Something went wrong: {e!s}" -#: vibes_auth/graphene/mutations.py:327 vibes_auth/viewsets.py:95 +#: engine/vibes_auth/graphene/mutations.py:327 engine/vibes_auth/viewsets.py:95 msgid "token is invalid!" msgstr "Token is invalid!" -#: vibes_auth/graphene/object_types.py:40 +#: engine/vibes_auth/graphene/object_types.py:40 msgid "" "the products this user has viewed most recently (max 48), in reverse‐" "chronological order" @@ -172,100 +183,98 @@ msgstr "" "The products this user has viewed most recently (max 48), in reverse-" "chronological order." -#: vibes_auth/graphene/object_types.py:42 vibes_auth/models.py:132 +#: engine/vibes_auth/graphene/object_types.py:42 +#: engine/vibes_auth/models.py:123 msgid "groups" msgstr "Groups" -#: vibes_auth/graphene/object_types.py:45 +#: engine/vibes_auth/graphene/object_types.py:45 msgid "wishlist" msgstr "Wishlist" -#: vibes_auth/graphene/object_types.py:47 vibes_auth/models.py:58 +#: engine/vibes_auth/graphene/object_types.py:47 engine/vibes_auth/models.py:59 msgid "avatar" msgstr "Avatar" -#: vibes_auth/graphene/object_types.py:48 +#: engine/vibes_auth/graphene/object_types.py:48 msgid "attributes may be used to store custom data" msgstr "Attributes may be used to store custom data" -#: vibes_auth/graphene/object_types.py:49 +#: engine/vibes_auth/graphene/object_types.py:50 #, python-brace-format -msgid "language is one of the {LANGUAGES} with default {LANGUAGE_CODE}" -msgstr "Language is one of the {LANGUAGES} with default {LANGUAGE_CODE}" +msgid "" +"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}" -#: vibes_auth/graphene/object_types.py:50 +#: engine/vibes_auth/graphene/object_types.py:52 msgid "address set" msgstr "Adresses" -#: vibes_auth/messaging/admin.py:36 -msgid "Close selected threads" -msgstr "Close selected threads" - -#: vibes_auth/messaging/admin.py:40 -msgid "Open selected threads" -msgstr "Open selected threads" - -#: vibes_auth/messaging/models.py:24 +#: engine/vibes_auth/messaging/models.py:24 msgid "Open" msgstr "Open" -#: vibes_auth/messaging/models.py:25 +#: engine/vibes_auth/messaging/models.py:25 msgid "Closed" msgstr "Closed" -#: vibes_auth/messaging/models.py:29 +#: engine/vibes_auth/messaging/models.py:29 msgid "User" msgstr "User" -#: vibes_auth/messaging/models.py:30 +#: engine/vibes_auth/messaging/models.py:30 msgid "Staff" msgstr "Staff" -#: vibes_auth/messaging/models.py:31 +#: engine/vibes_auth/messaging/models.py:31 msgid "System" msgstr "System" -#: vibes_auth/messaging/models.py:36 +#: engine/vibes_auth/messaging/models.py:36 msgid "For anonymous threads" msgstr "For anonymous threads" -#: vibes_auth/messaging/models.py:50 +#: engine/vibes_auth/messaging/models.py:50 msgid "Chat thread" msgstr "Chat thread" -#: vibes_auth/messaging/models.py:51 +#: engine/vibes_auth/messaging/models.py:51 msgid "Chat threads" msgstr "Chat threads" -#: vibes_auth/messaging/models.py:56 +#: engine/vibes_auth/messaging/models.py:56 msgid "Provide user or email for anonymous thread." msgstr "Provide user or email for anonymous thread." -#: vibes_auth/messaging/models.py:58 vibes_auth/messaging/services.py:133 +#: engine/vibes_auth/messaging/models.py:58 +#: engine/vibes_auth/messaging/services.py:132 msgid "Assignee must be a staff user." msgstr "Assignee must be a staff user." -#: vibes_auth/messaging/models.py:74 +#: engine/vibes_auth/messaging/models.py:74 msgid "Chat message" msgstr "Chat message" -#: vibes_auth/messaging/models.py:75 +#: engine/vibes_auth/messaging/models.py:75 msgid "Chat messages" msgstr "Chat messages" -#: vibes_auth/messaging/services.py:48 +#: engine/vibes_auth/messaging/services.py:47 msgid "Valid email is required for anonymous chats." msgstr "Valid email is required for anonymous chats." -#: vibes_auth/messaging/services.py:56 +#: engine/vibes_auth/messaging/services.py:55 msgid "Message must be 1..1028 characters." msgstr "Message must be 1..1028 characters." -#: vibes_auth/messaging/services.py:90 +#: engine/vibes_auth/messaging/services.py:89 msgid "We're searching for the operator to answer you already, hold by!" msgstr "We're searching for the operator to answer you already, hold by!" -#: vibes_auth/models.py:30 +#: engine/vibes_auth/models.py:31 msgid "" "Represents a User entity with customized fields and methods for extended " "functionality. This class extends the AbstractUser model and integrates " @@ -283,152 +292,152 @@ msgstr "" "verifying accounts. The User model is designed to handle specific use cases " "for enhanced user management." -#: vibes_auth/models.py:41 +#: engine/vibes_auth/models.py:42 msgid "email" msgstr "Email" -#: vibes_auth/models.py:41 +#: engine/vibes_auth/models.py:42 msgid "user email address" msgstr "User's email address" -#: vibes_auth/models.py:43 +#: engine/vibes_auth/models.py:44 msgid "phone_number" msgstr "Phone Number" -#: vibes_auth/models.py:48 +#: engine/vibes_auth/models.py:49 msgid "user phone number" msgstr "User phone number" -#: vibes_auth/models.py:54 +#: engine/vibes_auth/models.py:55 msgid "first_name" msgstr "First name" -#: vibes_auth/models.py:55 +#: engine/vibes_auth/models.py:56 msgid "last_name" msgstr "Last name" -#: vibes_auth/models.py:61 +#: engine/vibes_auth/models.py:62 msgid "user profile image" msgstr "User profile image" -#: vibes_auth/models.py:66 +#: engine/vibes_auth/models.py:67 msgid "is verified" msgstr "Is verified" -#: vibes_auth/models.py:67 +#: engine/vibes_auth/models.py:68 msgid "user verification status" msgstr "User's verification status" -#: vibes_auth/models.py:70 +#: engine/vibes_auth/models.py:71 msgid "is_active" msgstr "Is active" -#: vibes_auth/models.py:72 +#: engine/vibes_auth/models.py:73 msgid "unselect this instead of deleting accounts" msgstr "Unselect this instead of deleting accounts" -#: vibes_auth/models.py:75 +#: engine/vibes_auth/models.py:76 msgid "is_subscribed" msgstr "Is subscribed" -#: vibes_auth/models.py:75 +#: engine/vibes_auth/models.py:76 msgid "user's newsletter subscription status" msgstr "User's newsletter subscription status" -#: vibes_auth/models.py:78 +#: engine/vibes_auth/models.py:79 msgid "activation token" msgstr "Activation token" -#: vibes_auth/models.py:80 +#: engine/vibes_auth/models.py:83 msgid "attributes" msgstr "Attributes" -#: vibes_auth/models.py:110 +#: engine/vibes_auth/models.py:115 msgid "user" msgstr "User" -#: vibes_auth/models.py:111 +#: engine/vibes_auth/models.py:116 msgid "users" msgstr "Users" -#: vibes_auth/models.py:131 +#: engine/vibes_auth/models.py:122 msgid "group" msgstr "Group" -#: vibes_auth/models.py:148 +#: engine/vibes_auth/models.py:129 msgid "outstanding token" msgstr "Outstanding token" -#: vibes_auth/models.py:149 +#: engine/vibes_auth/models.py:130 msgid "outstanding tokens" msgstr "Outstanding tokens" -#: vibes_auth/models.py:167 +#: engine/vibes_auth/models.py:136 msgid "blacklisted token" msgstr "Blacklisted token" -#: vibes_auth/models.py:168 +#: engine/vibes_auth/models.py:137 msgid "blacklisted tokens" msgstr "Blacklisted tokens" -#: vibes_auth/serializers.py:99 +#: engine/vibes_auth/serializers.py:99 msgid "attributes must be a dictionary" msgstr "`attributes` must be a dictionary" -#: vibes_auth/serializers.py:101 +#: engine/vibes_auth/serializers.py:101 msgid "business identificator is required when registering as a business" msgstr "Business identificator is required when registering as a business" -#: vibes_auth/serializers.py:121 +#: engine/vibes_auth/serializers.py:121 #, python-brace-format msgid "malformed email: {email}" msgstr "malformed email: {email}" -#: vibes_auth/serializers.py:142 vibes_auth/serializers.py:164 -#: vibes_auth/serializers.py:186 vibes_auth/serializers.py:198 +#: engine/vibes_auth/serializers.py:142 engine/vibes_auth/serializers.py:164 +#: engine/vibes_auth/serializers.py:184 engine/vibes_auth/serializers.py:194 msgid "no active account" msgstr "No active account found" -#: vibes_auth/serializers.py:174 +#: engine/vibes_auth/serializers.py:174 msgid "must set token_class attribute on class." msgstr "Must set token_class attribute on class!" -#: vibes_auth/serializers.py:246 +#: engine/vibes_auth/serializers.py:240 msgid "token_blacklisted" msgstr "Token blacklisted" -#: vibes_auth/serializers.py:251 +#: engine/vibes_auth/serializers.py:245 msgid "invalid token" msgstr "Invalid token" -#: vibes_auth/serializers.py:257 +#: engine/vibes_auth/serializers.py:251 msgid "no user uuid claim present in token" msgstr "No user uuid claim present in token" -#: vibes_auth/serializers.py:259 +#: engine/vibes_auth/serializers.py:253 msgid "user does not exist" msgstr "User does not exist" -#: vibes_auth/templates/user_reset_password_email.html:7 +#: engine/vibes_auth/templates/user_reset_password_email.html:7 msgid "reset your password" msgstr "Reset your password" -#: vibes_auth/templates/user_reset_password_email.html:85 -#: vibes_auth/templates/user_verification_email.html:85 +#: engine/vibes_auth/templates/user_reset_password_email.html:85 +#: engine/vibes_auth/templates/user_verification_email.html:85 msgid "logo" msgstr "Logo" -#: vibes_auth/templates/user_reset_password_email.html:90 +#: engine/vibes_auth/templates/user_reset_password_email.html:90 msgid "password reset confirmation" msgstr "Password reset confirmation" -#: vibes_auth/templates/user_reset_password_email.html:91 -#: vibes_auth/templates/user_verification_email.html:91 +#: engine/vibes_auth/templates/user_reset_password_email.html:91 +#: engine/vibes_auth/templates/user_verification_email.html:91 #, python-format msgid "hello %(user_first_name)s," msgstr "Hello %(user_first_name)s," -#: vibes_auth/templates/user_reset_password_email.html:92 +#: 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" @@ -437,12 +446,12 @@ msgstr "" "We have received a request to reset your password. Please reset your " "password by clicking the button below:" -#: vibes_auth/templates/user_reset_password_email.html:95 +#: engine/vibes_auth/templates/user_reset_password_email.html:95 msgid "reset password" msgstr "reset password" -#: vibes_auth/templates/user_reset_password_email.html:97 -#: vibes_auth/templates/user_verification_email.html:99 +#: engine/vibes_auth/templates/user_reset_password_email.html:97 +#: engine/vibes_auth/templates/user_verification_email.html:99 msgid "" "if the button above does not work, please copy and paste the following URL\n" " into your web browser:" @@ -450,7 +459,7 @@ msgstr "" "If the button above does not work, please copy and paste the following URL\n" " into your web browser:" -#: vibes_auth/templates/user_reset_password_email.html:100 +#: engine/vibes_auth/templates/user_reset_password_email.html:100 msgid "" "if you did not send this request, please ignore this\n" " email." @@ -458,22 +467,22 @@ msgstr "" "if you did not send this request, please ignore this\n" " email." -#: vibes_auth/templates/user_reset_password_email.html:102 +#: engine/vibes_auth/templates/user_reset_password_email.html:102 #, python-format msgid "best regards,
The %(project_name)s team" msgstr "Best regards,
The %(project_name)s team" -#: vibes_auth/templates/user_reset_password_email.html:108 -#: vibes_auth/templates/user_verification_email.html:108 +#: engine/vibes_auth/templates/user_reset_password_email.html:108 +#: engine/vibes_auth/templates/user_verification_email.html:108 msgid "all rights reserved" msgstr "All rights reserved" -#: vibes_auth/templates/user_verification_email.html:7 -#: vibes_auth/templates/user_verification_email.html:90 +#: engine/vibes_auth/templates/user_verification_email.html:7 +#: engine/vibes_auth/templates/user_verification_email.html:90 msgid "activate your account" msgstr "Activate your account" -#: vibes_auth/templates/user_verification_email.html:92 +#: engine/vibes_auth/templates/user_verification_email.html:92 #, python-format msgid "" "thank you for signing up for %(project_name)s. please activate your account\n" @@ -482,7 +491,7 @@ msgstr "" "Thank you for signing up for %(project_name)s. Please activate your account " "by clicking the button below:" -#: vibes_auth/templates/user_verification_email.html:96 +#: engine/vibes_auth/templates/user_verification_email.html:96 msgid "" "activate\n" " account" @@ -490,22 +499,22 @@ msgstr "" "Activate\n" " account" -#: vibes_auth/templates/user_verification_email.html:102 +#: engine/vibes_auth/templates/user_verification_email.html:102 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "Best regards,
the %(project_name)s team" -#: vibes_auth/utils/emailing.py:23 +#: engine/vibes_auth/utils/emailing.py:23 #, python-brace-format msgid "{config.PROJECT_NAME} | Activate Account" msgstr "{config.PROJECT_NAME} | Activate Account" -#: vibes_auth/utils/emailing.py:62 +#: engine/vibes_auth/utils/emailing.py:62 #, python-brace-format msgid "{config.PROJECT_NAME} | Reset Password" msgstr "{config.PROJECT_NAME} | Reset Password" -#: vibes_auth/validators.py:13 +#: engine/vibes_auth/validators.py:13 msgid "" "invalid phone number format. the number must be entered in the format: " "\"+999999999\". up to 15 digits allowed." @@ -513,7 +522,7 @@ msgstr "" "Invalid phone number format. The number must be entered in the format: " "\"+999999999\". Up to 15 digits allowed." -#: vibes_auth/views.py:30 +#: engine/vibes_auth/views.py:30 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 " @@ -527,7 +536,7 @@ msgstr "" "provided credentials. It is built on top of a base token view and ensures " "proper rate limiting to protect against brute force attacks." -#: vibes_auth/views.py:48 +#: engine/vibes_auth/views.py:48 msgid "" "Handles refreshing of tokens for authentication purposes. This class is used " "to provide functionality for token refresh operations as part of an " @@ -541,7 +550,7 @@ msgstr "" "within defined rate limits. The view relies on the associated serializer to " "validate token refresh inputs and produce appropriate outputs." -#: vibes_auth/views.py:67 +#: engine/vibes_auth/views.py:67 msgid "" "Represents a view for verifying JSON Web Tokens (JWT) using specific " "serialization and validation logic. " @@ -549,11 +558,11 @@ msgstr "" "Represents a view for verifying JSON Web Tokens (JWT) using specific " "serialization and validation logic." -#: vibes_auth/views.py:80 +#: engine/vibes_auth/views.py:80 msgid "the token is invalid" msgstr "The token is invalid" -#: vibes_auth/viewsets.py:45 +#: engine/vibes_auth/viewsets.py:45 msgid "" "User view set implementation.\n" "Provides a set of actions that manage user-related data such as creation, " @@ -567,10 +576,10 @@ msgstr "" "avatar upload, account activation, and recently viewed items merging. This " "class extends the mixins and GenericViewSet for robust API handling." -#: vibes_auth/viewsets.py:99 +#: engine/vibes_auth/viewsets.py:99 msgid "password reset successfully" msgstr "Password has been reset successfully!" -#: vibes_auth/viewsets.py:132 +#: engine/vibes_auth/viewsets.py:132 msgid "account already activated!" msgstr "You have already activated the account..." diff --git a/vibes_auth/locale/es_ES/LC_MESSAGES/django.mo b/engine/vibes_auth/locale/es_ES/LC_MESSAGES/django.mo similarity index 65% rename from vibes_auth/locale/es_ES/LC_MESSAGES/django.mo rename to engine/vibes_auth/locale/es_ES/LC_MESSAGES/django.mo index 1acd0aff..a53237bd 100644 Binary files a/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/vibes_auth/locale/es_ES/LC_MESSAGES/django.po b/engine/vibes_auth/locale/es_ES/LC_MESSAGES/django.po similarity index 68% rename from vibes_auth/locale/es_ES/LC_MESSAGES/django.po rename to engine/vibes_auth/locale/es_ES/LC_MESSAGES/django.po index 8cf3392d..4ab3ddd3 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,161 +13,172 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: vibes_auth/admin.py:39 vibes_auth/admin.py:40 -#: vibes_auth/graphene/object_types.py:46 +#: engine/vibes_auth/admin.py:40 engine/vibes_auth/admin.py:41 +#: engine/vibes_auth/graphene/object_types.py:46 msgid "balance" msgstr "Saldo" -#: vibes_auth/admin.py:48 +#: engine/vibes_auth/admin.py:49 msgid "order" msgstr "Pida" -#: vibes_auth/admin.py:49 vibes_auth/graphene/object_types.py:44 +#: engine/vibes_auth/admin.py:50 engine/vibes_auth/graphene/object_types.py:44 msgid "orders" msgstr "Pedidos" -#: vibes_auth/admin.py:59 +#: engine/vibes_auth/admin.py:60 msgid "personal info" msgstr "Información personal" -#: vibes_auth/admin.py:63 vibes_auth/graphene/object_types.py:43 +#: engine/vibes_auth/admin.py:64 engine/vibes_auth/graphene/object_types.py:43 msgid "permissions" msgstr "Permisos" -#: vibes_auth/admin.py:76 +#: engine/vibes_auth/admin.py:77 msgid "important dates" msgstr "Fechas importantes" -#: vibes_auth/admin.py:77 +#: engine/vibes_auth/admin.py:78 msgid "additional info" msgstr "Información adicional" -#: vibes_auth/apps.py:8 +#: engine/vibes_auth/admin.py:145 +msgid "Close selected threads" +msgstr "Cerrar los hilos seleccionados" + +#: engine/vibes_auth/admin.py:149 +msgid "Open selected threads" +msgstr "Abrir los hilos seleccionados" + +#: engine/vibes_auth/apps.py:8 msgid "authentication" msgstr "Autenticación" -#: vibes_auth/docs/drf/views.py:15 +#: engine/vibes_auth/docs/drf/views.py:15 msgid "obtain a token pair" msgstr "Obtener un par de fichas" -#: vibes_auth/docs/drf/views.py:16 +#: engine/vibes_auth/docs/drf/views.py:16 msgid "obtain a token pair (refresh and access) for authentication." msgstr "Obtener un par de tokens (refresco y acceso) para la autenticación." -#: vibes_auth/docs/drf/views.py:35 +#: engine/vibes_auth/docs/drf/views.py:35 msgid "refresh a token pair" msgstr "Actualizar un par de fichas" -#: vibes_auth/docs/drf/views.py:36 +#: engine/vibes_auth/docs/drf/views.py:36 msgid "refresh a token pair (refresh and access)." msgstr "Refrescar un par de fichas (refrescar y acceder)." -#: vibes_auth/docs/drf/views.py:55 +#: engine/vibes_auth/docs/drf/views.py:55 msgid "verify a token" msgstr "Verificar un token" -#: vibes_auth/docs/drf/views.py:56 +#: engine/vibes_auth/docs/drf/views.py:56 msgid "Verify a token (refresh or access)." msgstr "Verificar un token (actualización o acceso)." -#: vibes_auth/docs/drf/views.py:62 vibes_auth/views.py:78 +#: engine/vibes_auth/docs/drf/views.py:62 engine/vibes_auth/views.py:78 msgid "the token is valid" msgstr "El token es válido" -#: vibes_auth/docs/drf/viewsets.py:16 +#: engine/vibes_auth/docs/drf/viewsets.py:16 msgid "create a new user" msgstr "Crear un nuevo usuario" -#: vibes_auth/docs/drf/viewsets.py:21 +#: engine/vibes_auth/docs/drf/viewsets.py:21 msgid "retrieve a user's details" msgstr "Recuperar los datos de un usuario" -#: vibes_auth/docs/drf/viewsets.py:25 +#: engine/vibes_auth/docs/drf/viewsets.py:25 msgid "update a user's details" msgstr "Actualizar los datos de un usuario" -#: vibes_auth/docs/drf/viewsets.py:30 +#: engine/vibes_auth/docs/drf/viewsets.py:30 msgid "delete a user" msgstr "Eliminar un usuario" -#: vibes_auth/docs/drf/viewsets.py:34 +#: engine/vibes_auth/docs/drf/viewsets.py:34 msgid "reset a user's password by sending a reset password email" msgstr "" "Restablecer la contraseña de un usuario enviando un correo electrónico de " "restablecimiento de contraseña" -#: vibes_auth/docs/drf/viewsets.py:39 +#: engine/vibes_auth/docs/drf/viewsets.py:39 msgid "handle avatar upload for a user" msgstr "Gestionar la subida de avatares de un usuario" -#: vibes_auth/docs/drf/viewsets.py:54 +#: engine/vibes_auth/docs/drf/viewsets.py:54 msgid "confirm a user's password reset" msgstr "Confirmar el restablecimiento de la contraseña de un usuario" -#: vibes_auth/docs/drf/viewsets.py:58 vibes_auth/graphene/mutations.py:320 -#: vibes_auth/serializers.py:105 vibes_auth/serializers.py:109 -#: vibes_auth/viewsets.py:84 +#: engine/vibes_auth/docs/drf/viewsets.py:58 +#: engine/vibes_auth/graphene/mutations.py:320 +#: engine/vibes_auth/serializers.py:105 engine/vibes_auth/serializers.py:109 +#: engine/vibes_auth/viewsets.py:84 msgid "passwords do not match" msgstr "Las contraseñas no coinciden" -#: vibes_auth/docs/drf/viewsets.py:63 +#: engine/vibes_auth/docs/drf/viewsets.py:63 msgid "activate a user's account" msgstr "Activar la cuenta de un usuario" -#: vibes_auth/docs/drf/viewsets.py:67 +#: engine/vibes_auth/docs/drf/viewsets.py:67 msgid "activation link is invalid or account already activated" msgstr "El enlace de activación no es válido o la cuenta ya está activada" -#: vibes_auth/docs/drf/viewsets.py:72 +#: engine/vibes_auth/docs/drf/viewsets.py:72 msgid "merge client-stored recently viewed products" msgstr "Fusionar productos vistos recientemente almacenados por el cliente" -#: vibes_auth/graphene/mutations.py:41 +#: engine/vibes_auth/graphene/mutations.py:41 msgid "the user's b64-encoded uuid who referred the new user to us." msgstr "" "El uuid codificado en b64 del usuario que nos ha remitido al nuevo usuario." -#: vibes_auth/graphene/mutations.py:61 +#: engine/vibes_auth/graphene/mutations.py:61 msgid "password too weak" msgstr "La contraseña es demasiado débil" -#: vibes_auth/graphene/mutations.py:110 +#: engine/vibes_auth/graphene/mutations.py:110 #, python-brace-format msgid "{name} does not exist: {uuid}" msgstr "{name} no existe: ¡{uuid}!" -#: vibes_auth/graphene/mutations.py:120 +#: engine/vibes_auth/graphene/mutations.py:120 msgid "malformed email" msgstr "Correo electrónico malformado" -#: vibes_auth/graphene/mutations.py:127 vibes_auth/serializers.py:115 +#: engine/vibes_auth/graphene/mutations.py:127 +#: engine/vibes_auth/serializers.py:115 #, python-brace-format msgid "malformed phone number: {phone_number}" msgstr "Número de teléfono malformado: ¡{phone_number}!" -#: vibes_auth/graphene/mutations.py:149 +#: engine/vibes_auth/graphene/mutations.py:149 #, python-brace-format msgid "Invalid attribute format: {attribute_pair}" msgstr "Formato de atributo no válido: ¡{attribute_pair}!" -#: vibes_auth/graphene/mutations.py:273 vibes_auth/viewsets.py:127 -#: vibes_auth/viewsets.py:146 +#: engine/vibes_auth/graphene/mutations.py:273 +#: engine/vibes_auth/viewsets.py:127 engine/vibes_auth/viewsets.py:146 msgid "activation link is invalid!" msgstr "El enlace de activación no es válido." -#: vibes_auth/graphene/mutations.py:276 +#: engine/vibes_auth/graphene/mutations.py:276 msgid "account already activated..." msgstr "La cuenta ya ha sido activada..." -#: vibes_auth/graphene/mutations.py:283 vibes_auth/graphene/mutations.py:339 +#: engine/vibes_auth/graphene/mutations.py:283 +#: engine/vibes_auth/graphene/mutations.py:339 msgid "something went wrong: {e!s}" msgstr "Algo salió mal: {e!s}." -#: vibes_auth/graphene/mutations.py:327 vibes_auth/viewsets.py:95 +#: engine/vibes_auth/graphene/mutations.py:327 engine/vibes_auth/viewsets.py:95 msgid "token is invalid!" msgstr "¡La ficha no es válida!" -#: vibes_auth/graphene/object_types.py:40 +#: engine/vibes_auth/graphene/object_types.py:40 msgid "" "the products this user has viewed most recently (max 48), in reverse‐" "chronological order" @@ -175,100 +186,98 @@ msgstr "" "Los productos que este usuario ha visto más recientemente (máx. 48), en " "orden cronológico inverso." -#: vibes_auth/graphene/object_types.py:42 vibes_auth/models.py:132 +#: engine/vibes_auth/graphene/object_types.py:42 +#: engine/vibes_auth/models.py:123 msgid "groups" msgstr "Grupos" -#: vibes_auth/graphene/object_types.py:45 +#: engine/vibes_auth/graphene/object_types.py:45 msgid "wishlist" msgstr "Lista de deseos" -#: vibes_auth/graphene/object_types.py:47 vibes_auth/models.py:58 +#: engine/vibes_auth/graphene/object_types.py:47 engine/vibes_auth/models.py:59 msgid "avatar" msgstr "Avatar" -#: vibes_auth/graphene/object_types.py:48 +#: engine/vibes_auth/graphene/object_types.py:48 msgid "attributes may be used to store custom data" msgstr "Los atributos pueden utilizarse para almacenar datos personalizados" -#: vibes_auth/graphene/object_types.py:49 +#: engine/vibes_auth/graphene/object_types.py:50 #, python-brace-format -msgid "language is one of the {LANGUAGES} with default {LANGUAGE_CODE}" -msgstr "El idioma es uno de los {LANGUAGES} con {LANGUAGE_CODE} por defecto" +msgid "" +"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" -#: vibes_auth/graphene/object_types.py:50 +#: engine/vibes_auth/graphene/object_types.py:52 msgid "address set" msgstr "Direcciones" -#: vibes_auth/messaging/admin.py:36 -msgid "Close selected threads" -msgstr "Cerrar los hilos seleccionados" - -#: vibes_auth/messaging/admin.py:40 -msgid "Open selected threads" -msgstr "Abrir los hilos seleccionados" - -#: vibes_auth/messaging/models.py:24 +#: engine/vibes_auth/messaging/models.py:24 msgid "Open" msgstr "Abrir" -#: vibes_auth/messaging/models.py:25 +#: engine/vibes_auth/messaging/models.py:25 msgid "Closed" msgstr "Cerrado" -#: vibes_auth/messaging/models.py:29 +#: engine/vibes_auth/messaging/models.py:29 msgid "User" msgstr "Usuario" -#: vibes_auth/messaging/models.py:30 +#: engine/vibes_auth/messaging/models.py:30 msgid "Staff" msgstr "Personal" -#: vibes_auth/messaging/models.py:31 +#: engine/vibes_auth/messaging/models.py:31 msgid "System" msgstr "Sistema" -#: vibes_auth/messaging/models.py:36 +#: engine/vibes_auth/messaging/models.py:36 msgid "For anonymous threads" msgstr "Para hilos anónimos" -#: vibes_auth/messaging/models.py:50 +#: engine/vibes_auth/messaging/models.py:50 msgid "Chat thread" msgstr "Hilo de conversación" -#: vibes_auth/messaging/models.py:51 +#: engine/vibes_auth/messaging/models.py:51 msgid "Chat threads" msgstr "Hilos de chat" -#: vibes_auth/messaging/models.py:56 +#: engine/vibes_auth/messaging/models.py:56 msgid "Provide user or email for anonymous thread." msgstr "Proporcionar usuario o correo electrónico para hilo anónimo." -#: vibes_auth/messaging/models.py:58 vibes_auth/messaging/services.py:133 +#: engine/vibes_auth/messaging/models.py:58 +#: engine/vibes_auth/messaging/services.py:132 msgid "Assignee must be a staff user." msgstr "El cesionario debe ser un usuario del personal." -#: vibes_auth/messaging/models.py:74 +#: engine/vibes_auth/messaging/models.py:74 msgid "Chat message" msgstr "Mensaje de chat" -#: vibes_auth/messaging/models.py:75 +#: engine/vibes_auth/messaging/models.py:75 msgid "Chat messages" msgstr "Mensajes de chat" -#: vibes_auth/messaging/services.py:48 +#: engine/vibes_auth/messaging/services.py:47 msgid "Valid email is required for anonymous chats." msgstr "Se requiere un correo electrónico válido para los chats anónimos." -#: vibes_auth/messaging/services.py:56 +#: engine/vibes_auth/messaging/services.py:55 msgid "Message must be 1..1028 characters." msgstr "El mensaje debe tener 1..1028 caracteres." -#: vibes_auth/messaging/services.py:90 +#: engine/vibes_auth/messaging/services.py:89 msgid "We're searching for the operator to answer you already, hold by!" msgstr "Ya estamos buscando al operador que le responda, ¡espera!" -#: vibes_auth/models.py:30 +#: engine/vibes_auth/models.py:31 msgid "" "Represents a User entity with customized fields and methods for extended " "functionality. This class extends the AbstractUser model and integrates " @@ -287,152 +296,152 @@ msgstr "" "verificar las cuentas. El modelo User está diseñado para manejar casos de " "uso específicos para una gestión de usuarios mejorada." -#: vibes_auth/models.py:41 +#: engine/vibes_auth/models.py:42 msgid "email" msgstr "Correo electrónico" -#: vibes_auth/models.py:41 +#: engine/vibes_auth/models.py:42 msgid "user email address" msgstr "Dirección de correo electrónico del usuario" -#: vibes_auth/models.py:43 +#: engine/vibes_auth/models.py:44 msgid "phone_number" msgstr "Número de teléfono" -#: vibes_auth/models.py:48 +#: engine/vibes_auth/models.py:49 msgid "user phone number" msgstr "Número de teléfono del usuario" -#: vibes_auth/models.py:54 +#: engine/vibes_auth/models.py:55 msgid "first_name" msgstr "Nombre" -#: vibes_auth/models.py:55 +#: engine/vibes_auth/models.py:56 msgid "last_name" msgstr "Apellido" -#: vibes_auth/models.py:61 +#: engine/vibes_auth/models.py:62 msgid "user profile image" msgstr "Imagen del perfil del usuario" -#: vibes_auth/models.py:66 +#: engine/vibes_auth/models.py:67 msgid "is verified" msgstr "Se verifica" -#: vibes_auth/models.py:67 +#: engine/vibes_auth/models.py:68 msgid "user verification status" msgstr "Estado de verificación del usuario" -#: vibes_auth/models.py:70 +#: engine/vibes_auth/models.py:71 msgid "is_active" msgstr "Está activo" -#: vibes_auth/models.py:72 +#: engine/vibes_auth/models.py:73 msgid "unselect this instead of deleting accounts" msgstr "Deseleccione esta opción en lugar de eliminar cuentas" -#: vibes_auth/models.py:75 +#: engine/vibes_auth/models.py:76 msgid "is_subscribed" msgstr "Está suscrito" -#: vibes_auth/models.py:75 +#: engine/vibes_auth/models.py:76 msgid "user's newsletter subscription status" msgstr "Estado de suscripción del usuario al boletín" -#: vibes_auth/models.py:78 +#: engine/vibes_auth/models.py:79 msgid "activation token" msgstr "Ficha de activación" -#: vibes_auth/models.py:80 +#: engine/vibes_auth/models.py:83 msgid "attributes" msgstr "Atributos" -#: vibes_auth/models.py:110 +#: engine/vibes_auth/models.py:115 msgid "user" msgstr "Usuario" -#: vibes_auth/models.py:111 +#: engine/vibes_auth/models.py:116 msgid "users" msgstr "Usuarios" -#: vibes_auth/models.py:131 +#: engine/vibes_auth/models.py:122 msgid "group" msgstr "Grupo" -#: vibes_auth/models.py:148 +#: engine/vibes_auth/models.py:129 msgid "outstanding token" msgstr "Ficha pendiente" -#: vibes_auth/models.py:149 +#: engine/vibes_auth/models.py:130 msgid "outstanding tokens" msgstr "Fichas pendientes" -#: vibes_auth/models.py:167 +#: engine/vibes_auth/models.py:136 msgid "blacklisted token" msgstr "Ficha en la lista negra" -#: vibes_auth/models.py:168 +#: engine/vibes_auth/models.py:137 msgid "blacklisted tokens" msgstr "Fichas en la lista negra" -#: vibes_auth/serializers.py:99 +#: engine/vibes_auth/serializers.py:99 msgid "attributes must be a dictionary" msgstr "`attributes` debe ser un diccionario" -#: vibes_auth/serializers.py:101 +#: engine/vibes_auth/serializers.py:101 msgid "business identificator is required when registering as a business" msgstr "El identificador de empresa es necesario para registrarse como empresa" -#: vibes_auth/serializers.py:121 +#: engine/vibes_auth/serializers.py:121 #, python-brace-format msgid "malformed email: {email}" msgstr "correo electrónico malformado: {email}" -#: vibes_auth/serializers.py:142 vibes_auth/serializers.py:164 -#: vibes_auth/serializers.py:186 vibes_auth/serializers.py:198 +#: engine/vibes_auth/serializers.py:142 engine/vibes_auth/serializers.py:164 +#: engine/vibes_auth/serializers.py:184 engine/vibes_auth/serializers.py:194 msgid "no active account" msgstr "No se ha encontrado ninguna cuenta activa" -#: vibes_auth/serializers.py:174 +#: engine/vibes_auth/serializers.py:174 msgid "must set token_class attribute on class." msgstr "Debe establecer el atributo token_class en la clase." -#: vibes_auth/serializers.py:246 +#: engine/vibes_auth/serializers.py:240 msgid "token_blacklisted" msgstr "Ficha en la lista negra" -#: vibes_auth/serializers.py:251 +#: engine/vibes_auth/serializers.py:245 msgid "invalid token" msgstr "Token no válido" -#: vibes_auth/serializers.py:257 +#: engine/vibes_auth/serializers.py:251 msgid "no user uuid claim present in token" msgstr "No user uuid claim present in token" -#: vibes_auth/serializers.py:259 +#: engine/vibes_auth/serializers.py:253 msgid "user does not exist" msgstr "El usuario no existe" -#: vibes_auth/templates/user_reset_password_email.html:7 +#: engine/vibes_auth/templates/user_reset_password_email.html:7 msgid "reset your password" msgstr "Restablecer contraseña" -#: vibes_auth/templates/user_reset_password_email.html:85 -#: vibes_auth/templates/user_verification_email.html:85 +#: engine/vibes_auth/templates/user_reset_password_email.html:85 +#: engine/vibes_auth/templates/user_verification_email.html:85 msgid "logo" msgstr "Logotipo" -#: vibes_auth/templates/user_reset_password_email.html:90 +#: engine/vibes_auth/templates/user_reset_password_email.html:90 msgid "password reset confirmation" msgstr "Confirmación de restablecimiento de contraseña" -#: vibes_auth/templates/user_reset_password_email.html:91 -#: vibes_auth/templates/user_verification_email.html:91 +#: engine/vibes_auth/templates/user_reset_password_email.html:91 +#: engine/vibes_auth/templates/user_verification_email.html:91 #, python-format msgid "hello %(user_first_name)s," msgstr "Hola %(user_first_name)s," -#: vibes_auth/templates/user_reset_password_email.html:92 +#: 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" @@ -441,12 +450,12 @@ msgstr "" "Hemos recibido una solicitud para restablecer su contraseña. Por favor, " "restablezca su contraseña haciendo clic en el botón de abajo:" -#: vibes_auth/templates/user_reset_password_email.html:95 +#: engine/vibes_auth/templates/user_reset_password_email.html:95 msgid "reset password" msgstr "restablecer contraseña" -#: vibes_auth/templates/user_reset_password_email.html:97 -#: vibes_auth/templates/user_verification_email.html:99 +#: engine/vibes_auth/templates/user_reset_password_email.html:97 +#: engine/vibes_auth/templates/user_verification_email.html:99 msgid "" "if the button above does not work, please copy and paste the following URL\n" " into your web browser:" @@ -454,7 +463,7 @@ msgstr "" "Si el botón anterior no funciona, copie y pegue la siguiente URL\n" " en su navegador:" -#: vibes_auth/templates/user_reset_password_email.html:100 +#: engine/vibes_auth/templates/user_reset_password_email.html:100 msgid "" "if you did not send this request, please ignore this\n" " email." @@ -462,22 +471,22 @@ msgstr "" "si usted no envió esta solicitud, ignore este\n" " correo electrónico." -#: vibes_auth/templates/user_reset_password_email.html:102 +#: engine/vibes_auth/templates/user_reset_password_email.html:102 #, python-format msgid "best regards,
The %(project_name)s team" msgstr "Saludos cordiales,
El equipo %(project_name)s" -#: vibes_auth/templates/user_reset_password_email.html:108 -#: vibes_auth/templates/user_verification_email.html:108 +#: engine/vibes_auth/templates/user_reset_password_email.html:108 +#: engine/vibes_auth/templates/user_verification_email.html:108 msgid "all rights reserved" msgstr "Todos los derechos reservados" -#: vibes_auth/templates/user_verification_email.html:7 -#: vibes_auth/templates/user_verification_email.html:90 +#: engine/vibes_auth/templates/user_verification_email.html:7 +#: engine/vibes_auth/templates/user_verification_email.html:90 msgid "activate your account" msgstr "Activar su cuenta" -#: vibes_auth/templates/user_verification_email.html:92 +#: engine/vibes_auth/templates/user_verification_email.html:92 #, python-format msgid "" "thank you for signing up for %(project_name)s. please activate your account\n" @@ -486,7 +495,7 @@ msgstr "" "Gracias por registrarse en %(project_name)s. Por favor, active su cuenta " "haciendo clic en el botón de abajo:" -#: vibes_auth/templates/user_verification_email.html:96 +#: engine/vibes_auth/templates/user_verification_email.html:96 msgid "" "activate\n" " account" @@ -494,22 +503,22 @@ msgstr "" "Activar\n" " cuenta" -#: vibes_auth/templates/user_verification_email.html:102 +#: engine/vibes_auth/templates/user_verification_email.html:102 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "Saludos cordiales,
el equipo %(project_name)s" -#: vibes_auth/utils/emailing.py:23 +#: engine/vibes_auth/utils/emailing.py:23 #, python-brace-format msgid "{config.PROJECT_NAME} | Activate Account" msgstr "{config.PROJECT_NAME} | Activar cuenta" -#: vibes_auth/utils/emailing.py:62 +#: engine/vibes_auth/utils/emailing.py:62 #, python-brace-format msgid "{config.PROJECT_NAME} | Reset Password" msgstr "{config.PROJECT_NAME} | Restablecer contraseña" -#: vibes_auth/validators.py:13 +#: engine/vibes_auth/validators.py:13 msgid "" "invalid phone number format. the number must be entered in the format: " "\"+999999999\". up to 15 digits allowed." @@ -517,7 +526,7 @@ msgstr "" "Formato de número de teléfono no válido. El número debe introducirse con el " "formato \"+999999999\". Se permiten hasta 15 dígitos." -#: vibes_auth/views.py:30 +#: engine/vibes_auth/views.py:30 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 " @@ -532,7 +541,7 @@ msgstr "" "construye sobre una vista de token base y asegura una limitación de tasa " "adecuada para proteger contra ataques de fuerza bruta." -#: vibes_auth/views.py:48 +#: engine/vibes_auth/views.py:48 msgid "" "Handles refreshing of tokens for authentication purposes. This class is used " "to provide functionality for token refresh operations as part of an " @@ -547,7 +556,7 @@ msgstr "" "velocidad definidos. La vista depende del serializador asociado para validar " "las entradas de actualización de tokens y producir las salidas apropiadas." -#: vibes_auth/views.py:67 +#: engine/vibes_auth/views.py:67 msgid "" "Represents a view for verifying JSON Web Tokens (JWT) using specific " "serialization and validation logic. " @@ -555,11 +564,11 @@ msgstr "" "Representa una vista para verificar tokens web JSON (JWT) utilizando una " "lógica específica de serialización y validación." -#: vibes_auth/views.py:80 +#: engine/vibes_auth/views.py:80 msgid "the token is invalid" msgstr "El token no es válido" -#: vibes_auth/viewsets.py:45 +#: engine/vibes_auth/viewsets.py:45 msgid "" "User view set implementation.\n" "Provides a set of actions that manage user-related data such as creation, " @@ -575,10 +584,10 @@ msgstr "" "recientemente. Esta clase extiende los mixins y GenericViewSet para un " "manejo robusto de la API." -#: vibes_auth/viewsets.py:99 +#: engine/vibes_auth/viewsets.py:99 msgid "password reset successfully" msgstr "La contraseña se ha restablecido correctamente." -#: vibes_auth/viewsets.py:132 +#: engine/vibes_auth/viewsets.py:132 msgid "account already activated!" msgstr "Ya ha activado la cuenta..." diff --git a/vibes_auth/locale/fa_IR/LC_MESSAGES/django.mo b/engine/vibes_auth/locale/fa_IR/LC_MESSAGES/django.mo similarity index 100% rename from vibes_auth/locale/fa_IR/LC_MESSAGES/django.mo rename to engine/vibes_auth/locale/fa_IR/LC_MESSAGES/django.mo diff --git a/vibes_auth/locale/fa_IR/LC_MESSAGES/django.po b/engine/vibes_auth/locale/fa_IR/LC_MESSAGES/django.po similarity index 55% rename from vibes_auth/locale/fa_IR/LC_MESSAGES/django.po rename to engine/vibes_auth/locale/fa_IR/LC_MESSAGES/django.po index d1078724..f8ec06a4 100644 --- a/vibes_auth/locale/fa_IR/LC_MESSAGES/django.po +++ b/engine/vibes_auth/locale/fa_IR/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,257 +16,264 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: vibes_auth/admin.py:39 vibes_auth/admin.py:40 -#: vibes_auth/graphene/object_types.py:46 +#: engine/vibes_auth/admin.py:40 engine/vibes_auth/admin.py:41 +#: engine/vibes_auth/graphene/object_types.py:46 msgid "balance" msgstr "" -#: vibes_auth/admin.py:48 +#: engine/vibes_auth/admin.py:49 msgid "order" msgstr "" -#: vibes_auth/admin.py:49 vibes_auth/graphene/object_types.py:44 +#: engine/vibes_auth/admin.py:50 engine/vibes_auth/graphene/object_types.py:44 msgid "orders" msgstr "" -#: vibes_auth/admin.py:59 +#: engine/vibes_auth/admin.py:60 msgid "personal info" msgstr "" -#: vibes_auth/admin.py:63 vibes_auth/graphene/object_types.py:43 +#: engine/vibes_auth/admin.py:64 engine/vibes_auth/graphene/object_types.py:43 msgid "permissions" msgstr "" -#: vibes_auth/admin.py:76 +#: engine/vibes_auth/admin.py:77 msgid "important dates" msgstr "" -#: vibes_auth/admin.py:77 +#: engine/vibes_auth/admin.py:78 msgid "additional info" msgstr "" -#: vibes_auth/apps.py:8 +#: engine/vibes_auth/admin.py:145 +msgid "Close selected threads" +msgstr "" + +#: engine/vibes_auth/admin.py:149 +msgid "Open selected threads" +msgstr "" + +#: engine/vibes_auth/apps.py:8 msgid "authentication" msgstr "" -#: vibes_auth/docs/drf/views.py:15 +#: engine/vibes_auth/docs/drf/views.py:15 msgid "obtain a token pair" msgstr "" -#: vibes_auth/docs/drf/views.py:16 +#: engine/vibes_auth/docs/drf/views.py:16 msgid "obtain a token pair (refresh and access) for authentication." msgstr "" -#: vibes_auth/docs/drf/views.py:35 +#: engine/vibes_auth/docs/drf/views.py:35 msgid "refresh a token pair" msgstr "" -#: vibes_auth/docs/drf/views.py:36 +#: engine/vibes_auth/docs/drf/views.py:36 msgid "refresh a token pair (refresh and access)." msgstr "" -#: vibes_auth/docs/drf/views.py:55 +#: engine/vibes_auth/docs/drf/views.py:55 msgid "verify a token" msgstr "" -#: vibes_auth/docs/drf/views.py:56 +#: engine/vibes_auth/docs/drf/views.py:56 msgid "Verify a token (refresh or access)." msgstr "" -#: vibes_auth/docs/drf/views.py:62 vibes_auth/views.py:78 +#: engine/vibes_auth/docs/drf/views.py:62 engine/vibes_auth/views.py:78 msgid "the token is valid" msgstr "" -#: vibes_auth/docs/drf/viewsets.py:16 +#: engine/vibes_auth/docs/drf/viewsets.py:16 msgid "create a new user" msgstr "" -#: vibes_auth/docs/drf/viewsets.py:21 +#: engine/vibes_auth/docs/drf/viewsets.py:21 msgid "retrieve a user's details" msgstr "" -#: vibes_auth/docs/drf/viewsets.py:25 +#: engine/vibes_auth/docs/drf/viewsets.py:25 msgid "update a user's details" msgstr "" -#: vibes_auth/docs/drf/viewsets.py:30 +#: engine/vibes_auth/docs/drf/viewsets.py:30 msgid "delete a user" msgstr "" -#: vibes_auth/docs/drf/viewsets.py:34 +#: engine/vibes_auth/docs/drf/viewsets.py:34 msgid "reset a user's password by sending a reset password email" msgstr "" -#: vibes_auth/docs/drf/viewsets.py:39 +#: engine/vibes_auth/docs/drf/viewsets.py:39 msgid "handle avatar upload for a user" msgstr "" -#: vibes_auth/docs/drf/viewsets.py:54 +#: engine/vibes_auth/docs/drf/viewsets.py:54 msgid "confirm a user's password reset" msgstr "" -#: vibes_auth/docs/drf/viewsets.py:58 vibes_auth/graphene/mutations.py:320 -#: vibes_auth/serializers.py:105 vibes_auth/serializers.py:109 -#: vibes_auth/viewsets.py:84 +#: engine/vibes_auth/docs/drf/viewsets.py:58 +#: engine/vibes_auth/graphene/mutations.py:320 +#: engine/vibes_auth/serializers.py:105 engine/vibes_auth/serializers.py:109 +#: engine/vibes_auth/viewsets.py:84 msgid "passwords do not match" msgstr "" -#: vibes_auth/docs/drf/viewsets.py:63 +#: engine/vibes_auth/docs/drf/viewsets.py:63 msgid "activate a user's account" msgstr "" -#: vibes_auth/docs/drf/viewsets.py:67 +#: engine/vibes_auth/docs/drf/viewsets.py:67 msgid "activation link is invalid or account already activated" msgstr "" -#: vibes_auth/docs/drf/viewsets.py:72 +#: engine/vibes_auth/docs/drf/viewsets.py:72 msgid "merge client-stored recently viewed products" msgstr "" -#: vibes_auth/graphene/mutations.py:41 +#: engine/vibes_auth/graphene/mutations.py:41 msgid "the user's b64-encoded uuid who referred the new user to us." msgstr "" -#: vibes_auth/graphene/mutations.py:61 +#: engine/vibes_auth/graphene/mutations.py:61 msgid "password too weak" msgstr "" -#: vibes_auth/graphene/mutations.py:110 +#: engine/vibes_auth/graphene/mutations.py:110 #, python-brace-format msgid "{name} does not exist: {uuid}" msgstr "" -#: vibes_auth/graphene/mutations.py:120 +#: engine/vibes_auth/graphene/mutations.py:120 msgid "malformed email" msgstr "" -#: vibes_auth/graphene/mutations.py:127 vibes_auth/serializers.py:115 +#: engine/vibes_auth/graphene/mutations.py:127 +#: engine/vibes_auth/serializers.py:115 #, python-brace-format msgid "malformed phone number: {phone_number}" msgstr "" -#: vibes_auth/graphene/mutations.py:149 +#: engine/vibes_auth/graphene/mutations.py:149 #, python-brace-format msgid "Invalid attribute format: {attribute_pair}" msgstr "" -#: vibes_auth/graphene/mutations.py:273 vibes_auth/viewsets.py:127 -#: vibes_auth/viewsets.py:146 +#: engine/vibes_auth/graphene/mutations.py:273 +#: engine/vibes_auth/viewsets.py:127 engine/vibes_auth/viewsets.py:146 msgid "activation link is invalid!" msgstr "" -#: vibes_auth/graphene/mutations.py:276 +#: engine/vibes_auth/graphene/mutations.py:276 msgid "account already activated..." msgstr "" -#: vibes_auth/graphene/mutations.py:283 vibes_auth/graphene/mutations.py:339 +#: engine/vibes_auth/graphene/mutations.py:283 +#: engine/vibes_auth/graphene/mutations.py:339 msgid "something went wrong: {e!s}" msgstr "" -#: vibes_auth/graphene/mutations.py:327 vibes_auth/viewsets.py:95 +#: engine/vibes_auth/graphene/mutations.py:327 engine/vibes_auth/viewsets.py:95 msgid "token is invalid!" msgstr "" -#: vibes_auth/graphene/object_types.py:40 +#: engine/vibes_auth/graphene/object_types.py:40 msgid "" "the products this user has viewed most recently (max 48), in reverse‐" "chronological order" msgstr "" -#: vibes_auth/graphene/object_types.py:42 vibes_auth/models.py:132 +#: engine/vibes_auth/graphene/object_types.py:42 +#: engine/vibes_auth/models.py:123 msgid "groups" msgstr "" -#: vibes_auth/graphene/object_types.py:45 +#: engine/vibes_auth/graphene/object_types.py:45 msgid "wishlist" msgstr "" -#: vibes_auth/graphene/object_types.py:47 vibes_auth/models.py:58 +#: engine/vibes_auth/graphene/object_types.py:47 engine/vibes_auth/models.py:59 msgid "avatar" msgstr "" -#: vibes_auth/graphene/object_types.py:48 +#: engine/vibes_auth/graphene/object_types.py:48 msgid "attributes may be used to store custom data" msgstr "" -#: vibes_auth/graphene/object_types.py:49 +#: engine/vibes_auth/graphene/object_types.py:50 #, python-brace-format -msgid "language is one of the {LANGUAGES} with default {LANGUAGE_CODE}" +msgid "" +"language is one of the {settings.LANGUAGES} with default {settings." +"LANGUAGE_CODE}" msgstr "" -#: vibes_auth/graphene/object_types.py:50 +#: engine/vibes_auth/graphene/object_types.py:52 msgid "address set" msgstr "" -#: vibes_auth/messaging/admin.py:36 -msgid "Close selected threads" -msgstr "" - -#: vibes_auth/messaging/admin.py:40 -msgid "Open selected threads" -msgstr "" - -#: vibes_auth/messaging/models.py:24 +#: engine/vibes_auth/messaging/models.py:24 msgid "Open" msgstr "" -#: vibes_auth/messaging/models.py:25 +#: engine/vibes_auth/messaging/models.py:25 msgid "Closed" msgstr "" -#: vibes_auth/messaging/models.py:29 +#: engine/vibes_auth/messaging/models.py:29 msgid "User" msgstr "" -#: vibes_auth/messaging/models.py:30 +#: engine/vibes_auth/messaging/models.py:30 msgid "Staff" msgstr "" -#: vibes_auth/messaging/models.py:31 +#: engine/vibes_auth/messaging/models.py:31 msgid "System" msgstr "" -#: vibes_auth/messaging/models.py:36 +#: engine/vibes_auth/messaging/models.py:36 msgid "For anonymous threads" msgstr "" -#: vibes_auth/messaging/models.py:50 +#: engine/vibes_auth/messaging/models.py:50 msgid "Chat thread" msgstr "" -#: vibes_auth/messaging/models.py:51 +#: engine/vibes_auth/messaging/models.py:51 msgid "Chat threads" msgstr "" -#: vibes_auth/messaging/models.py:56 +#: engine/vibes_auth/messaging/models.py:56 msgid "Provide user or email for anonymous thread." msgstr "" -#: vibes_auth/messaging/models.py:58 vibes_auth/messaging/services.py:133 +#: engine/vibes_auth/messaging/models.py:58 +#: engine/vibes_auth/messaging/services.py:132 msgid "Assignee must be a staff user." msgstr "" -#: vibes_auth/messaging/models.py:74 +#: engine/vibes_auth/messaging/models.py:74 msgid "Chat message" msgstr "" -#: vibes_auth/messaging/models.py:75 +#: engine/vibes_auth/messaging/models.py:75 msgid "Chat messages" msgstr "" -#: vibes_auth/messaging/services.py:48 +#: engine/vibes_auth/messaging/services.py:47 msgid "Valid email is required for anonymous chats." msgstr "" -#: vibes_auth/messaging/services.py:56 +#: engine/vibes_auth/messaging/services.py:55 msgid "Message must be 1..1028 characters." msgstr "" -#: vibes_auth/messaging/services.py:90 +#: engine/vibes_auth/messaging/services.py:89 msgid "We're searching for the operator to answer you already, hold by!" msgstr "" -#: vibes_auth/models.py:30 +#: engine/vibes_auth/models.py:31 msgid "" "Represents a User entity with customized fields and methods for extended " "functionality. This class extends the AbstractUser model and integrates " @@ -277,225 +284,225 @@ msgid "" "for enhanced user management." msgstr "" -#: vibes_auth/models.py:41 +#: engine/vibes_auth/models.py:42 msgid "email" msgstr "" -#: vibes_auth/models.py:41 +#: engine/vibes_auth/models.py:42 msgid "user email address" msgstr "" -#: vibes_auth/models.py:43 +#: engine/vibes_auth/models.py:44 msgid "phone_number" msgstr "" -#: vibes_auth/models.py:48 +#: engine/vibes_auth/models.py:49 msgid "user phone number" msgstr "" -#: vibes_auth/models.py:54 +#: engine/vibes_auth/models.py:55 msgid "first_name" msgstr "" -#: vibes_auth/models.py:55 +#: engine/vibes_auth/models.py:56 msgid "last_name" msgstr "" -#: vibes_auth/models.py:61 +#: engine/vibes_auth/models.py:62 msgid "user profile image" msgstr "" -#: vibes_auth/models.py:66 +#: engine/vibes_auth/models.py:67 msgid "is verified" msgstr "" -#: vibes_auth/models.py:67 +#: engine/vibes_auth/models.py:68 msgid "user verification status" msgstr "" -#: vibes_auth/models.py:70 +#: engine/vibes_auth/models.py:71 msgid "is_active" msgstr "" -#: vibes_auth/models.py:72 +#: engine/vibes_auth/models.py:73 msgid "unselect this instead of deleting accounts" msgstr "" -#: vibes_auth/models.py:75 +#: engine/vibes_auth/models.py:76 msgid "is_subscribed" msgstr "" -#: vibes_auth/models.py:75 +#: engine/vibes_auth/models.py:76 msgid "user's newsletter subscription status" msgstr "" -#: vibes_auth/models.py:78 +#: engine/vibes_auth/models.py:79 msgid "activation token" msgstr "" -#: vibes_auth/models.py:80 +#: engine/vibes_auth/models.py:83 msgid "attributes" msgstr "" -#: vibes_auth/models.py:110 +#: engine/vibes_auth/models.py:115 msgid "user" msgstr "" -#: vibes_auth/models.py:111 +#: engine/vibes_auth/models.py:116 msgid "users" msgstr "" -#: vibes_auth/models.py:131 +#: engine/vibes_auth/models.py:122 msgid "group" msgstr "" -#: vibes_auth/models.py:148 +#: engine/vibes_auth/models.py:129 msgid "outstanding token" msgstr "" -#: vibes_auth/models.py:149 +#: engine/vibes_auth/models.py:130 msgid "outstanding tokens" msgstr "" -#: vibes_auth/models.py:167 +#: engine/vibes_auth/models.py:136 msgid "blacklisted token" msgstr "" -#: vibes_auth/models.py:168 +#: engine/vibes_auth/models.py:137 msgid "blacklisted tokens" msgstr "" -#: vibes_auth/serializers.py:99 +#: engine/vibes_auth/serializers.py:99 msgid "attributes must be a dictionary" msgstr "" -#: vibes_auth/serializers.py:101 +#: engine/vibes_auth/serializers.py:101 msgid "business identificator is required when registering as a business" msgstr "" -#: vibes_auth/serializers.py:121 +#: engine/vibes_auth/serializers.py:121 #, python-brace-format msgid "malformed email: {email}" msgstr "" -#: vibes_auth/serializers.py:142 vibes_auth/serializers.py:164 -#: vibes_auth/serializers.py:186 vibes_auth/serializers.py:198 +#: engine/vibes_auth/serializers.py:142 engine/vibes_auth/serializers.py:164 +#: engine/vibes_auth/serializers.py:184 engine/vibes_auth/serializers.py:194 msgid "no active account" msgstr "" -#: vibes_auth/serializers.py:174 +#: engine/vibes_auth/serializers.py:174 msgid "must set token_class attribute on class." msgstr "" -#: vibes_auth/serializers.py:246 +#: engine/vibes_auth/serializers.py:240 msgid "token_blacklisted" msgstr "" -#: vibes_auth/serializers.py:251 +#: engine/vibes_auth/serializers.py:245 msgid "invalid token" msgstr "" -#: vibes_auth/serializers.py:257 +#: engine/vibes_auth/serializers.py:251 msgid "no user uuid claim present in token" msgstr "" -#: vibes_auth/serializers.py:259 +#: engine/vibes_auth/serializers.py:253 msgid "user does not exist" msgstr "" -#: vibes_auth/templates/user_reset_password_email.html:7 +#: engine/vibes_auth/templates/user_reset_password_email.html:7 msgid "reset your password" msgstr "" -#: vibes_auth/templates/user_reset_password_email.html:85 -#: vibes_auth/templates/user_verification_email.html:85 +#: engine/vibes_auth/templates/user_reset_password_email.html:85 +#: engine/vibes_auth/templates/user_verification_email.html:85 msgid "logo" msgstr "" -#: vibes_auth/templates/user_reset_password_email.html:90 +#: engine/vibes_auth/templates/user_reset_password_email.html:90 msgid "password reset confirmation" msgstr "" -#: vibes_auth/templates/user_reset_password_email.html:91 -#: vibes_auth/templates/user_verification_email.html:91 +#: engine/vibes_auth/templates/user_reset_password_email.html:91 +#: engine/vibes_auth/templates/user_verification_email.html:91 #, python-format msgid "hello %(user_first_name)s," msgstr "" -#: vibes_auth/templates/user_reset_password_email.html:92 +#: 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" " by clicking the button below:" msgstr "" -#: vibes_auth/templates/user_reset_password_email.html:95 +#: engine/vibes_auth/templates/user_reset_password_email.html:95 msgid "reset password" msgstr "" -#: vibes_auth/templates/user_reset_password_email.html:97 -#: vibes_auth/templates/user_verification_email.html:99 +#: engine/vibes_auth/templates/user_reset_password_email.html:97 +#: engine/vibes_auth/templates/user_verification_email.html:99 msgid "" "if the button above does not work, please copy and paste the following URL\n" " into your web browser:" msgstr "" -#: vibes_auth/templates/user_reset_password_email.html:100 +#: engine/vibes_auth/templates/user_reset_password_email.html:100 msgid "" "if you did not send this request, please ignore this\n" " email." msgstr "" -#: vibes_auth/templates/user_reset_password_email.html:102 +#: engine/vibes_auth/templates/user_reset_password_email.html:102 #, python-format msgid "best regards,
The %(project_name)s team" msgstr "" -#: vibes_auth/templates/user_reset_password_email.html:108 -#: vibes_auth/templates/user_verification_email.html:108 +#: engine/vibes_auth/templates/user_reset_password_email.html:108 +#: engine/vibes_auth/templates/user_verification_email.html:108 msgid "all rights reserved" msgstr "" -#: vibes_auth/templates/user_verification_email.html:7 -#: vibes_auth/templates/user_verification_email.html:90 +#: engine/vibes_auth/templates/user_verification_email.html:7 +#: engine/vibes_auth/templates/user_verification_email.html:90 msgid "activate your account" msgstr "" -#: vibes_auth/templates/user_verification_email.html:92 +#: engine/vibes_auth/templates/user_verification_email.html:92 #, python-format msgid "" "thank you for signing up for %(project_name)s. please activate your account\n" " by clicking the button below:" msgstr "" -#: vibes_auth/templates/user_verification_email.html:96 +#: engine/vibes_auth/templates/user_verification_email.html:96 msgid "" "activate\n" " account" msgstr "" -#: vibes_auth/templates/user_verification_email.html:102 +#: engine/vibes_auth/templates/user_verification_email.html:102 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "" -#: vibes_auth/utils/emailing.py:23 +#: engine/vibes_auth/utils/emailing.py:23 #, python-brace-format msgid "{config.PROJECT_NAME} | Activate Account" msgstr "" -#: vibes_auth/utils/emailing.py:62 +#: engine/vibes_auth/utils/emailing.py:62 #, python-brace-format msgid "{config.PROJECT_NAME} | Reset Password" msgstr "" -#: vibes_auth/validators.py:13 +#: engine/vibes_auth/validators.py:13 msgid "" "invalid phone number format. the number must be entered in the format: " "\"+999999999\". up to 15 digits allowed." msgstr "" -#: vibes_auth/views.py:30 +#: engine/vibes_auth/views.py:30 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 " @@ -504,7 +511,7 @@ msgid "" "proper rate limiting to protect against brute force attacks." msgstr "" -#: vibes_auth/views.py:48 +#: engine/vibes_auth/views.py:48 msgid "" "Handles refreshing of tokens for authentication purposes. This class is used " "to provide functionality for token refresh operations as part of an " @@ -513,17 +520,17 @@ msgid "" "validate token refresh inputs and produce appropriate outputs." msgstr "" -#: vibes_auth/views.py:67 +#: engine/vibes_auth/views.py:67 msgid "" "Represents a view for verifying JSON Web Tokens (JWT) using specific " "serialization and validation logic. " msgstr "" -#: vibes_auth/views.py:80 +#: engine/vibes_auth/views.py:80 msgid "the token is invalid" msgstr "" -#: vibes_auth/viewsets.py:45 +#: engine/vibes_auth/viewsets.py:45 msgid "" "User view set implementation.\n" "Provides a set of actions that manage user-related data such as creation, " @@ -532,10 +539,10 @@ msgid "" "class extends the mixins and GenericViewSet for robust API handling." msgstr "" -#: vibes_auth/viewsets.py:99 +#: engine/vibes_auth/viewsets.py:99 msgid "password reset successfully" msgstr "" -#: vibes_auth/viewsets.py:132 +#: engine/vibes_auth/viewsets.py:132 msgid "account already activated!" msgstr "" diff --git a/vibes_auth/locale/fr_FR/LC_MESSAGES/django.mo b/engine/vibes_auth/locale/fr_FR/LC_MESSAGES/django.mo similarity index 65% rename from vibes_auth/locale/fr_FR/LC_MESSAGES/django.mo rename to engine/vibes_auth/locale/fr_FR/LC_MESSAGES/django.mo index 54c6cff8..a7b420bf 100644 Binary files a/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/vibes_auth/locale/fr_FR/LC_MESSAGES/django.po b/engine/vibes_auth/locale/fr_FR/LC_MESSAGES/django.po similarity index 69% rename from vibes_auth/locale/fr_FR/LC_MESSAGES/django.po rename to engine/vibes_auth/locale/fr_FR/LC_MESSAGES/django.po index 779642aa..bf40d0c3 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,164 +13,175 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: vibes_auth/admin.py:39 vibes_auth/admin.py:40 -#: vibes_auth/graphene/object_types.py:46 +#: engine/vibes_auth/admin.py:40 engine/vibes_auth/admin.py:41 +#: engine/vibes_auth/graphene/object_types.py:46 msgid "balance" msgstr "Balance" -#: vibes_auth/admin.py:48 +#: engine/vibes_auth/admin.py:49 msgid "order" msgstr "Commande" -#: vibes_auth/admin.py:49 vibes_auth/graphene/object_types.py:44 +#: engine/vibes_auth/admin.py:50 engine/vibes_auth/graphene/object_types.py:44 msgid "orders" msgstr "Commandes" -#: vibes_auth/admin.py:59 +#: engine/vibes_auth/admin.py:60 msgid "personal info" msgstr "Informations personnelles" -#: vibes_auth/admin.py:63 vibes_auth/graphene/object_types.py:43 +#: engine/vibes_auth/admin.py:64 engine/vibes_auth/graphene/object_types.py:43 msgid "permissions" msgstr "Permissions" -#: vibes_auth/admin.py:76 +#: engine/vibes_auth/admin.py:77 msgid "important dates" msgstr "Important dates" -#: vibes_auth/admin.py:77 +#: engine/vibes_auth/admin.py:78 msgid "additional info" msgstr "Informations complémentaires" -#: vibes_auth/apps.py:8 +#: engine/vibes_auth/admin.py:145 +msgid "Close selected threads" +msgstr "Fermer les fils sélectionnés" + +#: engine/vibes_auth/admin.py:149 +msgid "Open selected threads" +msgstr "Ouvrir les fils sélectionnés" + +#: engine/vibes_auth/apps.py:8 msgid "authentication" msgstr "Authentification" -#: vibes_auth/docs/drf/views.py:15 +#: engine/vibes_auth/docs/drf/views.py:15 msgid "obtain a token pair" msgstr "Obtenir une paire de jetons" -#: vibes_auth/docs/drf/views.py:16 +#: engine/vibes_auth/docs/drf/views.py:16 msgid "obtain a token pair (refresh and access) for authentication." msgstr "" "Obtenir une paire de jetons (rafraîchissement et accès) pour " "l'authentification." -#: vibes_auth/docs/drf/views.py:35 +#: engine/vibes_auth/docs/drf/views.py:35 msgid "refresh a token pair" msgstr "Rafraîchir une paire de jetons" -#: vibes_auth/docs/drf/views.py:36 +#: engine/vibes_auth/docs/drf/views.py:36 msgid "refresh a token pair (refresh and access)." msgstr "Rafraîchir une paire de jetons (rafraîchir et accéder)." -#: vibes_auth/docs/drf/views.py:55 +#: engine/vibes_auth/docs/drf/views.py:55 msgid "verify a token" msgstr "Vérifier un jeton" -#: vibes_auth/docs/drf/views.py:56 +#: engine/vibes_auth/docs/drf/views.py:56 msgid "Verify a token (refresh or access)." msgstr "Vérifier un jeton (rafraîchissement ou accès)." -#: vibes_auth/docs/drf/views.py:62 vibes_auth/views.py:78 +#: engine/vibes_auth/docs/drf/views.py:62 engine/vibes_auth/views.py:78 msgid "the token is valid" msgstr "Le jeton est valide" -#: vibes_auth/docs/drf/viewsets.py:16 +#: engine/vibes_auth/docs/drf/viewsets.py:16 msgid "create a new user" msgstr "Créer un nouvel utilisateur" -#: vibes_auth/docs/drf/viewsets.py:21 +#: engine/vibes_auth/docs/drf/viewsets.py:21 msgid "retrieve a user's details" msgstr "Récupérer les données d'un utilisateur" -#: vibes_auth/docs/drf/viewsets.py:25 +#: engine/vibes_auth/docs/drf/viewsets.py:25 msgid "update a user's details" msgstr "Mettre à jour les coordonnées d'un utilisateur" -#: vibes_auth/docs/drf/viewsets.py:30 +#: engine/vibes_auth/docs/drf/viewsets.py:30 msgid "delete a user" msgstr "Supprimer un utilisateur" -#: vibes_auth/docs/drf/viewsets.py:34 +#: engine/vibes_auth/docs/drf/viewsets.py:34 msgid "reset a user's password by sending a reset password email" msgstr "" "Réinitialiser le mot de passe d'un utilisateur en envoyant un courriel de " "réinitialisation du mot de passe" -#: vibes_auth/docs/drf/viewsets.py:39 +#: engine/vibes_auth/docs/drf/viewsets.py:39 msgid "handle avatar upload for a user" msgstr "Gérer le téléchargement d'un avatar pour un utilisateur" -#: vibes_auth/docs/drf/viewsets.py:54 +#: engine/vibes_auth/docs/drf/viewsets.py:54 msgid "confirm a user's password reset" msgstr "Confirmer la réinitialisation du mot de passe d'un utilisateur" -#: vibes_auth/docs/drf/viewsets.py:58 vibes_auth/graphene/mutations.py:320 -#: vibes_auth/serializers.py:105 vibes_auth/serializers.py:109 -#: vibes_auth/viewsets.py:84 +#: engine/vibes_auth/docs/drf/viewsets.py:58 +#: engine/vibes_auth/graphene/mutations.py:320 +#: engine/vibes_auth/serializers.py:105 engine/vibes_auth/serializers.py:109 +#: engine/vibes_auth/viewsets.py:84 msgid "passwords do not match" msgstr "Les mots de passe ne correspondent pas" -#: vibes_auth/docs/drf/viewsets.py:63 +#: engine/vibes_auth/docs/drf/viewsets.py:63 msgid "activate a user's account" msgstr "Activer le compte d'un utilisateur" -#: vibes_auth/docs/drf/viewsets.py:67 +#: engine/vibes_auth/docs/drf/viewsets.py:67 msgid "activation link is invalid or account already activated" msgstr "Le lien d'activation n'est pas valide ou le compte est déjà activé" -#: vibes_auth/docs/drf/viewsets.py:72 +#: engine/vibes_auth/docs/drf/viewsets.py:72 msgid "merge client-stored recently viewed products" msgstr "Fusionner les produits récemment consultés stockés par le client" -#: vibes_auth/graphene/mutations.py:41 +#: engine/vibes_auth/graphene/mutations.py:41 msgid "the user's b64-encoded uuid who referred the new user to us." msgstr "" "L'uuid b64-encodé de l'utilisateur qui nous a recommandé le nouvel " "utilisateur." -#: vibes_auth/graphene/mutations.py:61 +#: engine/vibes_auth/graphene/mutations.py:61 msgid "password too weak" msgstr "Le mot de passe est trop faible" -#: vibes_auth/graphene/mutations.py:110 +#: engine/vibes_auth/graphene/mutations.py:110 #, python-brace-format msgid "{name} does not exist: {uuid}" msgstr "{name} n'existe pas : {uuid} !" -#: vibes_auth/graphene/mutations.py:120 +#: engine/vibes_auth/graphene/mutations.py:120 msgid "malformed email" msgstr "Courriel malformé" -#: vibes_auth/graphene/mutations.py:127 vibes_auth/serializers.py:115 +#: engine/vibes_auth/graphene/mutations.py:127 +#: engine/vibes_auth/serializers.py:115 #, python-brace-format msgid "malformed phone number: {phone_number}" msgstr "Numéro de téléphone malformé : {phone_number} !" -#: vibes_auth/graphene/mutations.py:149 +#: engine/vibes_auth/graphene/mutations.py:149 #, python-brace-format msgid "Invalid attribute format: {attribute_pair}" msgstr "Format d'attribut non valide : {attribute_pair} !" -#: vibes_auth/graphene/mutations.py:273 vibes_auth/viewsets.py:127 -#: vibes_auth/viewsets.py:146 +#: engine/vibes_auth/graphene/mutations.py:273 +#: engine/vibes_auth/viewsets.py:127 engine/vibes_auth/viewsets.py:146 msgid "activation link is invalid!" msgstr "Le lien d'activation n'est pas valide !" -#: vibes_auth/graphene/mutations.py:276 +#: engine/vibes_auth/graphene/mutations.py:276 msgid "account already activated..." msgstr "Le compte a déjà été activé..." -#: vibes_auth/graphene/mutations.py:283 vibes_auth/graphene/mutations.py:339 +#: engine/vibes_auth/graphene/mutations.py:283 +#: engine/vibes_auth/graphene/mutations.py:339 msgid "something went wrong: {e!s}" msgstr "Quelque chose a mal tourné : {e!s}" -#: vibes_auth/graphene/mutations.py:327 vibes_auth/viewsets.py:95 +#: engine/vibes_auth/graphene/mutations.py:327 engine/vibes_auth/viewsets.py:95 msgid "token is invalid!" msgstr "Le jeton n'est pas valide !" -#: vibes_auth/graphene/object_types.py:40 +#: engine/vibes_auth/graphene/object_types.py:40 msgid "" "the products this user has viewed most recently (max 48), in reverse‐" "chronological order" @@ -178,106 +189,102 @@ msgstr "" "Les produits que cet utilisateur a consultés le plus récemment (max 48), par " "ordre chronologique inverse." -#: vibes_auth/graphene/object_types.py:42 vibes_auth/models.py:132 +#: engine/vibes_auth/graphene/object_types.py:42 +#: engine/vibes_auth/models.py:123 msgid "groups" msgstr "Groupes" -#: vibes_auth/graphene/object_types.py:45 +#: engine/vibes_auth/graphene/object_types.py:45 msgid "wishlist" msgstr "Liste de souhaits" -#: vibes_auth/graphene/object_types.py:47 vibes_auth/models.py:58 +#: engine/vibes_auth/graphene/object_types.py:47 engine/vibes_auth/models.py:59 msgid "avatar" msgstr "Avatar" -#: vibes_auth/graphene/object_types.py:48 +#: engine/vibes_auth/graphene/object_types.py:48 msgid "attributes may be used to store custom data" msgstr "" "Les attributs peuvent être utilisés pour stocker des données personnalisées." -#: vibes_auth/graphene/object_types.py:49 +#: engine/vibes_auth/graphene/object_types.py:50 #, python-brace-format -msgid "language is one of the {LANGUAGES} with default {LANGUAGE_CODE}" +msgid "" +"language is one of the {settings.LANGUAGES} with default {settings." +"LANGUAGE_CODE}" msgstr "" -"La langue est l'une des {LANGUAGES} avec la valeur par défaut " -"{LANGUAGE_CODE}." +"La langue est l'une des {settings.LANGUAGES} avec la valeur par défaut " +"{settings.LANGUAGE_CODE}." -#: vibes_auth/graphene/object_types.py:50 +#: engine/vibes_auth/graphene/object_types.py:52 msgid "address set" msgstr "Adresses" -#: vibes_auth/messaging/admin.py:36 -msgid "Close selected threads" -msgstr "Fermer les fils sélectionnés" - -#: vibes_auth/messaging/admin.py:40 -msgid "Open selected threads" -msgstr "Ouvrir les fils sélectionnés" - -#: vibes_auth/messaging/models.py:24 +#: engine/vibes_auth/messaging/models.py:24 msgid "Open" msgstr "Ouvrir" -#: vibes_auth/messaging/models.py:25 +#: engine/vibes_auth/messaging/models.py:25 msgid "Closed" msgstr "Fermé" -#: vibes_auth/messaging/models.py:29 +#: engine/vibes_auth/messaging/models.py:29 msgid "User" msgstr "Utilisateur" -#: vibes_auth/messaging/models.py:30 +#: engine/vibes_auth/messaging/models.py:30 msgid "Staff" msgstr "Personnel" -#: vibes_auth/messaging/models.py:31 +#: engine/vibes_auth/messaging/models.py:31 msgid "System" msgstr "Système" -#: vibes_auth/messaging/models.py:36 +#: engine/vibes_auth/messaging/models.py:36 msgid "For anonymous threads" msgstr "Pour les fils de discussion anonymes" -#: vibes_auth/messaging/models.py:50 +#: engine/vibes_auth/messaging/models.py:50 msgid "Chat thread" msgstr "Fil de discussion" -#: vibes_auth/messaging/models.py:51 +#: engine/vibes_auth/messaging/models.py:51 msgid "Chat threads" msgstr "Fils de discussion" -#: vibes_auth/messaging/models.py:56 +#: engine/vibes_auth/messaging/models.py:56 msgid "Provide user or email for anonymous thread." msgstr "" "Indiquer l'utilisateur ou l'adresse électronique pour le fil de discussion " "anonyme." -#: vibes_auth/messaging/models.py:58 vibes_auth/messaging/services.py:133 +#: engine/vibes_auth/messaging/models.py:58 +#: engine/vibes_auth/messaging/services.py:132 msgid "Assignee must be a staff user." msgstr "Le destinataire doit être un utilisateur du personnel." -#: vibes_auth/messaging/models.py:74 +#: engine/vibes_auth/messaging/models.py:74 msgid "Chat message" msgstr "Message de chat" -#: vibes_auth/messaging/models.py:75 +#: engine/vibes_auth/messaging/models.py:75 msgid "Chat messages" msgstr "Messages de chat" -#: vibes_auth/messaging/services.py:48 +#: engine/vibes_auth/messaging/services.py:47 msgid "Valid email is required for anonymous chats." msgstr "Une adresse électronique valide est requise pour les chats anonymes." -#: vibes_auth/messaging/services.py:56 +#: engine/vibes_auth/messaging/services.py:55 msgid "Message must be 1..1028 characters." msgstr "Le message doit comporter de 1 à 1028 caractères." -#: vibes_auth/messaging/services.py:90 +#: engine/vibes_auth/messaging/services.py:89 msgid "We're searching for the operator to answer you already, hold by!" msgstr "" "Nous sommes en train de chercher l'opérateur pour vous répondre, attendez !" -#: vibes_auth/models.py:30 +#: engine/vibes_auth/models.py:31 msgid "" "Represents a User entity with customized fields and methods for extended " "functionality. This class extends the AbstractUser model and integrates " @@ -297,154 +304,154 @@ msgstr "" "modèle User est conçu pour gérer des cas d'utilisation spécifiques en vue " "d'une gestion améliorée des utilisateurs." -#: vibes_auth/models.py:41 +#: engine/vibes_auth/models.py:42 msgid "email" msgstr "Courriel" -#: vibes_auth/models.py:41 +#: engine/vibes_auth/models.py:42 msgid "user email address" msgstr "Adresse électronique de l'utilisateur" -#: vibes_auth/models.py:43 +#: engine/vibes_auth/models.py:44 msgid "phone_number" msgstr "Numéro de téléphone" -#: vibes_auth/models.py:48 +#: engine/vibes_auth/models.py:49 msgid "user phone number" msgstr "Numéro de téléphone de l'utilisateur" -#: vibes_auth/models.py:54 +#: engine/vibes_auth/models.py:55 msgid "first_name" msgstr "Prénom" -#: vibes_auth/models.py:55 +#: engine/vibes_auth/models.py:56 msgid "last_name" msgstr "Nom de famille" -#: vibes_auth/models.py:61 +#: engine/vibes_auth/models.py:62 msgid "user profile image" msgstr "Image du profil de l'utilisateur" -#: vibes_auth/models.py:66 +#: engine/vibes_auth/models.py:67 msgid "is verified" msgstr "Est vérifié" -#: vibes_auth/models.py:67 +#: engine/vibes_auth/models.py:68 msgid "user verification status" msgstr "Statut de vérification de l'utilisateur" -#: vibes_auth/models.py:70 +#: engine/vibes_auth/models.py:71 msgid "is_active" msgstr "Est actif" -#: vibes_auth/models.py:72 +#: engine/vibes_auth/models.py:73 msgid "unselect this instead of deleting accounts" msgstr "Désélectionner cette option au lieu de supprimer des comptes" -#: vibes_auth/models.py:75 +#: engine/vibes_auth/models.py:76 msgid "is_subscribed" msgstr "Est abonné" -#: vibes_auth/models.py:75 +#: engine/vibes_auth/models.py:76 msgid "user's newsletter subscription status" msgstr "Statut de l'abonnement à la lettre d'information de l'utilisateur" -#: vibes_auth/models.py:78 +#: engine/vibes_auth/models.py:79 msgid "activation token" msgstr "Jeton d'activation" -#: vibes_auth/models.py:80 +#: engine/vibes_auth/models.py:83 msgid "attributes" msgstr "Attributs" -#: vibes_auth/models.py:110 +#: engine/vibes_auth/models.py:115 msgid "user" msgstr "Utilisateur" -#: vibes_auth/models.py:111 +#: engine/vibes_auth/models.py:116 msgid "users" msgstr "Utilisateurs" -#: vibes_auth/models.py:131 +#: engine/vibes_auth/models.py:122 msgid "group" msgstr "Groupe" -#: vibes_auth/models.py:148 +#: engine/vibes_auth/models.py:129 msgid "outstanding token" msgstr "Jeton exceptionnel" -#: vibes_auth/models.py:149 +#: engine/vibes_auth/models.py:130 msgid "outstanding tokens" msgstr "Jetons en circulation" -#: vibes_auth/models.py:167 +#: engine/vibes_auth/models.py:136 msgid "blacklisted token" msgstr "Jeton sur liste noire" -#: vibes_auth/models.py:168 +#: engine/vibes_auth/models.py:137 msgid "blacklisted tokens" msgstr "Jetons sur liste noire" -#: vibes_auth/serializers.py:99 +#: engine/vibes_auth/serializers.py:99 msgid "attributes must be a dictionary" msgstr "`attributes` doit être un dictionnaire" -#: vibes_auth/serializers.py:101 +#: engine/vibes_auth/serializers.py:101 msgid "business identificator is required when registering as a business" msgstr "" "L'identifiant de l'entreprise est requis lors de l'enregistrement de " "l'entreprise." -#: vibes_auth/serializers.py:121 +#: engine/vibes_auth/serializers.py:121 #, python-brace-format msgid "malformed email: {email}" msgstr "email malformé : {email}" -#: vibes_auth/serializers.py:142 vibes_auth/serializers.py:164 -#: vibes_auth/serializers.py:186 vibes_auth/serializers.py:198 +#: engine/vibes_auth/serializers.py:142 engine/vibes_auth/serializers.py:164 +#: engine/vibes_auth/serializers.py:184 engine/vibes_auth/serializers.py:194 msgid "no active account" msgstr "Aucun compte actif trouvé" -#: vibes_auth/serializers.py:174 +#: engine/vibes_auth/serializers.py:174 msgid "must set token_class attribute on class." msgstr "L'attribut token_class doit être défini sur la classe !" -#: vibes_auth/serializers.py:246 +#: engine/vibes_auth/serializers.py:240 msgid "token_blacklisted" msgstr "Token sur liste noire" -#: vibes_auth/serializers.py:251 +#: engine/vibes_auth/serializers.py:245 msgid "invalid token" msgstr "Jeton non valide" -#: vibes_auth/serializers.py:257 +#: engine/vibes_auth/serializers.py:251 msgid "no user uuid claim present in token" msgstr "Aucune revendication d'uuid d'utilisateur n'est présente dans le jeton" -#: vibes_auth/serializers.py:259 +#: engine/vibes_auth/serializers.py:253 msgid "user does not exist" msgstr "L'utilisateur n'existe pas" -#: vibes_auth/templates/user_reset_password_email.html:7 +#: engine/vibes_auth/templates/user_reset_password_email.html:7 msgid "reset your password" msgstr "Réinitialiser votre mot de passe" -#: vibes_auth/templates/user_reset_password_email.html:85 -#: vibes_auth/templates/user_verification_email.html:85 +#: engine/vibes_auth/templates/user_reset_password_email.html:85 +#: engine/vibes_auth/templates/user_verification_email.html:85 msgid "logo" msgstr "Logo" -#: vibes_auth/templates/user_reset_password_email.html:90 +#: engine/vibes_auth/templates/user_reset_password_email.html:90 msgid "password reset confirmation" msgstr "Confirmation de la réinitialisation du mot de passe" -#: vibes_auth/templates/user_reset_password_email.html:91 -#: vibes_auth/templates/user_verification_email.html:91 +#: engine/vibes_auth/templates/user_reset_password_email.html:91 +#: engine/vibes_auth/templates/user_verification_email.html:91 #, python-format msgid "hello %(user_first_name)s," msgstr "Bonjour %(user_first_name)s," -#: vibes_auth/templates/user_reset_password_email.html:92 +#: 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" @@ -454,12 +461,12 @@ msgstr "" "Veuillez réinitialiser votre mot de passe en cliquant sur le bouton ci-" "dessous :" -#: vibes_auth/templates/user_reset_password_email.html:95 +#: engine/vibes_auth/templates/user_reset_password_email.html:95 msgid "reset password" msgstr "réinitialiser le mot de passe" -#: vibes_auth/templates/user_reset_password_email.html:97 -#: vibes_auth/templates/user_verification_email.html:99 +#: engine/vibes_auth/templates/user_reset_password_email.html:97 +#: engine/vibes_auth/templates/user_verification_email.html:99 msgid "" "if the button above does not work, please copy and paste the following URL\n" " into your web browser:" @@ -468,7 +475,7 @@ msgstr "" "suivante\n" " suivante dans votre navigateur web :" -#: vibes_auth/templates/user_reset_password_email.html:100 +#: engine/vibes_auth/templates/user_reset_password_email.html:100 msgid "" "if you did not send this request, please ignore this\n" " email." @@ -476,22 +483,22 @@ msgstr "" "si vous n'avez pas envoyé cette demande, veuillez ignorer cet e-mail.\n" " courriel." -#: vibes_auth/templates/user_reset_password_email.html:102 +#: engine/vibes_auth/templates/user_reset_password_email.html:102 #, python-format msgid "best regards,
The %(project_name)s team" msgstr "Meilleures salutations,
L'équipe %(project_name)s" -#: vibes_auth/templates/user_reset_password_email.html:108 -#: vibes_auth/templates/user_verification_email.html:108 +#: engine/vibes_auth/templates/user_reset_password_email.html:108 +#: engine/vibes_auth/templates/user_verification_email.html:108 msgid "all rights reserved" msgstr "Tous droits réservés" -#: vibes_auth/templates/user_verification_email.html:7 -#: vibes_auth/templates/user_verification_email.html:90 +#: engine/vibes_auth/templates/user_verification_email.html:7 +#: engine/vibes_auth/templates/user_verification_email.html:90 msgid "activate your account" msgstr "Activer votre compte" -#: vibes_auth/templates/user_verification_email.html:92 +#: engine/vibes_auth/templates/user_verification_email.html:92 #, python-format msgid "" "thank you for signing up for %(project_name)s. please activate your account\n" @@ -500,7 +507,7 @@ msgstr "" "Merci de vous être inscrit à %(project_name)s. Veuillez activer votre compte " "en cliquant sur le bouton ci-dessous :" -#: vibes_auth/templates/user_verification_email.html:96 +#: engine/vibes_auth/templates/user_verification_email.html:96 msgid "" "activate\n" " account" @@ -508,22 +515,22 @@ msgstr "" "Activer\n" " compte" -#: vibes_auth/templates/user_verification_email.html:102 +#: engine/vibes_auth/templates/user_verification_email.html:102 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "Meilleures salutations,
l'équipe %(project_name)s" -#: vibes_auth/utils/emailing.py:23 +#: engine/vibes_auth/utils/emailing.py:23 #, python-brace-format msgid "{config.PROJECT_NAME} | Activate Account" msgstr "{config.PROJECT_NAME} | Activer le compte" -#: vibes_auth/utils/emailing.py:62 +#: engine/vibes_auth/utils/emailing.py:62 #, python-brace-format msgid "{config.PROJECT_NAME} | Reset Password" msgstr "{config.PROJECT_NAME} | Réinitialiser le mot de passe" -#: vibes_auth/validators.py:13 +#: engine/vibes_auth/validators.py:13 msgid "" "invalid phone number format. the number must be entered in the format: " "\"+999999999\". up to 15 digits allowed." @@ -531,7 +538,7 @@ msgstr "" "Format de numéro de téléphone non valide. Le numéro doit être saisi au " "format : \"+999999999\". Un maximum de 15 chiffres est autorisé." -#: vibes_auth/views.py:30 +#: engine/vibes_auth/views.py:30 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 " @@ -547,7 +554,7 @@ msgstr "" "vue de jeton de base et assure une limitation de taux appropriée pour se " "protéger contre les attaques par force brute." -#: vibes_auth/views.py:48 +#: engine/vibes_auth/views.py:48 msgid "" "Handles refreshing of tokens for authentication purposes. This class is used " "to provide functionality for token refresh operations as part of an " @@ -563,7 +570,7 @@ msgstr "" "valider les entrées de rafraîchissement de jeton et produire les sorties " "appropriées." -#: vibes_auth/views.py:67 +#: engine/vibes_auth/views.py:67 msgid "" "Represents a view for verifying JSON Web Tokens (JWT) using specific " "serialization and validation logic. " @@ -571,11 +578,11 @@ 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." -#: vibes_auth/views.py:80 +#: engine/vibes_auth/views.py:80 msgid "the token is invalid" msgstr "Le jeton n'est pas valide" -#: vibes_auth/viewsets.py:45 +#: engine/vibes_auth/viewsets.py:45 msgid "" "User view set implementation.\n" "Provides a set of actions that manage user-related data such as creation, " @@ -591,10 +598,10 @@ msgstr "" "éléments récemment consultés. Cette classe étend les mixins et " "GenericViewSet pour une gestion robuste de l'API." -#: vibes_auth/viewsets.py:99 +#: engine/vibes_auth/viewsets.py:99 msgid "password reset successfully" msgstr "Le mot de passe a été réinitialisé avec succès !" -#: vibes_auth/viewsets.py:132 +#: engine/vibes_auth/viewsets.py:132 msgid "account already activated!" msgstr "Vous avez déjà activé le compte..." diff --git a/vibes_auth/locale/he_IL/LC_MESSAGES/django.mo b/engine/vibes_auth/locale/he_IL/LC_MESSAGES/django.mo similarity index 65% rename from vibes_auth/locale/he_IL/LC_MESSAGES/django.mo rename to engine/vibes_auth/locale/he_IL/LC_MESSAGES/django.mo index 45f37b68..a8f728e3 100644 Binary files a/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/vibes_auth/locale/he_IL/LC_MESSAGES/django.po b/engine/vibes_auth/locale/he_IL/LC_MESSAGES/django.po similarity index 69% rename from vibes_auth/locale/he_IL/LC_MESSAGES/django.po rename to engine/vibes_auth/locale/he_IL/LC_MESSAGES/django.po index 5720559f..161ae26b 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,257 +13,265 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: vibes_auth/admin.py:39 vibes_auth/admin.py:40 -#: vibes_auth/graphene/object_types.py:46 +#: engine/vibes_auth/admin.py:40 engine/vibes_auth/admin.py:41 +#: engine/vibes_auth/graphene/object_types.py:46 msgid "balance" msgstr "מאזניים" -#: vibes_auth/admin.py:48 +#: engine/vibes_auth/admin.py:49 msgid "order" msgstr "הזמנה" -#: vibes_auth/admin.py:49 vibes_auth/graphene/object_types.py:44 +#: engine/vibes_auth/admin.py:50 engine/vibes_auth/graphene/object_types.py:44 msgid "orders" msgstr "הזמנות" -#: vibes_auth/admin.py:59 +#: engine/vibes_auth/admin.py:60 msgid "personal info" msgstr "מידע אישי" -#: vibes_auth/admin.py:63 vibes_auth/graphene/object_types.py:43 +#: engine/vibes_auth/admin.py:64 engine/vibes_auth/graphene/object_types.py:43 msgid "permissions" msgstr "הרשאות" -#: vibes_auth/admin.py:76 +#: engine/vibes_auth/admin.py:77 msgid "important dates" msgstr "תאריכים חשובים" -#: vibes_auth/admin.py:77 +#: engine/vibes_auth/admin.py:78 msgid "additional info" msgstr "מידע נוסף" -#: vibes_auth/apps.py:8 +#: engine/vibes_auth/admin.py:145 +msgid "Close selected threads" +msgstr "סגור את השרשורים הנבחרים" + +#: engine/vibes_auth/admin.py:149 +msgid "Open selected threads" +msgstr "פתח את השרשורים הנבחרים" + +#: engine/vibes_auth/apps.py:8 msgid "authentication" msgstr "אימות" -#: vibes_auth/docs/drf/views.py:15 +#: engine/vibes_auth/docs/drf/views.py:15 msgid "obtain a token pair" msgstr "השג זוג אסימונים" -#: vibes_auth/docs/drf/views.py:16 +#: engine/vibes_auth/docs/drf/views.py:16 msgid "obtain a token pair (refresh and access) for authentication." msgstr "השג זוג אסימונים (רענון וגישה) לצורך אימות." -#: vibes_auth/docs/drf/views.py:35 +#: engine/vibes_auth/docs/drf/views.py:35 msgid "refresh a token pair" msgstr "רענן זוג אסימונים" -#: vibes_auth/docs/drf/views.py:36 +#: engine/vibes_auth/docs/drf/views.py:36 msgid "refresh a token pair (refresh and access)." msgstr "רענן זוג אסימונים (רענן וגש)." -#: vibes_auth/docs/drf/views.py:55 +#: engine/vibes_auth/docs/drf/views.py:55 msgid "verify a token" msgstr "אמת אסימון" -#: vibes_auth/docs/drf/views.py:56 +#: engine/vibes_auth/docs/drf/views.py:56 msgid "Verify a token (refresh or access)." msgstr "אמת אסימון (רענן או גש)." -#: vibes_auth/docs/drf/views.py:62 vibes_auth/views.py:78 +#: engine/vibes_auth/docs/drf/views.py:62 engine/vibes_auth/views.py:78 msgid "the token is valid" msgstr "האסימון תקף" -#: vibes_auth/docs/drf/viewsets.py:16 +#: engine/vibes_auth/docs/drf/viewsets.py:16 msgid "create a new user" msgstr "צור משתמש חדש" -#: vibes_auth/docs/drf/viewsets.py:21 +#: engine/vibes_auth/docs/drf/viewsets.py:21 msgid "retrieve a user's details" msgstr "איתור פרטי המשתמש" -#: vibes_auth/docs/drf/viewsets.py:25 +#: engine/vibes_auth/docs/drf/viewsets.py:25 msgid "update a user's details" msgstr "עדכון פרטי המשתמש" -#: vibes_auth/docs/drf/viewsets.py:30 +#: engine/vibes_auth/docs/drf/viewsets.py:30 msgid "delete a user" msgstr "מחיקת משתמש" -#: vibes_auth/docs/drf/viewsets.py:34 +#: engine/vibes_auth/docs/drf/viewsets.py:34 msgid "reset a user's password by sending a reset password email" msgstr "אפס את סיסמת המשתמש על ידי שליחת דוא\"ל לאיפוס סיסמה" -#: vibes_auth/docs/drf/viewsets.py:39 +#: engine/vibes_auth/docs/drf/viewsets.py:39 msgid "handle avatar upload for a user" msgstr "טיפול בהעלאת אווטאר עבור משתמש" -#: vibes_auth/docs/drf/viewsets.py:54 +#: engine/vibes_auth/docs/drf/viewsets.py:54 msgid "confirm a user's password reset" msgstr "אשר את איפוס הסיסמה של המשתמש" -#: vibes_auth/docs/drf/viewsets.py:58 vibes_auth/graphene/mutations.py:320 -#: vibes_auth/serializers.py:105 vibes_auth/serializers.py:109 -#: vibes_auth/viewsets.py:84 +#: engine/vibes_auth/docs/drf/viewsets.py:58 +#: engine/vibes_auth/graphene/mutations.py:320 +#: engine/vibes_auth/serializers.py:105 engine/vibes_auth/serializers.py:109 +#: engine/vibes_auth/viewsets.py:84 msgid "passwords do not match" msgstr "הסיסמאות אינן תואמות" -#: vibes_auth/docs/drf/viewsets.py:63 +#: engine/vibes_auth/docs/drf/viewsets.py:63 msgid "activate a user's account" msgstr "הפעל חשבון משתמש" -#: vibes_auth/docs/drf/viewsets.py:67 +#: engine/vibes_auth/docs/drf/viewsets.py:67 msgid "activation link is invalid or account already activated" msgstr "קישור ההפעלה אינו תקף או שהחשבון כבר הופעל" -#: vibes_auth/docs/drf/viewsets.py:72 +#: engine/vibes_auth/docs/drf/viewsets.py:72 msgid "merge client-stored recently viewed products" msgstr "מיזוג מוצרים שנצפו לאחרונה המאוחסנים אצל הלקוח" -#: vibes_auth/graphene/mutations.py:41 +#: engine/vibes_auth/graphene/mutations.py:41 msgid "the user's b64-encoded uuid who referred the new user to us." msgstr "ה-uuid המקודד ב-b64 של המשתמש שהפנה אלינו את המשתמש החדש." -#: vibes_auth/graphene/mutations.py:61 +#: engine/vibes_auth/graphene/mutations.py:61 msgid "password too weak" msgstr "הסיסמה חלשה מדי" -#: vibes_auth/graphene/mutations.py:110 +#: engine/vibes_auth/graphene/mutations.py:110 #, python-brace-format msgid "{name} does not exist: {uuid}" msgstr "{name} אינו קיים: {uuid}!" -#: vibes_auth/graphene/mutations.py:120 +#: engine/vibes_auth/graphene/mutations.py:120 msgid "malformed email" msgstr "דוא\"ל פגום" -#: vibes_auth/graphene/mutations.py:127 vibes_auth/serializers.py:115 +#: engine/vibes_auth/graphene/mutations.py:127 +#: engine/vibes_auth/serializers.py:115 #, python-brace-format msgid "malformed phone number: {phone_number}" msgstr "מספר טלפון שגוי: {phone_number}!" -#: vibes_auth/graphene/mutations.py:149 +#: engine/vibes_auth/graphene/mutations.py:149 #, python-brace-format msgid "Invalid attribute format: {attribute_pair}" msgstr "פורמט תכונה לא חוקי: {attribute_pair}!" -#: vibes_auth/graphene/mutations.py:273 vibes_auth/viewsets.py:127 -#: vibes_auth/viewsets.py:146 +#: engine/vibes_auth/graphene/mutations.py:273 +#: engine/vibes_auth/viewsets.py:127 engine/vibes_auth/viewsets.py:146 msgid "activation link is invalid!" msgstr "קישור ההפעלה אינו תקף!" -#: vibes_auth/graphene/mutations.py:276 +#: engine/vibes_auth/graphene/mutations.py:276 msgid "account already activated..." msgstr "החשבון כבר הופעל..." -#: vibes_auth/graphene/mutations.py:283 vibes_auth/graphene/mutations.py:339 +#: engine/vibes_auth/graphene/mutations.py:283 +#: engine/vibes_auth/graphene/mutations.py:339 msgid "something went wrong: {e!s}" msgstr "משהו השתבש: {e!s}" -#: vibes_auth/graphene/mutations.py:327 vibes_auth/viewsets.py:95 +#: engine/vibes_auth/graphene/mutations.py:327 engine/vibes_auth/viewsets.py:95 msgid "token is invalid!" msgstr "האסימון אינו חוקי!" -#: vibes_auth/graphene/object_types.py:40 +#: engine/vibes_auth/graphene/object_types.py:40 msgid "" "the products this user has viewed most recently (max 48), in reverse‐" "chronological order" msgstr "המוצרים שהמשתמש צפה בהם לאחרונה (מקסימום 48), בסדר כרונולוגי הפוך." -#: vibes_auth/graphene/object_types.py:42 vibes_auth/models.py:132 +#: engine/vibes_auth/graphene/object_types.py:42 +#: engine/vibes_auth/models.py:123 msgid "groups" msgstr "קבוצות" -#: vibes_auth/graphene/object_types.py:45 +#: engine/vibes_auth/graphene/object_types.py:45 msgid "wishlist" msgstr "רשימת משאלות" -#: vibes_auth/graphene/object_types.py:47 vibes_auth/models.py:58 +#: engine/vibes_auth/graphene/object_types.py:47 engine/vibes_auth/models.py:59 msgid "avatar" msgstr "אוואטר" -#: vibes_auth/graphene/object_types.py:48 +#: engine/vibes_auth/graphene/object_types.py:48 msgid "attributes may be used to store custom data" msgstr "ניתן להשתמש בתכונות לאחסון נתונים מותאמים אישית" -#: vibes_auth/graphene/object_types.py:49 +#: engine/vibes_auth/graphene/object_types.py:50 #, python-brace-format -msgid "language is one of the {LANGUAGES} with default {LANGUAGE_CODE}" -msgstr "השפה היא אחת ה-{LANGUAGES} עם ברירת מחדל {LANGUAGE_CODE}" +msgid "" +"language is one of the {settings.LANGUAGES} with default {settings." +"LANGUAGE_CODE}" +msgstr "" +"השפה היא אחת ה-{settings.LANGUAGES} עם ברירת מחדל {settings.LANGUAGE_CODE}" -#: vibes_auth/graphene/object_types.py:50 +#: engine/vibes_auth/graphene/object_types.py:52 msgid "address set" msgstr "כתובות" -#: vibes_auth/messaging/admin.py:36 -msgid "Close selected threads" -msgstr "סגור את השרשורים הנבחרים" - -#: vibes_auth/messaging/admin.py:40 -msgid "Open selected threads" -msgstr "פתח את השרשורים הנבחרים" - -#: vibes_auth/messaging/models.py:24 +#: engine/vibes_auth/messaging/models.py:24 msgid "Open" msgstr "פתוח" -#: vibes_auth/messaging/models.py:25 +#: engine/vibes_auth/messaging/models.py:25 msgid "Closed" msgstr "סגור" -#: vibes_auth/messaging/models.py:29 +#: engine/vibes_auth/messaging/models.py:29 msgid "User" msgstr "משתמש" -#: vibes_auth/messaging/models.py:30 +#: engine/vibes_auth/messaging/models.py:30 msgid "Staff" msgstr "צוות" -#: vibes_auth/messaging/models.py:31 +#: engine/vibes_auth/messaging/models.py:31 msgid "System" msgstr "מערכת" -#: vibes_auth/messaging/models.py:36 +#: engine/vibes_auth/messaging/models.py:36 msgid "For anonymous threads" msgstr "לשרשורים אנונימיים" -#: vibes_auth/messaging/models.py:50 +#: engine/vibes_auth/messaging/models.py:50 msgid "Chat thread" msgstr "שרשור צ'אט" -#: vibes_auth/messaging/models.py:51 +#: engine/vibes_auth/messaging/models.py:51 msgid "Chat threads" msgstr "שרשורי צ'אט" -#: vibes_auth/messaging/models.py:56 +#: engine/vibes_auth/messaging/models.py:56 msgid "Provide user or email for anonymous thread." msgstr "ציין שם משתמש או דוא\"ל עבור שרשור אנונימי." -#: vibes_auth/messaging/models.py:58 vibes_auth/messaging/services.py:133 +#: engine/vibes_auth/messaging/models.py:58 +#: engine/vibes_auth/messaging/services.py:132 msgid "Assignee must be a staff user." msgstr "המקבל חייב להיות משתמש צוות." -#: vibes_auth/messaging/models.py:74 +#: engine/vibes_auth/messaging/models.py:74 msgid "Chat message" msgstr "הודעת צ'אט" -#: vibes_auth/messaging/models.py:75 +#: engine/vibes_auth/messaging/models.py:75 msgid "Chat messages" msgstr "הודעות צ'אט" -#: vibes_auth/messaging/services.py:48 +#: engine/vibes_auth/messaging/services.py:47 msgid "Valid email is required for anonymous chats." msgstr "נדרש כתובת דוא\"ל תקפה לצ'אטים אנונימיים." -#: vibes_auth/messaging/services.py:56 +#: engine/vibes_auth/messaging/services.py:55 msgid "Message must be 1..1028 characters." msgstr "ההודעה חייבת להכיל בין 1 ל-1028 תווים." -#: vibes_auth/messaging/services.py:90 +#: engine/vibes_auth/messaging/services.py:89 msgid "We're searching for the operator to answer you already, hold by!" msgstr "אנו מחפשים את המפעיל שיענה לך, אנא המתן!" -#: vibes_auth/models.py:30 +#: engine/vibes_auth/models.py:31 msgid "" "Represents a User entity with customized fields and methods for extended " "functionality. This class extends the AbstractUser model and integrates " @@ -279,152 +287,152 @@ msgstr "" "עזר לניהול פריטים שנצפו לאחרונה והפעלה מבוססת אסימון לאימות חשבונות. המודל " "User נועד לטפל במקרי שימוש ספציפיים לניהול משתמשים משופר." -#: vibes_auth/models.py:41 +#: engine/vibes_auth/models.py:42 msgid "email" msgstr "דוא\"ל" -#: vibes_auth/models.py:41 +#: engine/vibes_auth/models.py:42 msgid "user email address" msgstr "כתובת הדוא\"ל של המשתמש" -#: vibes_auth/models.py:43 +#: engine/vibes_auth/models.py:44 msgid "phone_number" msgstr "מספר טלפון" -#: vibes_auth/models.py:48 +#: engine/vibes_auth/models.py:49 msgid "user phone number" msgstr "מספר הטלפון של המשתמש" -#: vibes_auth/models.py:54 +#: engine/vibes_auth/models.py:55 msgid "first_name" msgstr "שם פרטי" -#: vibes_auth/models.py:55 +#: engine/vibes_auth/models.py:56 msgid "last_name" msgstr "שם משפחה" -#: vibes_auth/models.py:61 +#: engine/vibes_auth/models.py:62 msgid "user profile image" msgstr "תמונת פרופיל המשתמש" -#: vibes_auth/models.py:66 +#: engine/vibes_auth/models.py:67 msgid "is verified" msgstr "מאומת" -#: vibes_auth/models.py:67 +#: engine/vibes_auth/models.py:68 msgid "user verification status" msgstr "סטטוס אימות המשתמש" -#: vibes_auth/models.py:70 +#: engine/vibes_auth/models.py:71 msgid "is_active" msgstr "פעיל" -#: vibes_auth/models.py:72 +#: engine/vibes_auth/models.py:73 msgid "unselect this instead of deleting accounts" msgstr "בטל את הבחירה במקום למחוק חשבונות" -#: vibes_auth/models.py:75 +#: engine/vibes_auth/models.py:76 msgid "is_subscribed" msgstr "מנוי" -#: vibes_auth/models.py:75 +#: engine/vibes_auth/models.py:76 msgid "user's newsletter subscription status" msgstr "סטטוס המנוי לניוזלטר של המשתמש" -#: vibes_auth/models.py:78 +#: engine/vibes_auth/models.py:79 msgid "activation token" msgstr "אסימון הפעלה" -#: vibes_auth/models.py:80 +#: engine/vibes_auth/models.py:83 msgid "attributes" msgstr "תכונות" -#: vibes_auth/models.py:110 +#: engine/vibes_auth/models.py:115 msgid "user" msgstr "משתמש" -#: vibes_auth/models.py:111 +#: engine/vibes_auth/models.py:116 msgid "users" msgstr "משתמשים" -#: vibes_auth/models.py:131 +#: engine/vibes_auth/models.py:122 msgid "group" msgstr "קבוצה" -#: vibes_auth/models.py:148 +#: engine/vibes_auth/models.py:129 msgid "outstanding token" msgstr "אסימון יוצא מן הכלל" -#: vibes_auth/models.py:149 +#: engine/vibes_auth/models.py:130 msgid "outstanding tokens" msgstr "אסימונים מצטיינים" -#: vibes_auth/models.py:167 +#: engine/vibes_auth/models.py:136 msgid "blacklisted token" msgstr "אסימון ברשימה השחורה" -#: vibes_auth/models.py:168 +#: engine/vibes_auth/models.py:137 msgid "blacklisted tokens" msgstr "אסימונים ברשימה השחורה" -#: vibes_auth/serializers.py:99 +#: engine/vibes_auth/serializers.py:99 msgid "attributes must be a dictionary" msgstr "`attributes` חייב להיות מילון" -#: vibes_auth/serializers.py:101 +#: engine/vibes_auth/serializers.py:101 msgid "business identificator is required when registering as a business" msgstr "יש צורך במזהה עסקי בעת רישום כעסק" -#: vibes_auth/serializers.py:121 +#: engine/vibes_auth/serializers.py:121 #, python-brace-format msgid "malformed email: {email}" msgstr "דוא\"ל פגום: {email}" -#: vibes_auth/serializers.py:142 vibes_auth/serializers.py:164 -#: vibes_auth/serializers.py:186 vibes_auth/serializers.py:198 +#: engine/vibes_auth/serializers.py:142 engine/vibes_auth/serializers.py:164 +#: engine/vibes_auth/serializers.py:184 engine/vibes_auth/serializers.py:194 msgid "no active account" msgstr "לא נמצא חשבון פעיל" -#: vibes_auth/serializers.py:174 +#: engine/vibes_auth/serializers.py:174 msgid "must set token_class attribute on class." msgstr "יש להגדיר את התכונה token_class בכיתה!" -#: vibes_auth/serializers.py:246 +#: engine/vibes_auth/serializers.py:240 msgid "token_blacklisted" msgstr "אסימון ברשימה השחורה" -#: vibes_auth/serializers.py:251 +#: engine/vibes_auth/serializers.py:245 msgid "invalid token" msgstr "אסימון לא חוקי" -#: vibes_auth/serializers.py:257 +#: engine/vibes_auth/serializers.py:251 msgid "no user uuid claim present in token" msgstr "אין תביעה uuid של משתמש נוכחת באסימון" -#: vibes_auth/serializers.py:259 +#: engine/vibes_auth/serializers.py:253 msgid "user does not exist" msgstr "המשתמש אינו קיים" -#: vibes_auth/templates/user_reset_password_email.html:7 +#: engine/vibes_auth/templates/user_reset_password_email.html:7 msgid "reset your password" msgstr "אפס את הסיסמה שלך" -#: vibes_auth/templates/user_reset_password_email.html:85 -#: vibes_auth/templates/user_verification_email.html:85 +#: engine/vibes_auth/templates/user_reset_password_email.html:85 +#: engine/vibes_auth/templates/user_verification_email.html:85 msgid "logo" msgstr "לוגו" -#: vibes_auth/templates/user_reset_password_email.html:90 +#: engine/vibes_auth/templates/user_reset_password_email.html:90 msgid "password reset confirmation" msgstr "אישור איפוס סיסמה" -#: vibes_auth/templates/user_reset_password_email.html:91 -#: vibes_auth/templates/user_verification_email.html:91 +#: engine/vibes_auth/templates/user_reset_password_email.html:91 +#: engine/vibes_auth/templates/user_verification_email.html:91 #, python-format msgid "hello %(user_first_name)s," msgstr "שלום %(user_first_name)s," -#: vibes_auth/templates/user_reset_password_email.html:92 +#: 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" @@ -433,12 +441,12 @@ msgstr "" "קיבלנו בקשה לאיפוס הסיסמה שלך. אנא איפס את הסיסמה שלך על ידי לחיצה על הכפתור " "שלהלן:" -#: vibes_auth/templates/user_reset_password_email.html:95 +#: engine/vibes_auth/templates/user_reset_password_email.html:95 msgid "reset password" msgstr "איפוס סיסמה" -#: vibes_auth/templates/user_reset_password_email.html:97 -#: vibes_auth/templates/user_verification_email.html:99 +#: engine/vibes_auth/templates/user_reset_password_email.html:97 +#: engine/vibes_auth/templates/user_verification_email.html:99 msgid "" "if the button above does not work, please copy and paste the following URL\n" " into your web browser:" @@ -446,28 +454,28 @@ msgstr "" "אם הכפתור שלמעלה אינו פועל, אנא העתק והדבק את כתובת ה-URL הבאה בדפדפן " "האינטרנט שלך:" -#: vibes_auth/templates/user_reset_password_email.html:100 +#: engine/vibes_auth/templates/user_reset_password_email.html:100 msgid "" "if you did not send this request, please ignore this\n" " email." msgstr "אם לא שלחת בקשה זו, אנא התעלם מהודעת דוא\"ל זו." -#: vibes_auth/templates/user_reset_password_email.html:102 +#: engine/vibes_auth/templates/user_reset_password_email.html:102 #, python-format msgid "best regards,
The %(project_name)s team" msgstr "בברכה,
צוות %(project_name)s" -#: vibes_auth/templates/user_reset_password_email.html:108 -#: vibes_auth/templates/user_verification_email.html:108 +#: engine/vibes_auth/templates/user_reset_password_email.html:108 +#: engine/vibes_auth/templates/user_verification_email.html:108 msgid "all rights reserved" msgstr "כל הזכויות שמורות" -#: vibes_auth/templates/user_verification_email.html:7 -#: vibes_auth/templates/user_verification_email.html:90 +#: engine/vibes_auth/templates/user_verification_email.html:7 +#: engine/vibes_auth/templates/user_verification_email.html:90 msgid "activate your account" msgstr "הפעל את חשבונך" -#: vibes_auth/templates/user_verification_email.html:92 +#: engine/vibes_auth/templates/user_verification_email.html:92 #, python-format msgid "" "thank you for signing up for %(project_name)s. please activate your account\n" @@ -476,28 +484,28 @@ msgstr "" "תודה שנרשמת ל-%(project_name)s. אנא הפעל את חשבונך על ידי לחיצה על הכפתור " "שלהלן:" -#: vibes_auth/templates/user_verification_email.html:96 +#: engine/vibes_auth/templates/user_verification_email.html:96 msgid "" "activate\n" " account" msgstr "הפעל חשבון" -#: vibes_auth/templates/user_verification_email.html:102 +#: engine/vibes_auth/templates/user_verification_email.html:102 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "בברכה,
צוות %(project_name)s" -#: vibes_auth/utils/emailing.py:23 +#: engine/vibes_auth/utils/emailing.py:23 #, python-brace-format msgid "{config.PROJECT_NAME} | Activate Account" msgstr "{config.PROJECT_NAME} | הפעל חשבון" -#: vibes_auth/utils/emailing.py:62 +#: engine/vibes_auth/utils/emailing.py:62 #, python-brace-format msgid "{config.PROJECT_NAME} | Reset Password" msgstr "{config.PROJECT_NAME} | איפוס סיסמה" -#: vibes_auth/validators.py:13 +#: engine/vibes_auth/validators.py:13 msgid "" "invalid phone number format. the number must be entered in the format: " "\"+999999999\". up to 15 digits allowed." @@ -505,7 +513,7 @@ msgstr "" "פורמט מספר טלפון לא חוקי. יש להזין את המספר בפורמט: \"+999999999\". מותר " "להזין עד 15 ספרות." -#: vibes_auth/views.py:30 +#: engine/vibes_auth/views.py:30 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 " @@ -518,7 +526,7 @@ msgstr "" "(גישה ורענון) באמצעות אישורים שסופקו. היא בנויה על גבי תצוגת אסימון בסיסית " "ומבטיחה הגבלת קצב נאותה כדי להגן מפני התקפות כוח ברוט." -#: vibes_auth/views.py:48 +#: engine/vibes_auth/views.py:48 msgid "" "Handles refreshing of tokens for authentication purposes. This class is used " "to provide functionality for token refresh operations as part of an " @@ -531,7 +539,7 @@ msgstr "" "אסימון רענן בתוך מגבלות קצב מוגדרות. התצוגה מסתמכת על הסריאלייזר המשויך כדי " "לאמת קלטות רענון אסימונים ולייצר פלט מתאים." -#: vibes_auth/views.py:67 +#: engine/vibes_auth/views.py:67 msgid "" "Represents a view for verifying JSON Web Tokens (JWT) using specific " "serialization and validation logic. " @@ -539,11 +547,11 @@ msgstr "" "מייצג תצוגה לאימות אסימוני JSON Web Tokens (JWT) באמצעות לוגיקת סידוריות " "ואימות ספציפית." -#: vibes_auth/views.py:80 +#: engine/vibes_auth/views.py:80 msgid "the token is invalid" msgstr "האסימון אינו חוקי" -#: vibes_auth/viewsets.py:45 +#: engine/vibes_auth/viewsets.py:45 msgid "" "User view set implementation.\n" "Provides a set of actions that manage user-related data such as creation, " @@ -556,10 +564,10 @@ msgstr "" "אווטאר, הפעלת חשבון ומיזוג פריטים שנצפו לאחרונה. מחלקה זו מרחיבה את mixins " "ו-GenericViewSet לטיפול חזק ב-API." -#: vibes_auth/viewsets.py:99 +#: engine/vibes_auth/viewsets.py:99 msgid "password reset successfully" msgstr "הסיסמה אופסה בהצלחה!" -#: vibes_auth/viewsets.py:132 +#: engine/vibes_auth/viewsets.py:132 msgid "account already activated!" 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 new file mode 100644 index 00000000..7640ce00 Binary files /dev/null and b/engine/vibes_auth/locale/hi_IN/LC_MESSAGES/django.mo differ diff --git a/vibes_auth/locale/kk_KZ/LC_MESSAGES/django.po b/engine/vibes_auth/locale/hi_IN/LC_MESSAGES/django.po similarity index 55% rename from vibes_auth/locale/kk_KZ/LC_MESSAGES/django.po rename to engine/vibes_auth/locale/hi_IN/LC_MESSAGES/django.po index 30e7f518..e450cc7f 100644 --- a/vibes_auth/locale/kk_KZ/LC_MESSAGES/django.po +++ b/engine/vibes_auth/locale/hi_IN/LC_MESSAGES/django.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: EVIBES 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -16,257 +16,264 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: vibes_auth/admin.py:39 vibes_auth/admin.py:40 -#: vibes_auth/graphene/object_types.py:46 +#: engine/vibes_auth/admin.py:40 engine/vibes_auth/admin.py:41 +#: engine/vibes_auth/graphene/object_types.py:46 msgid "balance" msgstr "" -#: vibes_auth/admin.py:48 +#: engine/vibes_auth/admin.py:49 msgid "order" msgstr "" -#: vibes_auth/admin.py:49 vibes_auth/graphene/object_types.py:44 +#: engine/vibes_auth/admin.py:50 engine/vibes_auth/graphene/object_types.py:44 msgid "orders" msgstr "" -#: vibes_auth/admin.py:59 +#: engine/vibes_auth/admin.py:60 msgid "personal info" msgstr "" -#: vibes_auth/admin.py:63 vibes_auth/graphene/object_types.py:43 +#: engine/vibes_auth/admin.py:64 engine/vibes_auth/graphene/object_types.py:43 msgid "permissions" msgstr "" -#: vibes_auth/admin.py:76 +#: engine/vibes_auth/admin.py:77 msgid "important dates" msgstr "" -#: vibes_auth/admin.py:77 +#: engine/vibes_auth/admin.py:78 msgid "additional info" msgstr "" -#: vibes_auth/apps.py:8 +#: engine/vibes_auth/admin.py:145 +msgid "Close selected threads" +msgstr "" + +#: engine/vibes_auth/admin.py:149 +msgid "Open selected threads" +msgstr "" + +#: engine/vibes_auth/apps.py:8 msgid "authentication" msgstr "" -#: vibes_auth/docs/drf/views.py:15 +#: engine/vibes_auth/docs/drf/views.py:15 msgid "obtain a token pair" msgstr "" -#: vibes_auth/docs/drf/views.py:16 +#: engine/vibes_auth/docs/drf/views.py:16 msgid "obtain a token pair (refresh and access) for authentication." msgstr "" -#: vibes_auth/docs/drf/views.py:35 +#: engine/vibes_auth/docs/drf/views.py:35 msgid "refresh a token pair" msgstr "" -#: vibes_auth/docs/drf/views.py:36 +#: engine/vibes_auth/docs/drf/views.py:36 msgid "refresh a token pair (refresh and access)." msgstr "" -#: vibes_auth/docs/drf/views.py:55 +#: engine/vibes_auth/docs/drf/views.py:55 msgid "verify a token" msgstr "" -#: vibes_auth/docs/drf/views.py:56 +#: engine/vibes_auth/docs/drf/views.py:56 msgid "Verify a token (refresh or access)." msgstr "" -#: vibes_auth/docs/drf/views.py:62 vibes_auth/views.py:78 +#: engine/vibes_auth/docs/drf/views.py:62 engine/vibes_auth/views.py:78 msgid "the token is valid" msgstr "" -#: vibes_auth/docs/drf/viewsets.py:16 +#: engine/vibes_auth/docs/drf/viewsets.py:16 msgid "create a new user" msgstr "" -#: vibes_auth/docs/drf/viewsets.py:21 +#: engine/vibes_auth/docs/drf/viewsets.py:21 msgid "retrieve a user's details" msgstr "" -#: vibes_auth/docs/drf/viewsets.py:25 +#: engine/vibes_auth/docs/drf/viewsets.py:25 msgid "update a user's details" msgstr "" -#: vibes_auth/docs/drf/viewsets.py:30 +#: engine/vibes_auth/docs/drf/viewsets.py:30 msgid "delete a user" msgstr "" -#: vibes_auth/docs/drf/viewsets.py:34 +#: engine/vibes_auth/docs/drf/viewsets.py:34 msgid "reset a user's password by sending a reset password email" msgstr "" -#: vibes_auth/docs/drf/viewsets.py:39 +#: engine/vibes_auth/docs/drf/viewsets.py:39 msgid "handle avatar upload for a user" msgstr "" -#: vibes_auth/docs/drf/viewsets.py:54 +#: engine/vibes_auth/docs/drf/viewsets.py:54 msgid "confirm a user's password reset" msgstr "" -#: vibes_auth/docs/drf/viewsets.py:58 vibes_auth/graphene/mutations.py:320 -#: vibes_auth/serializers.py:105 vibes_auth/serializers.py:109 -#: vibes_auth/viewsets.py:84 +#: engine/vibes_auth/docs/drf/viewsets.py:58 +#: engine/vibes_auth/graphene/mutations.py:320 +#: engine/vibes_auth/serializers.py:105 engine/vibes_auth/serializers.py:109 +#: engine/vibes_auth/viewsets.py:84 msgid "passwords do not match" msgstr "" -#: vibes_auth/docs/drf/viewsets.py:63 +#: engine/vibes_auth/docs/drf/viewsets.py:63 msgid "activate a user's account" msgstr "" -#: vibes_auth/docs/drf/viewsets.py:67 +#: engine/vibes_auth/docs/drf/viewsets.py:67 msgid "activation link is invalid or account already activated" msgstr "" -#: vibes_auth/docs/drf/viewsets.py:72 +#: engine/vibes_auth/docs/drf/viewsets.py:72 msgid "merge client-stored recently viewed products" msgstr "" -#: vibes_auth/graphene/mutations.py:41 +#: engine/vibes_auth/graphene/mutations.py:41 msgid "the user's b64-encoded uuid who referred the new user to us." msgstr "" -#: vibes_auth/graphene/mutations.py:61 +#: engine/vibes_auth/graphene/mutations.py:61 msgid "password too weak" msgstr "" -#: vibes_auth/graphene/mutations.py:110 +#: engine/vibes_auth/graphene/mutations.py:110 #, python-brace-format msgid "{name} does not exist: {uuid}" msgstr "" -#: vibes_auth/graphene/mutations.py:120 +#: engine/vibes_auth/graphene/mutations.py:120 msgid "malformed email" msgstr "" -#: vibes_auth/graphene/mutations.py:127 vibes_auth/serializers.py:115 +#: engine/vibes_auth/graphene/mutations.py:127 +#: engine/vibes_auth/serializers.py:115 #, python-brace-format msgid "malformed phone number: {phone_number}" msgstr "" -#: vibes_auth/graphene/mutations.py:149 +#: engine/vibes_auth/graphene/mutations.py:149 #, python-brace-format msgid "Invalid attribute format: {attribute_pair}" msgstr "" -#: vibes_auth/graphene/mutations.py:273 vibes_auth/viewsets.py:127 -#: vibes_auth/viewsets.py:146 +#: engine/vibes_auth/graphene/mutations.py:273 +#: engine/vibes_auth/viewsets.py:127 engine/vibes_auth/viewsets.py:146 msgid "activation link is invalid!" msgstr "" -#: vibes_auth/graphene/mutations.py:276 +#: engine/vibes_auth/graphene/mutations.py:276 msgid "account already activated..." msgstr "" -#: vibes_auth/graphene/mutations.py:283 vibes_auth/graphene/mutations.py:339 +#: engine/vibes_auth/graphene/mutations.py:283 +#: engine/vibes_auth/graphene/mutations.py:339 msgid "something went wrong: {e!s}" msgstr "" -#: vibes_auth/graphene/mutations.py:327 vibes_auth/viewsets.py:95 +#: engine/vibes_auth/graphene/mutations.py:327 engine/vibes_auth/viewsets.py:95 msgid "token is invalid!" msgstr "" -#: vibes_auth/graphene/object_types.py:40 +#: engine/vibes_auth/graphene/object_types.py:40 msgid "" "the products this user has viewed most recently (max 48), in reverse‐" "chronological order" msgstr "" -#: vibes_auth/graphene/object_types.py:42 vibes_auth/models.py:132 +#: engine/vibes_auth/graphene/object_types.py:42 +#: engine/vibes_auth/models.py:123 msgid "groups" msgstr "" -#: vibes_auth/graphene/object_types.py:45 +#: engine/vibes_auth/graphene/object_types.py:45 msgid "wishlist" msgstr "" -#: vibes_auth/graphene/object_types.py:47 vibes_auth/models.py:58 +#: engine/vibes_auth/graphene/object_types.py:47 engine/vibes_auth/models.py:59 msgid "avatar" msgstr "" -#: vibes_auth/graphene/object_types.py:48 +#: engine/vibes_auth/graphene/object_types.py:48 msgid "attributes may be used to store custom data" msgstr "" -#: vibes_auth/graphene/object_types.py:49 +#: engine/vibes_auth/graphene/object_types.py:50 #, python-brace-format -msgid "language is one of the {LANGUAGES} with default {LANGUAGE_CODE}" +msgid "" +"language is one of the {settings.LANGUAGES} with default {settings." +"LANGUAGE_CODE}" msgstr "" -#: vibes_auth/graphene/object_types.py:50 +#: engine/vibes_auth/graphene/object_types.py:52 msgid "address set" msgstr "" -#: vibes_auth/messaging/admin.py:36 -msgid "Close selected threads" -msgstr "" - -#: vibes_auth/messaging/admin.py:40 -msgid "Open selected threads" -msgstr "" - -#: vibes_auth/messaging/models.py:24 +#: engine/vibes_auth/messaging/models.py:24 msgid "Open" msgstr "" -#: vibes_auth/messaging/models.py:25 +#: engine/vibes_auth/messaging/models.py:25 msgid "Closed" msgstr "" -#: vibes_auth/messaging/models.py:29 +#: engine/vibes_auth/messaging/models.py:29 msgid "User" msgstr "" -#: vibes_auth/messaging/models.py:30 +#: engine/vibes_auth/messaging/models.py:30 msgid "Staff" msgstr "" -#: vibes_auth/messaging/models.py:31 +#: engine/vibes_auth/messaging/models.py:31 msgid "System" msgstr "" -#: vibes_auth/messaging/models.py:36 +#: engine/vibes_auth/messaging/models.py:36 msgid "For anonymous threads" msgstr "" -#: vibes_auth/messaging/models.py:50 +#: engine/vibes_auth/messaging/models.py:50 msgid "Chat thread" msgstr "" -#: vibes_auth/messaging/models.py:51 +#: engine/vibes_auth/messaging/models.py:51 msgid "Chat threads" msgstr "" -#: vibes_auth/messaging/models.py:56 +#: engine/vibes_auth/messaging/models.py:56 msgid "Provide user or email for anonymous thread." msgstr "" -#: vibes_auth/messaging/models.py:58 vibes_auth/messaging/services.py:133 +#: engine/vibes_auth/messaging/models.py:58 +#: engine/vibes_auth/messaging/services.py:132 msgid "Assignee must be a staff user." msgstr "" -#: vibes_auth/messaging/models.py:74 +#: engine/vibes_auth/messaging/models.py:74 msgid "Chat message" msgstr "" -#: vibes_auth/messaging/models.py:75 +#: engine/vibes_auth/messaging/models.py:75 msgid "Chat messages" msgstr "" -#: vibes_auth/messaging/services.py:48 +#: engine/vibes_auth/messaging/services.py:47 msgid "Valid email is required for anonymous chats." msgstr "" -#: vibes_auth/messaging/services.py:56 +#: engine/vibes_auth/messaging/services.py:55 msgid "Message must be 1..1028 characters." msgstr "" -#: vibes_auth/messaging/services.py:90 +#: engine/vibes_auth/messaging/services.py:89 msgid "We're searching for the operator to answer you already, hold by!" msgstr "" -#: vibes_auth/models.py:30 +#: engine/vibes_auth/models.py:31 msgid "" "Represents a User entity with customized fields and methods for extended " "functionality. This class extends the AbstractUser model and integrates " @@ -277,225 +284,225 @@ msgid "" "for enhanced user management." msgstr "" -#: vibes_auth/models.py:41 +#: engine/vibes_auth/models.py:42 msgid "email" msgstr "" -#: vibes_auth/models.py:41 +#: engine/vibes_auth/models.py:42 msgid "user email address" msgstr "" -#: vibes_auth/models.py:43 +#: engine/vibes_auth/models.py:44 msgid "phone_number" msgstr "" -#: vibes_auth/models.py:48 +#: engine/vibes_auth/models.py:49 msgid "user phone number" msgstr "" -#: vibes_auth/models.py:54 +#: engine/vibes_auth/models.py:55 msgid "first_name" msgstr "" -#: vibes_auth/models.py:55 +#: engine/vibes_auth/models.py:56 msgid "last_name" msgstr "" -#: vibes_auth/models.py:61 +#: engine/vibes_auth/models.py:62 msgid "user profile image" msgstr "" -#: vibes_auth/models.py:66 +#: engine/vibes_auth/models.py:67 msgid "is verified" msgstr "" -#: vibes_auth/models.py:67 +#: engine/vibes_auth/models.py:68 msgid "user verification status" msgstr "" -#: vibes_auth/models.py:70 +#: engine/vibes_auth/models.py:71 msgid "is_active" msgstr "" -#: vibes_auth/models.py:72 +#: engine/vibes_auth/models.py:73 msgid "unselect this instead of deleting accounts" msgstr "" -#: vibes_auth/models.py:75 +#: engine/vibes_auth/models.py:76 msgid "is_subscribed" msgstr "" -#: vibes_auth/models.py:75 +#: engine/vibes_auth/models.py:76 msgid "user's newsletter subscription status" msgstr "" -#: vibes_auth/models.py:78 +#: engine/vibes_auth/models.py:79 msgid "activation token" msgstr "" -#: vibes_auth/models.py:80 +#: engine/vibes_auth/models.py:83 msgid "attributes" msgstr "" -#: vibes_auth/models.py:110 +#: engine/vibes_auth/models.py:115 msgid "user" msgstr "" -#: vibes_auth/models.py:111 +#: engine/vibes_auth/models.py:116 msgid "users" msgstr "" -#: vibes_auth/models.py:131 +#: engine/vibes_auth/models.py:122 msgid "group" msgstr "" -#: vibes_auth/models.py:148 +#: engine/vibes_auth/models.py:129 msgid "outstanding token" msgstr "" -#: vibes_auth/models.py:149 +#: engine/vibes_auth/models.py:130 msgid "outstanding tokens" msgstr "" -#: vibes_auth/models.py:167 +#: engine/vibes_auth/models.py:136 msgid "blacklisted token" msgstr "" -#: vibes_auth/models.py:168 +#: engine/vibes_auth/models.py:137 msgid "blacklisted tokens" msgstr "" -#: vibes_auth/serializers.py:99 +#: engine/vibes_auth/serializers.py:99 msgid "attributes must be a dictionary" msgstr "" -#: vibes_auth/serializers.py:101 +#: engine/vibes_auth/serializers.py:101 msgid "business identificator is required when registering as a business" msgstr "" -#: vibes_auth/serializers.py:121 +#: engine/vibes_auth/serializers.py:121 #, python-brace-format msgid "malformed email: {email}" msgstr "" -#: vibes_auth/serializers.py:142 vibes_auth/serializers.py:164 -#: vibes_auth/serializers.py:186 vibes_auth/serializers.py:198 +#: engine/vibes_auth/serializers.py:142 engine/vibes_auth/serializers.py:164 +#: engine/vibes_auth/serializers.py:184 engine/vibes_auth/serializers.py:194 msgid "no active account" msgstr "" -#: vibes_auth/serializers.py:174 +#: engine/vibes_auth/serializers.py:174 msgid "must set token_class attribute on class." msgstr "" -#: vibes_auth/serializers.py:246 +#: engine/vibes_auth/serializers.py:240 msgid "token_blacklisted" msgstr "" -#: vibes_auth/serializers.py:251 +#: engine/vibes_auth/serializers.py:245 msgid "invalid token" msgstr "" -#: vibes_auth/serializers.py:257 +#: engine/vibes_auth/serializers.py:251 msgid "no user uuid claim present in token" msgstr "" -#: vibes_auth/serializers.py:259 +#: engine/vibes_auth/serializers.py:253 msgid "user does not exist" msgstr "" -#: vibes_auth/templates/user_reset_password_email.html:7 +#: engine/vibes_auth/templates/user_reset_password_email.html:7 msgid "reset your password" msgstr "" -#: vibes_auth/templates/user_reset_password_email.html:85 -#: vibes_auth/templates/user_verification_email.html:85 +#: engine/vibes_auth/templates/user_reset_password_email.html:85 +#: engine/vibes_auth/templates/user_verification_email.html:85 msgid "logo" msgstr "" -#: vibes_auth/templates/user_reset_password_email.html:90 +#: engine/vibes_auth/templates/user_reset_password_email.html:90 msgid "password reset confirmation" msgstr "" -#: vibes_auth/templates/user_reset_password_email.html:91 -#: vibes_auth/templates/user_verification_email.html:91 +#: engine/vibes_auth/templates/user_reset_password_email.html:91 +#: engine/vibes_auth/templates/user_verification_email.html:91 #, python-format msgid "hello %(user_first_name)s," msgstr "" -#: vibes_auth/templates/user_reset_password_email.html:92 +#: 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" " by clicking the button below:" msgstr "" -#: vibes_auth/templates/user_reset_password_email.html:95 +#: engine/vibes_auth/templates/user_reset_password_email.html:95 msgid "reset password" msgstr "" -#: vibes_auth/templates/user_reset_password_email.html:97 -#: vibes_auth/templates/user_verification_email.html:99 +#: engine/vibes_auth/templates/user_reset_password_email.html:97 +#: engine/vibes_auth/templates/user_verification_email.html:99 msgid "" "if the button above does not work, please copy and paste the following URL\n" " into your web browser:" msgstr "" -#: vibes_auth/templates/user_reset_password_email.html:100 +#: engine/vibes_auth/templates/user_reset_password_email.html:100 msgid "" "if you did not send this request, please ignore this\n" " email." msgstr "" -#: vibes_auth/templates/user_reset_password_email.html:102 +#: engine/vibes_auth/templates/user_reset_password_email.html:102 #, python-format msgid "best regards,
The %(project_name)s team" msgstr "" -#: vibes_auth/templates/user_reset_password_email.html:108 -#: vibes_auth/templates/user_verification_email.html:108 +#: engine/vibes_auth/templates/user_reset_password_email.html:108 +#: engine/vibes_auth/templates/user_verification_email.html:108 msgid "all rights reserved" msgstr "" -#: vibes_auth/templates/user_verification_email.html:7 -#: vibes_auth/templates/user_verification_email.html:90 +#: engine/vibes_auth/templates/user_verification_email.html:7 +#: engine/vibes_auth/templates/user_verification_email.html:90 msgid "activate your account" msgstr "" -#: vibes_auth/templates/user_verification_email.html:92 +#: engine/vibes_auth/templates/user_verification_email.html:92 #, python-format msgid "" "thank you for signing up for %(project_name)s. please activate your account\n" " by clicking the button below:" msgstr "" -#: vibes_auth/templates/user_verification_email.html:96 +#: engine/vibes_auth/templates/user_verification_email.html:96 msgid "" "activate\n" " account" msgstr "" -#: vibes_auth/templates/user_verification_email.html:102 +#: engine/vibes_auth/templates/user_verification_email.html:102 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "" -#: vibes_auth/utils/emailing.py:23 +#: engine/vibes_auth/utils/emailing.py:23 #, python-brace-format msgid "{config.PROJECT_NAME} | Activate Account" msgstr "" -#: vibes_auth/utils/emailing.py:62 +#: engine/vibes_auth/utils/emailing.py:62 #, python-brace-format msgid "{config.PROJECT_NAME} | Reset Password" msgstr "" -#: vibes_auth/validators.py:13 +#: engine/vibes_auth/validators.py:13 msgid "" "invalid phone number format. the number must be entered in the format: " "\"+999999999\". up to 15 digits allowed." msgstr "" -#: vibes_auth/views.py:30 +#: engine/vibes_auth/views.py:30 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 " @@ -504,7 +511,7 @@ msgid "" "proper rate limiting to protect against brute force attacks." msgstr "" -#: vibes_auth/views.py:48 +#: engine/vibes_auth/views.py:48 msgid "" "Handles refreshing of tokens for authentication purposes. This class is used " "to provide functionality for token refresh operations as part of an " @@ -513,17 +520,17 @@ msgid "" "validate token refresh inputs and produce appropriate outputs." msgstr "" -#: vibes_auth/views.py:67 +#: engine/vibes_auth/views.py:67 msgid "" "Represents a view for verifying JSON Web Tokens (JWT) using specific " "serialization and validation logic. " msgstr "" -#: vibes_auth/views.py:80 +#: engine/vibes_auth/views.py:80 msgid "the token is invalid" msgstr "" -#: vibes_auth/viewsets.py:45 +#: engine/vibes_auth/viewsets.py:45 msgid "" "User view set implementation.\n" "Provides a set of actions that manage user-related data such as creation, " @@ -532,10 +539,10 @@ msgid "" "class extends the mixins and GenericViewSet for robust API handling." msgstr "" -#: vibes_auth/viewsets.py:99 +#: engine/vibes_auth/viewsets.py:99 msgid "password reset successfully" msgstr "" -#: vibes_auth/viewsets.py:132 +#: engine/vibes_auth/viewsets.py:132 msgid "account already activated!" msgstr "" diff --git a/vibes_auth/locale/hr_HR/LC_MESSAGES/django.mo b/engine/vibes_auth/locale/hr_HR/LC_MESSAGES/django.mo similarity index 100% rename from vibes_auth/locale/hr_HR/LC_MESSAGES/django.mo rename to engine/vibes_auth/locale/hr_HR/LC_MESSAGES/django.mo diff --git a/vibes_auth/locale/hr_HR/LC_MESSAGES/django.po b/engine/vibes_auth/locale/hr_HR/LC_MESSAGES/django.po similarity index 55% rename from vibes_auth/locale/hr_HR/LC_MESSAGES/django.po rename to engine/vibes_auth/locale/hr_HR/LC_MESSAGES/django.po index d1078724..f8ec06a4 100644 --- a/vibes_auth/locale/hr_HR/LC_MESSAGES/django.po +++ b/engine/vibes_auth/locale/hr_HR/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,257 +16,264 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: vibes_auth/admin.py:39 vibes_auth/admin.py:40 -#: vibes_auth/graphene/object_types.py:46 +#: engine/vibes_auth/admin.py:40 engine/vibes_auth/admin.py:41 +#: engine/vibes_auth/graphene/object_types.py:46 msgid "balance" msgstr "" -#: vibes_auth/admin.py:48 +#: engine/vibes_auth/admin.py:49 msgid "order" msgstr "" -#: vibes_auth/admin.py:49 vibes_auth/graphene/object_types.py:44 +#: engine/vibes_auth/admin.py:50 engine/vibes_auth/graphene/object_types.py:44 msgid "orders" msgstr "" -#: vibes_auth/admin.py:59 +#: engine/vibes_auth/admin.py:60 msgid "personal info" msgstr "" -#: vibes_auth/admin.py:63 vibes_auth/graphene/object_types.py:43 +#: engine/vibes_auth/admin.py:64 engine/vibes_auth/graphene/object_types.py:43 msgid "permissions" msgstr "" -#: vibes_auth/admin.py:76 +#: engine/vibes_auth/admin.py:77 msgid "important dates" msgstr "" -#: vibes_auth/admin.py:77 +#: engine/vibes_auth/admin.py:78 msgid "additional info" msgstr "" -#: vibes_auth/apps.py:8 +#: engine/vibes_auth/admin.py:145 +msgid "Close selected threads" +msgstr "" + +#: engine/vibes_auth/admin.py:149 +msgid "Open selected threads" +msgstr "" + +#: engine/vibes_auth/apps.py:8 msgid "authentication" msgstr "" -#: vibes_auth/docs/drf/views.py:15 +#: engine/vibes_auth/docs/drf/views.py:15 msgid "obtain a token pair" msgstr "" -#: vibes_auth/docs/drf/views.py:16 +#: engine/vibes_auth/docs/drf/views.py:16 msgid "obtain a token pair (refresh and access) for authentication." msgstr "" -#: vibes_auth/docs/drf/views.py:35 +#: engine/vibes_auth/docs/drf/views.py:35 msgid "refresh a token pair" msgstr "" -#: vibes_auth/docs/drf/views.py:36 +#: engine/vibes_auth/docs/drf/views.py:36 msgid "refresh a token pair (refresh and access)." msgstr "" -#: vibes_auth/docs/drf/views.py:55 +#: engine/vibes_auth/docs/drf/views.py:55 msgid "verify a token" msgstr "" -#: vibes_auth/docs/drf/views.py:56 +#: engine/vibes_auth/docs/drf/views.py:56 msgid "Verify a token (refresh or access)." msgstr "" -#: vibes_auth/docs/drf/views.py:62 vibes_auth/views.py:78 +#: engine/vibes_auth/docs/drf/views.py:62 engine/vibes_auth/views.py:78 msgid "the token is valid" msgstr "" -#: vibes_auth/docs/drf/viewsets.py:16 +#: engine/vibes_auth/docs/drf/viewsets.py:16 msgid "create a new user" msgstr "" -#: vibes_auth/docs/drf/viewsets.py:21 +#: engine/vibes_auth/docs/drf/viewsets.py:21 msgid "retrieve a user's details" msgstr "" -#: vibes_auth/docs/drf/viewsets.py:25 +#: engine/vibes_auth/docs/drf/viewsets.py:25 msgid "update a user's details" msgstr "" -#: vibes_auth/docs/drf/viewsets.py:30 +#: engine/vibes_auth/docs/drf/viewsets.py:30 msgid "delete a user" msgstr "" -#: vibes_auth/docs/drf/viewsets.py:34 +#: engine/vibes_auth/docs/drf/viewsets.py:34 msgid "reset a user's password by sending a reset password email" msgstr "" -#: vibes_auth/docs/drf/viewsets.py:39 +#: engine/vibes_auth/docs/drf/viewsets.py:39 msgid "handle avatar upload for a user" msgstr "" -#: vibes_auth/docs/drf/viewsets.py:54 +#: engine/vibes_auth/docs/drf/viewsets.py:54 msgid "confirm a user's password reset" msgstr "" -#: vibes_auth/docs/drf/viewsets.py:58 vibes_auth/graphene/mutations.py:320 -#: vibes_auth/serializers.py:105 vibes_auth/serializers.py:109 -#: vibes_auth/viewsets.py:84 +#: engine/vibes_auth/docs/drf/viewsets.py:58 +#: engine/vibes_auth/graphene/mutations.py:320 +#: engine/vibes_auth/serializers.py:105 engine/vibes_auth/serializers.py:109 +#: engine/vibes_auth/viewsets.py:84 msgid "passwords do not match" msgstr "" -#: vibes_auth/docs/drf/viewsets.py:63 +#: engine/vibes_auth/docs/drf/viewsets.py:63 msgid "activate a user's account" msgstr "" -#: vibes_auth/docs/drf/viewsets.py:67 +#: engine/vibes_auth/docs/drf/viewsets.py:67 msgid "activation link is invalid or account already activated" msgstr "" -#: vibes_auth/docs/drf/viewsets.py:72 +#: engine/vibes_auth/docs/drf/viewsets.py:72 msgid "merge client-stored recently viewed products" msgstr "" -#: vibes_auth/graphene/mutations.py:41 +#: engine/vibes_auth/graphene/mutations.py:41 msgid "the user's b64-encoded uuid who referred the new user to us." msgstr "" -#: vibes_auth/graphene/mutations.py:61 +#: engine/vibes_auth/graphene/mutations.py:61 msgid "password too weak" msgstr "" -#: vibes_auth/graphene/mutations.py:110 +#: engine/vibes_auth/graphene/mutations.py:110 #, python-brace-format msgid "{name} does not exist: {uuid}" msgstr "" -#: vibes_auth/graphene/mutations.py:120 +#: engine/vibes_auth/graphene/mutations.py:120 msgid "malformed email" msgstr "" -#: vibes_auth/graphene/mutations.py:127 vibes_auth/serializers.py:115 +#: engine/vibes_auth/graphene/mutations.py:127 +#: engine/vibes_auth/serializers.py:115 #, python-brace-format msgid "malformed phone number: {phone_number}" msgstr "" -#: vibes_auth/graphene/mutations.py:149 +#: engine/vibes_auth/graphene/mutations.py:149 #, python-brace-format msgid "Invalid attribute format: {attribute_pair}" msgstr "" -#: vibes_auth/graphene/mutations.py:273 vibes_auth/viewsets.py:127 -#: vibes_auth/viewsets.py:146 +#: engine/vibes_auth/graphene/mutations.py:273 +#: engine/vibes_auth/viewsets.py:127 engine/vibes_auth/viewsets.py:146 msgid "activation link is invalid!" msgstr "" -#: vibes_auth/graphene/mutations.py:276 +#: engine/vibes_auth/graphene/mutations.py:276 msgid "account already activated..." msgstr "" -#: vibes_auth/graphene/mutations.py:283 vibes_auth/graphene/mutations.py:339 +#: engine/vibes_auth/graphene/mutations.py:283 +#: engine/vibes_auth/graphene/mutations.py:339 msgid "something went wrong: {e!s}" msgstr "" -#: vibes_auth/graphene/mutations.py:327 vibes_auth/viewsets.py:95 +#: engine/vibes_auth/graphene/mutations.py:327 engine/vibes_auth/viewsets.py:95 msgid "token is invalid!" msgstr "" -#: vibes_auth/graphene/object_types.py:40 +#: engine/vibes_auth/graphene/object_types.py:40 msgid "" "the products this user has viewed most recently (max 48), in reverse‐" "chronological order" msgstr "" -#: vibes_auth/graphene/object_types.py:42 vibes_auth/models.py:132 +#: engine/vibes_auth/graphene/object_types.py:42 +#: engine/vibes_auth/models.py:123 msgid "groups" msgstr "" -#: vibes_auth/graphene/object_types.py:45 +#: engine/vibes_auth/graphene/object_types.py:45 msgid "wishlist" msgstr "" -#: vibes_auth/graphene/object_types.py:47 vibes_auth/models.py:58 +#: engine/vibes_auth/graphene/object_types.py:47 engine/vibes_auth/models.py:59 msgid "avatar" msgstr "" -#: vibes_auth/graphene/object_types.py:48 +#: engine/vibes_auth/graphene/object_types.py:48 msgid "attributes may be used to store custom data" msgstr "" -#: vibes_auth/graphene/object_types.py:49 +#: engine/vibes_auth/graphene/object_types.py:50 #, python-brace-format -msgid "language is one of the {LANGUAGES} with default {LANGUAGE_CODE}" +msgid "" +"language is one of the {settings.LANGUAGES} with default {settings." +"LANGUAGE_CODE}" msgstr "" -#: vibes_auth/graphene/object_types.py:50 +#: engine/vibes_auth/graphene/object_types.py:52 msgid "address set" msgstr "" -#: vibes_auth/messaging/admin.py:36 -msgid "Close selected threads" -msgstr "" - -#: vibes_auth/messaging/admin.py:40 -msgid "Open selected threads" -msgstr "" - -#: vibes_auth/messaging/models.py:24 +#: engine/vibes_auth/messaging/models.py:24 msgid "Open" msgstr "" -#: vibes_auth/messaging/models.py:25 +#: engine/vibes_auth/messaging/models.py:25 msgid "Closed" msgstr "" -#: vibes_auth/messaging/models.py:29 +#: engine/vibes_auth/messaging/models.py:29 msgid "User" msgstr "" -#: vibes_auth/messaging/models.py:30 +#: engine/vibes_auth/messaging/models.py:30 msgid "Staff" msgstr "" -#: vibes_auth/messaging/models.py:31 +#: engine/vibes_auth/messaging/models.py:31 msgid "System" msgstr "" -#: vibes_auth/messaging/models.py:36 +#: engine/vibes_auth/messaging/models.py:36 msgid "For anonymous threads" msgstr "" -#: vibes_auth/messaging/models.py:50 +#: engine/vibes_auth/messaging/models.py:50 msgid "Chat thread" msgstr "" -#: vibes_auth/messaging/models.py:51 +#: engine/vibes_auth/messaging/models.py:51 msgid "Chat threads" msgstr "" -#: vibes_auth/messaging/models.py:56 +#: engine/vibes_auth/messaging/models.py:56 msgid "Provide user or email for anonymous thread." msgstr "" -#: vibes_auth/messaging/models.py:58 vibes_auth/messaging/services.py:133 +#: engine/vibes_auth/messaging/models.py:58 +#: engine/vibes_auth/messaging/services.py:132 msgid "Assignee must be a staff user." msgstr "" -#: vibes_auth/messaging/models.py:74 +#: engine/vibes_auth/messaging/models.py:74 msgid "Chat message" msgstr "" -#: vibes_auth/messaging/models.py:75 +#: engine/vibes_auth/messaging/models.py:75 msgid "Chat messages" msgstr "" -#: vibes_auth/messaging/services.py:48 +#: engine/vibes_auth/messaging/services.py:47 msgid "Valid email is required for anonymous chats." msgstr "" -#: vibes_auth/messaging/services.py:56 +#: engine/vibes_auth/messaging/services.py:55 msgid "Message must be 1..1028 characters." msgstr "" -#: vibes_auth/messaging/services.py:90 +#: engine/vibes_auth/messaging/services.py:89 msgid "We're searching for the operator to answer you already, hold by!" msgstr "" -#: vibes_auth/models.py:30 +#: engine/vibes_auth/models.py:31 msgid "" "Represents a User entity with customized fields and methods for extended " "functionality. This class extends the AbstractUser model and integrates " @@ -277,225 +284,225 @@ msgid "" "for enhanced user management." msgstr "" -#: vibes_auth/models.py:41 +#: engine/vibes_auth/models.py:42 msgid "email" msgstr "" -#: vibes_auth/models.py:41 +#: engine/vibes_auth/models.py:42 msgid "user email address" msgstr "" -#: vibes_auth/models.py:43 +#: engine/vibes_auth/models.py:44 msgid "phone_number" msgstr "" -#: vibes_auth/models.py:48 +#: engine/vibes_auth/models.py:49 msgid "user phone number" msgstr "" -#: vibes_auth/models.py:54 +#: engine/vibes_auth/models.py:55 msgid "first_name" msgstr "" -#: vibes_auth/models.py:55 +#: engine/vibes_auth/models.py:56 msgid "last_name" msgstr "" -#: vibes_auth/models.py:61 +#: engine/vibes_auth/models.py:62 msgid "user profile image" msgstr "" -#: vibes_auth/models.py:66 +#: engine/vibes_auth/models.py:67 msgid "is verified" msgstr "" -#: vibes_auth/models.py:67 +#: engine/vibes_auth/models.py:68 msgid "user verification status" msgstr "" -#: vibes_auth/models.py:70 +#: engine/vibes_auth/models.py:71 msgid "is_active" msgstr "" -#: vibes_auth/models.py:72 +#: engine/vibes_auth/models.py:73 msgid "unselect this instead of deleting accounts" msgstr "" -#: vibes_auth/models.py:75 +#: engine/vibes_auth/models.py:76 msgid "is_subscribed" msgstr "" -#: vibes_auth/models.py:75 +#: engine/vibes_auth/models.py:76 msgid "user's newsletter subscription status" msgstr "" -#: vibes_auth/models.py:78 +#: engine/vibes_auth/models.py:79 msgid "activation token" msgstr "" -#: vibes_auth/models.py:80 +#: engine/vibes_auth/models.py:83 msgid "attributes" msgstr "" -#: vibes_auth/models.py:110 +#: engine/vibes_auth/models.py:115 msgid "user" msgstr "" -#: vibes_auth/models.py:111 +#: engine/vibes_auth/models.py:116 msgid "users" msgstr "" -#: vibes_auth/models.py:131 +#: engine/vibes_auth/models.py:122 msgid "group" msgstr "" -#: vibes_auth/models.py:148 +#: engine/vibes_auth/models.py:129 msgid "outstanding token" msgstr "" -#: vibes_auth/models.py:149 +#: engine/vibes_auth/models.py:130 msgid "outstanding tokens" msgstr "" -#: vibes_auth/models.py:167 +#: engine/vibes_auth/models.py:136 msgid "blacklisted token" msgstr "" -#: vibes_auth/models.py:168 +#: engine/vibes_auth/models.py:137 msgid "blacklisted tokens" msgstr "" -#: vibes_auth/serializers.py:99 +#: engine/vibes_auth/serializers.py:99 msgid "attributes must be a dictionary" msgstr "" -#: vibes_auth/serializers.py:101 +#: engine/vibes_auth/serializers.py:101 msgid "business identificator is required when registering as a business" msgstr "" -#: vibes_auth/serializers.py:121 +#: engine/vibes_auth/serializers.py:121 #, python-brace-format msgid "malformed email: {email}" msgstr "" -#: vibes_auth/serializers.py:142 vibes_auth/serializers.py:164 -#: vibes_auth/serializers.py:186 vibes_auth/serializers.py:198 +#: engine/vibes_auth/serializers.py:142 engine/vibes_auth/serializers.py:164 +#: engine/vibes_auth/serializers.py:184 engine/vibes_auth/serializers.py:194 msgid "no active account" msgstr "" -#: vibes_auth/serializers.py:174 +#: engine/vibes_auth/serializers.py:174 msgid "must set token_class attribute on class." msgstr "" -#: vibes_auth/serializers.py:246 +#: engine/vibes_auth/serializers.py:240 msgid "token_blacklisted" msgstr "" -#: vibes_auth/serializers.py:251 +#: engine/vibes_auth/serializers.py:245 msgid "invalid token" msgstr "" -#: vibes_auth/serializers.py:257 +#: engine/vibes_auth/serializers.py:251 msgid "no user uuid claim present in token" msgstr "" -#: vibes_auth/serializers.py:259 +#: engine/vibes_auth/serializers.py:253 msgid "user does not exist" msgstr "" -#: vibes_auth/templates/user_reset_password_email.html:7 +#: engine/vibes_auth/templates/user_reset_password_email.html:7 msgid "reset your password" msgstr "" -#: vibes_auth/templates/user_reset_password_email.html:85 -#: vibes_auth/templates/user_verification_email.html:85 +#: engine/vibes_auth/templates/user_reset_password_email.html:85 +#: engine/vibes_auth/templates/user_verification_email.html:85 msgid "logo" msgstr "" -#: vibes_auth/templates/user_reset_password_email.html:90 +#: engine/vibes_auth/templates/user_reset_password_email.html:90 msgid "password reset confirmation" msgstr "" -#: vibes_auth/templates/user_reset_password_email.html:91 -#: vibes_auth/templates/user_verification_email.html:91 +#: engine/vibes_auth/templates/user_reset_password_email.html:91 +#: engine/vibes_auth/templates/user_verification_email.html:91 #, python-format msgid "hello %(user_first_name)s," msgstr "" -#: vibes_auth/templates/user_reset_password_email.html:92 +#: 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" " by clicking the button below:" msgstr "" -#: vibes_auth/templates/user_reset_password_email.html:95 +#: engine/vibes_auth/templates/user_reset_password_email.html:95 msgid "reset password" msgstr "" -#: vibes_auth/templates/user_reset_password_email.html:97 -#: vibes_auth/templates/user_verification_email.html:99 +#: engine/vibes_auth/templates/user_reset_password_email.html:97 +#: engine/vibes_auth/templates/user_verification_email.html:99 msgid "" "if the button above does not work, please copy and paste the following URL\n" " into your web browser:" msgstr "" -#: vibes_auth/templates/user_reset_password_email.html:100 +#: engine/vibes_auth/templates/user_reset_password_email.html:100 msgid "" "if you did not send this request, please ignore this\n" " email." msgstr "" -#: vibes_auth/templates/user_reset_password_email.html:102 +#: engine/vibes_auth/templates/user_reset_password_email.html:102 #, python-format msgid "best regards,
The %(project_name)s team" msgstr "" -#: vibes_auth/templates/user_reset_password_email.html:108 -#: vibes_auth/templates/user_verification_email.html:108 +#: engine/vibes_auth/templates/user_reset_password_email.html:108 +#: engine/vibes_auth/templates/user_verification_email.html:108 msgid "all rights reserved" msgstr "" -#: vibes_auth/templates/user_verification_email.html:7 -#: vibes_auth/templates/user_verification_email.html:90 +#: engine/vibes_auth/templates/user_verification_email.html:7 +#: engine/vibes_auth/templates/user_verification_email.html:90 msgid "activate your account" msgstr "" -#: vibes_auth/templates/user_verification_email.html:92 +#: engine/vibes_auth/templates/user_verification_email.html:92 #, python-format msgid "" "thank you for signing up for %(project_name)s. please activate your account\n" " by clicking the button below:" msgstr "" -#: vibes_auth/templates/user_verification_email.html:96 +#: engine/vibes_auth/templates/user_verification_email.html:96 msgid "" "activate\n" " account" msgstr "" -#: vibes_auth/templates/user_verification_email.html:102 +#: engine/vibes_auth/templates/user_verification_email.html:102 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "" -#: vibes_auth/utils/emailing.py:23 +#: engine/vibes_auth/utils/emailing.py:23 #, python-brace-format msgid "{config.PROJECT_NAME} | Activate Account" msgstr "" -#: vibes_auth/utils/emailing.py:62 +#: engine/vibes_auth/utils/emailing.py:62 #, python-brace-format msgid "{config.PROJECT_NAME} | Reset Password" msgstr "" -#: vibes_auth/validators.py:13 +#: engine/vibes_auth/validators.py:13 msgid "" "invalid phone number format. the number must be entered in the format: " "\"+999999999\". up to 15 digits allowed." msgstr "" -#: vibes_auth/views.py:30 +#: engine/vibes_auth/views.py:30 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 " @@ -504,7 +511,7 @@ msgid "" "proper rate limiting to protect against brute force attacks." msgstr "" -#: vibes_auth/views.py:48 +#: engine/vibes_auth/views.py:48 msgid "" "Handles refreshing of tokens for authentication purposes. This class is used " "to provide functionality for token refresh operations as part of an " @@ -513,17 +520,17 @@ msgid "" "validate token refresh inputs and produce appropriate outputs." msgstr "" -#: vibes_auth/views.py:67 +#: engine/vibes_auth/views.py:67 msgid "" "Represents a view for verifying JSON Web Tokens (JWT) using specific " "serialization and validation logic. " msgstr "" -#: vibes_auth/views.py:80 +#: engine/vibes_auth/views.py:80 msgid "the token is invalid" msgstr "" -#: vibes_auth/viewsets.py:45 +#: engine/vibes_auth/viewsets.py:45 msgid "" "User view set implementation.\n" "Provides a set of actions that manage user-related data such as creation, " @@ -532,10 +539,10 @@ msgid "" "class extends the mixins and GenericViewSet for robust API handling." msgstr "" -#: vibes_auth/viewsets.py:99 +#: engine/vibes_auth/viewsets.py:99 msgid "password reset successfully" msgstr "" -#: vibes_auth/viewsets.py:132 +#: engine/vibes_auth/viewsets.py:132 msgid "account already activated!" msgstr "" diff --git a/vibes_auth/locale/id_ID/LC_MESSAGES/django.mo b/engine/vibes_auth/locale/id_ID/LC_MESSAGES/django.mo similarity index 65% rename from vibes_auth/locale/id_ID/LC_MESSAGES/django.mo rename to engine/vibes_auth/locale/id_ID/LC_MESSAGES/django.mo index b471d663..a3e9c99e 100644 Binary files a/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/vibes_auth/locale/id_ID/LC_MESSAGES/django.po b/engine/vibes_auth/locale/id_ID/LC_MESSAGES/django.po similarity index 67% rename from vibes_auth/locale/id_ID/LC_MESSAGES/django.po rename to engine/vibes_auth/locale/id_ID/LC_MESSAGES/django.po index 4ba94c52..c88e0550 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,161 +13,172 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: vibes_auth/admin.py:39 vibes_auth/admin.py:40 -#: vibes_auth/graphene/object_types.py:46 +#: engine/vibes_auth/admin.py:40 engine/vibes_auth/admin.py:41 +#: engine/vibes_auth/graphene/object_types.py:46 msgid "balance" msgstr "Keseimbangan" -#: vibes_auth/admin.py:48 +#: engine/vibes_auth/admin.py:49 msgid "order" msgstr "Pesan" -#: vibes_auth/admin.py:49 vibes_auth/graphene/object_types.py:44 +#: engine/vibes_auth/admin.py:50 engine/vibes_auth/graphene/object_types.py:44 msgid "orders" msgstr "Pesanan" -#: vibes_auth/admin.py:59 +#: engine/vibes_auth/admin.py:60 msgid "personal info" msgstr "Informasi Pribadi" -#: vibes_auth/admin.py:63 vibes_auth/graphene/object_types.py:43 +#: engine/vibes_auth/admin.py:64 engine/vibes_auth/graphene/object_types.py:43 msgid "permissions" msgstr "Izin" -#: vibes_auth/admin.py:76 +#: engine/vibes_auth/admin.py:77 msgid "important dates" msgstr "Tanggal-tanggal penting" -#: vibes_auth/admin.py:77 +#: engine/vibes_auth/admin.py:78 msgid "additional info" msgstr "Informasi Tambahan" -#: vibes_auth/apps.py:8 +#: engine/vibes_auth/admin.py:145 +msgid "Close selected threads" +msgstr "Menutup utas yang dipilih" + +#: engine/vibes_auth/admin.py:149 +msgid "Open selected threads" +msgstr "Buka utas yang dipilih" + +#: engine/vibes_auth/apps.py:8 msgid "authentication" msgstr "Otentikasi" -#: vibes_auth/docs/drf/views.py:15 +#: engine/vibes_auth/docs/drf/views.py:15 msgid "obtain a token pair" msgstr "Dapatkan pasangan token" -#: vibes_auth/docs/drf/views.py:16 +#: engine/vibes_auth/docs/drf/views.py:16 msgid "obtain a token pair (refresh and access) for authentication." msgstr "Dapatkan pasangan token (penyegaran dan akses) untuk autentikasi." -#: vibes_auth/docs/drf/views.py:35 +#: engine/vibes_auth/docs/drf/views.py:35 msgid "refresh a token pair" msgstr "Menyegarkan pasangan token" -#: vibes_auth/docs/drf/views.py:36 +#: engine/vibes_auth/docs/drf/views.py:36 msgid "refresh a token pair (refresh and access)." msgstr "Menyegarkan pasangan token (menyegarkan dan mengakses)." -#: vibes_auth/docs/drf/views.py:55 +#: engine/vibes_auth/docs/drf/views.py:55 msgid "verify a token" msgstr "Verifikasi token" -#: vibes_auth/docs/drf/views.py:56 +#: engine/vibes_auth/docs/drf/views.py:56 msgid "Verify a token (refresh or access)." msgstr "Verifikasi token (penyegaran atau akses)." -#: vibes_auth/docs/drf/views.py:62 vibes_auth/views.py:78 +#: engine/vibes_auth/docs/drf/views.py:62 engine/vibes_auth/views.py:78 msgid "the token is valid" msgstr "Token tersebut valid" -#: vibes_auth/docs/drf/viewsets.py:16 +#: engine/vibes_auth/docs/drf/viewsets.py:16 msgid "create a new user" msgstr "Membuat pengguna baru" -#: vibes_auth/docs/drf/viewsets.py:21 +#: engine/vibes_auth/docs/drf/viewsets.py:21 msgid "retrieve a user's details" msgstr "Mengambil detail pengguna" -#: vibes_auth/docs/drf/viewsets.py:25 +#: engine/vibes_auth/docs/drf/viewsets.py:25 msgid "update a user's details" msgstr "Memperbarui detail pengguna" -#: vibes_auth/docs/drf/viewsets.py:30 +#: engine/vibes_auth/docs/drf/viewsets.py:30 msgid "delete a user" msgstr "Menghapus pengguna" -#: vibes_auth/docs/drf/viewsets.py:34 +#: engine/vibes_auth/docs/drf/viewsets.py:34 msgid "reset a user's password by sending a reset password email" msgstr "" "Atur ulang kata sandi pengguna dengan mengirim email pengaturan ulang kata " "sandi" -#: vibes_auth/docs/drf/viewsets.py:39 +#: engine/vibes_auth/docs/drf/viewsets.py:39 msgid "handle avatar upload for a user" msgstr "Menangani unggahan avatar untuk pengguna" -#: vibes_auth/docs/drf/viewsets.py:54 +#: engine/vibes_auth/docs/drf/viewsets.py:54 msgid "confirm a user's password reset" msgstr "Mengonfirmasi pengaturan ulang kata sandi pengguna" -#: vibes_auth/docs/drf/viewsets.py:58 vibes_auth/graphene/mutations.py:320 -#: vibes_auth/serializers.py:105 vibes_auth/serializers.py:109 -#: vibes_auth/viewsets.py:84 +#: engine/vibes_auth/docs/drf/viewsets.py:58 +#: engine/vibes_auth/graphene/mutations.py:320 +#: engine/vibes_auth/serializers.py:105 engine/vibes_auth/serializers.py:109 +#: engine/vibes_auth/viewsets.py:84 msgid "passwords do not match" msgstr "Kata sandi tidak cocok" -#: vibes_auth/docs/drf/viewsets.py:63 +#: engine/vibes_auth/docs/drf/viewsets.py:63 msgid "activate a user's account" msgstr "Mengaktifkan akun pengguna" -#: vibes_auth/docs/drf/viewsets.py:67 +#: engine/vibes_auth/docs/drf/viewsets.py:67 msgid "activation link is invalid or account already activated" msgstr "Tautan aktivasi tidak valid atau akun sudah diaktifkan" -#: vibes_auth/docs/drf/viewsets.py:72 +#: engine/vibes_auth/docs/drf/viewsets.py:72 msgid "merge client-stored recently viewed products" msgstr "Menggabungkan produk yang baru saja dilihat yang disimpan klien" -#: vibes_auth/graphene/mutations.py:41 +#: engine/vibes_auth/graphene/mutations.py:41 msgid "the user's b64-encoded uuid who referred the new user to us." msgstr "" "UID pengguna yang dikodekan b64 yang merujuk pengguna baru kepada kami." -#: vibes_auth/graphene/mutations.py:61 +#: engine/vibes_auth/graphene/mutations.py:61 msgid "password too weak" msgstr "Kata sandi terlalu lemah" -#: vibes_auth/graphene/mutations.py:110 +#: engine/vibes_auth/graphene/mutations.py:110 #, python-brace-format msgid "{name} does not exist: {uuid}" msgstr "{name} tidak ada: {uuid}!" -#: vibes_auth/graphene/mutations.py:120 +#: engine/vibes_auth/graphene/mutations.py:120 msgid "malformed email" msgstr "Email yang salah" -#: vibes_auth/graphene/mutations.py:127 vibes_auth/serializers.py:115 +#: engine/vibes_auth/graphene/mutations.py:127 +#: engine/vibes_auth/serializers.py:115 #, python-brace-format msgid "malformed phone number: {phone_number}" msgstr "Nomor telepon rusak: {phone_number}!" -#: vibes_auth/graphene/mutations.py:149 +#: engine/vibes_auth/graphene/mutations.py:149 #, python-brace-format msgid "Invalid attribute format: {attribute_pair}" msgstr "Format atribut tidak valid: {attribute_pair}!" -#: vibes_auth/graphene/mutations.py:273 vibes_auth/viewsets.py:127 -#: vibes_auth/viewsets.py:146 +#: engine/vibes_auth/graphene/mutations.py:273 +#: engine/vibes_auth/viewsets.py:127 engine/vibes_auth/viewsets.py:146 msgid "activation link is invalid!" msgstr "Tautan aktivasi tidak valid!" -#: vibes_auth/graphene/mutations.py:276 +#: engine/vibes_auth/graphene/mutations.py:276 msgid "account already activated..." msgstr "Akun sudah diaktifkan..." -#: vibes_auth/graphene/mutations.py:283 vibes_auth/graphene/mutations.py:339 +#: engine/vibes_auth/graphene/mutations.py:283 +#: engine/vibes_auth/graphene/mutations.py:339 msgid "something went wrong: {e!s}" msgstr "Ada yang tidak beres: {e!s}" -#: vibes_auth/graphene/mutations.py:327 vibes_auth/viewsets.py:95 +#: engine/vibes_auth/graphene/mutations.py:327 engine/vibes_auth/viewsets.py:95 msgid "token is invalid!" msgstr "Token tidak valid!" -#: vibes_auth/graphene/object_types.py:40 +#: engine/vibes_auth/graphene/object_types.py:40 msgid "" "the products this user has viewed most recently (max 48), in reverse‐" "chronological order" @@ -175,101 +186,98 @@ msgstr "" "Produk yang terakhir dilihat pengguna ini (maksimal 48), dalam urutan " "kronologis terbalik." -#: vibes_auth/graphene/object_types.py:42 vibes_auth/models.py:132 +#: engine/vibes_auth/graphene/object_types.py:42 +#: engine/vibes_auth/models.py:123 msgid "groups" msgstr "Grup" -#: vibes_auth/graphene/object_types.py:45 +#: engine/vibes_auth/graphene/object_types.py:45 msgid "wishlist" msgstr "Daftar keinginan" -#: vibes_auth/graphene/object_types.py:47 vibes_auth/models.py:58 +#: engine/vibes_auth/graphene/object_types.py:47 engine/vibes_auth/models.py:59 msgid "avatar" msgstr "Avatar" -#: vibes_auth/graphene/object_types.py:48 +#: engine/vibes_auth/graphene/object_types.py:48 msgid "attributes may be used to store custom data" msgstr "Atribut dapat digunakan untuk menyimpan data khusus" -#: vibes_auth/graphene/object_types.py:49 +#: engine/vibes_auth/graphene/object_types.py:50 #, python-brace-format -msgid "language is one of the {LANGUAGES} with default {LANGUAGE_CODE}" +msgid "" +"language is one of the {settings.LANGUAGES} with default {settings." +"LANGUAGE_CODE}" msgstr "" -"Bahasa adalah salah satu dari {LANGUAGES} dengan default {LANGUAGE_CODE}" +"Bahasa adalah salah satu dari {settings.LANGUAGES} dengan default {settings." +"LANGUAGE_CODE}" -#: vibes_auth/graphene/object_types.py:50 +#: engine/vibes_auth/graphene/object_types.py:52 msgid "address set" msgstr "Alamat" -#: vibes_auth/messaging/admin.py:36 -msgid "Close selected threads" -msgstr "Menutup utas yang dipilih" - -#: vibes_auth/messaging/admin.py:40 -msgid "Open selected threads" -msgstr "Buka utas yang dipilih" - -#: vibes_auth/messaging/models.py:24 +#: engine/vibes_auth/messaging/models.py:24 msgid "Open" msgstr "Buka" -#: vibes_auth/messaging/models.py:25 +#: engine/vibes_auth/messaging/models.py:25 msgid "Closed" msgstr "Ditutup" -#: vibes_auth/messaging/models.py:29 +#: engine/vibes_auth/messaging/models.py:29 msgid "User" msgstr "Pengguna" -#: vibes_auth/messaging/models.py:30 +#: engine/vibes_auth/messaging/models.py:30 msgid "Staff" msgstr "Staf" -#: vibes_auth/messaging/models.py:31 +#: engine/vibes_auth/messaging/models.py:31 msgid "System" msgstr "Sistem" -#: vibes_auth/messaging/models.py:36 +#: engine/vibes_auth/messaging/models.py:36 msgid "For anonymous threads" msgstr "Untuk utas anonim" -#: vibes_auth/messaging/models.py:50 +#: engine/vibes_auth/messaging/models.py:50 msgid "Chat thread" msgstr "Utas obrolan" -#: vibes_auth/messaging/models.py:51 +#: engine/vibes_auth/messaging/models.py:51 msgid "Chat threads" msgstr "Utas obrolan" -#: vibes_auth/messaging/models.py:56 +#: engine/vibes_auth/messaging/models.py:56 msgid "Provide user or email for anonymous thread." msgstr "Berikan pengguna atau email untuk utas anonim." -#: vibes_auth/messaging/models.py:58 vibes_auth/messaging/services.py:133 +#: engine/vibes_auth/messaging/models.py:58 +#: engine/vibes_auth/messaging/services.py:132 msgid "Assignee must be a staff user." msgstr "Penerima tugas haruslah seorang staf pengguna." -#: vibes_auth/messaging/models.py:74 +#: engine/vibes_auth/messaging/models.py:74 msgid "Chat message" msgstr "Pesan obrolan" -#: vibes_auth/messaging/models.py:75 +#: engine/vibes_auth/messaging/models.py:75 msgid "Chat messages" msgstr "Pesan obrolan" -#: vibes_auth/messaging/services.py:48 +#: engine/vibes_auth/messaging/services.py:47 msgid "Valid email is required for anonymous chats." msgstr "Email yang valid diperlukan untuk obrolan anonim." -#: vibes_auth/messaging/services.py:56 +#: engine/vibes_auth/messaging/services.py:55 msgid "Message must be 1..1028 characters." msgstr "Pesan harus terdiri dari 1..1028 karakter." -#: vibes_auth/messaging/services.py:90 +#: engine/vibes_auth/messaging/services.py:89 msgid "We're searching for the operator to answer you already, hold by!" msgstr "Kami sedang mencari operator untuk menjawab Anda, tunggu sebentar!" -#: vibes_auth/models.py:30 +#: engine/vibes_auth/models.py:31 msgid "" "Represents a User entity with customized fields and methods for extended " "functionality. This class extends the AbstractUser model and integrates " @@ -288,152 +296,152 @@ msgstr "" "untuk menangani kasus penggunaan tertentu untuk meningkatkan manajemen " "pengguna." -#: vibes_auth/models.py:41 +#: engine/vibes_auth/models.py:42 msgid "email" msgstr "Email" -#: vibes_auth/models.py:41 +#: engine/vibes_auth/models.py:42 msgid "user email address" msgstr "Alamat email pengguna" -#: vibes_auth/models.py:43 +#: engine/vibes_auth/models.py:44 msgid "phone_number" msgstr "Nomor Telepon" -#: vibes_auth/models.py:48 +#: engine/vibes_auth/models.py:49 msgid "user phone number" msgstr "Nomor telepon pengguna" -#: vibes_auth/models.py:54 +#: engine/vibes_auth/models.py:55 msgid "first_name" msgstr "Nama depan" -#: vibes_auth/models.py:55 +#: engine/vibes_auth/models.py:56 msgid "last_name" msgstr "Nama belakang" -#: vibes_auth/models.py:61 +#: engine/vibes_auth/models.py:62 msgid "user profile image" msgstr "Gambar profil pengguna" -#: vibes_auth/models.py:66 +#: engine/vibes_auth/models.py:67 msgid "is verified" msgstr "Sudah diverifikasi" -#: vibes_auth/models.py:67 +#: engine/vibes_auth/models.py:68 msgid "user verification status" msgstr "Status verifikasi pengguna" -#: vibes_auth/models.py:70 +#: engine/vibes_auth/models.py:71 msgid "is_active" msgstr "Aktif" -#: vibes_auth/models.py:72 +#: engine/vibes_auth/models.py:73 msgid "unselect this instead of deleting accounts" msgstr "Batalkan pilihan ini alih-alih menghapus akun" -#: vibes_auth/models.py:75 +#: engine/vibes_auth/models.py:76 msgid "is_subscribed" msgstr "Sudah berlangganan" -#: vibes_auth/models.py:75 +#: engine/vibes_auth/models.py:76 msgid "user's newsletter subscription status" msgstr "Status berlangganan buletin pengguna" -#: vibes_auth/models.py:78 +#: engine/vibes_auth/models.py:79 msgid "activation token" msgstr "Token aktivasi" -#: vibes_auth/models.py:80 +#: engine/vibes_auth/models.py:83 msgid "attributes" msgstr "Atribut" -#: vibes_auth/models.py:110 +#: engine/vibes_auth/models.py:115 msgid "user" msgstr "Pengguna" -#: vibes_auth/models.py:111 +#: engine/vibes_auth/models.py:116 msgid "users" msgstr "Pengguna" -#: vibes_auth/models.py:131 +#: engine/vibes_auth/models.py:122 msgid "group" msgstr "Kelompok" -#: vibes_auth/models.py:148 +#: engine/vibes_auth/models.py:129 msgid "outstanding token" msgstr "Token yang luar biasa" -#: vibes_auth/models.py:149 +#: engine/vibes_auth/models.py:130 msgid "outstanding tokens" msgstr "Token yang beredar" -#: vibes_auth/models.py:167 +#: engine/vibes_auth/models.py:136 msgid "blacklisted token" msgstr "Token yang masuk daftar hitam" -#: vibes_auth/models.py:168 +#: engine/vibes_auth/models.py:137 msgid "blacklisted tokens" msgstr "Token yang masuk daftar hitam" -#: vibes_auth/serializers.py:99 +#: engine/vibes_auth/serializers.py:99 msgid "attributes must be a dictionary" msgstr "Atribut `atribut` harus berupa sebuah kamus" -#: vibes_auth/serializers.py:101 +#: engine/vibes_auth/serializers.py:101 msgid "business identificator is required when registering as a business" msgstr "Pengenal bisnis diperlukan saat mendaftar sebagai bisnis" -#: vibes_auth/serializers.py:121 +#: engine/vibes_auth/serializers.py:121 #, python-brace-format msgid "malformed email: {email}" msgstr "email rusak: {email}" -#: vibes_auth/serializers.py:142 vibes_auth/serializers.py:164 -#: vibes_auth/serializers.py:186 vibes_auth/serializers.py:198 +#: engine/vibes_auth/serializers.py:142 engine/vibes_auth/serializers.py:164 +#: engine/vibes_auth/serializers.py:184 engine/vibes_auth/serializers.py:194 msgid "no active account" msgstr "Tidak ditemukan akun aktif" -#: vibes_auth/serializers.py:174 +#: engine/vibes_auth/serializers.py:174 msgid "must set token_class attribute on class." msgstr "Harus menetapkan atribut token_class pada kelas!" -#: vibes_auth/serializers.py:246 +#: engine/vibes_auth/serializers.py:240 msgid "token_blacklisted" msgstr "Daftar hitam token" -#: vibes_auth/serializers.py:251 +#: engine/vibes_auth/serializers.py:245 msgid "invalid token" msgstr "Token tidak valid" -#: vibes_auth/serializers.py:257 +#: engine/vibes_auth/serializers.py:251 msgid "no user uuid claim present in token" msgstr "Tidak ada klaim uuid pengguna yang ada dalam token" -#: vibes_auth/serializers.py:259 +#: engine/vibes_auth/serializers.py:253 msgid "user does not exist" msgstr "Pengguna tidak ada" -#: vibes_auth/templates/user_reset_password_email.html:7 +#: engine/vibes_auth/templates/user_reset_password_email.html:7 msgid "reset your password" msgstr "Atur ulang kata sandi Anda" -#: vibes_auth/templates/user_reset_password_email.html:85 -#: vibes_auth/templates/user_verification_email.html:85 +#: engine/vibes_auth/templates/user_reset_password_email.html:85 +#: engine/vibes_auth/templates/user_verification_email.html:85 msgid "logo" msgstr "Logo" -#: vibes_auth/templates/user_reset_password_email.html:90 +#: engine/vibes_auth/templates/user_reset_password_email.html:90 msgid "password reset confirmation" msgstr "Konfirmasi pengaturan ulang kata sandi" -#: vibes_auth/templates/user_reset_password_email.html:91 -#: vibes_auth/templates/user_verification_email.html:91 +#: engine/vibes_auth/templates/user_reset_password_email.html:91 +#: engine/vibes_auth/templates/user_verification_email.html:91 #, python-format msgid "hello %(user_first_name)s," msgstr "Halo %(user_first_name)s," -#: vibes_auth/templates/user_reset_password_email.html:92 +#: 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" @@ -442,12 +450,12 @@ msgstr "" "Kami telah menerima permintaan untuk mengatur ulang kata sandi Anda. Silakan " "atur ulang kata sandi Anda dengan mengeklik tombol di bawah ini:" -#: vibes_auth/templates/user_reset_password_email.html:95 +#: engine/vibes_auth/templates/user_reset_password_email.html:95 msgid "reset password" msgstr "setel ulang kata sandi" -#: vibes_auth/templates/user_reset_password_email.html:97 -#: vibes_auth/templates/user_verification_email.html:99 +#: engine/vibes_auth/templates/user_reset_password_email.html:97 +#: engine/vibes_auth/templates/user_verification_email.html:99 msgid "" "if the button above does not work, please copy and paste the following URL\n" " into your web browser:" @@ -456,7 +464,7 @@ msgstr "" "berikut\n" " ke dalam peramban web Anda:" -#: vibes_auth/templates/user_reset_password_email.html:100 +#: engine/vibes_auth/templates/user_reset_password_email.html:100 msgid "" "if you did not send this request, please ignore this\n" " email." @@ -464,22 +472,22 @@ msgstr "" "jika Anda tidak mengirimkan permintaan ini, harap abaikan\n" " email." -#: vibes_auth/templates/user_reset_password_email.html:102 +#: engine/vibes_auth/templates/user_reset_password_email.html:102 #, python-format msgid "best regards,
The %(project_name)s team" msgstr "Salam hormat, Tim %(project_name)s" -#: vibes_auth/templates/user_reset_password_email.html:108 -#: vibes_auth/templates/user_verification_email.html:108 +#: engine/vibes_auth/templates/user_reset_password_email.html:108 +#: engine/vibes_auth/templates/user_verification_email.html:108 msgid "all rights reserved" msgstr "Semua hak cipta dilindungi undang-undang" -#: vibes_auth/templates/user_verification_email.html:7 -#: vibes_auth/templates/user_verification_email.html:90 +#: engine/vibes_auth/templates/user_verification_email.html:7 +#: engine/vibes_auth/templates/user_verification_email.html:90 msgid "activate your account" msgstr "Aktifkan akun Anda" -#: vibes_auth/templates/user_verification_email.html:92 +#: engine/vibes_auth/templates/user_verification_email.html:92 #, python-format msgid "" "thank you for signing up for %(project_name)s. please activate your account\n" @@ -488,7 +496,7 @@ msgstr "" "Terima kasih telah mendaftar untuk %(project_name)s. Silakan aktifkan akun " "Anda dengan mengklik tombol di bawah ini:" -#: vibes_auth/templates/user_verification_email.html:96 +#: engine/vibes_auth/templates/user_verification_email.html:96 msgid "" "activate\n" " account" @@ -496,22 +504,22 @@ msgstr "" "Aktifkan\n" " akun" -#: vibes_auth/templates/user_verification_email.html:102 +#: engine/vibes_auth/templates/user_verification_email.html:102 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "Salam hormat, tim %(project_name)s" -#: vibes_auth/utils/emailing.py:23 +#: engine/vibes_auth/utils/emailing.py:23 #, python-brace-format msgid "{config.PROJECT_NAME} | Activate Account" msgstr "{config.PROJECT_NAME} | Aktifkan Akun" -#: vibes_auth/utils/emailing.py:62 +#: engine/vibes_auth/utils/emailing.py:62 #, python-brace-format msgid "{config.PROJECT_NAME} | Reset Password" msgstr "{config.PROJECT_NAME} | Atur Ulang Kata Sandi" -#: vibes_auth/validators.py:13 +#: engine/vibes_auth/validators.py:13 msgid "" "invalid phone number format. the number must be entered in the format: " "\"+999999999\". up to 15 digits allowed." @@ -519,7 +527,7 @@ msgstr "" "Format nomor telepon tidak valid. Nomor harus dimasukkan dalam format: " "\"+999999999\". Maksimal 15 digit." -#: vibes_auth/views.py:30 +#: engine/vibes_auth/views.py:30 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 " @@ -534,7 +542,7 @@ msgstr "" "tampilan token dasar dan memastikan pembatasan laju yang tepat untuk " "melindungi dari serangan brute force." -#: vibes_auth/views.py:48 +#: engine/vibes_auth/views.py:48 msgid "" "Handles refreshing of tokens for authentication purposes. This class is used " "to provide functionality for token refresh operations as part of an " @@ -549,7 +557,7 @@ msgstr "" "bergantung pada serializer terkait untuk memvalidasi input penyegaran token " "dan menghasilkan output yang sesuai." -#: vibes_auth/views.py:67 +#: engine/vibes_auth/views.py:67 msgid "" "Represents a view for verifying JSON Web Tokens (JWT) using specific " "serialization and validation logic. " @@ -557,11 +565,11 @@ msgstr "" "Merupakan tampilan untuk memverifikasi JSON Web Token (JWT) menggunakan " "serialisasi dan logika validasi tertentu." -#: vibes_auth/views.py:80 +#: engine/vibes_auth/views.py:80 msgid "the token is invalid" msgstr "Token tidak valid" -#: vibes_auth/viewsets.py:45 +#: engine/vibes_auth/viewsets.py:45 msgid "" "User view set implementation.\n" "Provides a set of actions that manage user-related data such as creation, " @@ -576,10 +584,10 @@ msgstr "" "penggabungan item yang baru dilihat. Kelas ini memperluas mixin dan " "GenericViewSet untuk penanganan API yang kuat." -#: vibes_auth/viewsets.py:99 +#: engine/vibes_auth/viewsets.py:99 msgid "password reset successfully" msgstr "Kata sandi telah berhasil diatur ulang!" -#: vibes_auth/viewsets.py:132 +#: engine/vibes_auth/viewsets.py:132 msgid "account already activated!" msgstr "Anda telah mengaktifkan akun..." diff --git a/vibes_auth/locale/it_IT/LC_MESSAGES/django.mo b/engine/vibes_auth/locale/it_IT/LC_MESSAGES/django.mo similarity index 67% rename from vibes_auth/locale/it_IT/LC_MESSAGES/django.mo rename to engine/vibes_auth/locale/it_IT/LC_MESSAGES/django.mo index b447ca04..af8dba85 100644 Binary files a/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/vibes_auth/locale/it_IT/LC_MESSAGES/django.po b/engine/vibes_auth/locale/it_IT/LC_MESSAGES/django.po similarity index 68% rename from vibes_auth/locale/it_IT/LC_MESSAGES/django.po rename to engine/vibes_auth/locale/it_IT/LC_MESSAGES/django.po index b56221a4..7b75093b 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,161 +13,172 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: vibes_auth/admin.py:39 vibes_auth/admin.py:40 -#: vibes_auth/graphene/object_types.py:46 +#: engine/vibes_auth/admin.py:40 engine/vibes_auth/admin.py:41 +#: engine/vibes_auth/graphene/object_types.py:46 msgid "balance" msgstr "Equilibrio" -#: vibes_auth/admin.py:48 +#: engine/vibes_auth/admin.py:49 msgid "order" msgstr "Ordine" -#: vibes_auth/admin.py:49 vibes_auth/graphene/object_types.py:44 +#: engine/vibes_auth/admin.py:50 engine/vibes_auth/graphene/object_types.py:44 msgid "orders" msgstr "Ordini" -#: vibes_auth/admin.py:59 +#: engine/vibes_auth/admin.py:60 msgid "personal info" msgstr "Informazioni personali" -#: vibes_auth/admin.py:63 vibes_auth/graphene/object_types.py:43 +#: engine/vibes_auth/admin.py:64 engine/vibes_auth/graphene/object_types.py:43 msgid "permissions" msgstr "Permessi" -#: vibes_auth/admin.py:76 +#: engine/vibes_auth/admin.py:77 msgid "important dates" msgstr "Date importanti" -#: vibes_auth/admin.py:77 +#: engine/vibes_auth/admin.py:78 msgid "additional info" msgstr "Ulteriori informazioni" -#: vibes_auth/apps.py:8 +#: engine/vibes_auth/admin.py:145 +msgid "Close selected threads" +msgstr "Chiudere le filettature selezionate" + +#: engine/vibes_auth/admin.py:149 +msgid "Open selected threads" +msgstr "Aprire le discussioni selezionate" + +#: engine/vibes_auth/apps.py:8 msgid "authentication" msgstr "Autenticazione" -#: vibes_auth/docs/drf/views.py:15 +#: engine/vibes_auth/docs/drf/views.py:15 msgid "obtain a token pair" msgstr "Ottenere una coppia di token" -#: vibes_auth/docs/drf/views.py:16 +#: engine/vibes_auth/docs/drf/views.py:16 msgid "obtain a token pair (refresh and access) for authentication." msgstr "" "Ottenere una coppia di token (aggiornamento e accesso) per l'autenticazione." -#: vibes_auth/docs/drf/views.py:35 +#: engine/vibes_auth/docs/drf/views.py:35 msgid "refresh a token pair" msgstr "Aggiornare una coppia di token" -#: vibes_auth/docs/drf/views.py:36 +#: engine/vibes_auth/docs/drf/views.py:36 msgid "refresh a token pair (refresh and access)." msgstr "Aggiorna una coppia di token (refresh e access)." -#: vibes_auth/docs/drf/views.py:55 +#: engine/vibes_auth/docs/drf/views.py:55 msgid "verify a token" msgstr "Verifica di un token" -#: vibes_auth/docs/drf/views.py:56 +#: engine/vibes_auth/docs/drf/views.py:56 msgid "Verify a token (refresh or access)." msgstr "Verifica di un token (aggiornamento o accesso)." -#: vibes_auth/docs/drf/views.py:62 vibes_auth/views.py:78 +#: engine/vibes_auth/docs/drf/views.py:62 engine/vibes_auth/views.py:78 msgid "the token is valid" msgstr "Il token è valido" -#: vibes_auth/docs/drf/viewsets.py:16 +#: engine/vibes_auth/docs/drf/viewsets.py:16 msgid "create a new user" msgstr "Creare un nuovo utente" -#: vibes_auth/docs/drf/viewsets.py:21 +#: engine/vibes_auth/docs/drf/viewsets.py:21 msgid "retrieve a user's details" msgstr "Recuperare i dettagli di un utente" -#: vibes_auth/docs/drf/viewsets.py:25 +#: engine/vibes_auth/docs/drf/viewsets.py:25 msgid "update a user's details" msgstr "Aggiornare i dettagli di un utente" -#: vibes_auth/docs/drf/viewsets.py:30 +#: engine/vibes_auth/docs/drf/viewsets.py:30 msgid "delete a user" msgstr "Eliminare un utente" -#: vibes_auth/docs/drf/viewsets.py:34 +#: engine/vibes_auth/docs/drf/viewsets.py:34 msgid "reset a user's password by sending a reset password email" msgstr "" "Reimpostare la password di un utente inviando un'e-mail di reimpostazione " "della password" -#: vibes_auth/docs/drf/viewsets.py:39 +#: engine/vibes_auth/docs/drf/viewsets.py:39 msgid "handle avatar upload for a user" msgstr "Gestire il caricamento dell'avatar per un utente" -#: vibes_auth/docs/drf/viewsets.py:54 +#: engine/vibes_auth/docs/drf/viewsets.py:54 msgid "confirm a user's password reset" msgstr "Confermare la reimpostazione della password di un utente" -#: vibes_auth/docs/drf/viewsets.py:58 vibes_auth/graphene/mutations.py:320 -#: vibes_auth/serializers.py:105 vibes_auth/serializers.py:109 -#: vibes_auth/viewsets.py:84 +#: engine/vibes_auth/docs/drf/viewsets.py:58 +#: engine/vibes_auth/graphene/mutations.py:320 +#: engine/vibes_auth/serializers.py:105 engine/vibes_auth/serializers.py:109 +#: engine/vibes_auth/viewsets.py:84 msgid "passwords do not match" msgstr "Le password non corrispondono" -#: vibes_auth/docs/drf/viewsets.py:63 +#: engine/vibes_auth/docs/drf/viewsets.py:63 msgid "activate a user's account" msgstr "Attivare l'account di un utente" -#: vibes_auth/docs/drf/viewsets.py:67 +#: engine/vibes_auth/docs/drf/viewsets.py:67 msgid "activation link is invalid or account already activated" msgstr "Il link di attivazione non è valido o l'account è già stato attivato." -#: vibes_auth/docs/drf/viewsets.py:72 +#: engine/vibes_auth/docs/drf/viewsets.py:72 msgid "merge client-stored recently viewed products" msgstr "Unire i prodotti memorizzati dal cliente e visti di recente" -#: vibes_auth/graphene/mutations.py:41 +#: engine/vibes_auth/graphene/mutations.py:41 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." -#: vibes_auth/graphene/mutations.py:61 +#: engine/vibes_auth/graphene/mutations.py:61 msgid "password too weak" msgstr "La password è troppo debole" -#: vibes_auth/graphene/mutations.py:110 +#: engine/vibes_auth/graphene/mutations.py:110 #, python-brace-format msgid "{name} does not exist: {uuid}" msgstr "{name} non esiste: {uuid}!" -#: vibes_auth/graphene/mutations.py:120 +#: engine/vibes_auth/graphene/mutations.py:120 msgid "malformed email" msgstr "Email malformata" -#: vibes_auth/graphene/mutations.py:127 vibes_auth/serializers.py:115 +#: engine/vibes_auth/graphene/mutations.py:127 +#: engine/vibes_auth/serializers.py:115 #, python-brace-format msgid "malformed phone number: {phone_number}" msgstr "Numero di telefono malformato: {phone_number}!" -#: vibes_auth/graphene/mutations.py:149 +#: engine/vibes_auth/graphene/mutations.py:149 #, python-brace-format msgid "Invalid attribute format: {attribute_pair}" msgstr "Formato attributo non valido: {attribute_pair}!" -#: vibes_auth/graphene/mutations.py:273 vibes_auth/viewsets.py:127 -#: vibes_auth/viewsets.py:146 +#: engine/vibes_auth/graphene/mutations.py:273 +#: engine/vibes_auth/viewsets.py:127 engine/vibes_auth/viewsets.py:146 msgid "activation link is invalid!" msgstr "Il link di attivazione non è valido!" -#: vibes_auth/graphene/mutations.py:276 +#: engine/vibes_auth/graphene/mutations.py:276 msgid "account already activated..." msgstr "L'account è già stato attivato..." -#: vibes_auth/graphene/mutations.py:283 vibes_auth/graphene/mutations.py:339 +#: engine/vibes_auth/graphene/mutations.py:283 +#: engine/vibes_auth/graphene/mutations.py:339 msgid "something went wrong: {e!s}" msgstr "Qualcosa è andato storto: {e!s}" -#: vibes_auth/graphene/mutations.py:327 vibes_auth/viewsets.py:95 +#: engine/vibes_auth/graphene/mutations.py:327 engine/vibes_auth/viewsets.py:95 msgid "token is invalid!" msgstr "Il gettone non è valido!" -#: vibes_auth/graphene/object_types.py:40 +#: engine/vibes_auth/graphene/object_types.py:40 msgid "" "the products this user has viewed most recently (max 48), in reverse‐" "chronological order" @@ -175,102 +186,99 @@ msgstr "" "I prodotti che questo utente ha visualizzato più di recente (max 48), in " "ordine cronologico inverso." -#: vibes_auth/graphene/object_types.py:42 vibes_auth/models.py:132 +#: engine/vibes_auth/graphene/object_types.py:42 +#: engine/vibes_auth/models.py:123 msgid "groups" msgstr "Gruppi" -#: vibes_auth/graphene/object_types.py:45 +#: engine/vibes_auth/graphene/object_types.py:45 msgid "wishlist" msgstr "Lista dei desideri" -#: vibes_auth/graphene/object_types.py:47 vibes_auth/models.py:58 +#: engine/vibes_auth/graphene/object_types.py:47 engine/vibes_auth/models.py:59 msgid "avatar" msgstr "Avatar" -#: vibes_auth/graphene/object_types.py:48 +#: engine/vibes_auth/graphene/object_types.py:48 msgid "attributes may be used to store custom data" msgstr "" "Gli attributi possono essere utilizzati per memorizzare dati personalizzati" -#: vibes_auth/graphene/object_types.py:49 +#: engine/vibes_auth/graphene/object_types.py:50 #, python-brace-format -msgid "language is one of the {LANGUAGES} with default {LANGUAGE_CODE}" +msgid "" +"language is one of the {settings.LANGUAGES} with default {settings." +"LANGUAGE_CODE}" msgstr "" -"La lingua è una delle {LANGUAGES} con il codice predefinito {LANGUAGE_CODE}." +"La lingua è una delle {settings.LANGUAGES} con il codice predefinito " +"{settings.LANGUAGE_CODE}." -#: vibes_auth/graphene/object_types.py:50 +#: engine/vibes_auth/graphene/object_types.py:52 msgid "address set" msgstr "Indirizzi" -#: vibes_auth/messaging/admin.py:36 -msgid "Close selected threads" -msgstr "Chiudere le filettature selezionate" - -#: vibes_auth/messaging/admin.py:40 -msgid "Open selected threads" -msgstr "Aprire le discussioni selezionate" - -#: vibes_auth/messaging/models.py:24 +#: engine/vibes_auth/messaging/models.py:24 msgid "Open" msgstr "Aperto" -#: vibes_auth/messaging/models.py:25 +#: engine/vibes_auth/messaging/models.py:25 msgid "Closed" msgstr "Chiuso" -#: vibes_auth/messaging/models.py:29 +#: engine/vibes_auth/messaging/models.py:29 msgid "User" msgstr "Utente" -#: vibes_auth/messaging/models.py:30 +#: engine/vibes_auth/messaging/models.py:30 msgid "Staff" msgstr "Personale" -#: vibes_auth/messaging/models.py:31 +#: engine/vibes_auth/messaging/models.py:31 msgid "System" msgstr "Sistema" -#: vibes_auth/messaging/models.py:36 +#: engine/vibes_auth/messaging/models.py:36 msgid "For anonymous threads" msgstr "Per le discussioni anonime" -#: vibes_auth/messaging/models.py:50 +#: engine/vibes_auth/messaging/models.py:50 msgid "Chat thread" msgstr "Filo della chat" -#: vibes_auth/messaging/models.py:51 +#: engine/vibes_auth/messaging/models.py:51 msgid "Chat threads" msgstr "Filo conduttore della chat" -#: vibes_auth/messaging/models.py:56 +#: engine/vibes_auth/messaging/models.py:56 msgid "Provide user or email for anonymous thread." msgstr "Fornire l'utente o l'e-mail per il thread anonimo." -#: vibes_auth/messaging/models.py:58 vibes_auth/messaging/services.py:133 +#: engine/vibes_auth/messaging/models.py:58 +#: engine/vibes_auth/messaging/services.py:132 msgid "Assignee must be a staff user." msgstr "Il destinatario deve essere un utente del personale." -#: vibes_auth/messaging/models.py:74 +#: engine/vibes_auth/messaging/models.py:74 msgid "Chat message" msgstr "Messaggio di chat" -#: vibes_auth/messaging/models.py:75 +#: engine/vibes_auth/messaging/models.py:75 msgid "Chat messages" msgstr "Messaggi di chat" -#: vibes_auth/messaging/services.py:48 +#: engine/vibes_auth/messaging/services.py:47 msgid "Valid email is required for anonymous chats." msgstr "Per le chat anonime è necessario un indirizzo e-mail valido." -#: vibes_auth/messaging/services.py:56 +#: engine/vibes_auth/messaging/services.py:55 msgid "Message must be 1..1028 characters." msgstr "Il messaggio deve essere di 1...1028 caratteri." -#: vibes_auth/messaging/services.py:90 +#: engine/vibes_auth/messaging/services.py:89 msgid "We're searching for the operator to answer you already, hold by!" msgstr "Stiamo già cercando l'operatore per rispondervi, restate in attesa!" -#: vibes_auth/models.py:30 +#: engine/vibes_auth/models.py:31 msgid "" "Represents a User entity with customized fields and methods for extended " "functionality. This class extends the AbstractUser model and integrates " @@ -289,154 +297,154 @@ msgstr "" "degli account. Il modello User è progettato per gestire casi d'uso specifici " "per una migliore gestione degli utenti." -#: vibes_auth/models.py:41 +#: engine/vibes_auth/models.py:42 msgid "email" msgstr "Email" -#: vibes_auth/models.py:41 +#: engine/vibes_auth/models.py:42 msgid "user email address" msgstr "Indirizzo e-mail dell'utente" -#: vibes_auth/models.py:43 +#: engine/vibes_auth/models.py:44 msgid "phone_number" msgstr "Numero di telefono" -#: vibes_auth/models.py:48 +#: engine/vibes_auth/models.py:49 msgid "user phone number" msgstr "Numero di telefono dell'utente" -#: vibes_auth/models.py:54 +#: engine/vibes_auth/models.py:55 msgid "first_name" msgstr "Nome" -#: vibes_auth/models.py:55 +#: engine/vibes_auth/models.py:56 msgid "last_name" msgstr "Cognome" -#: vibes_auth/models.py:61 +#: engine/vibes_auth/models.py:62 msgid "user profile image" msgstr "Immagine del profilo utente" -#: vibes_auth/models.py:66 +#: engine/vibes_auth/models.py:67 msgid "is verified" msgstr "È verificato" -#: vibes_auth/models.py:67 +#: engine/vibes_auth/models.py:68 msgid "user verification status" msgstr "Stato di verifica dell'utente" -#: vibes_auth/models.py:70 +#: engine/vibes_auth/models.py:71 msgid "is_active" msgstr "È attivo" -#: vibes_auth/models.py:72 +#: engine/vibes_auth/models.py:73 msgid "unselect this instead of deleting accounts" msgstr "Deselezionare questa opzione invece di eliminare gli account" -#: vibes_auth/models.py:75 +#: engine/vibes_auth/models.py:76 msgid "is_subscribed" msgstr "È iscritto" -#: vibes_auth/models.py:75 +#: engine/vibes_auth/models.py:76 msgid "user's newsletter subscription status" msgstr "Stato di iscrizione alla newsletter dell'utente" -#: vibes_auth/models.py:78 +#: engine/vibes_auth/models.py:79 msgid "activation token" msgstr "Token di attivazione" -#: vibes_auth/models.py:80 +#: engine/vibes_auth/models.py:83 msgid "attributes" msgstr "Attributi" -#: vibes_auth/models.py:110 +#: engine/vibes_auth/models.py:115 msgid "user" msgstr "Utente" -#: vibes_auth/models.py:111 +#: engine/vibes_auth/models.py:116 msgid "users" msgstr "Utenti" -#: vibes_auth/models.py:131 +#: engine/vibes_auth/models.py:122 msgid "group" msgstr "Gruppo" -#: vibes_auth/models.py:148 +#: engine/vibes_auth/models.py:129 msgid "outstanding token" msgstr "Gettone eccezionale" -#: vibes_auth/models.py:149 +#: engine/vibes_auth/models.py:130 msgid "outstanding tokens" msgstr "Gettoni in sospeso" -#: vibes_auth/models.py:167 +#: engine/vibes_auth/models.py:136 msgid "blacklisted token" msgstr "Token in lista nera" -#: vibes_auth/models.py:168 +#: engine/vibes_auth/models.py:137 msgid "blacklisted tokens" msgstr "Gettoni nella lista nera" -#: vibes_auth/serializers.py:99 +#: engine/vibes_auth/serializers.py:99 msgid "attributes must be a dictionary" msgstr "`attributi` deve essere un dizionario" -#: vibes_auth/serializers.py:101 +#: engine/vibes_auth/serializers.py:101 msgid "business identificator is required when registering as a business" msgstr "" "L'identificativo dell'azienda è necessario quando ci si registra come " "azienda." -#: vibes_auth/serializers.py:121 +#: engine/vibes_auth/serializers.py:121 #, python-brace-format msgid "malformed email: {email}" msgstr "email malformata: {email}" -#: vibes_auth/serializers.py:142 vibes_auth/serializers.py:164 -#: vibes_auth/serializers.py:186 vibes_auth/serializers.py:198 +#: engine/vibes_auth/serializers.py:142 engine/vibes_auth/serializers.py:164 +#: engine/vibes_auth/serializers.py:184 engine/vibes_auth/serializers.py:194 msgid "no active account" msgstr "Nessun conto attivo trovato" -#: vibes_auth/serializers.py:174 +#: engine/vibes_auth/serializers.py:174 msgid "must set token_class attribute on class." msgstr "Deve essere impostato l'attributo token_class sulla classe!" -#: vibes_auth/serializers.py:246 +#: engine/vibes_auth/serializers.py:240 msgid "token_blacklisted" msgstr "Token nella lista nera" -#: vibes_auth/serializers.py:251 +#: engine/vibes_auth/serializers.py:245 msgid "invalid token" msgstr "Token non valido" -#: vibes_auth/serializers.py:257 +#: engine/vibes_auth/serializers.py:251 msgid "no user uuid claim present in token" msgstr "Nessuna richiesta di uuid utente presente nel token" -#: vibes_auth/serializers.py:259 +#: engine/vibes_auth/serializers.py:253 msgid "user does not exist" msgstr "L'utente non esiste" -#: vibes_auth/templates/user_reset_password_email.html:7 +#: engine/vibes_auth/templates/user_reset_password_email.html:7 msgid "reset your password" msgstr "Reimpostare la password" -#: vibes_auth/templates/user_reset_password_email.html:85 -#: vibes_auth/templates/user_verification_email.html:85 +#: engine/vibes_auth/templates/user_reset_password_email.html:85 +#: engine/vibes_auth/templates/user_verification_email.html:85 msgid "logo" msgstr "Logo" -#: vibes_auth/templates/user_reset_password_email.html:90 +#: engine/vibes_auth/templates/user_reset_password_email.html:90 msgid "password reset confirmation" msgstr "Conferma della reimpostazione della password" -#: vibes_auth/templates/user_reset_password_email.html:91 -#: vibes_auth/templates/user_verification_email.html:91 +#: engine/vibes_auth/templates/user_reset_password_email.html:91 +#: engine/vibes_auth/templates/user_verification_email.html:91 #, python-format msgid "hello %(user_first_name)s," msgstr "Hello %(user_first_name)s," -#: vibes_auth/templates/user_reset_password_email.html:92 +#: 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" @@ -445,12 +453,12 @@ msgstr "" "Abbiamo ricevuto una richiesta di reimpostazione della password. La " "preghiamo di reimpostare la password facendo clic sul pulsante sottostante:" -#: vibes_auth/templates/user_reset_password_email.html:95 +#: engine/vibes_auth/templates/user_reset_password_email.html:95 msgid "reset password" msgstr "reimpostare la password" -#: vibes_auth/templates/user_reset_password_email.html:97 -#: vibes_auth/templates/user_verification_email.html:99 +#: engine/vibes_auth/templates/user_reset_password_email.html:97 +#: engine/vibes_auth/templates/user_verification_email.html:99 msgid "" "if the button above does not work, please copy and paste the following URL\n" " into your web browser:" @@ -458,7 +466,7 @@ msgstr "" "Se il pulsante qui sopra non funziona, copiate e incollate il seguente URL\n" " nel browser web:" -#: vibes_auth/templates/user_reset_password_email.html:100 +#: engine/vibes_auth/templates/user_reset_password_email.html:100 msgid "" "if you did not send this request, please ignore this\n" " email." @@ -466,22 +474,22 @@ msgstr "" "se non avete inviato questa richiesta, vi preghiamo di ignorare questa\n" " e-mail." -#: vibes_auth/templates/user_reset_password_email.html:102 +#: engine/vibes_auth/templates/user_reset_password_email.html:102 #, python-format msgid "best regards,
The %(project_name)s team" msgstr "Cordiali saluti,
il team %(project_name)s" -#: vibes_auth/templates/user_reset_password_email.html:108 -#: vibes_auth/templates/user_verification_email.html:108 +#: engine/vibes_auth/templates/user_reset_password_email.html:108 +#: engine/vibes_auth/templates/user_verification_email.html:108 msgid "all rights reserved" msgstr "Tutti i diritti riservati" -#: vibes_auth/templates/user_verification_email.html:7 -#: vibes_auth/templates/user_verification_email.html:90 +#: engine/vibes_auth/templates/user_verification_email.html:7 +#: engine/vibes_auth/templates/user_verification_email.html:90 msgid "activate your account" msgstr "Attivare l'account" -#: vibes_auth/templates/user_verification_email.html:92 +#: engine/vibes_auth/templates/user_verification_email.html:92 #, python-format msgid "" "thank you for signing up for %(project_name)s. please activate your account\n" @@ -490,7 +498,7 @@ msgstr "" "Grazie per esservi iscritti a %(project_name)s. Attivate il vostro account " "facendo clic sul pulsante sottostante:" -#: vibes_auth/templates/user_verification_email.html:96 +#: engine/vibes_auth/templates/user_verification_email.html:96 msgid "" "activate\n" " account" @@ -498,22 +506,22 @@ msgstr "" "Attivare\n" " conto" -#: vibes_auth/templates/user_verification_email.html:102 +#: engine/vibes_auth/templates/user_verification_email.html:102 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "Cordiali saluti,
il team %(project_name)s" -#: vibes_auth/utils/emailing.py:23 +#: engine/vibes_auth/utils/emailing.py:23 #, python-brace-format msgid "{config.PROJECT_NAME} | Activate Account" msgstr "{config.PROJECT_NAME} | Attiva l'account" -#: vibes_auth/utils/emailing.py:62 +#: engine/vibes_auth/utils/emailing.py:62 #, python-brace-format msgid "{config.PROJECT_NAME} | Reset Password" msgstr "{config.PROJECT_NAME} | Reimpostare la password" -#: vibes_auth/validators.py:13 +#: engine/vibes_auth/validators.py:13 msgid "" "invalid phone number format. the number must be entered in the format: " "\"+999999999\". up to 15 digits allowed." @@ -521,7 +529,7 @@ msgstr "" "Formato del numero di telefono non valido. Il numero deve essere inserito " "nel formato: \"+999999999\". Sono consentite fino a 15 cifre." -#: vibes_auth/views.py:30 +#: engine/vibes_auth/views.py:30 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 " @@ -537,7 +545,7 @@ msgstr "" "un'adeguata limitazione della velocità per proteggere dagli attacchi brute " "force." -#: vibes_auth/views.py:48 +#: engine/vibes_auth/views.py:48 msgid "" "Handles refreshing of tokens for authentication purposes. This class is used " "to provide functionality for token refresh operations as part of an " @@ -552,7 +560,7 @@ msgstr "" "vista si affida al serializzatore associato per convalidare gli input di " "aggiornamento dei token e produrre output appropriati." -#: vibes_auth/views.py:67 +#: engine/vibes_auth/views.py:67 msgid "" "Represents a view for verifying JSON Web Tokens (JWT) using specific " "serialization and validation logic. " @@ -560,11 +568,11 @@ msgstr "" "Rappresenta una vista per la verifica dei JSON Web Token (JWT), utilizzando " "una specifica logica di serializzazione e validazione." -#: vibes_auth/views.py:80 +#: engine/vibes_auth/views.py:80 msgid "the token is invalid" msgstr "Il token non è valido" -#: vibes_auth/viewsets.py:45 +#: engine/vibes_auth/viewsets.py:45 msgid "" "User view set implementation.\n" "Provides a set of actions that manage user-related data such as creation, " @@ -580,10 +588,10 @@ msgstr "" "elementi visti di recente. Questa classe estende i mixin e GenericViewSet " "per una gestione robusta delle API." -#: vibes_auth/viewsets.py:99 +#: engine/vibes_auth/viewsets.py:99 msgid "password reset successfully" msgstr "La password è stata reimpostata con successo!" -#: vibes_auth/viewsets.py:132 +#: engine/vibes_auth/viewsets.py:132 msgid "account already activated!" msgstr "Avete già attivato l'account..." diff --git a/vibes_auth/locale/ja_JP/LC_MESSAGES/django.mo b/engine/vibes_auth/locale/ja_JP/LC_MESSAGES/django.mo similarity index 66% rename from vibes_auth/locale/ja_JP/LC_MESSAGES/django.mo rename to engine/vibes_auth/locale/ja_JP/LC_MESSAGES/django.mo index 617a8377..36df94d1 100644 Binary files a/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/vibes_auth/locale/ja_JP/LC_MESSAGES/django.po b/engine/vibes_auth/locale/ja_JP/LC_MESSAGES/django.po similarity index 70% rename from vibes_auth/locale/ja_JP/LC_MESSAGES/django.po rename to engine/vibes_auth/locale/ja_JP/LC_MESSAGES/django.po index 5b9c768c..87cecb41 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,259 +13,268 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: vibes_auth/admin.py:39 vibes_auth/admin.py:40 -#: vibes_auth/graphene/object_types.py:46 +#: engine/vibes_auth/admin.py:40 engine/vibes_auth/admin.py:41 +#: engine/vibes_auth/graphene/object_types.py:46 msgid "balance" msgstr "バランス" -#: vibes_auth/admin.py:48 +#: engine/vibes_auth/admin.py:49 msgid "order" msgstr "オーダー" -#: vibes_auth/admin.py:49 vibes_auth/graphene/object_types.py:44 +#: engine/vibes_auth/admin.py:50 engine/vibes_auth/graphene/object_types.py:44 msgid "orders" msgstr "受注状況" -#: vibes_auth/admin.py:59 +#: engine/vibes_auth/admin.py:60 msgid "personal info" msgstr "個人情報" -#: vibes_auth/admin.py:63 vibes_auth/graphene/object_types.py:43 +#: engine/vibes_auth/admin.py:64 engine/vibes_auth/graphene/object_types.py:43 msgid "permissions" msgstr "アクセス許可" -#: vibes_auth/admin.py:76 +#: engine/vibes_auth/admin.py:77 msgid "important dates" msgstr "重要な日程" -#: vibes_auth/admin.py:77 +#: engine/vibes_auth/admin.py:78 msgid "additional info" msgstr "追加情報" -#: vibes_auth/apps.py:8 +#: engine/vibes_auth/admin.py:145 +msgid "Close selected threads" +msgstr "選択したスレッドを閉じる" + +#: engine/vibes_auth/admin.py:149 +msgid "Open selected threads" +msgstr "選択したスレッドを開く" + +#: engine/vibes_auth/apps.py:8 msgid "authentication" msgstr "認証" -#: vibes_auth/docs/drf/views.py:15 +#: engine/vibes_auth/docs/drf/views.py:15 msgid "obtain a token pair" msgstr "トークン・ペアの取得" -#: vibes_auth/docs/drf/views.py:16 +#: engine/vibes_auth/docs/drf/views.py:16 msgid "obtain a token pair (refresh and access) for authentication." msgstr "認証用のトークンペア(リフレッシュとアクセス)を取得する。" -#: vibes_auth/docs/drf/views.py:35 +#: engine/vibes_auth/docs/drf/views.py:35 msgid "refresh a token pair" msgstr "トークン・ペアのリフレッシュ" -#: vibes_auth/docs/drf/views.py:36 +#: engine/vibes_auth/docs/drf/views.py:36 msgid "refresh a token pair (refresh and access)." msgstr "トークン・ペアをリフレッシュする(リフレッシュとアクセス)。" -#: vibes_auth/docs/drf/views.py:55 +#: engine/vibes_auth/docs/drf/views.py:55 msgid "verify a token" msgstr "トークンの検証" -#: vibes_auth/docs/drf/views.py:56 +#: engine/vibes_auth/docs/drf/views.py:56 msgid "Verify a token (refresh or access)." msgstr "トークンを確認する(リフレッシュまたはアクセス)。" -#: vibes_auth/docs/drf/views.py:62 vibes_auth/views.py:78 +#: engine/vibes_auth/docs/drf/views.py:62 engine/vibes_auth/views.py:78 msgid "the token is valid" msgstr "トークンは有効です" -#: vibes_auth/docs/drf/viewsets.py:16 +#: engine/vibes_auth/docs/drf/viewsets.py:16 msgid "create a new user" msgstr "新規ユーザーの作成" -#: vibes_auth/docs/drf/viewsets.py:21 +#: engine/vibes_auth/docs/drf/viewsets.py:21 msgid "retrieve a user's details" msgstr "ユーザーの詳細を取得する" -#: vibes_auth/docs/drf/viewsets.py:25 +#: engine/vibes_auth/docs/drf/viewsets.py:25 msgid "update a user's details" msgstr "ユーザー情報の更新" -#: vibes_auth/docs/drf/viewsets.py:30 +#: engine/vibes_auth/docs/drf/viewsets.py:30 msgid "delete a user" msgstr "ユーザーを削除する" -#: vibes_auth/docs/drf/viewsets.py:34 +#: engine/vibes_auth/docs/drf/viewsets.py:34 msgid "reset a user's password by sending a reset password email" msgstr "パスワード再設定メールを送信して、ユーザーのパスワードを再設定する。" -#: vibes_auth/docs/drf/viewsets.py:39 +#: engine/vibes_auth/docs/drf/viewsets.py:39 msgid "handle avatar upload for a user" msgstr "ユーザーのアバターアップロードを処理する" -#: vibes_auth/docs/drf/viewsets.py:54 +#: engine/vibes_auth/docs/drf/viewsets.py:54 msgid "confirm a user's password reset" msgstr "ユーザーのパスワード・リセットを確認する" -#: vibes_auth/docs/drf/viewsets.py:58 vibes_auth/graphene/mutations.py:320 -#: vibes_auth/serializers.py:105 vibes_auth/serializers.py:109 -#: vibes_auth/viewsets.py:84 +#: engine/vibes_auth/docs/drf/viewsets.py:58 +#: engine/vibes_auth/graphene/mutations.py:320 +#: engine/vibes_auth/serializers.py:105 engine/vibes_auth/serializers.py:109 +#: engine/vibes_auth/viewsets.py:84 msgid "passwords do not match" msgstr "パスワードが一致しない" -#: vibes_auth/docs/drf/viewsets.py:63 +#: engine/vibes_auth/docs/drf/viewsets.py:63 msgid "activate a user's account" msgstr "ユーザーアカウントの有効化" -#: vibes_auth/docs/drf/viewsets.py:67 +#: engine/vibes_auth/docs/drf/viewsets.py:67 msgid "activation link is invalid or account already activated" msgstr "" "アクティベーションリンクが無効であるか、アカウントがすでにアクティベーション" "されています。" -#: vibes_auth/docs/drf/viewsets.py:72 +#: engine/vibes_auth/docs/drf/viewsets.py:72 msgid "merge client-stored recently viewed products" msgstr "クライアントが最近閲覧した商品をマージする" -#: vibes_auth/graphene/mutations.py:41 +#: engine/vibes_auth/graphene/mutations.py:41 msgid "the user's b64-encoded uuid who referred the new user to us." msgstr "新規ユーザーを紹介したユーザーのb64エンコードされたuuid。" -#: vibes_auth/graphene/mutations.py:61 +#: engine/vibes_auth/graphene/mutations.py:61 msgid "password too weak" msgstr "パスワードが弱すぎる" -#: vibes_auth/graphene/mutations.py:110 +#: engine/vibes_auth/graphene/mutations.py:110 #, python-brace-format msgid "{name} does not exist: {uuid}" msgstr "{name}は存在しません:{uuid}が存在しません!" -#: vibes_auth/graphene/mutations.py:120 +#: engine/vibes_auth/graphene/mutations.py:120 msgid "malformed email" msgstr "不正な電子メール" -#: vibes_auth/graphene/mutations.py:127 vibes_auth/serializers.py:115 +#: engine/vibes_auth/graphene/mutations.py:127 +#: engine/vibes_auth/serializers.py:115 #, python-brace-format msgid "malformed phone number: {phone_number}" msgstr "電話番号が不正です:{phone_number}!" -#: vibes_auth/graphene/mutations.py:149 +#: engine/vibes_auth/graphene/mutations.py:149 #, python-brace-format msgid "Invalid attribute format: {attribute_pair}" msgstr "無効な属性形式です:{attribute_pair}です!" -#: vibes_auth/graphene/mutations.py:273 vibes_auth/viewsets.py:127 -#: vibes_auth/viewsets.py:146 +#: engine/vibes_auth/graphene/mutations.py:273 +#: engine/vibes_auth/viewsets.py:127 engine/vibes_auth/viewsets.py:146 msgid "activation link is invalid!" msgstr "アクティベーションリンクが無効です!" -#: vibes_auth/graphene/mutations.py:276 +#: engine/vibes_auth/graphene/mutations.py:276 msgid "account already activated..." msgstr "アカウントはすでに有効になっています..." -#: vibes_auth/graphene/mutations.py:283 vibes_auth/graphene/mutations.py:339 +#: engine/vibes_auth/graphene/mutations.py:283 +#: engine/vibes_auth/graphene/mutations.py:339 msgid "something went wrong: {e!s}" msgstr "何かが間違っていた:{e!s}" -#: vibes_auth/graphene/mutations.py:327 vibes_auth/viewsets.py:95 +#: engine/vibes_auth/graphene/mutations.py:327 engine/vibes_auth/viewsets.py:95 msgid "token is invalid!" msgstr "トークンが無効です!" -#: vibes_auth/graphene/object_types.py:40 +#: engine/vibes_auth/graphene/object_types.py:40 msgid "" "the products this user has viewed most recently (max 48), in reverse‐" "chronological order" msgstr "このユーザーが最近閲覧した商品(最大48件)を逆順に表示します。" -#: vibes_auth/graphene/object_types.py:42 vibes_auth/models.py:132 +#: engine/vibes_auth/graphene/object_types.py:42 +#: engine/vibes_auth/models.py:123 msgid "groups" msgstr "グループ" -#: vibes_auth/graphene/object_types.py:45 +#: engine/vibes_auth/graphene/object_types.py:45 msgid "wishlist" msgstr "ウィッシュリスト" -#: vibes_auth/graphene/object_types.py:47 vibes_auth/models.py:58 +#: engine/vibes_auth/graphene/object_types.py:47 engine/vibes_auth/models.py:59 msgid "avatar" msgstr "アバター" -#: vibes_auth/graphene/object_types.py:48 +#: engine/vibes_auth/graphene/object_types.py:48 msgid "attributes may be used to store custom data" msgstr "属性は、カスタム・データを保存するために使用することができる。" -#: vibes_auth/graphene/object_types.py:49 +#: engine/vibes_auth/graphene/object_types.py:50 #, python-brace-format -msgid "language is one of the {LANGUAGES} with default {LANGUAGE_CODE}" -msgstr "言語は {LANGUAGES} のいずれかで、デフォルトは {LANGUAGE_CODE} です。" +msgid "" +"language is one of the {settings.LANGUAGES} with default {settings." +"LANGUAGE_CODE}" +msgstr "" +"言語は {settings.LANGUAGES} のいずれかで、デフォルトは {settings." +"LANGUAGE_CODE} です。" -#: vibes_auth/graphene/object_types.py:50 +#: engine/vibes_auth/graphene/object_types.py:52 msgid "address set" msgstr "住所" -#: vibes_auth/messaging/admin.py:36 -msgid "Close selected threads" -msgstr "選択したスレッドを閉じる" - -#: vibes_auth/messaging/admin.py:40 -msgid "Open selected threads" -msgstr "選択したスレッドを開く" - -#: vibes_auth/messaging/models.py:24 +#: engine/vibes_auth/messaging/models.py:24 msgid "Open" msgstr "オープン" -#: vibes_auth/messaging/models.py:25 +#: engine/vibes_auth/messaging/models.py:25 msgid "Closed" msgstr "クローズド" -#: vibes_auth/messaging/models.py:29 +#: engine/vibes_auth/messaging/models.py:29 msgid "User" msgstr "ユーザー" -#: vibes_auth/messaging/models.py:30 +#: engine/vibes_auth/messaging/models.py:30 msgid "Staff" msgstr "スタッフ" -#: vibes_auth/messaging/models.py:31 +#: engine/vibes_auth/messaging/models.py:31 msgid "System" msgstr "システム" -#: vibes_auth/messaging/models.py:36 +#: engine/vibes_auth/messaging/models.py:36 msgid "For anonymous threads" msgstr "匿名スレッドの場合" -#: vibes_auth/messaging/models.py:50 +#: engine/vibes_auth/messaging/models.py:50 msgid "Chat thread" msgstr "チャットスレッド" -#: vibes_auth/messaging/models.py:51 +#: engine/vibes_auth/messaging/models.py:51 msgid "Chat threads" msgstr "チャットスレッド" -#: vibes_auth/messaging/models.py:56 +#: engine/vibes_auth/messaging/models.py:56 msgid "Provide user or email for anonymous thread." msgstr "匿名スレッドにユーザー名または電子メールを入力してください。" -#: vibes_auth/messaging/models.py:58 vibes_auth/messaging/services.py:133 +#: engine/vibes_auth/messaging/models.py:58 +#: engine/vibes_auth/messaging/services.py:132 msgid "Assignee must be a staff user." msgstr "担当者はスタッフユーザーでなければなりません。" -#: vibes_auth/messaging/models.py:74 +#: engine/vibes_auth/messaging/models.py:74 msgid "Chat message" msgstr "チャットメッセージ" -#: vibes_auth/messaging/models.py:75 +#: engine/vibes_auth/messaging/models.py:75 msgid "Chat messages" msgstr "チャットメッセージ" -#: vibes_auth/messaging/services.py:48 +#: engine/vibes_auth/messaging/services.py:47 msgid "Valid email is required for anonymous chats." msgstr "匿名チャットには有効なEメールが必要です。" -#: vibes_auth/messaging/services.py:56 +#: engine/vibes_auth/messaging/services.py:55 msgid "Message must be 1..1028 characters." msgstr "メッセージは1〜1028文字でなければならない。" -#: vibes_auth/messaging/services.py:90 +#: engine/vibes_auth/messaging/services.py:89 msgid "We're searching for the operator to answer you already, hold by!" msgstr "今、オペレーターを探しているところです!" -#: vibes_auth/models.py:30 +#: engine/vibes_auth/models.py:31 msgid "" "Represents a User entity with customized fields and methods for extended " "functionality. This class extends the AbstractUser model and integrates " @@ -282,152 +291,152 @@ msgstr "" "するためのトークンベースのアクティベーションも提供します。Userモデルは、ユー" "ザ管理を強化するための特定のユースケースを扱うように設計されています。" -#: vibes_auth/models.py:41 +#: engine/vibes_auth/models.py:42 msgid "email" msgstr "電子メール" -#: vibes_auth/models.py:41 +#: engine/vibes_auth/models.py:42 msgid "user email address" msgstr "ユーザーのメールアドレス" -#: vibes_auth/models.py:43 +#: engine/vibes_auth/models.py:44 msgid "phone_number" msgstr "電話番号" -#: vibes_auth/models.py:48 +#: engine/vibes_auth/models.py:49 msgid "user phone number" msgstr "ユーザー電話番号" -#: vibes_auth/models.py:54 +#: engine/vibes_auth/models.py:55 msgid "first_name" msgstr "名前" -#: vibes_auth/models.py:55 +#: engine/vibes_auth/models.py:56 msgid "last_name" msgstr "姓" -#: vibes_auth/models.py:61 +#: engine/vibes_auth/models.py:62 msgid "user profile image" msgstr "ユーザープロフィール画像" -#: vibes_auth/models.py:66 +#: engine/vibes_auth/models.py:67 msgid "is verified" msgstr "確認済み" -#: vibes_auth/models.py:67 +#: engine/vibes_auth/models.py:68 msgid "user verification status" msgstr "ユーザーの認証状況" -#: vibes_auth/models.py:70 +#: engine/vibes_auth/models.py:71 msgid "is_active" msgstr "アクティブ" -#: vibes_auth/models.py:72 +#: engine/vibes_auth/models.py:73 msgid "unselect this instead of deleting accounts" msgstr "アカウントを削除する代わりに、この選択を解除する" -#: vibes_auth/models.py:75 +#: engine/vibes_auth/models.py:76 msgid "is_subscribed" msgstr "購読中" -#: vibes_auth/models.py:75 +#: engine/vibes_auth/models.py:76 msgid "user's newsletter subscription status" msgstr "ユーザーのニュースレター購読状況" -#: vibes_auth/models.py:78 +#: engine/vibes_auth/models.py:79 msgid "activation token" msgstr "アクティベーション・トークン" -#: vibes_auth/models.py:80 +#: engine/vibes_auth/models.py:83 msgid "attributes" msgstr "属性" -#: vibes_auth/models.py:110 +#: engine/vibes_auth/models.py:115 msgid "user" msgstr "ユーザー" -#: vibes_auth/models.py:111 +#: engine/vibes_auth/models.py:116 msgid "users" msgstr "ユーザー" -#: vibes_auth/models.py:131 +#: engine/vibes_auth/models.py:122 msgid "group" msgstr "グループ" -#: vibes_auth/models.py:148 +#: engine/vibes_auth/models.py:129 msgid "outstanding token" msgstr "卓越したトークン" -#: vibes_auth/models.py:149 +#: engine/vibes_auth/models.py:130 msgid "outstanding tokens" msgstr "トークン残高" -#: vibes_auth/models.py:167 +#: engine/vibes_auth/models.py:136 msgid "blacklisted token" msgstr "ブラックリストトークン" -#: vibes_auth/models.py:168 +#: engine/vibes_auth/models.py:137 msgid "blacklisted tokens" msgstr "ブラックリストに載ったトークン" -#: vibes_auth/serializers.py:99 +#: engine/vibes_auth/serializers.py:99 msgid "attributes must be a dictionary" msgstr "attributes`は辞書でなければならない。" -#: vibes_auth/serializers.py:101 +#: engine/vibes_auth/serializers.py:101 msgid "business identificator is required when registering as a business" msgstr "事業者登録の際には、事業者識別情報が必要です。" -#: vibes_auth/serializers.py:121 +#: engine/vibes_auth/serializers.py:121 #, python-brace-format msgid "malformed email: {email}" msgstr "不正な電子メール:{email}" -#: vibes_auth/serializers.py:142 vibes_auth/serializers.py:164 -#: vibes_auth/serializers.py:186 vibes_auth/serializers.py:198 +#: engine/vibes_auth/serializers.py:142 engine/vibes_auth/serializers.py:164 +#: engine/vibes_auth/serializers.py:184 engine/vibes_auth/serializers.py:194 msgid "no active account" msgstr "アクティブなアカウントが見つかりません" -#: vibes_auth/serializers.py:174 +#: engine/vibes_auth/serializers.py:174 msgid "must set token_class attribute on class." msgstr "クラスにtoken_class属性を設定する必要があります!" -#: vibes_auth/serializers.py:246 +#: engine/vibes_auth/serializers.py:240 msgid "token_blacklisted" msgstr "トークンのブラックリスト入り" -#: vibes_auth/serializers.py:251 +#: engine/vibes_auth/serializers.py:245 msgid "invalid token" msgstr "無効なトークン" -#: vibes_auth/serializers.py:257 +#: engine/vibes_auth/serializers.py:251 msgid "no user uuid claim present in token" msgstr "トークンにユーザー uuid クレームが存在しない" -#: vibes_auth/serializers.py:259 +#: engine/vibes_auth/serializers.py:253 msgid "user does not exist" msgstr "ユーザーが存在しない" -#: vibes_auth/templates/user_reset_password_email.html:7 +#: engine/vibes_auth/templates/user_reset_password_email.html:7 msgid "reset your password" msgstr "パスワードのリセット" -#: vibes_auth/templates/user_reset_password_email.html:85 -#: vibes_auth/templates/user_verification_email.html:85 +#: engine/vibes_auth/templates/user_reset_password_email.html:85 +#: engine/vibes_auth/templates/user_verification_email.html:85 msgid "logo" msgstr "ロゴ" -#: vibes_auth/templates/user_reset_password_email.html:90 +#: engine/vibes_auth/templates/user_reset_password_email.html:90 msgid "password reset confirmation" msgstr "パスワード再設定確認" -#: vibes_auth/templates/user_reset_password_email.html:91 -#: vibes_auth/templates/user_verification_email.html:91 +#: engine/vibes_auth/templates/user_reset_password_email.html:91 +#: engine/vibes_auth/templates/user_verification_email.html:91 #, python-format msgid "hello %(user_first_name)s," msgstr "こんにちは %(user_first_name)s," -#: vibes_auth/templates/user_reset_password_email.html:92 +#: 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" @@ -436,12 +445,12 @@ msgstr "" "パスワードの再設定依頼が届いております。以下のボタンをクリックして、パスワー" "ドをリセットしてください:" -#: vibes_auth/templates/user_reset_password_email.html:95 +#: engine/vibes_auth/templates/user_reset_password_email.html:95 msgid "reset password" msgstr "パスワードのリセット" -#: vibes_auth/templates/user_reset_password_email.html:97 -#: vibes_auth/templates/user_verification_email.html:99 +#: engine/vibes_auth/templates/user_reset_password_email.html:97 +#: engine/vibes_auth/templates/user_verification_email.html:99 msgid "" "if the button above does not work, please copy and paste the following URL\n" " into your web browser:" @@ -450,7 +459,7 @@ msgstr "" "ください。\n" " をウェブブラウザに貼り付けてください:" -#: vibes_auth/templates/user_reset_password_email.html:100 +#: engine/vibes_auth/templates/user_reset_password_email.html:100 msgid "" "if you did not send this request, please ignore this\n" " email." @@ -458,22 +467,22 @@ msgstr "" "このリクエストを送信していない場合は、このメールを無視してください。\n" " 電子メールをお送りください。" -#: vibes_auth/templates/user_reset_password_email.html:102 +#: engine/vibes_auth/templates/user_reset_password_email.html:102 #, python-format msgid "best regards,
The %(project_name)s team" msgstr "よろしくお願いします、
%(project_name)sチーム" -#: vibes_auth/templates/user_reset_password_email.html:108 -#: vibes_auth/templates/user_verification_email.html:108 +#: engine/vibes_auth/templates/user_reset_password_email.html:108 +#: engine/vibes_auth/templates/user_verification_email.html:108 msgid "all rights reserved" msgstr "無断複写・転載を禁じます。" -#: vibes_auth/templates/user_verification_email.html:7 -#: vibes_auth/templates/user_verification_email.html:90 +#: engine/vibes_auth/templates/user_verification_email.html:7 +#: engine/vibes_auth/templates/user_verification_email.html:90 msgid "activate your account" msgstr "アカウントの有効化" -#: vibes_auth/templates/user_verification_email.html:92 +#: engine/vibes_auth/templates/user_verification_email.html:92 #, python-format msgid "" "thank you for signing up for %(project_name)s. please activate your account\n" @@ -482,7 +491,7 @@ msgstr "" "%(project_name)sにご登録いただきありがとうございます。下のボタンをクリックし" "てアカウントを有効にしてください:" -#: vibes_auth/templates/user_verification_email.html:96 +#: engine/vibes_auth/templates/user_verification_email.html:96 msgid "" "activate\n" " account" @@ -490,22 +499,22 @@ msgstr "" "アクティベート\n" " アカウント" -#: vibes_auth/templates/user_verification_email.html:102 +#: engine/vibes_auth/templates/user_verification_email.html:102 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "よろしくお願いします、
%(project_name)sチーム" -#: vibes_auth/utils/emailing.py:23 +#: engine/vibes_auth/utils/emailing.py:23 #, python-brace-format msgid "{config.PROJECT_NAME} | Activate Account" msgstr "{config.PROJECT_NAME}| アカウントの有効化| アカウントの有効化" -#: vibes_auth/utils/emailing.py:62 +#: engine/vibes_auth/utils/emailing.py:62 #, python-brace-format msgid "{config.PROJECT_NAME} | Reset Password" msgstr "{config.PROJECT_NAME} | パスワードのリセット" -#: vibes_auth/validators.py:13 +#: engine/vibes_auth/validators.py:13 msgid "" "invalid phone number format. the number must be entered in the format: " "\"+999999999\". up to 15 digits allowed." @@ -513,7 +522,7 @@ msgstr "" "電話番号の形式が無効です。電話番号は次の形式で入力してください:" "\"+999999999\".15桁まで入力可能です。" -#: vibes_auth/views.py:30 +#: engine/vibes_auth/views.py:30 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 " @@ -527,7 +536,7 @@ msgstr "" "スの認証を処理するプロセスを管理します。ベースのトークンビューの上に構築さ" "れ、ブルートフォース攻撃から保護するために適切なレート制限を保証します。" -#: vibes_auth/views.py:48 +#: engine/vibes_auth/views.py:48 msgid "" "Handles refreshing of tokens for authentication purposes. This class is used " "to provide functionality for token refresh operations as part of an " @@ -541,7 +550,7 @@ msgstr "" "求できるようにします。ビューは、トークン更新の入力を検証して適切な出力を行う" "ために、 関連するシリアライザに依存します。" -#: vibes_auth/views.py:67 +#: engine/vibes_auth/views.py:67 msgid "" "Represents a view for verifying JSON Web Tokens (JWT) using specific " "serialization and validation logic. " @@ -549,11 +558,11 @@ msgstr "" "特定のシリアライズと検証ロジックを使用して JSON ウェブトークン (JWT) を検証す" "るビューを表します。" -#: vibes_auth/views.py:80 +#: engine/vibes_auth/views.py:80 msgid "the token is invalid" msgstr "トークンが無効" -#: vibes_auth/viewsets.py:45 +#: engine/vibes_auth/viewsets.py:45 msgid "" "User view set implementation.\n" "Provides a set of actions that manage user-related data such as creation, " @@ -567,10 +576,10 @@ msgstr "" "関連のデータを管理するアクションのセットを提供します。このクラスは、堅牢なAPI" "ハンドリングのためにミキシンとGenericViewSetを拡張します。" -#: vibes_auth/viewsets.py:99 +#: engine/vibes_auth/viewsets.py:99 msgid "password reset successfully" msgstr "パスワードのリセットに成功しました!" -#: vibes_auth/viewsets.py:132 +#: engine/vibes_auth/viewsets.py:132 msgid "account already activated!" msgstr "あなたはすでにアカウントを有効にしています..." diff --git a/engine/vibes_auth/locale/kk_KZ/LC_MESSAGES/django.mo b/engine/vibes_auth/locale/kk_KZ/LC_MESSAGES/django.mo new file mode 100644 index 00000000..7640ce00 Binary files /dev/null and b/engine/vibes_auth/locale/kk_KZ/LC_MESSAGES/django.mo differ diff --git a/vibes_auth/locale/hi_IN/LC_MESSAGES/django.po b/engine/vibes_auth/locale/kk_KZ/LC_MESSAGES/django.po similarity index 55% rename from vibes_auth/locale/hi_IN/LC_MESSAGES/django.po rename to engine/vibes_auth/locale/kk_KZ/LC_MESSAGES/django.po index 30e7f518..e450cc7f 100644 --- a/vibes_auth/locale/hi_IN/LC_MESSAGES/django.po +++ b/engine/vibes_auth/locale/kk_KZ/LC_MESSAGES/django.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: EVIBES 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -16,257 +16,264 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: vibes_auth/admin.py:39 vibes_auth/admin.py:40 -#: vibes_auth/graphene/object_types.py:46 +#: engine/vibes_auth/admin.py:40 engine/vibes_auth/admin.py:41 +#: engine/vibes_auth/graphene/object_types.py:46 msgid "balance" msgstr "" -#: vibes_auth/admin.py:48 +#: engine/vibes_auth/admin.py:49 msgid "order" msgstr "" -#: vibes_auth/admin.py:49 vibes_auth/graphene/object_types.py:44 +#: engine/vibes_auth/admin.py:50 engine/vibes_auth/graphene/object_types.py:44 msgid "orders" msgstr "" -#: vibes_auth/admin.py:59 +#: engine/vibes_auth/admin.py:60 msgid "personal info" msgstr "" -#: vibes_auth/admin.py:63 vibes_auth/graphene/object_types.py:43 +#: engine/vibes_auth/admin.py:64 engine/vibes_auth/graphene/object_types.py:43 msgid "permissions" msgstr "" -#: vibes_auth/admin.py:76 +#: engine/vibes_auth/admin.py:77 msgid "important dates" msgstr "" -#: vibes_auth/admin.py:77 +#: engine/vibes_auth/admin.py:78 msgid "additional info" msgstr "" -#: vibes_auth/apps.py:8 +#: engine/vibes_auth/admin.py:145 +msgid "Close selected threads" +msgstr "" + +#: engine/vibes_auth/admin.py:149 +msgid "Open selected threads" +msgstr "" + +#: engine/vibes_auth/apps.py:8 msgid "authentication" msgstr "" -#: vibes_auth/docs/drf/views.py:15 +#: engine/vibes_auth/docs/drf/views.py:15 msgid "obtain a token pair" msgstr "" -#: vibes_auth/docs/drf/views.py:16 +#: engine/vibes_auth/docs/drf/views.py:16 msgid "obtain a token pair (refresh and access) for authentication." msgstr "" -#: vibes_auth/docs/drf/views.py:35 +#: engine/vibes_auth/docs/drf/views.py:35 msgid "refresh a token pair" msgstr "" -#: vibes_auth/docs/drf/views.py:36 +#: engine/vibes_auth/docs/drf/views.py:36 msgid "refresh a token pair (refresh and access)." msgstr "" -#: vibes_auth/docs/drf/views.py:55 +#: engine/vibes_auth/docs/drf/views.py:55 msgid "verify a token" msgstr "" -#: vibes_auth/docs/drf/views.py:56 +#: engine/vibes_auth/docs/drf/views.py:56 msgid "Verify a token (refresh or access)." msgstr "" -#: vibes_auth/docs/drf/views.py:62 vibes_auth/views.py:78 +#: engine/vibes_auth/docs/drf/views.py:62 engine/vibes_auth/views.py:78 msgid "the token is valid" msgstr "" -#: vibes_auth/docs/drf/viewsets.py:16 +#: engine/vibes_auth/docs/drf/viewsets.py:16 msgid "create a new user" msgstr "" -#: vibes_auth/docs/drf/viewsets.py:21 +#: engine/vibes_auth/docs/drf/viewsets.py:21 msgid "retrieve a user's details" msgstr "" -#: vibes_auth/docs/drf/viewsets.py:25 +#: engine/vibes_auth/docs/drf/viewsets.py:25 msgid "update a user's details" msgstr "" -#: vibes_auth/docs/drf/viewsets.py:30 +#: engine/vibes_auth/docs/drf/viewsets.py:30 msgid "delete a user" msgstr "" -#: vibes_auth/docs/drf/viewsets.py:34 +#: engine/vibes_auth/docs/drf/viewsets.py:34 msgid "reset a user's password by sending a reset password email" msgstr "" -#: vibes_auth/docs/drf/viewsets.py:39 +#: engine/vibes_auth/docs/drf/viewsets.py:39 msgid "handle avatar upload for a user" msgstr "" -#: vibes_auth/docs/drf/viewsets.py:54 +#: engine/vibes_auth/docs/drf/viewsets.py:54 msgid "confirm a user's password reset" msgstr "" -#: vibes_auth/docs/drf/viewsets.py:58 vibes_auth/graphene/mutations.py:320 -#: vibes_auth/serializers.py:105 vibes_auth/serializers.py:109 -#: vibes_auth/viewsets.py:84 +#: engine/vibes_auth/docs/drf/viewsets.py:58 +#: engine/vibes_auth/graphene/mutations.py:320 +#: engine/vibes_auth/serializers.py:105 engine/vibes_auth/serializers.py:109 +#: engine/vibes_auth/viewsets.py:84 msgid "passwords do not match" msgstr "" -#: vibes_auth/docs/drf/viewsets.py:63 +#: engine/vibes_auth/docs/drf/viewsets.py:63 msgid "activate a user's account" msgstr "" -#: vibes_auth/docs/drf/viewsets.py:67 +#: engine/vibes_auth/docs/drf/viewsets.py:67 msgid "activation link is invalid or account already activated" msgstr "" -#: vibes_auth/docs/drf/viewsets.py:72 +#: engine/vibes_auth/docs/drf/viewsets.py:72 msgid "merge client-stored recently viewed products" msgstr "" -#: vibes_auth/graphene/mutations.py:41 +#: engine/vibes_auth/graphene/mutations.py:41 msgid "the user's b64-encoded uuid who referred the new user to us." msgstr "" -#: vibes_auth/graphene/mutations.py:61 +#: engine/vibes_auth/graphene/mutations.py:61 msgid "password too weak" msgstr "" -#: vibes_auth/graphene/mutations.py:110 +#: engine/vibes_auth/graphene/mutations.py:110 #, python-brace-format msgid "{name} does not exist: {uuid}" msgstr "" -#: vibes_auth/graphene/mutations.py:120 +#: engine/vibes_auth/graphene/mutations.py:120 msgid "malformed email" msgstr "" -#: vibes_auth/graphene/mutations.py:127 vibes_auth/serializers.py:115 +#: engine/vibes_auth/graphene/mutations.py:127 +#: engine/vibes_auth/serializers.py:115 #, python-brace-format msgid "malformed phone number: {phone_number}" msgstr "" -#: vibes_auth/graphene/mutations.py:149 +#: engine/vibes_auth/graphene/mutations.py:149 #, python-brace-format msgid "Invalid attribute format: {attribute_pair}" msgstr "" -#: vibes_auth/graphene/mutations.py:273 vibes_auth/viewsets.py:127 -#: vibes_auth/viewsets.py:146 +#: engine/vibes_auth/graphene/mutations.py:273 +#: engine/vibes_auth/viewsets.py:127 engine/vibes_auth/viewsets.py:146 msgid "activation link is invalid!" msgstr "" -#: vibes_auth/graphene/mutations.py:276 +#: engine/vibes_auth/graphene/mutations.py:276 msgid "account already activated..." msgstr "" -#: vibes_auth/graphene/mutations.py:283 vibes_auth/graphene/mutations.py:339 +#: engine/vibes_auth/graphene/mutations.py:283 +#: engine/vibes_auth/graphene/mutations.py:339 msgid "something went wrong: {e!s}" msgstr "" -#: vibes_auth/graphene/mutations.py:327 vibes_auth/viewsets.py:95 +#: engine/vibes_auth/graphene/mutations.py:327 engine/vibes_auth/viewsets.py:95 msgid "token is invalid!" msgstr "" -#: vibes_auth/graphene/object_types.py:40 +#: engine/vibes_auth/graphene/object_types.py:40 msgid "" "the products this user has viewed most recently (max 48), in reverse‐" "chronological order" msgstr "" -#: vibes_auth/graphene/object_types.py:42 vibes_auth/models.py:132 +#: engine/vibes_auth/graphene/object_types.py:42 +#: engine/vibes_auth/models.py:123 msgid "groups" msgstr "" -#: vibes_auth/graphene/object_types.py:45 +#: engine/vibes_auth/graphene/object_types.py:45 msgid "wishlist" msgstr "" -#: vibes_auth/graphene/object_types.py:47 vibes_auth/models.py:58 +#: engine/vibes_auth/graphene/object_types.py:47 engine/vibes_auth/models.py:59 msgid "avatar" msgstr "" -#: vibes_auth/graphene/object_types.py:48 +#: engine/vibes_auth/graphene/object_types.py:48 msgid "attributes may be used to store custom data" msgstr "" -#: vibes_auth/graphene/object_types.py:49 +#: engine/vibes_auth/graphene/object_types.py:50 #, python-brace-format -msgid "language is one of the {LANGUAGES} with default {LANGUAGE_CODE}" +msgid "" +"language is one of the {settings.LANGUAGES} with default {settings." +"LANGUAGE_CODE}" msgstr "" -#: vibes_auth/graphene/object_types.py:50 +#: engine/vibes_auth/graphene/object_types.py:52 msgid "address set" msgstr "" -#: vibes_auth/messaging/admin.py:36 -msgid "Close selected threads" -msgstr "" - -#: vibes_auth/messaging/admin.py:40 -msgid "Open selected threads" -msgstr "" - -#: vibes_auth/messaging/models.py:24 +#: engine/vibes_auth/messaging/models.py:24 msgid "Open" msgstr "" -#: vibes_auth/messaging/models.py:25 +#: engine/vibes_auth/messaging/models.py:25 msgid "Closed" msgstr "" -#: vibes_auth/messaging/models.py:29 +#: engine/vibes_auth/messaging/models.py:29 msgid "User" msgstr "" -#: vibes_auth/messaging/models.py:30 +#: engine/vibes_auth/messaging/models.py:30 msgid "Staff" msgstr "" -#: vibes_auth/messaging/models.py:31 +#: engine/vibes_auth/messaging/models.py:31 msgid "System" msgstr "" -#: vibes_auth/messaging/models.py:36 +#: engine/vibes_auth/messaging/models.py:36 msgid "For anonymous threads" msgstr "" -#: vibes_auth/messaging/models.py:50 +#: engine/vibes_auth/messaging/models.py:50 msgid "Chat thread" msgstr "" -#: vibes_auth/messaging/models.py:51 +#: engine/vibes_auth/messaging/models.py:51 msgid "Chat threads" msgstr "" -#: vibes_auth/messaging/models.py:56 +#: engine/vibes_auth/messaging/models.py:56 msgid "Provide user or email for anonymous thread." msgstr "" -#: vibes_auth/messaging/models.py:58 vibes_auth/messaging/services.py:133 +#: engine/vibes_auth/messaging/models.py:58 +#: engine/vibes_auth/messaging/services.py:132 msgid "Assignee must be a staff user." msgstr "" -#: vibes_auth/messaging/models.py:74 +#: engine/vibes_auth/messaging/models.py:74 msgid "Chat message" msgstr "" -#: vibes_auth/messaging/models.py:75 +#: engine/vibes_auth/messaging/models.py:75 msgid "Chat messages" msgstr "" -#: vibes_auth/messaging/services.py:48 +#: engine/vibes_auth/messaging/services.py:47 msgid "Valid email is required for anonymous chats." msgstr "" -#: vibes_auth/messaging/services.py:56 +#: engine/vibes_auth/messaging/services.py:55 msgid "Message must be 1..1028 characters." msgstr "" -#: vibes_auth/messaging/services.py:90 +#: engine/vibes_auth/messaging/services.py:89 msgid "We're searching for the operator to answer you already, hold by!" msgstr "" -#: vibes_auth/models.py:30 +#: engine/vibes_auth/models.py:31 msgid "" "Represents a User entity with customized fields and methods for extended " "functionality. This class extends the AbstractUser model and integrates " @@ -277,225 +284,225 @@ msgid "" "for enhanced user management." msgstr "" -#: vibes_auth/models.py:41 +#: engine/vibes_auth/models.py:42 msgid "email" msgstr "" -#: vibes_auth/models.py:41 +#: engine/vibes_auth/models.py:42 msgid "user email address" msgstr "" -#: vibes_auth/models.py:43 +#: engine/vibes_auth/models.py:44 msgid "phone_number" msgstr "" -#: vibes_auth/models.py:48 +#: engine/vibes_auth/models.py:49 msgid "user phone number" msgstr "" -#: vibes_auth/models.py:54 +#: engine/vibes_auth/models.py:55 msgid "first_name" msgstr "" -#: vibes_auth/models.py:55 +#: engine/vibes_auth/models.py:56 msgid "last_name" msgstr "" -#: vibes_auth/models.py:61 +#: engine/vibes_auth/models.py:62 msgid "user profile image" msgstr "" -#: vibes_auth/models.py:66 +#: engine/vibes_auth/models.py:67 msgid "is verified" msgstr "" -#: vibes_auth/models.py:67 +#: engine/vibes_auth/models.py:68 msgid "user verification status" msgstr "" -#: vibes_auth/models.py:70 +#: engine/vibes_auth/models.py:71 msgid "is_active" msgstr "" -#: vibes_auth/models.py:72 +#: engine/vibes_auth/models.py:73 msgid "unselect this instead of deleting accounts" msgstr "" -#: vibes_auth/models.py:75 +#: engine/vibes_auth/models.py:76 msgid "is_subscribed" msgstr "" -#: vibes_auth/models.py:75 +#: engine/vibes_auth/models.py:76 msgid "user's newsletter subscription status" msgstr "" -#: vibes_auth/models.py:78 +#: engine/vibes_auth/models.py:79 msgid "activation token" msgstr "" -#: vibes_auth/models.py:80 +#: engine/vibes_auth/models.py:83 msgid "attributes" msgstr "" -#: vibes_auth/models.py:110 +#: engine/vibes_auth/models.py:115 msgid "user" msgstr "" -#: vibes_auth/models.py:111 +#: engine/vibes_auth/models.py:116 msgid "users" msgstr "" -#: vibes_auth/models.py:131 +#: engine/vibes_auth/models.py:122 msgid "group" msgstr "" -#: vibes_auth/models.py:148 +#: engine/vibes_auth/models.py:129 msgid "outstanding token" msgstr "" -#: vibes_auth/models.py:149 +#: engine/vibes_auth/models.py:130 msgid "outstanding tokens" msgstr "" -#: vibes_auth/models.py:167 +#: engine/vibes_auth/models.py:136 msgid "blacklisted token" msgstr "" -#: vibes_auth/models.py:168 +#: engine/vibes_auth/models.py:137 msgid "blacklisted tokens" msgstr "" -#: vibes_auth/serializers.py:99 +#: engine/vibes_auth/serializers.py:99 msgid "attributes must be a dictionary" msgstr "" -#: vibes_auth/serializers.py:101 +#: engine/vibes_auth/serializers.py:101 msgid "business identificator is required when registering as a business" msgstr "" -#: vibes_auth/serializers.py:121 +#: engine/vibes_auth/serializers.py:121 #, python-brace-format msgid "malformed email: {email}" msgstr "" -#: vibes_auth/serializers.py:142 vibes_auth/serializers.py:164 -#: vibes_auth/serializers.py:186 vibes_auth/serializers.py:198 +#: engine/vibes_auth/serializers.py:142 engine/vibes_auth/serializers.py:164 +#: engine/vibes_auth/serializers.py:184 engine/vibes_auth/serializers.py:194 msgid "no active account" msgstr "" -#: vibes_auth/serializers.py:174 +#: engine/vibes_auth/serializers.py:174 msgid "must set token_class attribute on class." msgstr "" -#: vibes_auth/serializers.py:246 +#: engine/vibes_auth/serializers.py:240 msgid "token_blacklisted" msgstr "" -#: vibes_auth/serializers.py:251 +#: engine/vibes_auth/serializers.py:245 msgid "invalid token" msgstr "" -#: vibes_auth/serializers.py:257 +#: engine/vibes_auth/serializers.py:251 msgid "no user uuid claim present in token" msgstr "" -#: vibes_auth/serializers.py:259 +#: engine/vibes_auth/serializers.py:253 msgid "user does not exist" msgstr "" -#: vibes_auth/templates/user_reset_password_email.html:7 +#: engine/vibes_auth/templates/user_reset_password_email.html:7 msgid "reset your password" msgstr "" -#: vibes_auth/templates/user_reset_password_email.html:85 -#: vibes_auth/templates/user_verification_email.html:85 +#: engine/vibes_auth/templates/user_reset_password_email.html:85 +#: engine/vibes_auth/templates/user_verification_email.html:85 msgid "logo" msgstr "" -#: vibes_auth/templates/user_reset_password_email.html:90 +#: engine/vibes_auth/templates/user_reset_password_email.html:90 msgid "password reset confirmation" msgstr "" -#: vibes_auth/templates/user_reset_password_email.html:91 -#: vibes_auth/templates/user_verification_email.html:91 +#: engine/vibes_auth/templates/user_reset_password_email.html:91 +#: engine/vibes_auth/templates/user_verification_email.html:91 #, python-format msgid "hello %(user_first_name)s," msgstr "" -#: vibes_auth/templates/user_reset_password_email.html:92 +#: 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" " by clicking the button below:" msgstr "" -#: vibes_auth/templates/user_reset_password_email.html:95 +#: engine/vibes_auth/templates/user_reset_password_email.html:95 msgid "reset password" msgstr "" -#: vibes_auth/templates/user_reset_password_email.html:97 -#: vibes_auth/templates/user_verification_email.html:99 +#: engine/vibes_auth/templates/user_reset_password_email.html:97 +#: engine/vibes_auth/templates/user_verification_email.html:99 msgid "" "if the button above does not work, please copy and paste the following URL\n" " into your web browser:" msgstr "" -#: vibes_auth/templates/user_reset_password_email.html:100 +#: engine/vibes_auth/templates/user_reset_password_email.html:100 msgid "" "if you did not send this request, please ignore this\n" " email." msgstr "" -#: vibes_auth/templates/user_reset_password_email.html:102 +#: engine/vibes_auth/templates/user_reset_password_email.html:102 #, python-format msgid "best regards,
The %(project_name)s team" msgstr "" -#: vibes_auth/templates/user_reset_password_email.html:108 -#: vibes_auth/templates/user_verification_email.html:108 +#: engine/vibes_auth/templates/user_reset_password_email.html:108 +#: engine/vibes_auth/templates/user_verification_email.html:108 msgid "all rights reserved" msgstr "" -#: vibes_auth/templates/user_verification_email.html:7 -#: vibes_auth/templates/user_verification_email.html:90 +#: engine/vibes_auth/templates/user_verification_email.html:7 +#: engine/vibes_auth/templates/user_verification_email.html:90 msgid "activate your account" msgstr "" -#: vibes_auth/templates/user_verification_email.html:92 +#: engine/vibes_auth/templates/user_verification_email.html:92 #, python-format msgid "" "thank you for signing up for %(project_name)s. please activate your account\n" " by clicking the button below:" msgstr "" -#: vibes_auth/templates/user_verification_email.html:96 +#: engine/vibes_auth/templates/user_verification_email.html:96 msgid "" "activate\n" " account" msgstr "" -#: vibes_auth/templates/user_verification_email.html:102 +#: engine/vibes_auth/templates/user_verification_email.html:102 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "" -#: vibes_auth/utils/emailing.py:23 +#: engine/vibes_auth/utils/emailing.py:23 #, python-brace-format msgid "{config.PROJECT_NAME} | Activate Account" msgstr "" -#: vibes_auth/utils/emailing.py:62 +#: engine/vibes_auth/utils/emailing.py:62 #, python-brace-format msgid "{config.PROJECT_NAME} | Reset Password" msgstr "" -#: vibes_auth/validators.py:13 +#: engine/vibes_auth/validators.py:13 msgid "" "invalid phone number format. the number must be entered in the format: " "\"+999999999\". up to 15 digits allowed." msgstr "" -#: vibes_auth/views.py:30 +#: engine/vibes_auth/views.py:30 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 " @@ -504,7 +511,7 @@ msgid "" "proper rate limiting to protect against brute force attacks." msgstr "" -#: vibes_auth/views.py:48 +#: engine/vibes_auth/views.py:48 msgid "" "Handles refreshing of tokens for authentication purposes. This class is used " "to provide functionality for token refresh operations as part of an " @@ -513,17 +520,17 @@ msgid "" "validate token refresh inputs and produce appropriate outputs." msgstr "" -#: vibes_auth/views.py:67 +#: engine/vibes_auth/views.py:67 msgid "" "Represents a view for verifying JSON Web Tokens (JWT) using specific " "serialization and validation logic. " msgstr "" -#: vibes_auth/views.py:80 +#: engine/vibes_auth/views.py:80 msgid "the token is invalid" msgstr "" -#: vibes_auth/viewsets.py:45 +#: engine/vibes_auth/viewsets.py:45 msgid "" "User view set implementation.\n" "Provides a set of actions that manage user-related data such as creation, " @@ -532,10 +539,10 @@ msgid "" "class extends the mixins and GenericViewSet for robust API handling." msgstr "" -#: vibes_auth/viewsets.py:99 +#: engine/vibes_auth/viewsets.py:99 msgid "password reset successfully" msgstr "" -#: vibes_auth/viewsets.py:132 +#: engine/vibes_auth/viewsets.py:132 msgid "account already activated!" msgstr "" diff --git a/vibes_auth/locale/ko_KR/LC_MESSAGES/django.mo b/engine/vibes_auth/locale/ko_KR/LC_MESSAGES/django.mo similarity index 65% rename from vibes_auth/locale/ko_KR/LC_MESSAGES/django.mo rename to engine/vibes_auth/locale/ko_KR/LC_MESSAGES/django.mo index d3372728..4d720365 100644 Binary files a/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/vibes_auth/locale/ko_KR/LC_MESSAGES/django.po b/engine/vibes_auth/locale/ko_KR/LC_MESSAGES/django.po similarity index 68% rename from vibes_auth/locale/ko_KR/LC_MESSAGES/django.po rename to engine/vibes_auth/locale/ko_KR/LC_MESSAGES/django.po index 62003b85..4d133fc9 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,257 +13,266 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: vibes_auth/admin.py:39 vibes_auth/admin.py:40 -#: vibes_auth/graphene/object_types.py:46 +#: engine/vibes_auth/admin.py:40 engine/vibes_auth/admin.py:41 +#: engine/vibes_auth/graphene/object_types.py:46 msgid "balance" msgstr "잔액" -#: vibes_auth/admin.py:48 +#: engine/vibes_auth/admin.py:49 msgid "order" msgstr "주문" -#: vibes_auth/admin.py:49 vibes_auth/graphene/object_types.py:44 +#: engine/vibes_auth/admin.py:50 engine/vibes_auth/graphene/object_types.py:44 msgid "orders" msgstr "주문" -#: vibes_auth/admin.py:59 +#: engine/vibes_auth/admin.py:60 msgid "personal info" msgstr "개인 정보" -#: vibes_auth/admin.py:63 vibes_auth/graphene/object_types.py:43 +#: engine/vibes_auth/admin.py:64 engine/vibes_auth/graphene/object_types.py:43 msgid "permissions" msgstr "권한" -#: vibes_auth/admin.py:76 +#: engine/vibes_auth/admin.py:77 msgid "important dates" msgstr "중요한 날짜" -#: vibes_auth/admin.py:77 +#: engine/vibes_auth/admin.py:78 msgid "additional info" msgstr "추가 정보" -#: vibes_auth/apps.py:8 +#: engine/vibes_auth/admin.py:145 +msgid "Close selected threads" +msgstr "선택한 스레드 닫기" + +#: engine/vibes_auth/admin.py:149 +msgid "Open selected threads" +msgstr "선택한 스레드 열기" + +#: engine/vibes_auth/apps.py:8 msgid "authentication" msgstr "인증" -#: vibes_auth/docs/drf/views.py:15 +#: engine/vibes_auth/docs/drf/views.py:15 msgid "obtain a token pair" msgstr "토큰 쌍 얻기" -#: vibes_auth/docs/drf/views.py:16 +#: engine/vibes_auth/docs/drf/views.py:16 msgid "obtain a token pair (refresh and access) for authentication." msgstr "인증을 위한 토큰 쌍(새로 고침 및 액세스)을 얻습니다." -#: vibes_auth/docs/drf/views.py:35 +#: engine/vibes_auth/docs/drf/views.py:35 msgid "refresh a token pair" msgstr "토큰 쌍 새로 고침" -#: vibes_auth/docs/drf/views.py:36 +#: engine/vibes_auth/docs/drf/views.py:36 msgid "refresh a token pair (refresh and access)." msgstr "토큰 쌍을 새로 고칩니다(새로 고침 및 액세스)." -#: vibes_auth/docs/drf/views.py:55 +#: engine/vibes_auth/docs/drf/views.py:55 msgid "verify a token" msgstr "토큰 확인" -#: vibes_auth/docs/drf/views.py:56 +#: engine/vibes_auth/docs/drf/views.py:56 msgid "Verify a token (refresh or access)." msgstr "토큰을 확인합니다(새로 고침 또는 액세스)." -#: vibes_auth/docs/drf/views.py:62 vibes_auth/views.py:78 +#: engine/vibes_auth/docs/drf/views.py:62 engine/vibes_auth/views.py:78 msgid "the token is valid" msgstr "토큰이 유효합니다." -#: vibes_auth/docs/drf/viewsets.py:16 +#: engine/vibes_auth/docs/drf/viewsets.py:16 msgid "create a new user" msgstr "새 사용자 만들기" -#: vibes_auth/docs/drf/viewsets.py:21 +#: engine/vibes_auth/docs/drf/viewsets.py:21 msgid "retrieve a user's details" msgstr "사용자 세부 정보 검색" -#: vibes_auth/docs/drf/viewsets.py:25 +#: engine/vibes_auth/docs/drf/viewsets.py:25 msgid "update a user's details" msgstr "사용자 세부 정보 업데이트" -#: vibes_auth/docs/drf/viewsets.py:30 +#: engine/vibes_auth/docs/drf/viewsets.py:30 msgid "delete a user" msgstr "사용자 삭제하기" -#: vibes_auth/docs/drf/viewsets.py:34 +#: engine/vibes_auth/docs/drf/viewsets.py:34 msgid "reset a user's password by sending a reset password email" msgstr "비밀번호 재설정 이메일을 보내 사용자의 비밀번호를 재설정합니다." -#: vibes_auth/docs/drf/viewsets.py:39 +#: engine/vibes_auth/docs/drf/viewsets.py:39 msgid "handle avatar upload for a user" msgstr "사용자에 대한 아바타 업로드 처리" -#: vibes_auth/docs/drf/viewsets.py:54 +#: engine/vibes_auth/docs/drf/viewsets.py:54 msgid "confirm a user's password reset" msgstr "사용자의 비밀번호 재설정 확인" -#: vibes_auth/docs/drf/viewsets.py:58 vibes_auth/graphene/mutations.py:320 -#: vibes_auth/serializers.py:105 vibes_auth/serializers.py:109 -#: vibes_auth/viewsets.py:84 +#: engine/vibes_auth/docs/drf/viewsets.py:58 +#: engine/vibes_auth/graphene/mutations.py:320 +#: engine/vibes_auth/serializers.py:105 engine/vibes_auth/serializers.py:109 +#: engine/vibes_auth/viewsets.py:84 msgid "passwords do not match" msgstr "비밀번호가 일치하지 않습니다." -#: vibes_auth/docs/drf/viewsets.py:63 +#: engine/vibes_auth/docs/drf/viewsets.py:63 msgid "activate a user's account" msgstr "사용자 계정 활성화하기" -#: vibes_auth/docs/drf/viewsets.py:67 +#: engine/vibes_auth/docs/drf/viewsets.py:67 msgid "activation link is invalid or account already activated" msgstr "활성화 링크가 유효하지 않거나 계정이 이미 활성화되어 있습니다." -#: vibes_auth/docs/drf/viewsets.py:72 +#: engine/vibes_auth/docs/drf/viewsets.py:72 msgid "merge client-stored recently viewed products" msgstr "클라이언트가 저장한 최근 본 제품 병합" -#: vibes_auth/graphene/mutations.py:41 +#: engine/vibes_auth/graphene/mutations.py:41 msgid "the user's b64-encoded uuid who referred the new user to us." msgstr "새 사용자를 추천한 사용자의 b64로 인코딩된 UUID입니다." -#: vibes_auth/graphene/mutations.py:61 +#: engine/vibes_auth/graphene/mutations.py:61 msgid "password too weak" msgstr "비밀번호가 너무 약합니다." -#: vibes_auth/graphene/mutations.py:110 +#: engine/vibes_auth/graphene/mutations.py:110 #, python-brace-format msgid "{name} does not exist: {uuid}" msgstr "{name}가 존재하지 않습니다: {uuid}!" -#: vibes_auth/graphene/mutations.py:120 +#: engine/vibes_auth/graphene/mutations.py:120 msgid "malformed email" msgstr "잘못된 이메일" -#: vibes_auth/graphene/mutations.py:127 vibes_auth/serializers.py:115 +#: engine/vibes_auth/graphene/mutations.py:127 +#: engine/vibes_auth/serializers.py:115 #, python-brace-format msgid "malformed phone number: {phone_number}" msgstr "잘못된 전화 번호입니다: {phone_number}!" -#: vibes_auth/graphene/mutations.py:149 +#: engine/vibes_auth/graphene/mutations.py:149 #, python-brace-format msgid "Invalid attribute format: {attribute_pair}" msgstr "잘못된 속성 형식입니다: {attribute_pair}!" -#: vibes_auth/graphene/mutations.py:273 vibes_auth/viewsets.py:127 -#: vibes_auth/viewsets.py:146 +#: engine/vibes_auth/graphene/mutations.py:273 +#: engine/vibes_auth/viewsets.py:127 engine/vibes_auth/viewsets.py:146 msgid "activation link is invalid!" msgstr "활성화 링크가 유효하지 않습니다!" -#: vibes_auth/graphene/mutations.py:276 +#: engine/vibes_auth/graphene/mutations.py:276 msgid "account already activated..." msgstr "계정이 이미 활성화되었습니다..." -#: vibes_auth/graphene/mutations.py:283 vibes_auth/graphene/mutations.py:339 +#: engine/vibes_auth/graphene/mutations.py:283 +#: engine/vibes_auth/graphene/mutations.py:339 msgid "something went wrong: {e!s}" msgstr "문제가 발생했습니다: {e!s}" -#: vibes_auth/graphene/mutations.py:327 vibes_auth/viewsets.py:95 +#: engine/vibes_auth/graphene/mutations.py:327 engine/vibes_auth/viewsets.py:95 msgid "token is invalid!" msgstr "토큰이 유효하지 않습니다!" -#: vibes_auth/graphene/object_types.py:40 +#: engine/vibes_auth/graphene/object_types.py:40 msgid "" "the products this user has viewed most recently (max 48), in reverse‐" "chronological order" msgstr "이 사용자가 가장 최근에 본 제품(최대 48개)을 시간 역순으로 표시합니다." -#: vibes_auth/graphene/object_types.py:42 vibes_auth/models.py:132 +#: engine/vibes_auth/graphene/object_types.py:42 +#: engine/vibes_auth/models.py:123 msgid "groups" msgstr "그룹" -#: vibes_auth/graphene/object_types.py:45 +#: engine/vibes_auth/graphene/object_types.py:45 msgid "wishlist" msgstr "위시리스트" -#: vibes_auth/graphene/object_types.py:47 vibes_auth/models.py:58 +#: engine/vibes_auth/graphene/object_types.py:47 engine/vibes_auth/models.py:59 msgid "avatar" msgstr "아바타" -#: vibes_auth/graphene/object_types.py:48 +#: engine/vibes_auth/graphene/object_types.py:48 msgid "attributes may be used to store custom data" msgstr "속성을 사용하여 사용자 지정 데이터를 저장할 수 있습니다." -#: vibes_auth/graphene/object_types.py:49 +#: engine/vibes_auth/graphene/object_types.py:50 #, python-brace-format -msgid "language is one of the {LANGUAGES} with default {LANGUAGE_CODE}" -msgstr "언어는 {LANGUAGES} 중 하나이며 기본값은 {LANGUAGE_CODE}입니다." +msgid "" +"language is one of the {settings.LANGUAGES} with default {settings." +"LANGUAGE_CODE}" +msgstr "" +"언어는 {settings.LANGUAGES} 중 하나이며 기본값은 {settings.LANGUAGE_CODE}입니" +"다." -#: vibes_auth/graphene/object_types.py:50 +#: engine/vibes_auth/graphene/object_types.py:52 msgid "address set" msgstr "주소" -#: vibes_auth/messaging/admin.py:36 -msgid "Close selected threads" -msgstr "선택한 스레드 닫기" - -#: vibes_auth/messaging/admin.py:40 -msgid "Open selected threads" -msgstr "선택한 스레드 열기" - -#: vibes_auth/messaging/models.py:24 +#: engine/vibes_auth/messaging/models.py:24 msgid "Open" msgstr "열기" -#: vibes_auth/messaging/models.py:25 +#: engine/vibes_auth/messaging/models.py:25 msgid "Closed" msgstr "닫힘" -#: vibes_auth/messaging/models.py:29 +#: engine/vibes_auth/messaging/models.py:29 msgid "User" msgstr "사용자" -#: vibes_auth/messaging/models.py:30 +#: engine/vibes_auth/messaging/models.py:30 msgid "Staff" msgstr "직원" -#: vibes_auth/messaging/models.py:31 +#: engine/vibes_auth/messaging/models.py:31 msgid "System" msgstr "시스템" -#: vibes_auth/messaging/models.py:36 +#: engine/vibes_auth/messaging/models.py:36 msgid "For anonymous threads" msgstr "익명 스레드의 경우" -#: vibes_auth/messaging/models.py:50 +#: engine/vibes_auth/messaging/models.py:50 msgid "Chat thread" msgstr "채팅 스레드" -#: vibes_auth/messaging/models.py:51 +#: engine/vibes_auth/messaging/models.py:51 msgid "Chat threads" msgstr "채팅 스레드" -#: vibes_auth/messaging/models.py:56 +#: engine/vibes_auth/messaging/models.py:56 msgid "Provide user or email for anonymous thread." msgstr "익명 스레드의 사용자 또는 이메일을 입력합니다." -#: vibes_auth/messaging/models.py:58 vibes_auth/messaging/services.py:133 +#: engine/vibes_auth/messaging/models.py:58 +#: engine/vibes_auth/messaging/services.py:132 msgid "Assignee must be a staff user." msgstr "양수인은 직원 사용자이어야 합니다." -#: vibes_auth/messaging/models.py:74 +#: engine/vibes_auth/messaging/models.py:74 msgid "Chat message" msgstr "채팅 메시지" -#: vibes_auth/messaging/models.py:75 +#: engine/vibes_auth/messaging/models.py:75 msgid "Chat messages" msgstr "채팅 메시지" -#: vibes_auth/messaging/services.py:48 +#: engine/vibes_auth/messaging/services.py:47 msgid "Valid email is required for anonymous chats." msgstr "익명 채팅을 하려면 유효한 이메일이 필요합니다." -#: vibes_auth/messaging/services.py:56 +#: engine/vibes_auth/messaging/services.py:55 msgid "Message must be 1..1028 characters." msgstr "메시지는 1...1028자여야 합니다." -#: vibes_auth/messaging/services.py:90 +#: engine/vibes_auth/messaging/services.py:89 msgid "We're searching for the operator to answer you already, hold by!" msgstr "이미 응답할 교환원을 찾고 있으니 잠시만 기다려주세요!" -#: vibes_auth/models.py:30 +#: engine/vibes_auth/models.py:31 msgid "" "Represents a User entity with customized fields and methods for extended " "functionality. This class extends the AbstractUser model and integrates " @@ -280,152 +289,152 @@ msgstr "" "화도 제공합니다. 사용자 모델은 향상된 사용자 관리를 위한 특정 사용 사례를 처" "리하도록 설계되었습니다." -#: vibes_auth/models.py:41 +#: engine/vibes_auth/models.py:42 msgid "email" msgstr "이메일" -#: vibes_auth/models.py:41 +#: engine/vibes_auth/models.py:42 msgid "user email address" msgstr "사용자의 이메일 주소" -#: vibes_auth/models.py:43 +#: engine/vibes_auth/models.py:44 msgid "phone_number" msgstr "전화 번호" -#: vibes_auth/models.py:48 +#: engine/vibes_auth/models.py:49 msgid "user phone number" msgstr "사용자 전화번호" -#: vibes_auth/models.py:54 +#: engine/vibes_auth/models.py:55 msgid "first_name" msgstr "이름" -#: vibes_auth/models.py:55 +#: engine/vibes_auth/models.py:56 msgid "last_name" msgstr "성" -#: vibes_auth/models.py:61 +#: engine/vibes_auth/models.py:62 msgid "user profile image" msgstr "사용자 프로필 이미지" -#: vibes_auth/models.py:66 +#: engine/vibes_auth/models.py:67 msgid "is verified" msgstr "확인됨" -#: vibes_auth/models.py:67 +#: engine/vibes_auth/models.py:68 msgid "user verification status" msgstr "사용자 인증 상태" -#: vibes_auth/models.py:70 +#: engine/vibes_auth/models.py:71 msgid "is_active" msgstr "활성화됨" -#: vibes_auth/models.py:72 +#: engine/vibes_auth/models.py:73 msgid "unselect this instead of deleting accounts" msgstr "계정을 삭제하는 대신 이 옵션을 선택 해제합니다." -#: vibes_auth/models.py:75 +#: engine/vibes_auth/models.py:76 msgid "is_subscribed" msgstr "구독 중" -#: vibes_auth/models.py:75 +#: engine/vibes_auth/models.py:76 msgid "user's newsletter subscription status" msgstr "사용자의 뉴스레터 구독 상태" -#: vibes_auth/models.py:78 +#: engine/vibes_auth/models.py:79 msgid "activation token" msgstr "활성화 토큰" -#: vibes_auth/models.py:80 +#: engine/vibes_auth/models.py:83 msgid "attributes" msgstr "속성" -#: vibes_auth/models.py:110 +#: engine/vibes_auth/models.py:115 msgid "user" msgstr "사용자" -#: vibes_auth/models.py:111 +#: engine/vibes_auth/models.py:116 msgid "users" msgstr "사용자" -#: vibes_auth/models.py:131 +#: engine/vibes_auth/models.py:122 msgid "group" msgstr "그룹" -#: vibes_auth/models.py:148 +#: engine/vibes_auth/models.py:129 msgid "outstanding token" msgstr "뛰어난 토큰" -#: vibes_auth/models.py:149 +#: engine/vibes_auth/models.py:130 msgid "outstanding tokens" msgstr "우수 토큰" -#: vibes_auth/models.py:167 +#: engine/vibes_auth/models.py:136 msgid "blacklisted token" msgstr "블랙리스트에 오른 토큰" -#: vibes_auth/models.py:168 +#: engine/vibes_auth/models.py:137 msgid "blacklisted tokens" msgstr "블랙리스트에 오른 토큰" -#: vibes_auth/serializers.py:99 +#: engine/vibes_auth/serializers.py:99 msgid "attributes must be a dictionary" msgstr "'속성'은 사전이어야 합니다." -#: vibes_auth/serializers.py:101 +#: engine/vibes_auth/serializers.py:101 msgid "business identificator is required when registering as a business" msgstr "사업자 등록 시 사업자 식별자는 필수입니다." -#: vibes_auth/serializers.py:121 +#: engine/vibes_auth/serializers.py:121 #, python-brace-format msgid "malformed email: {email}" msgstr "잘못된 이메일입니다: {email}" -#: vibes_auth/serializers.py:142 vibes_auth/serializers.py:164 -#: vibes_auth/serializers.py:186 vibes_auth/serializers.py:198 +#: engine/vibes_auth/serializers.py:142 engine/vibes_auth/serializers.py:164 +#: engine/vibes_auth/serializers.py:184 engine/vibes_auth/serializers.py:194 msgid "no active account" msgstr "활성 계정을 찾을 수 없습니다." -#: vibes_auth/serializers.py:174 +#: engine/vibes_auth/serializers.py:174 msgid "must set token_class attribute on class." msgstr "클래스에서 토큰_클래스 속성을 설정해야 합니다!" -#: vibes_auth/serializers.py:246 +#: engine/vibes_auth/serializers.py:240 msgid "token_blacklisted" msgstr "토큰 블랙리스트" -#: vibes_auth/serializers.py:251 +#: engine/vibes_auth/serializers.py:245 msgid "invalid token" msgstr "잘못된 토큰" -#: vibes_auth/serializers.py:257 +#: engine/vibes_auth/serializers.py:251 msgid "no user uuid claim present in token" msgstr "토큰에 사용자 UUID 클레임이 없습니다." -#: vibes_auth/serializers.py:259 +#: engine/vibes_auth/serializers.py:253 msgid "user does not exist" msgstr "사용자가 존재하지 않습니다." -#: vibes_auth/templates/user_reset_password_email.html:7 +#: engine/vibes_auth/templates/user_reset_password_email.html:7 msgid "reset your password" msgstr "비밀번호 재설정" -#: vibes_auth/templates/user_reset_password_email.html:85 -#: vibes_auth/templates/user_verification_email.html:85 +#: engine/vibes_auth/templates/user_reset_password_email.html:85 +#: engine/vibes_auth/templates/user_verification_email.html:85 msgid "logo" msgstr "로고" -#: vibes_auth/templates/user_reset_password_email.html:90 +#: engine/vibes_auth/templates/user_reset_password_email.html:90 msgid "password reset confirmation" msgstr "비밀번호 재설정 확인" -#: vibes_auth/templates/user_reset_password_email.html:91 -#: vibes_auth/templates/user_verification_email.html:91 +#: engine/vibes_auth/templates/user_reset_password_email.html:91 +#: engine/vibes_auth/templates/user_verification_email.html:91 #, python-format msgid "hello %(user_first_name)s," msgstr "안녕하세요 %(user_first_name)s," -#: vibes_auth/templates/user_reset_password_email.html:92 +#: 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" @@ -434,12 +443,12 @@ msgstr "" "비밀번호 재설정 요청을 받았습니다. 아래 버튼을 클릭하여 비밀번호를 재설정하세" "요:" -#: vibes_auth/templates/user_reset_password_email.html:95 +#: engine/vibes_auth/templates/user_reset_password_email.html:95 msgid "reset password" msgstr "비밀번호 재설정" -#: vibes_auth/templates/user_reset_password_email.html:97 -#: vibes_auth/templates/user_verification_email.html:99 +#: engine/vibes_auth/templates/user_reset_password_email.html:97 +#: engine/vibes_auth/templates/user_verification_email.html:99 msgid "" "if the button above does not work, please copy and paste the following URL\n" " into your web browser:" @@ -447,7 +456,7 @@ msgstr "" "위의 버튼이 작동하지 않는 경우 다음 URL을 복사하여 브라우저에 붙여넣으세요.\n" " 를 웹 브라우저에 복사하여 붙여넣으세요:" -#: vibes_auth/templates/user_reset_password_email.html:100 +#: engine/vibes_auth/templates/user_reset_password_email.html:100 msgid "" "if you did not send this request, please ignore this\n" " email." @@ -455,22 +464,22 @@ msgstr "" "이 요청을 보내지 않으셨다면 이\n" " 이메일을 무시하세요." -#: vibes_auth/templates/user_reset_password_email.html:102 +#: engine/vibes_auth/templates/user_reset_password_email.html:102 #, python-format msgid "best regards,
The %(project_name)s team" msgstr "감사합니다,
%(project_name)s 팀" -#: vibes_auth/templates/user_reset_password_email.html:108 -#: vibes_auth/templates/user_verification_email.html:108 +#: engine/vibes_auth/templates/user_reset_password_email.html:108 +#: engine/vibes_auth/templates/user_verification_email.html:108 msgid "all rights reserved" msgstr "모든 권리 보유" -#: vibes_auth/templates/user_verification_email.html:7 -#: vibes_auth/templates/user_verification_email.html:90 +#: engine/vibes_auth/templates/user_verification_email.html:7 +#: engine/vibes_auth/templates/user_verification_email.html:90 msgid "activate your account" msgstr "계정 활성화" -#: vibes_auth/templates/user_verification_email.html:92 +#: engine/vibes_auth/templates/user_verification_email.html:92 #, python-format msgid "" "thank you for signing up for %(project_name)s. please activate your account\n" @@ -479,7 +488,7 @@ msgstr "" "가입해 주셔서 감사합니다 %(project_name)s. 아래 버튼을 클릭하여 계정을 활성화" "하세요:" -#: vibes_auth/templates/user_verification_email.html:96 +#: engine/vibes_auth/templates/user_verification_email.html:96 msgid "" "activate\n" " account" @@ -487,22 +496,22 @@ msgstr "" "활성화\n" " 계정" -#: vibes_auth/templates/user_verification_email.html:102 +#: engine/vibes_auth/templates/user_verification_email.html:102 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "감사합니다,
%(project_name)s 팀" -#: vibes_auth/utils/emailing.py:23 +#: engine/vibes_auth/utils/emailing.py:23 #, python-brace-format msgid "{config.PROJECT_NAME} | Activate Account" msgstr "{config.PROJECT_NAME} | 계정 활성화" -#: vibes_auth/utils/emailing.py:62 +#: engine/vibes_auth/utils/emailing.py:62 #, python-brace-format msgid "{config.PROJECT_NAME} | Reset Password" msgstr "{config.PROJECT_NAME} | 비밀번호 재설정" -#: vibes_auth/validators.py:13 +#: engine/vibes_auth/validators.py:13 msgid "" "invalid phone number format. the number must be entered in the format: " "\"+999999999\". up to 15 digits allowed." @@ -510,7 +519,7 @@ msgstr "" "잘못된 전화번호 형식입니다. 번호는 다음과 같은 형식으로 입력해야 합니다: " "\"+999999999\". 최대 15자리까지 입력할 수 있습니다." -#: vibes_auth/views.py:30 +#: engine/vibes_auth/views.py:30 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 " @@ -524,7 +533,7 @@ msgstr "" "다. 기본 토큰 보기 위에 구축되며 무차별 암호 대입 공격으로부터 보호하기 위해 " "적절한 속도 제한을 보장합니다." -#: vibes_auth/views.py:48 +#: engine/vibes_auth/views.py:48 msgid "" "Handles refreshing of tokens for authentication purposes. This class is used " "to provide functionality for token refresh operations as part of an " @@ -538,7 +547,7 @@ msgstr "" "기는 연결된 직렬화기에 의존하여 토큰 새로 고침 입력의 유효성을 검사하고 적절" "한 출력을 생성합니다." -#: vibes_auth/views.py:67 +#: engine/vibes_auth/views.py:67 msgid "" "Represents a view for verifying JSON Web Tokens (JWT) using specific " "serialization and validation logic. " @@ -546,11 +555,11 @@ msgstr "" "특정 직렬화 및 유효성 검사 로직을 사용하여 JSON 웹 토큰(JWT)을 확인하기 위한 " "보기를 나타냅니다." -#: vibes_auth/views.py:80 +#: engine/vibes_auth/views.py:80 msgid "the token is invalid" msgstr "토큰이 유효하지 않습니다." -#: vibes_auth/viewsets.py:45 +#: engine/vibes_auth/viewsets.py:45 msgid "" "User view set implementation.\n" "Provides a set of actions that manage user-related data such as creation, " @@ -564,10 +573,10 @@ msgstr "" "작업을 제공합니다. 이 클래스는 강력한 API 처리를 위해 믹스인 및 " "GenericViewSet을 확장합니다." -#: vibes_auth/viewsets.py:99 +#: engine/vibes_auth/viewsets.py:99 msgid "password reset successfully" msgstr "비밀번호가 성공적으로 재설정되었습니다!" -#: vibes_auth/viewsets.py:132 +#: engine/vibes_auth/viewsets.py:132 msgid "account already activated!" msgstr "이미 계정을 활성화하셨습니다..." diff --git a/vibes_auth/locale/nl_NL/LC_MESSAGES/django.mo b/engine/vibes_auth/locale/nl_NL/LC_MESSAGES/django.mo similarity index 67% rename from vibes_auth/locale/nl_NL/LC_MESSAGES/django.mo rename to engine/vibes_auth/locale/nl_NL/LC_MESSAGES/django.mo index a7999a4a..4b9a63e2 100644 Binary files a/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/vibes_auth/locale/nl_NL/LC_MESSAGES/django.po b/engine/vibes_auth/locale/nl_NL/LC_MESSAGES/django.po similarity index 67% rename from vibes_auth/locale/nl_NL/LC_MESSAGES/django.po rename to engine/vibes_auth/locale/nl_NL/LC_MESSAGES/django.po index bbb3757f..b45b53db 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,162 +13,173 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: vibes_auth/admin.py:39 vibes_auth/admin.py:40 -#: vibes_auth/graphene/object_types.py:46 +#: engine/vibes_auth/admin.py:40 engine/vibes_auth/admin.py:41 +#: engine/vibes_auth/graphene/object_types.py:46 msgid "balance" msgstr "Saldo" -#: vibes_auth/admin.py:48 +#: engine/vibes_auth/admin.py:49 msgid "order" msgstr "Bestel" -#: vibes_auth/admin.py:49 vibes_auth/graphene/object_types.py:44 +#: engine/vibes_auth/admin.py:50 engine/vibes_auth/graphene/object_types.py:44 msgid "orders" msgstr "Bestellingen" -#: vibes_auth/admin.py:59 +#: engine/vibes_auth/admin.py:60 msgid "personal info" msgstr "Persoonlijke info" -#: vibes_auth/admin.py:63 vibes_auth/graphene/object_types.py:43 +#: engine/vibes_auth/admin.py:64 engine/vibes_auth/graphene/object_types.py:43 msgid "permissions" msgstr "Rechten" -#: vibes_auth/admin.py:76 +#: engine/vibes_auth/admin.py:77 msgid "important dates" msgstr "Belangrijke data" -#: vibes_auth/admin.py:77 +#: engine/vibes_auth/admin.py:78 msgid "additional info" msgstr "Extra info" -#: vibes_auth/apps.py:8 +#: engine/vibes_auth/admin.py:145 +msgid "Close selected threads" +msgstr "Geselecteerde threads sluiten" + +#: engine/vibes_auth/admin.py:149 +msgid "Open selected threads" +msgstr "Geselecteerde draden openen" + +#: engine/vibes_auth/apps.py:8 msgid "authentication" msgstr "Authenticatie" -#: vibes_auth/docs/drf/views.py:15 +#: engine/vibes_auth/docs/drf/views.py:15 msgid "obtain a token pair" msgstr "Een tokenpaar verkrijgen" -#: vibes_auth/docs/drf/views.py:16 +#: engine/vibes_auth/docs/drf/views.py:16 msgid "obtain a token pair (refresh and access) for authentication." msgstr "Verkrijg een tokenpaar (refresh en access) voor verificatie." -#: vibes_auth/docs/drf/views.py:35 +#: engine/vibes_auth/docs/drf/views.py:35 msgid "refresh a token pair" msgstr "Een tokenpaar vernieuwen" -#: vibes_auth/docs/drf/views.py:36 +#: engine/vibes_auth/docs/drf/views.py:36 msgid "refresh a token pair (refresh and access)." msgstr "Een tokenpaar verversen (refresh en access)." -#: vibes_auth/docs/drf/views.py:55 +#: engine/vibes_auth/docs/drf/views.py:55 msgid "verify a token" msgstr "Een token verifiëren" -#: vibes_auth/docs/drf/views.py:56 +#: engine/vibes_auth/docs/drf/views.py:56 msgid "Verify a token (refresh or access)." msgstr "Een token verifiëren (verversen of toegang)." -#: vibes_auth/docs/drf/views.py:62 vibes_auth/views.py:78 +#: engine/vibes_auth/docs/drf/views.py:62 engine/vibes_auth/views.py:78 msgid "the token is valid" msgstr "The token is valid" -#: vibes_auth/docs/drf/viewsets.py:16 +#: engine/vibes_auth/docs/drf/viewsets.py:16 msgid "create a new user" msgstr "Een nieuwe gebruiker maken" -#: vibes_auth/docs/drf/viewsets.py:21 +#: engine/vibes_auth/docs/drf/viewsets.py:21 msgid "retrieve a user's details" msgstr "De gegevens van een gebruiker ophalen" -#: vibes_auth/docs/drf/viewsets.py:25 +#: engine/vibes_auth/docs/drf/viewsets.py:25 msgid "update a user's details" msgstr "De gegevens van een gebruiker bijwerken" -#: vibes_auth/docs/drf/viewsets.py:30 +#: engine/vibes_auth/docs/drf/viewsets.py:30 msgid "delete a user" msgstr "Een gebruiker verwijderen" -#: vibes_auth/docs/drf/viewsets.py:34 +#: engine/vibes_auth/docs/drf/viewsets.py:34 msgid "reset a user's password by sending a reset password email" msgstr "" "Het wachtwoord van een gebruiker opnieuw instellen door een e-mail met het " "wachtwoord opnieuw in te stellen" -#: vibes_auth/docs/drf/viewsets.py:39 +#: engine/vibes_auth/docs/drf/viewsets.py:39 msgid "handle avatar upload for a user" msgstr "Avatar uploaden voor een gebruiker afhandelen" -#: vibes_auth/docs/drf/viewsets.py:54 +#: engine/vibes_auth/docs/drf/viewsets.py:54 msgid "confirm a user's password reset" msgstr "Bevestig het resetten van het wachtwoord van een gebruiker" -#: vibes_auth/docs/drf/viewsets.py:58 vibes_auth/graphene/mutations.py:320 -#: vibes_auth/serializers.py:105 vibes_auth/serializers.py:109 -#: vibes_auth/viewsets.py:84 +#: engine/vibes_auth/docs/drf/viewsets.py:58 +#: engine/vibes_auth/graphene/mutations.py:320 +#: engine/vibes_auth/serializers.py:105 engine/vibes_auth/serializers.py:109 +#: engine/vibes_auth/viewsets.py:84 msgid "passwords do not match" msgstr "Wachtwoorden komen niet overeen" -#: vibes_auth/docs/drf/viewsets.py:63 +#: engine/vibes_auth/docs/drf/viewsets.py:63 msgid "activate a user's account" msgstr "Een gebruikersaccount activeren" -#: vibes_auth/docs/drf/viewsets.py:67 +#: engine/vibes_auth/docs/drf/viewsets.py:67 msgid "activation link is invalid or account already activated" msgstr "Activeringslink is ongeldig of account is al geactiveerd" -#: vibes_auth/docs/drf/viewsets.py:72 +#: engine/vibes_auth/docs/drf/viewsets.py:72 msgid "merge client-stored recently viewed products" msgstr "Laatst bekeken producten samenvoegen" -#: vibes_auth/graphene/mutations.py:41 +#: engine/vibes_auth/graphene/mutations.py:41 msgid "the user's b64-encoded uuid who referred the new user to us." msgstr "" "De b64-gecodeerde uuid van de gebruiker die de nieuwe gebruiker naar ons " "heeft doorverwezen." -#: vibes_auth/graphene/mutations.py:61 +#: engine/vibes_auth/graphene/mutations.py:61 msgid "password too weak" msgstr "Het wachtwoord is te zwak" -#: vibes_auth/graphene/mutations.py:110 +#: engine/vibes_auth/graphene/mutations.py:110 #, python-brace-format msgid "{name} does not exist: {uuid}" msgstr "{name} bestaat niet: {uuid}!" -#: vibes_auth/graphene/mutations.py:120 +#: engine/vibes_auth/graphene/mutations.py:120 msgid "malformed email" msgstr "Misvormde e-mail" -#: vibes_auth/graphene/mutations.py:127 vibes_auth/serializers.py:115 +#: engine/vibes_auth/graphene/mutations.py:127 +#: engine/vibes_auth/serializers.py:115 #, python-brace-format msgid "malformed phone number: {phone_number}" msgstr "Misvormd telefoonnummer: {phone_number}!" -#: vibes_auth/graphene/mutations.py:149 +#: engine/vibes_auth/graphene/mutations.py:149 #, python-brace-format msgid "Invalid attribute format: {attribute_pair}" msgstr "Ongeldig attribuutformaat: {attribute_pair}!" -#: vibes_auth/graphene/mutations.py:273 vibes_auth/viewsets.py:127 -#: vibes_auth/viewsets.py:146 +#: engine/vibes_auth/graphene/mutations.py:273 +#: engine/vibes_auth/viewsets.py:127 engine/vibes_auth/viewsets.py:146 msgid "activation link is invalid!" msgstr "Activeringslink is ongeldig!" -#: vibes_auth/graphene/mutations.py:276 +#: engine/vibes_auth/graphene/mutations.py:276 msgid "account already activated..." msgstr "Account is al geactiveerd..." -#: vibes_auth/graphene/mutations.py:283 vibes_auth/graphene/mutations.py:339 +#: engine/vibes_auth/graphene/mutations.py:283 +#: engine/vibes_auth/graphene/mutations.py:339 msgid "something went wrong: {e!s}" msgstr "Er ging iets mis: {e!s}" -#: vibes_auth/graphene/mutations.py:327 vibes_auth/viewsets.py:95 +#: engine/vibes_auth/graphene/mutations.py:327 engine/vibes_auth/viewsets.py:95 msgid "token is invalid!" msgstr "Token is invalid!" -#: vibes_auth/graphene/object_types.py:40 +#: engine/vibes_auth/graphene/object_types.py:40 msgid "" "the products this user has viewed most recently (max 48), in reverse‐" "chronological order" @@ -176,101 +187,99 @@ msgstr "" "De producten die deze gebruiker het laatst heeft bekeken (max 48), in " "omgekeerd-chronologische volgorde." -#: vibes_auth/graphene/object_types.py:42 vibes_auth/models.py:132 +#: engine/vibes_auth/graphene/object_types.py:42 +#: engine/vibes_auth/models.py:123 msgid "groups" msgstr "Groepen" -#: vibes_auth/graphene/object_types.py:45 +#: engine/vibes_auth/graphene/object_types.py:45 msgid "wishlist" msgstr "Verlanglijst" -#: vibes_auth/graphene/object_types.py:47 vibes_auth/models.py:58 +#: engine/vibes_auth/graphene/object_types.py:47 engine/vibes_auth/models.py:59 msgid "avatar" msgstr "Avatar" -#: vibes_auth/graphene/object_types.py:48 +#: engine/vibes_auth/graphene/object_types.py:48 msgid "attributes may be used to store custom data" msgstr "Attributen kunnen worden gebruikt om aangepaste gegevens op te slaan" -#: vibes_auth/graphene/object_types.py:49 +#: engine/vibes_auth/graphene/object_types.py:50 #, python-brace-format -msgid "language is one of the {LANGUAGES} with default {LANGUAGE_CODE}" -msgstr "Taal is een van de {LANGUAGES} met standaard {LANGUAGE_CODE}" +msgid "" +"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}" -#: vibes_auth/graphene/object_types.py:50 +#: engine/vibes_auth/graphene/object_types.py:52 msgid "address set" msgstr "Adressen" -#: vibes_auth/messaging/admin.py:36 -msgid "Close selected threads" -msgstr "Geselecteerde threads sluiten" - -#: vibes_auth/messaging/admin.py:40 -msgid "Open selected threads" -msgstr "Geselecteerde draden openen" - -#: vibes_auth/messaging/models.py:24 +#: engine/vibes_auth/messaging/models.py:24 msgid "Open" msgstr "Open" -#: vibes_auth/messaging/models.py:25 +#: engine/vibes_auth/messaging/models.py:25 msgid "Closed" msgstr "Gesloten" -#: vibes_auth/messaging/models.py:29 +#: engine/vibes_auth/messaging/models.py:29 msgid "User" msgstr "Gebruiker" -#: vibes_auth/messaging/models.py:30 +#: engine/vibes_auth/messaging/models.py:30 msgid "Staff" msgstr "Personeel" -#: vibes_auth/messaging/models.py:31 +#: engine/vibes_auth/messaging/models.py:31 msgid "System" msgstr "Systeem" -#: vibes_auth/messaging/models.py:36 +#: engine/vibes_auth/messaging/models.py:36 msgid "For anonymous threads" msgstr "Voor anonieme threads" -#: vibes_auth/messaging/models.py:50 +#: engine/vibes_auth/messaging/models.py:50 msgid "Chat thread" msgstr "Draadje chatten" -#: vibes_auth/messaging/models.py:51 +#: engine/vibes_auth/messaging/models.py:51 msgid "Chat threads" msgstr "Gespreksonderwerpen" -#: vibes_auth/messaging/models.py:56 +#: engine/vibes_auth/messaging/models.py:56 msgid "Provide user or email for anonymous thread." msgstr "Geef gebruiker of e-mail op voor anonieme thread." -#: vibes_auth/messaging/models.py:58 vibes_auth/messaging/services.py:133 +#: engine/vibes_auth/messaging/models.py:58 +#: engine/vibes_auth/messaging/services.py:132 msgid "Assignee must be a staff user." msgstr "De toegewezen gebruiker moet een personeelsgebruiker zijn." -#: vibes_auth/messaging/models.py:74 +#: engine/vibes_auth/messaging/models.py:74 msgid "Chat message" msgstr "Chatbericht" -#: vibes_auth/messaging/models.py:75 +#: engine/vibes_auth/messaging/models.py:75 msgid "Chat messages" msgstr "Chatberichten" -#: vibes_auth/messaging/services.py:48 +#: engine/vibes_auth/messaging/services.py:47 msgid "Valid email is required for anonymous chats." msgstr "Voor anonieme chats is een geldig e-mailadres vereist." -#: vibes_auth/messaging/services.py:56 +#: engine/vibes_auth/messaging/services.py:55 msgid "Message must be 1..1028 characters." msgstr "Bericht moet 1..1028 tekens bevatten." -#: vibes_auth/messaging/services.py:90 +#: engine/vibes_auth/messaging/services.py:89 msgid "We're searching for the operator to answer you already, hold by!" msgstr "" "We zijn al op zoek naar de operator om je antwoord te geven, wacht even!" -#: vibes_auth/models.py:30 +#: engine/vibes_auth/models.py:31 msgid "" "Represents a User entity with customized fields and methods for extended " "functionality. This class extends the AbstractUser model and integrates " @@ -289,152 +298,152 @@ msgstr "" "model is ontworpen voor specifieke gebruikssituaties voor verbeterd " "gebruikersbeheer." -#: vibes_auth/models.py:41 +#: engine/vibes_auth/models.py:42 msgid "email" msgstr "E-mail" -#: vibes_auth/models.py:41 +#: engine/vibes_auth/models.py:42 msgid "user email address" msgstr "E-mailadres gebruiker" -#: vibes_auth/models.py:43 +#: engine/vibes_auth/models.py:44 msgid "phone_number" msgstr "Telefoonnummer" -#: vibes_auth/models.py:48 +#: engine/vibes_auth/models.py:49 msgid "user phone number" msgstr "Telefoonnummer gebruiker" -#: vibes_auth/models.py:54 +#: engine/vibes_auth/models.py:55 msgid "first_name" msgstr "Voornaam" -#: vibes_auth/models.py:55 +#: engine/vibes_auth/models.py:56 msgid "last_name" msgstr "Achternaam" -#: vibes_auth/models.py:61 +#: engine/vibes_auth/models.py:62 msgid "user profile image" msgstr "Afbeelding gebruikersprofiel" -#: vibes_auth/models.py:66 +#: engine/vibes_auth/models.py:67 msgid "is verified" msgstr "Is geverifieerd" -#: vibes_auth/models.py:67 +#: engine/vibes_auth/models.py:68 msgid "user verification status" msgstr "Verificatiestatus van de gebruiker" -#: vibes_auth/models.py:70 +#: engine/vibes_auth/models.py:71 msgid "is_active" msgstr "Is actief" -#: vibes_auth/models.py:72 +#: engine/vibes_auth/models.py:73 msgid "unselect this instead of deleting accounts" msgstr "Deselecteer dit in plaats van accounts te verwijderen" -#: vibes_auth/models.py:75 +#: engine/vibes_auth/models.py:76 msgid "is_subscribed" msgstr "Is geabonneerd" -#: vibes_auth/models.py:75 +#: engine/vibes_auth/models.py:76 msgid "user's newsletter subscription status" msgstr "Inschrijvingsstatus nieuwsbrief gebruiker" -#: vibes_auth/models.py:78 +#: engine/vibes_auth/models.py:79 msgid "activation token" msgstr "Activeringstoken" -#: vibes_auth/models.py:80 +#: engine/vibes_auth/models.py:83 msgid "attributes" msgstr "Attributen" -#: vibes_auth/models.py:110 +#: engine/vibes_auth/models.py:115 msgid "user" msgstr "Gebruiker" -#: vibes_auth/models.py:111 +#: engine/vibes_auth/models.py:116 msgid "users" msgstr "Gebruikers" -#: vibes_auth/models.py:131 +#: engine/vibes_auth/models.py:122 msgid "group" msgstr "Groep" -#: vibes_auth/models.py:148 +#: engine/vibes_auth/models.py:129 msgid "outstanding token" msgstr "Uitstekende penning" -#: vibes_auth/models.py:149 +#: engine/vibes_auth/models.py:130 msgid "outstanding tokens" msgstr "Uitstaande tokens" -#: vibes_auth/models.py:167 +#: engine/vibes_auth/models.py:136 msgid "blacklisted token" msgstr "Token op zwarte lijst" -#: vibes_auth/models.py:168 +#: engine/vibes_auth/models.py:137 msgid "blacklisted tokens" msgstr "Tokens op de zwarte lijst" -#: vibes_auth/serializers.py:99 +#: engine/vibes_auth/serializers.py:99 msgid "attributes must be a dictionary" msgstr "`attributen` moet een woordenboek zijn" -#: vibes_auth/serializers.py:101 +#: engine/vibes_auth/serializers.py:101 msgid "business identificator is required when registering as a business" msgstr "Bedrijfsidentificator is vereist bij registratie als bedrijf" -#: vibes_auth/serializers.py:121 +#: engine/vibes_auth/serializers.py:121 #, python-brace-format msgid "malformed email: {email}" msgstr "misvormde e-mail: {email}" -#: vibes_auth/serializers.py:142 vibes_auth/serializers.py:164 -#: vibes_auth/serializers.py:186 vibes_auth/serializers.py:198 +#: engine/vibes_auth/serializers.py:142 engine/vibes_auth/serializers.py:164 +#: engine/vibes_auth/serializers.py:184 engine/vibes_auth/serializers.py:194 msgid "no active account" msgstr "Geen actieve account gevonden" -#: vibes_auth/serializers.py:174 +#: engine/vibes_auth/serializers.py:174 msgid "must set token_class attribute on class." msgstr "Moet token_class attribuut instellen op klasse!" -#: vibes_auth/serializers.py:246 +#: engine/vibes_auth/serializers.py:240 msgid "token_blacklisted" msgstr "Token op zwarte lijst" -#: vibes_auth/serializers.py:251 +#: engine/vibes_auth/serializers.py:245 msgid "invalid token" msgstr "Invalid token" -#: vibes_auth/serializers.py:257 +#: engine/vibes_auth/serializers.py:251 msgid "no user uuid claim present in token" msgstr "Geen gebruiker uuid claim aanwezig in token" -#: vibes_auth/serializers.py:259 +#: engine/vibes_auth/serializers.py:253 msgid "user does not exist" msgstr "Gebruiker bestaat niet" -#: vibes_auth/templates/user_reset_password_email.html:7 +#: engine/vibes_auth/templates/user_reset_password_email.html:7 msgid "reset your password" msgstr "Wachtwoord opnieuw instellen" -#: vibes_auth/templates/user_reset_password_email.html:85 -#: vibes_auth/templates/user_verification_email.html:85 +#: engine/vibes_auth/templates/user_reset_password_email.html:85 +#: engine/vibes_auth/templates/user_verification_email.html:85 msgid "logo" msgstr "Logo" -#: vibes_auth/templates/user_reset_password_email.html:90 +#: engine/vibes_auth/templates/user_reset_password_email.html:90 msgid "password reset confirmation" msgstr "Bevestiging wachtwoord reset" -#: vibes_auth/templates/user_reset_password_email.html:91 -#: vibes_auth/templates/user_verification_email.html:91 +#: engine/vibes_auth/templates/user_reset_password_email.html:91 +#: engine/vibes_auth/templates/user_verification_email.html:91 #, python-format msgid "hello %(user_first_name)s," msgstr "Hallo %(user_first_name)s," -#: vibes_auth/templates/user_reset_password_email.html:92 +#: 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" @@ -443,12 +452,12 @@ 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:" -#: vibes_auth/templates/user_reset_password_email.html:95 +#: engine/vibes_auth/templates/user_reset_password_email.html:95 msgid "reset password" msgstr "wachtwoord opnieuw instellen" -#: vibes_auth/templates/user_reset_password_email.html:97 -#: vibes_auth/templates/user_verification_email.html:99 +#: engine/vibes_auth/templates/user_reset_password_email.html:97 +#: engine/vibes_auth/templates/user_verification_email.html:99 msgid "" "if the button above does not work, please copy and paste the following URL\n" " into your web browser:" @@ -456,7 +465,7 @@ msgstr "" "Als de bovenstaande knop niet werkt, kopieer en plak dan de volgende URL\n" " in uw webbrowser:" -#: vibes_auth/templates/user_reset_password_email.html:100 +#: engine/vibes_auth/templates/user_reset_password_email.html:100 msgid "" "if you did not send this request, please ignore this\n" " email." @@ -464,22 +473,22 @@ msgstr "" "als u dit verzoek niet hebt verzonden, negeer dan alstublieft deze\n" " e-mail." -#: vibes_auth/templates/user_reset_password_email.html:102 +#: engine/vibes_auth/templates/user_reset_password_email.html:102 #, python-format msgid "best regards,
The %(project_name)s team" msgstr "Vriendelijke groeten,
Het %(project_name)s team" -#: vibes_auth/templates/user_reset_password_email.html:108 -#: vibes_auth/templates/user_verification_email.html:108 +#: engine/vibes_auth/templates/user_reset_password_email.html:108 +#: engine/vibes_auth/templates/user_verification_email.html:108 msgid "all rights reserved" msgstr "Alle rechten voorbehouden" -#: vibes_auth/templates/user_verification_email.html:7 -#: vibes_auth/templates/user_verification_email.html:90 +#: engine/vibes_auth/templates/user_verification_email.html:7 +#: engine/vibes_auth/templates/user_verification_email.html:90 msgid "activate your account" msgstr "Activeer je account" -#: vibes_auth/templates/user_verification_email.html:92 +#: engine/vibes_auth/templates/user_verification_email.html:92 #, python-format msgid "" "thank you for signing up for %(project_name)s. please activate your account\n" @@ -488,7 +497,7 @@ msgstr "" "Bedankt voor het aanmelden bij %(project_name)s. Activeer je account door op " "de onderstaande knop te klikken:" -#: vibes_auth/templates/user_verification_email.html:96 +#: engine/vibes_auth/templates/user_verification_email.html:96 msgid "" "activate\n" " account" @@ -496,22 +505,22 @@ msgstr "" "Activeer\n" " account" -#: vibes_auth/templates/user_verification_email.html:102 +#: engine/vibes_auth/templates/user_verification_email.html:102 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "Vriendelijke groeten,
het %(project_name)s team" -#: vibes_auth/utils/emailing.py:23 +#: engine/vibes_auth/utils/emailing.py:23 #, python-brace-format msgid "{config.PROJECT_NAME} | Activate Account" msgstr "{config.PROJECT_NAME} | Account activeren" -#: vibes_auth/utils/emailing.py:62 +#: engine/vibes_auth/utils/emailing.py:62 #, python-brace-format msgid "{config.PROJECT_NAME} | Reset Password" msgstr "{config.PROJECT_NAME} | Wachtwoord opnieuw instellen" -#: vibes_auth/validators.py:13 +#: engine/vibes_auth/validators.py:13 msgid "" "invalid phone number format. the number must be entered in the format: " "\"+999999999\". up to 15 digits allowed." @@ -519,7 +528,7 @@ msgstr "" "Ongeldig formaat telefoonnummer. Het nummer moet worden ingevoerd in de " "indeling: \"+999999999\". Maximaal 15 cijfers toegestaan." -#: vibes_auth/views.py:30 +#: engine/vibes_auth/views.py:30 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 " @@ -534,7 +543,7 @@ msgstr "" "verstrekte referenties. Het is gebouwd bovenop een basis token view en zorgt " "voor een goede rate limiting om te beschermen tegen brute force aanvallen." -#: vibes_auth/views.py:48 +#: engine/vibes_auth/views.py:48 msgid "" "Handles refreshing of tokens for authentication purposes. This class is used " "to provide functionality for token refresh operations as part of an " @@ -549,7 +558,7 @@ msgstr "" "op de bijbehorende serializer om inputs voor het verversen van tokens te " "valideren en de juiste output te produceren." -#: vibes_auth/views.py:67 +#: engine/vibes_auth/views.py:67 msgid "" "Represents a view for verifying JSON Web Tokens (JWT) using specific " "serialization and validation logic. " @@ -557,11 +566,11 @@ msgstr "" "Vertegenwoordigt een weergave voor het verifiëren van JSON Web Tokens (JWT) " "met behulp van specifieke serialisatie- en validatielogica." -#: vibes_auth/views.py:80 +#: engine/vibes_auth/views.py:80 msgid "the token is invalid" msgstr "Het token is ongeldig" -#: vibes_auth/viewsets.py:45 +#: engine/vibes_auth/viewsets.py:45 msgid "" "User view set implementation.\n" "Provides a set of actions that manage user-related data such as creation, " @@ -576,10 +585,10 @@ msgstr "" "bekeken items samenvoegen. Deze klasse breidt de mixins en GenericViewSet " "uit voor robuuste API afhandeling." -#: vibes_auth/viewsets.py:99 +#: engine/vibes_auth/viewsets.py:99 msgid "password reset successfully" msgstr "Wachtwoord is succesvol gereset!" -#: vibes_auth/viewsets.py:132 +#: engine/vibes_auth/viewsets.py:132 msgid "account already activated!" msgstr "Je hebt de account al geactiveerd..." diff --git a/vibes_auth/locale/no_NO/LC_MESSAGES/django.mo b/engine/vibes_auth/locale/no_NO/LC_MESSAGES/django.mo similarity index 67% rename from vibes_auth/locale/no_NO/LC_MESSAGES/django.mo rename to engine/vibes_auth/locale/no_NO/LC_MESSAGES/django.mo index ef89bd82..d01ce91a 100644 Binary files a/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/vibes_auth/locale/no_NO/LC_MESSAGES/django.po b/engine/vibes_auth/locale/no_NO/LC_MESSAGES/django.po similarity index 67% rename from vibes_auth/locale/no_NO/LC_MESSAGES/django.po rename to engine/vibes_auth/locale/no_NO/LC_MESSAGES/django.po index 980d4aed..d2138e62 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,160 +13,171 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: vibes_auth/admin.py:39 vibes_auth/admin.py:40 -#: vibes_auth/graphene/object_types.py:46 +#: engine/vibes_auth/admin.py:40 engine/vibes_auth/admin.py:41 +#: engine/vibes_auth/graphene/object_types.py:46 msgid "balance" msgstr "Balanse" -#: vibes_auth/admin.py:48 +#: engine/vibes_auth/admin.py:49 msgid "order" msgstr "Bestilling" -#: vibes_auth/admin.py:49 vibes_auth/graphene/object_types.py:44 +#: engine/vibes_auth/admin.py:50 engine/vibes_auth/graphene/object_types.py:44 msgid "orders" msgstr "Bestillinger" -#: vibes_auth/admin.py:59 +#: engine/vibes_auth/admin.py:60 msgid "personal info" msgstr "Personlig informasjon" -#: vibes_auth/admin.py:63 vibes_auth/graphene/object_types.py:43 +#: engine/vibes_auth/admin.py:64 engine/vibes_auth/graphene/object_types.py:43 msgid "permissions" msgstr "Tillatelser" -#: vibes_auth/admin.py:76 +#: engine/vibes_auth/admin.py:77 msgid "important dates" msgstr "Viktige datoer" -#: vibes_auth/admin.py:77 +#: engine/vibes_auth/admin.py:78 msgid "additional info" msgstr "Ytterligere informasjon" -#: vibes_auth/apps.py:8 +#: engine/vibes_auth/admin.py:145 +msgid "Close selected threads" +msgstr "Lukk utvalgte tråder" + +#: engine/vibes_auth/admin.py:149 +msgid "Open selected threads" +msgstr "Åpne utvalgte tråder" + +#: engine/vibes_auth/apps.py:8 msgid "authentication" msgstr "Autentisering" -#: vibes_auth/docs/drf/views.py:15 +#: engine/vibes_auth/docs/drf/views.py:15 msgid "obtain a token pair" msgstr "Få et tokenpar" -#: vibes_auth/docs/drf/views.py:16 +#: engine/vibes_auth/docs/drf/views.py:16 msgid "obtain a token pair (refresh and access) for authentication." msgstr "Skaff et tokenpar (refresh og access) for autentisering." -#: vibes_auth/docs/drf/views.py:35 +#: engine/vibes_auth/docs/drf/views.py:35 msgid "refresh a token pair" msgstr "Oppdater et tokenpar" -#: vibes_auth/docs/drf/views.py:36 +#: engine/vibes_auth/docs/drf/views.py:36 msgid "refresh a token pair (refresh and access)." msgstr "Oppdater et tokenpar (refresh og access)." -#: vibes_auth/docs/drf/views.py:55 +#: engine/vibes_auth/docs/drf/views.py:55 msgid "verify a token" msgstr "Bekreft et token" -#: vibes_auth/docs/drf/views.py:56 +#: engine/vibes_auth/docs/drf/views.py:56 msgid "Verify a token (refresh or access)." msgstr "Bekreft et token (oppdatering eller tilgang)." -#: vibes_auth/docs/drf/views.py:62 vibes_auth/views.py:78 +#: engine/vibes_auth/docs/drf/views.py:62 engine/vibes_auth/views.py:78 msgid "the token is valid" msgstr "Tokenet er gyldig" -#: vibes_auth/docs/drf/viewsets.py:16 +#: engine/vibes_auth/docs/drf/viewsets.py:16 msgid "create a new user" msgstr "Opprett en ny bruker" -#: vibes_auth/docs/drf/viewsets.py:21 +#: engine/vibes_auth/docs/drf/viewsets.py:21 msgid "retrieve a user's details" msgstr "Hent informasjon om en bruker" -#: vibes_auth/docs/drf/viewsets.py:25 +#: engine/vibes_auth/docs/drf/viewsets.py:25 msgid "update a user's details" msgstr "Oppdatere en brukers opplysninger" -#: vibes_auth/docs/drf/viewsets.py:30 +#: engine/vibes_auth/docs/drf/viewsets.py:30 msgid "delete a user" msgstr "Slett en bruker" -#: vibes_auth/docs/drf/viewsets.py:34 +#: engine/vibes_auth/docs/drf/viewsets.py:34 msgid "reset a user's password by sending a reset password email" msgstr "" "Tilbakestill en brukers passord ved å sende en e-post om tilbakestilling av " "passord" -#: vibes_auth/docs/drf/viewsets.py:39 +#: engine/vibes_auth/docs/drf/viewsets.py:39 msgid "handle avatar upload for a user" msgstr "Håndtere opplasting av avatarer for en bruker" -#: vibes_auth/docs/drf/viewsets.py:54 +#: engine/vibes_auth/docs/drf/viewsets.py:54 msgid "confirm a user's password reset" msgstr "Bekreft tilbakestilling av en brukers passord" -#: vibes_auth/docs/drf/viewsets.py:58 vibes_auth/graphene/mutations.py:320 -#: vibes_auth/serializers.py:105 vibes_auth/serializers.py:109 -#: vibes_auth/viewsets.py:84 +#: engine/vibes_auth/docs/drf/viewsets.py:58 +#: engine/vibes_auth/graphene/mutations.py:320 +#: engine/vibes_auth/serializers.py:105 engine/vibes_auth/serializers.py:109 +#: engine/vibes_auth/viewsets.py:84 msgid "passwords do not match" msgstr "Passordene stemmer ikke overens" -#: vibes_auth/docs/drf/viewsets.py:63 +#: engine/vibes_auth/docs/drf/viewsets.py:63 msgid "activate a user's account" msgstr "Aktiver en brukers konto" -#: vibes_auth/docs/drf/viewsets.py:67 +#: engine/vibes_auth/docs/drf/viewsets.py:67 msgid "activation link is invalid or account already activated" msgstr "Aktiveringslenken er ugyldig eller kontoen er allerede aktivert" -#: vibes_auth/docs/drf/viewsets.py:72 +#: engine/vibes_auth/docs/drf/viewsets.py:72 msgid "merge client-stored recently viewed products" msgstr "Slå sammen nylig viste produkter lagret hos kunden" -#: vibes_auth/graphene/mutations.py:41 +#: engine/vibes_auth/graphene/mutations.py:41 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." -#: vibes_auth/graphene/mutations.py:61 +#: engine/vibes_auth/graphene/mutations.py:61 msgid "password too weak" msgstr "Passordet er for svakt" -#: vibes_auth/graphene/mutations.py:110 +#: engine/vibes_auth/graphene/mutations.py:110 #, python-brace-format msgid "{name} does not exist: {uuid}" msgstr "{name} eksisterer ikke: {uuid}!" -#: vibes_auth/graphene/mutations.py:120 +#: engine/vibes_auth/graphene/mutations.py:120 msgid "malformed email" msgstr "Feilaktig e-post" -#: vibes_auth/graphene/mutations.py:127 vibes_auth/serializers.py:115 +#: engine/vibes_auth/graphene/mutations.py:127 +#: engine/vibes_auth/serializers.py:115 #, python-brace-format msgid "malformed phone number: {phone_number}" msgstr "Feilaktig telefonnummer: {phone_number}!" -#: vibes_auth/graphene/mutations.py:149 +#: engine/vibes_auth/graphene/mutations.py:149 #, python-brace-format msgid "Invalid attribute format: {attribute_pair}" msgstr "Ugyldig attributtformat: {attribute_pair}!" -#: vibes_auth/graphene/mutations.py:273 vibes_auth/viewsets.py:127 -#: vibes_auth/viewsets.py:146 +#: engine/vibes_auth/graphene/mutations.py:273 +#: engine/vibes_auth/viewsets.py:127 engine/vibes_auth/viewsets.py:146 msgid "activation link is invalid!" msgstr "Aktiveringslenken er ugyldig!" -#: vibes_auth/graphene/mutations.py:276 +#: engine/vibes_auth/graphene/mutations.py:276 msgid "account already activated..." msgstr "Kontoen er allerede aktivert..." -#: vibes_auth/graphene/mutations.py:283 vibes_auth/graphene/mutations.py:339 +#: engine/vibes_auth/graphene/mutations.py:283 +#: engine/vibes_auth/graphene/mutations.py:339 msgid "something went wrong: {e!s}" msgstr "Noe gikk galt: {e!s}" -#: vibes_auth/graphene/mutations.py:327 vibes_auth/viewsets.py:95 +#: engine/vibes_auth/graphene/mutations.py:327 engine/vibes_auth/viewsets.py:95 msgid "token is invalid!" msgstr "Tokenet er ugyldig!" -#: vibes_auth/graphene/object_types.py:40 +#: engine/vibes_auth/graphene/object_types.py:40 msgid "" "the products this user has viewed most recently (max 48), in reverse‐" "chronological order" @@ -174,100 +185,97 @@ msgstr "" "Produktene som denne brukeren har sett på sist (maks. 48), i omvendt " "kronologisk rekkefølge." -#: vibes_auth/graphene/object_types.py:42 vibes_auth/models.py:132 +#: engine/vibes_auth/graphene/object_types.py:42 +#: engine/vibes_auth/models.py:123 msgid "groups" msgstr "Grupper" -#: vibes_auth/graphene/object_types.py:45 +#: engine/vibes_auth/graphene/object_types.py:45 msgid "wishlist" msgstr "Ønskeliste" -#: vibes_auth/graphene/object_types.py:47 vibes_auth/models.py:58 +#: engine/vibes_auth/graphene/object_types.py:47 engine/vibes_auth/models.py:59 msgid "avatar" msgstr "Avatar" -#: vibes_auth/graphene/object_types.py:48 +#: engine/vibes_auth/graphene/object_types.py:48 msgid "attributes may be used to store custom data" msgstr "Attributter kan brukes til å lagre egendefinerte data" -#: vibes_auth/graphene/object_types.py:49 +#: engine/vibes_auth/graphene/object_types.py:50 #, python-brace-format -msgid "language is one of the {LANGUAGES} with default {LANGUAGE_CODE}" -msgstr "Språket er en av {LANGUAGES} med standard {LANGUAGE_CODE}." +msgid "" +"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}." -#: vibes_auth/graphene/object_types.py:50 +#: engine/vibes_auth/graphene/object_types.py:52 msgid "address set" msgstr "Adresser" -#: vibes_auth/messaging/admin.py:36 -msgid "Close selected threads" -msgstr "Lukk utvalgte tråder" - -#: vibes_auth/messaging/admin.py:40 -msgid "Open selected threads" -msgstr "Åpne utvalgte tråder" - -#: vibes_auth/messaging/models.py:24 +#: engine/vibes_auth/messaging/models.py:24 msgid "Open" msgstr "Åpne" -#: vibes_auth/messaging/models.py:25 +#: engine/vibes_auth/messaging/models.py:25 msgid "Closed" msgstr "Stengt" -#: vibes_auth/messaging/models.py:29 +#: engine/vibes_auth/messaging/models.py:29 msgid "User" msgstr "Bruker" -#: vibes_auth/messaging/models.py:30 +#: engine/vibes_auth/messaging/models.py:30 msgid "Staff" msgstr "Staben" -#: vibes_auth/messaging/models.py:31 +#: engine/vibes_auth/messaging/models.py:31 msgid "System" msgstr "System" -#: vibes_auth/messaging/models.py:36 +#: engine/vibes_auth/messaging/models.py:36 msgid "For anonymous threads" msgstr "For anonyme tråder" -#: vibes_auth/messaging/models.py:50 +#: engine/vibes_auth/messaging/models.py:50 msgid "Chat thread" msgstr "Chat-tråd" -#: vibes_auth/messaging/models.py:51 +#: engine/vibes_auth/messaging/models.py:51 msgid "Chat threads" msgstr "Chat-tråder" -#: vibes_auth/messaging/models.py:56 +#: engine/vibes_auth/messaging/models.py:56 msgid "Provide user or email for anonymous thread." msgstr "Oppgi bruker eller e-post for anonym tråd." -#: vibes_auth/messaging/models.py:58 vibes_auth/messaging/services.py:133 +#: engine/vibes_auth/messaging/models.py:58 +#: engine/vibes_auth/messaging/services.py:132 msgid "Assignee must be a staff user." msgstr "Mottaker må være en ansatt bruker." -#: vibes_auth/messaging/models.py:74 +#: engine/vibes_auth/messaging/models.py:74 msgid "Chat message" msgstr "Chat-melding" -#: vibes_auth/messaging/models.py:75 +#: engine/vibes_auth/messaging/models.py:75 msgid "Chat messages" msgstr "Chat-meldinger" -#: vibes_auth/messaging/services.py:48 +#: engine/vibes_auth/messaging/services.py:47 msgid "Valid email is required for anonymous chats." msgstr "Gyldig e-post kreves for anonyme chatter." -#: vibes_auth/messaging/services.py:56 +#: engine/vibes_auth/messaging/services.py:55 msgid "Message must be 1..1028 characters." msgstr "Meldingen må bestå av 1..1028 tegn." -#: vibes_auth/messaging/services.py:90 +#: engine/vibes_auth/messaging/services.py:89 msgid "We're searching for the operator to answer you already, hold by!" msgstr "Vi leter etter operatøren som kan svare deg allerede, vent litt!" -#: vibes_auth/models.py:30 +#: engine/vibes_auth/models.py:31 msgid "" "Represents a User entity with customized fields and methods for extended " "functionality. This class extends the AbstractUser model and integrates " @@ -285,153 +293,153 @@ msgstr "" "aktivering for å verifisere kontoer. User-modellen er utformet for å " "håndtere spesifikke brukstilfeller for forbedret brukeradministrasjon." -#: vibes_auth/models.py:41 +#: engine/vibes_auth/models.py:42 msgid "email" msgstr "E-post" -#: vibes_auth/models.py:41 +#: engine/vibes_auth/models.py:42 msgid "user email address" msgstr "Brukerens e-postadresse" -#: vibes_auth/models.py:43 +#: engine/vibes_auth/models.py:44 msgid "phone_number" msgstr "Telefonnummer" -#: vibes_auth/models.py:48 +#: engine/vibes_auth/models.py:49 msgid "user phone number" msgstr "Brukerens telefonnummer" -#: vibes_auth/models.py:54 +#: engine/vibes_auth/models.py:55 msgid "first_name" msgstr "Fornavn" -#: vibes_auth/models.py:55 +#: engine/vibes_auth/models.py:56 msgid "last_name" msgstr "Etternavn" -#: vibes_auth/models.py:61 +#: engine/vibes_auth/models.py:62 msgid "user profile image" msgstr "Bilde av brukerprofil" -#: vibes_auth/models.py:66 +#: engine/vibes_auth/models.py:67 msgid "is verified" msgstr "Er verifisert" -#: vibes_auth/models.py:67 +#: engine/vibes_auth/models.py:68 msgid "user verification status" msgstr "Brukerens bekreftelsesstatus" -#: vibes_auth/models.py:70 +#: engine/vibes_auth/models.py:71 msgid "is_active" msgstr "Er aktiv" -#: vibes_auth/models.py:72 +#: engine/vibes_auth/models.py:73 msgid "unselect this instead of deleting accounts" msgstr "Fjern dette valget i stedet for å slette kontoer" -#: vibes_auth/models.py:75 +#: engine/vibes_auth/models.py:76 msgid "is_subscribed" msgstr "Er abonnert" -#: vibes_auth/models.py:75 +#: engine/vibes_auth/models.py:76 msgid "user's newsletter subscription status" msgstr "Status for brukerens abonnement på nyhetsbrev" -#: vibes_auth/models.py:78 +#: engine/vibes_auth/models.py:79 msgid "activation token" msgstr "Aktiveringstoken" -#: vibes_auth/models.py:80 +#: engine/vibes_auth/models.py:83 msgid "attributes" msgstr "Egenskaper" -#: vibes_auth/models.py:110 +#: engine/vibes_auth/models.py:115 msgid "user" msgstr "Bruker" -#: vibes_auth/models.py:111 +#: engine/vibes_auth/models.py:116 msgid "users" msgstr "Brukere" -#: vibes_auth/models.py:131 +#: engine/vibes_auth/models.py:122 msgid "group" msgstr "Gruppe" -#: vibes_auth/models.py:148 +#: engine/vibes_auth/models.py:129 msgid "outstanding token" msgstr "Enestående symbol" -#: vibes_auth/models.py:149 +#: engine/vibes_auth/models.py:130 msgid "outstanding tokens" msgstr "Outstanding tokens" -#: vibes_auth/models.py:167 +#: engine/vibes_auth/models.py:136 msgid "blacklisted token" msgstr "Svartelistet token" -#: vibes_auth/models.py:168 +#: engine/vibes_auth/models.py:137 msgid "blacklisted tokens" msgstr "Svartelistede tokens" -#: vibes_auth/serializers.py:99 +#: engine/vibes_auth/serializers.py:99 msgid "attributes must be a dictionary" msgstr "`attributter` må være en ordbok" -#: vibes_auth/serializers.py:101 +#: engine/vibes_auth/serializers.py:101 msgid "business identificator is required when registering as a business" msgstr "" "Virksomhetsidentifikator er påkrevd når du registrerer deg som virksomhet" -#: vibes_auth/serializers.py:121 +#: engine/vibes_auth/serializers.py:121 #, python-brace-format msgid "malformed email: {email}" msgstr "misdannet e-post: {email}" -#: vibes_auth/serializers.py:142 vibes_auth/serializers.py:164 -#: vibes_auth/serializers.py:186 vibes_auth/serializers.py:198 +#: engine/vibes_auth/serializers.py:142 engine/vibes_auth/serializers.py:164 +#: engine/vibes_auth/serializers.py:184 engine/vibes_auth/serializers.py:194 msgid "no active account" msgstr "Ingen aktiv konto funnet" -#: vibes_auth/serializers.py:174 +#: engine/vibes_auth/serializers.py:174 msgid "must set token_class attribute on class." msgstr "Må sette token_class-attributtet på klassen!" -#: vibes_auth/serializers.py:246 +#: engine/vibes_auth/serializers.py:240 msgid "token_blacklisted" msgstr "Token svartelistet" -#: vibes_auth/serializers.py:251 +#: engine/vibes_auth/serializers.py:245 msgid "invalid token" msgstr "Ugyldig token" -#: vibes_auth/serializers.py:257 +#: engine/vibes_auth/serializers.py:251 msgid "no user uuid claim present in token" msgstr "Ingen bruker-uuid-krav i tokenet" -#: vibes_auth/serializers.py:259 +#: engine/vibes_auth/serializers.py:253 msgid "user does not exist" msgstr "Brukeren eksisterer ikke" -#: vibes_auth/templates/user_reset_password_email.html:7 +#: engine/vibes_auth/templates/user_reset_password_email.html:7 msgid "reset your password" msgstr "Tilbakestill passordet ditt" -#: vibes_auth/templates/user_reset_password_email.html:85 -#: vibes_auth/templates/user_verification_email.html:85 +#: engine/vibes_auth/templates/user_reset_password_email.html:85 +#: engine/vibes_auth/templates/user_verification_email.html:85 msgid "logo" msgstr "Logo" -#: vibes_auth/templates/user_reset_password_email.html:90 +#: engine/vibes_auth/templates/user_reset_password_email.html:90 msgid "password reset confirmation" msgstr "Bekreftelse på tilbakestilling av passord" -#: vibes_auth/templates/user_reset_password_email.html:91 -#: vibes_auth/templates/user_verification_email.html:91 +#: engine/vibes_auth/templates/user_reset_password_email.html:91 +#: engine/vibes_auth/templates/user_verification_email.html:91 #, python-format msgid "hello %(user_first_name)s," msgstr "Hallo %(user_first_name)s," -#: vibes_auth/templates/user_reset_password_email.html:92 +#: 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" @@ -440,12 +448,12 @@ msgstr "" "Vi har mottatt en forespørsel om å tilbakestille passordet ditt. Vennligst " "tilbakestill passordet ditt ved å klikke på knappen nedenfor:" -#: vibes_auth/templates/user_reset_password_email.html:95 +#: engine/vibes_auth/templates/user_reset_password_email.html:95 msgid "reset password" msgstr "tilbakestille passord" -#: vibes_auth/templates/user_reset_password_email.html:97 -#: vibes_auth/templates/user_verification_email.html:99 +#: engine/vibes_auth/templates/user_reset_password_email.html:97 +#: engine/vibes_auth/templates/user_verification_email.html:99 msgid "" "if the button above does not work, please copy and paste the following URL\n" " into your web browser:" @@ -453,7 +461,7 @@ msgstr "" "Hvis knappen ovenfor ikke fungerer, kan du kopiere og lime inn følgende URL\n" " i nettleseren din:" -#: vibes_auth/templates/user_reset_password_email.html:100 +#: engine/vibes_auth/templates/user_reset_password_email.html:100 msgid "" "if you did not send this request, please ignore this\n" " email." @@ -461,22 +469,22 @@ msgstr "" "hvis du ikke har sendt denne forespørselen, vennligst ignorer denne\n" " e-post." -#: vibes_auth/templates/user_reset_password_email.html:102 +#: engine/vibes_auth/templates/user_reset_password_email.html:102 #, python-format msgid "best regards,
The %(project_name)s team" msgstr "Med vennlig hilsen,
The %(project_name)s team" -#: vibes_auth/templates/user_reset_password_email.html:108 -#: vibes_auth/templates/user_verification_email.html:108 +#: engine/vibes_auth/templates/user_reset_password_email.html:108 +#: engine/vibes_auth/templates/user_verification_email.html:108 msgid "all rights reserved" msgstr "Alle rettigheter forbeholdt" -#: vibes_auth/templates/user_verification_email.html:7 -#: vibes_auth/templates/user_verification_email.html:90 +#: engine/vibes_auth/templates/user_verification_email.html:7 +#: engine/vibes_auth/templates/user_verification_email.html:90 msgid "activate your account" msgstr "Aktiver kontoen din" -#: vibes_auth/templates/user_verification_email.html:92 +#: engine/vibes_auth/templates/user_verification_email.html:92 #, python-format msgid "" "thank you for signing up for %(project_name)s. please activate your account\n" @@ -485,7 +493,7 @@ msgstr "" "Takk for at du registrerte deg for %(project_name)s. Vennligst aktiver " "kontoen din ved å klikke på knappen nedenfor:" -#: vibes_auth/templates/user_verification_email.html:96 +#: engine/vibes_auth/templates/user_verification_email.html:96 msgid "" "activate\n" " account" @@ -493,22 +501,22 @@ msgstr "" "Aktiver\n" " konto" -#: vibes_auth/templates/user_verification_email.html:102 +#: engine/vibes_auth/templates/user_verification_email.html:102 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "Med vennlig hilsen,
teamet %(project_name)s" -#: vibes_auth/utils/emailing.py:23 +#: engine/vibes_auth/utils/emailing.py:23 #, python-brace-format msgid "{config.PROJECT_NAME} | Activate Account" msgstr "{config.PROJECT_NAME} | Aktiver konto" -#: vibes_auth/utils/emailing.py:62 +#: engine/vibes_auth/utils/emailing.py:62 #, python-brace-format msgid "{config.PROJECT_NAME} | Reset Password" msgstr "{config.PROJECT_NAME} | Tilbakestill passord" -#: vibes_auth/validators.py:13 +#: engine/vibes_auth/validators.py:13 msgid "" "invalid phone number format. the number must be entered in the format: " "\"+999999999\". up to 15 digits allowed." @@ -516,7 +524,7 @@ msgstr "" "Ugyldig telefonnummerformat. Nummeret må legges inn i formatet: " "\"+999999999\". Opptil 15 sifre er tillatt." -#: vibes_auth/views.py:30 +#: engine/vibes_auth/views.py:30 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 " @@ -531,7 +539,7 @@ msgstr "" "av en grunnleggende token-visning og sørger for riktig hastighetsbegrensning " "for å beskytte mot brute force-angrep." -#: vibes_auth/views.py:48 +#: engine/vibes_auth/views.py:48 msgid "" "Handles refreshing of tokens for authentication purposes. This class is used " "to provide functionality for token refresh operations as part of an " @@ -546,7 +554,7 @@ msgstr "" "tilknyttede serialisatoren for å validere tokenoppdateringsinnganger og " "produsere passende utganger." -#: vibes_auth/views.py:67 +#: engine/vibes_auth/views.py:67 msgid "" "Represents a view for verifying JSON Web Tokens (JWT) using specific " "serialization and validation logic. " @@ -554,11 +562,11 @@ msgstr "" "Representerer en visning for verifisering av JSON Web Tokens (JWT) ved hjelp " "av spesifikk serialiserings- og valideringslogikk." -#: vibes_auth/views.py:80 +#: engine/vibes_auth/views.py:80 msgid "the token is invalid" msgstr "Tokenet er ugyldig" -#: vibes_auth/viewsets.py:45 +#: engine/vibes_auth/viewsets.py:45 msgid "" "User view set implementation.\n" "Provides a set of actions that manage user-related data such as creation, " @@ -573,10 +581,10 @@ msgstr "" "og sammenslåing av nylig viste elementer. Denne klassen utvider mixins og " "GenericViewSet for robust API-håndtering." -#: vibes_auth/viewsets.py:99 +#: engine/vibes_auth/viewsets.py:99 msgid "password reset successfully" msgstr "Passordet har blitt tilbakestilt!" -#: vibes_auth/viewsets.py:132 +#: engine/vibes_auth/viewsets.py:132 msgid "account already activated!" msgstr "Du har allerede aktivert kontoen..." diff --git a/vibes_auth/locale/pl_PL/LC_MESSAGES/django.mo b/engine/vibes_auth/locale/pl_PL/LC_MESSAGES/django.mo similarity index 67% rename from vibes_auth/locale/pl_PL/LC_MESSAGES/django.mo rename to engine/vibes_auth/locale/pl_PL/LC_MESSAGES/django.mo index 5c5c71de..ecd5d05f 100644 Binary files a/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/vibes_auth/locale/pl_PL/LC_MESSAGES/django.po b/engine/vibes_auth/locale/pl_PL/LC_MESSAGES/django.po similarity index 67% rename from vibes_auth/locale/pl_PL/LC_MESSAGES/django.po rename to engine/vibes_auth/locale/pl_PL/LC_MESSAGES/django.po index 1df40d8d..6bcbd519 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,162 +13,173 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: vibes_auth/admin.py:39 vibes_auth/admin.py:40 -#: vibes_auth/graphene/object_types.py:46 +#: engine/vibes_auth/admin.py:40 engine/vibes_auth/admin.py:41 +#: engine/vibes_auth/graphene/object_types.py:46 msgid "balance" msgstr "Równowaga" -#: vibes_auth/admin.py:48 +#: engine/vibes_auth/admin.py:49 msgid "order" msgstr "Zamówienie" -#: vibes_auth/admin.py:49 vibes_auth/graphene/object_types.py:44 +#: engine/vibes_auth/admin.py:50 engine/vibes_auth/graphene/object_types.py:44 msgid "orders" msgstr "Zamówienia" -#: vibes_auth/admin.py:59 +#: engine/vibes_auth/admin.py:60 msgid "personal info" msgstr "Informacje osobiste" -#: vibes_auth/admin.py:63 vibes_auth/graphene/object_types.py:43 +#: engine/vibes_auth/admin.py:64 engine/vibes_auth/graphene/object_types.py:43 msgid "permissions" msgstr "Uprawnienia" -#: vibes_auth/admin.py:76 +#: engine/vibes_auth/admin.py:77 msgid "important dates" msgstr "Ważne daty" -#: vibes_auth/admin.py:77 +#: engine/vibes_auth/admin.py:78 msgid "additional info" msgstr "Dodatkowe informacje" -#: vibes_auth/apps.py:8 +#: engine/vibes_auth/admin.py:145 +msgid "Close selected threads" +msgstr "Zamykanie wybranych wątków" + +#: engine/vibes_auth/admin.py:149 +msgid "Open selected threads" +msgstr "Otwieranie wybranych wątków" + +#: engine/vibes_auth/apps.py:8 msgid "authentication" msgstr "Uwierzytelnianie" -#: vibes_auth/docs/drf/views.py:15 +#: engine/vibes_auth/docs/drf/views.py:15 msgid "obtain a token pair" msgstr "Uzyskanie pary tokenów" -#: vibes_auth/docs/drf/views.py:16 +#: engine/vibes_auth/docs/drf/views.py:16 msgid "obtain a token pair (refresh and access) for authentication." msgstr "Uzyskanie pary tokenów (odświeżenie i dostęp) w celu uwierzytelnienia." -#: vibes_auth/docs/drf/views.py:35 +#: engine/vibes_auth/docs/drf/views.py:35 msgid "refresh a token pair" msgstr "Odśwież parę tokenów" -#: vibes_auth/docs/drf/views.py:36 +#: engine/vibes_auth/docs/drf/views.py:36 msgid "refresh a token pair (refresh and access)." msgstr "Odświeżenie pary tokenów (odświeżenie i dostęp)." -#: vibes_auth/docs/drf/views.py:55 +#: engine/vibes_auth/docs/drf/views.py:55 msgid "verify a token" msgstr "Weryfikacja tokena" -#: vibes_auth/docs/drf/views.py:56 +#: engine/vibes_auth/docs/drf/views.py:56 msgid "Verify a token (refresh or access)." msgstr "Weryfikacja tokena (odświeżenie lub dostęp)." -#: vibes_auth/docs/drf/views.py:62 vibes_auth/views.py:78 +#: engine/vibes_auth/docs/drf/views.py:62 engine/vibes_auth/views.py:78 msgid "the token is valid" msgstr "Token jest ważny" -#: vibes_auth/docs/drf/viewsets.py:16 +#: engine/vibes_auth/docs/drf/viewsets.py:16 msgid "create a new user" msgstr "Tworzenie nowego użytkownika" -#: vibes_auth/docs/drf/viewsets.py:21 +#: engine/vibes_auth/docs/drf/viewsets.py:21 msgid "retrieve a user's details" msgstr "Pobieranie danych użytkownika" -#: vibes_auth/docs/drf/viewsets.py:25 +#: engine/vibes_auth/docs/drf/viewsets.py:25 msgid "update a user's details" msgstr "Aktualizacja danych użytkownika" -#: vibes_auth/docs/drf/viewsets.py:30 +#: engine/vibes_auth/docs/drf/viewsets.py:30 msgid "delete a user" msgstr "Usuwanie użytkownika" -#: vibes_auth/docs/drf/viewsets.py:34 +#: engine/vibes_auth/docs/drf/viewsets.py:34 msgid "reset a user's password by sending a reset password email" msgstr "" "Zresetowanie hasła użytkownika poprzez wysłanie wiadomości e-mail " "resetującej hasło." -#: vibes_auth/docs/drf/viewsets.py:39 +#: engine/vibes_auth/docs/drf/viewsets.py:39 msgid "handle avatar upload for a user" msgstr "Obsługa przesyłania awatara dla użytkownika" -#: vibes_auth/docs/drf/viewsets.py:54 +#: engine/vibes_auth/docs/drf/viewsets.py:54 msgid "confirm a user's password reset" msgstr "Potwierdzenie zresetowania hasła użytkownika" -#: vibes_auth/docs/drf/viewsets.py:58 vibes_auth/graphene/mutations.py:320 -#: vibes_auth/serializers.py:105 vibes_auth/serializers.py:109 -#: vibes_auth/viewsets.py:84 +#: engine/vibes_auth/docs/drf/viewsets.py:58 +#: engine/vibes_auth/graphene/mutations.py:320 +#: engine/vibes_auth/serializers.py:105 engine/vibes_auth/serializers.py:109 +#: engine/vibes_auth/viewsets.py:84 msgid "passwords do not match" msgstr "Hasła nie są zgodne" -#: vibes_auth/docs/drf/viewsets.py:63 +#: engine/vibes_auth/docs/drf/viewsets.py:63 msgid "activate a user's account" msgstr "Aktywacja konta użytkownika" -#: vibes_auth/docs/drf/viewsets.py:67 +#: engine/vibes_auth/docs/drf/viewsets.py:67 msgid "activation link is invalid or account already activated" msgstr "Link aktywacyjny jest nieprawidłowy lub konto zostało już aktywowane." -#: vibes_auth/docs/drf/viewsets.py:72 +#: engine/vibes_auth/docs/drf/viewsets.py:72 msgid "merge client-stored recently viewed products" msgstr "Scalanie ostatnio oglądanych produktów przechowywanych przez klienta" -#: vibes_auth/graphene/mutations.py:41 +#: engine/vibes_auth/graphene/mutations.py:41 msgid "the user's b64-encoded uuid who referred the new user to us." msgstr "" "Zakodowany w b64 identyfikator uuid użytkownika, który polecił nam nowego " "użytkownika." -#: vibes_auth/graphene/mutations.py:61 +#: engine/vibes_auth/graphene/mutations.py:61 msgid "password too weak" msgstr "Hasło jest zbyt słabe" -#: vibes_auth/graphene/mutations.py:110 +#: engine/vibes_auth/graphene/mutations.py:110 #, python-brace-format msgid "{name} does not exist: {uuid}" msgstr "{name} nie istnieje: {uuid}!" -#: vibes_auth/graphene/mutations.py:120 +#: engine/vibes_auth/graphene/mutations.py:120 msgid "malformed email" msgstr "Zniekształcona wiadomość e-mail" -#: vibes_auth/graphene/mutations.py:127 vibes_auth/serializers.py:115 +#: engine/vibes_auth/graphene/mutations.py:127 +#: engine/vibes_auth/serializers.py:115 #, python-brace-format msgid "malformed phone number: {phone_number}" msgstr "Zniekształcony numer telefonu: {phone_number}!" -#: vibes_auth/graphene/mutations.py:149 +#: engine/vibes_auth/graphene/mutations.py:149 #, python-brace-format msgid "Invalid attribute format: {attribute_pair}" msgstr "Nieprawidłowy format atrybutu: {attribute_pair}!" -#: vibes_auth/graphene/mutations.py:273 vibes_auth/viewsets.py:127 -#: vibes_auth/viewsets.py:146 +#: engine/vibes_auth/graphene/mutations.py:273 +#: engine/vibes_auth/viewsets.py:127 engine/vibes_auth/viewsets.py:146 msgid "activation link is invalid!" msgstr "Link aktywacyjny jest nieprawidłowy!" -#: vibes_auth/graphene/mutations.py:276 +#: engine/vibes_auth/graphene/mutations.py:276 msgid "account already activated..." msgstr "Konto zostało już aktywowane..." -#: vibes_auth/graphene/mutations.py:283 vibes_auth/graphene/mutations.py:339 +#: engine/vibes_auth/graphene/mutations.py:283 +#: engine/vibes_auth/graphene/mutations.py:339 msgid "something went wrong: {e!s}" msgstr "Coś poszło nie tak: {e!s}" -#: vibes_auth/graphene/mutations.py:327 vibes_auth/viewsets.py:95 +#: engine/vibes_auth/graphene/mutations.py:327 engine/vibes_auth/viewsets.py:95 msgid "token is invalid!" msgstr "Token jest nieprawidłowy!" -#: vibes_auth/graphene/object_types.py:40 +#: engine/vibes_auth/graphene/object_types.py:40 msgid "" "the products this user has viewed most recently (max 48), in reverse‐" "chronological order" @@ -176,100 +187,98 @@ msgstr "" "Produkty ostatnio przeglądane przez tego użytkownika (maks. 48), w " "kolejności odwrotnej do chronologicznej." -#: vibes_auth/graphene/object_types.py:42 vibes_auth/models.py:132 +#: engine/vibes_auth/graphene/object_types.py:42 +#: engine/vibes_auth/models.py:123 msgid "groups" msgstr "Grupy" -#: vibes_auth/graphene/object_types.py:45 +#: engine/vibes_auth/graphene/object_types.py:45 msgid "wishlist" msgstr "Lista życzeń" -#: vibes_auth/graphene/object_types.py:47 vibes_auth/models.py:58 +#: engine/vibes_auth/graphene/object_types.py:47 engine/vibes_auth/models.py:59 msgid "avatar" msgstr "Awatar" -#: vibes_auth/graphene/object_types.py:48 +#: engine/vibes_auth/graphene/object_types.py:48 msgid "attributes may be used to store custom data" msgstr "Atrybuty mogą być używane do przechowywania niestandardowych danych" -#: vibes_auth/graphene/object_types.py:49 +#: engine/vibes_auth/graphene/object_types.py:50 #, python-brace-format -msgid "language is one of the {LANGUAGES} with default {LANGUAGE_CODE}" -msgstr "Język jest jednym z {LANGUAGES} z domyślnym {LANGUAGE_CODE}." +msgid "" +"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}." -#: vibes_auth/graphene/object_types.py:50 +#: engine/vibes_auth/graphene/object_types.py:52 msgid "address set" msgstr "Adresy" -#: vibes_auth/messaging/admin.py:36 -msgid "Close selected threads" -msgstr "Zamykanie wybranych wątków" - -#: vibes_auth/messaging/admin.py:40 -msgid "Open selected threads" -msgstr "Otwieranie wybranych wątków" - -#: vibes_auth/messaging/models.py:24 +#: engine/vibes_auth/messaging/models.py:24 msgid "Open" msgstr "Otwarty" -#: vibes_auth/messaging/models.py:25 +#: engine/vibes_auth/messaging/models.py:25 msgid "Closed" msgstr "Zamknięte" -#: vibes_auth/messaging/models.py:29 +#: engine/vibes_auth/messaging/models.py:29 msgid "User" msgstr "Użytkownik" -#: vibes_auth/messaging/models.py:30 +#: engine/vibes_auth/messaging/models.py:30 msgid "Staff" msgstr "Personel" -#: vibes_auth/messaging/models.py:31 +#: engine/vibes_auth/messaging/models.py:31 msgid "System" msgstr "System" -#: vibes_auth/messaging/models.py:36 +#: engine/vibes_auth/messaging/models.py:36 msgid "For anonymous threads" msgstr "Dla wątków anonimowych" -#: vibes_auth/messaging/models.py:50 +#: engine/vibes_auth/messaging/models.py:50 msgid "Chat thread" msgstr "Wątek czatu" -#: vibes_auth/messaging/models.py:51 +#: engine/vibes_auth/messaging/models.py:51 msgid "Chat threads" msgstr "Wątki czatu" -#: vibes_auth/messaging/models.py:56 +#: engine/vibes_auth/messaging/models.py:56 msgid "Provide user or email for anonymous thread." msgstr "Podaj użytkownika lub adres e-mail dla anonimowego wątku." -#: vibes_auth/messaging/models.py:58 vibes_auth/messaging/services.py:133 +#: engine/vibes_auth/messaging/models.py:58 +#: engine/vibes_auth/messaging/services.py:132 msgid "Assignee must be a staff user." msgstr "Odbiorca musi być użytkownikiem personelu." -#: vibes_auth/messaging/models.py:74 +#: engine/vibes_auth/messaging/models.py:74 msgid "Chat message" msgstr "Wiadomość na czacie" -#: vibes_auth/messaging/models.py:75 +#: engine/vibes_auth/messaging/models.py:75 msgid "Chat messages" msgstr "Wiadomości czatu" -#: vibes_auth/messaging/services.py:48 +#: engine/vibes_auth/messaging/services.py:47 msgid "Valid email is required for anonymous chats." msgstr "W przypadku czatów anonimowych wymagany jest prawidłowy adres e-mail." -#: vibes_auth/messaging/services.py:56 +#: engine/vibes_auth/messaging/services.py:55 msgid "Message must be 1..1028 characters." msgstr "Wiadomość musi zawierać od 1 do 1028 znaków." -#: vibes_auth/messaging/services.py:90 +#: engine/vibes_auth/messaging/services.py:89 msgid "We're searching for the operator to answer you already, hold by!" msgstr "Szukamy operatora, który już ci odpowie, zaczekaj!" -#: vibes_auth/models.py:30 +#: engine/vibes_auth/models.py:31 msgid "" "Represents a User entity with customized fields and methods for extended " "functionality. This class extends the AbstractUser model and integrates " @@ -288,152 +297,152 @@ msgstr "" "zaprojektowany do obsługi określonych przypadków użycia w celu ulepszonego " "zarządzania użytkownikami." -#: vibes_auth/models.py:41 +#: engine/vibes_auth/models.py:42 msgid "email" msgstr "E-mail" -#: vibes_auth/models.py:41 +#: engine/vibes_auth/models.py:42 msgid "user email address" msgstr "Adres e-mail użytkownika" -#: vibes_auth/models.py:43 +#: engine/vibes_auth/models.py:44 msgid "phone_number" msgstr "Numer telefonu" -#: vibes_auth/models.py:48 +#: engine/vibes_auth/models.py:49 msgid "user phone number" msgstr "Numer telefonu użytkownika" -#: vibes_auth/models.py:54 +#: engine/vibes_auth/models.py:55 msgid "first_name" msgstr "Imię" -#: vibes_auth/models.py:55 +#: engine/vibes_auth/models.py:56 msgid "last_name" msgstr "Nazwisko" -#: vibes_auth/models.py:61 +#: engine/vibes_auth/models.py:62 msgid "user profile image" msgstr "Obraz profilu użytkownika" -#: vibes_auth/models.py:66 +#: engine/vibes_auth/models.py:67 msgid "is verified" msgstr "Czy zweryfikowano" -#: vibes_auth/models.py:67 +#: engine/vibes_auth/models.py:68 msgid "user verification status" msgstr "Status weryfikacji użytkownika" -#: vibes_auth/models.py:70 +#: engine/vibes_auth/models.py:71 msgid "is_active" msgstr "Jest aktywny" -#: vibes_auth/models.py:72 +#: engine/vibes_auth/models.py:73 msgid "unselect this instead of deleting accounts" msgstr "Odznacz to zamiast usuwać konta" -#: vibes_auth/models.py:75 +#: engine/vibes_auth/models.py:76 msgid "is_subscribed" msgstr "Jest subskrybowany" -#: vibes_auth/models.py:75 +#: engine/vibes_auth/models.py:76 msgid "user's newsletter subscription status" msgstr "Status subskrypcji newslettera użytkownika" -#: vibes_auth/models.py:78 +#: engine/vibes_auth/models.py:79 msgid "activation token" msgstr "Token aktywacyjny" -#: vibes_auth/models.py:80 +#: engine/vibes_auth/models.py:83 msgid "attributes" msgstr "Atrybuty" -#: vibes_auth/models.py:110 +#: engine/vibes_auth/models.py:115 msgid "user" msgstr "Użytkownik" -#: vibes_auth/models.py:111 +#: engine/vibes_auth/models.py:116 msgid "users" msgstr "Użytkownicy" -#: vibes_auth/models.py:131 +#: engine/vibes_auth/models.py:122 msgid "group" msgstr "Grupa" -#: vibes_auth/models.py:148 +#: engine/vibes_auth/models.py:129 msgid "outstanding token" msgstr "Wyjątkowy token" -#: vibes_auth/models.py:149 +#: engine/vibes_auth/models.py:130 msgid "outstanding tokens" msgstr "Zaległe tokeny" -#: vibes_auth/models.py:167 +#: engine/vibes_auth/models.py:136 msgid "blacklisted token" msgstr "Token na czarnej liście" -#: vibes_auth/models.py:168 +#: engine/vibes_auth/models.py:137 msgid "blacklisted tokens" msgstr "Tokeny znajdujące się na czarnej liście" -#: vibes_auth/serializers.py:99 +#: engine/vibes_auth/serializers.py:99 msgid "attributes must be a dictionary" msgstr "`attributes` musi być słownikiem" -#: vibes_auth/serializers.py:101 +#: engine/vibes_auth/serializers.py:101 msgid "business identificator is required when registering as a business" msgstr "Identyfikator firmy jest wymagany podczas rejestracji jako firma" -#: vibes_auth/serializers.py:121 +#: engine/vibes_auth/serializers.py:121 #, python-brace-format msgid "malformed email: {email}" msgstr "źle sformatowana wiadomość e-mail: {email}" -#: vibes_auth/serializers.py:142 vibes_auth/serializers.py:164 -#: vibes_auth/serializers.py:186 vibes_auth/serializers.py:198 +#: engine/vibes_auth/serializers.py:142 engine/vibes_auth/serializers.py:164 +#: engine/vibes_auth/serializers.py:184 engine/vibes_auth/serializers.py:194 msgid "no active account" msgstr "Nie znaleziono aktywnego konta" -#: vibes_auth/serializers.py:174 +#: engine/vibes_auth/serializers.py:174 msgid "must set token_class attribute on class." msgstr "Należy ustawić atrybut token_class na klasie!" -#: vibes_auth/serializers.py:246 +#: engine/vibes_auth/serializers.py:240 msgid "token_blacklisted" msgstr "Token na czarnej liście" -#: vibes_auth/serializers.py:251 +#: engine/vibes_auth/serializers.py:245 msgid "invalid token" msgstr "Nieprawidłowy token" -#: vibes_auth/serializers.py:257 +#: engine/vibes_auth/serializers.py:251 msgid "no user uuid claim present in token" msgstr "Brak oświadczenia uuid użytkownika w tokenie" -#: vibes_auth/serializers.py:259 +#: engine/vibes_auth/serializers.py:253 msgid "user does not exist" msgstr "Użytkownik nie istnieje" -#: vibes_auth/templates/user_reset_password_email.html:7 +#: engine/vibes_auth/templates/user_reset_password_email.html:7 msgid "reset your password" msgstr "Resetowanie hasła" -#: vibes_auth/templates/user_reset_password_email.html:85 -#: vibes_auth/templates/user_verification_email.html:85 +#: engine/vibes_auth/templates/user_reset_password_email.html:85 +#: engine/vibes_auth/templates/user_verification_email.html:85 msgid "logo" msgstr "Logo" -#: vibes_auth/templates/user_reset_password_email.html:90 +#: engine/vibes_auth/templates/user_reset_password_email.html:90 msgid "password reset confirmation" msgstr "Potwierdzenie resetowania hasła" -#: vibes_auth/templates/user_reset_password_email.html:91 -#: vibes_auth/templates/user_verification_email.html:91 +#: engine/vibes_auth/templates/user_reset_password_email.html:91 +#: engine/vibes_auth/templates/user_verification_email.html:91 #, python-format msgid "hello %(user_first_name)s," msgstr "Witaj %(user_first_name)s," -#: vibes_auth/templates/user_reset_password_email.html:92 +#: 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" @@ -442,12 +451,12 @@ msgstr "" "Otrzymaliśmy prośbę o zresetowanie hasła. Zresetuj hasło, klikając poniższy " "przycisk:" -#: vibes_auth/templates/user_reset_password_email.html:95 +#: engine/vibes_auth/templates/user_reset_password_email.html:95 msgid "reset password" msgstr "resetowanie hasła" -#: vibes_auth/templates/user_reset_password_email.html:97 -#: vibes_auth/templates/user_verification_email.html:99 +#: engine/vibes_auth/templates/user_reset_password_email.html:97 +#: engine/vibes_auth/templates/user_verification_email.html:99 msgid "" "if the button above does not work, please copy and paste the following URL\n" " into your web browser:" @@ -455,7 +464,7 @@ msgstr "" "Jeśli powyższy przycisk nie działa, skopiuj i wklej następujący adres URL\n" " do przeglądarki internetowej:" -#: vibes_auth/templates/user_reset_password_email.html:100 +#: engine/vibes_auth/templates/user_reset_password_email.html:100 msgid "" "if you did not send this request, please ignore this\n" " email." @@ -463,22 +472,22 @@ msgstr "" "jeśli nie wysłałeś tej prośby, zignoruj tę wiadomość.\n" " email." -#: vibes_auth/templates/user_reset_password_email.html:102 +#: engine/vibes_auth/templates/user_reset_password_email.html:102 #, python-format msgid "best regards,
The %(project_name)s team" msgstr "Z wyrazami szacunku,
Zespół %(project_name)s" -#: vibes_auth/templates/user_reset_password_email.html:108 -#: vibes_auth/templates/user_verification_email.html:108 +#: engine/vibes_auth/templates/user_reset_password_email.html:108 +#: engine/vibes_auth/templates/user_verification_email.html:108 msgid "all rights reserved" msgstr "Wszelkie prawa zastrzeżone" -#: vibes_auth/templates/user_verification_email.html:7 -#: vibes_auth/templates/user_verification_email.html:90 +#: engine/vibes_auth/templates/user_verification_email.html:7 +#: engine/vibes_auth/templates/user_verification_email.html:90 msgid "activate your account" msgstr "Aktywacja konta" -#: vibes_auth/templates/user_verification_email.html:92 +#: engine/vibes_auth/templates/user_verification_email.html:92 #, python-format msgid "" "thank you for signing up for %(project_name)s. please activate your account\n" @@ -487,7 +496,7 @@ msgstr "" "Dziękujemy za zarejestrowanie się w %(project_name)s. Aktywuj swoje konto, " "klikając poniższy przycisk:" -#: vibes_auth/templates/user_verification_email.html:96 +#: engine/vibes_auth/templates/user_verification_email.html:96 msgid "" "activate\n" " account" @@ -495,22 +504,22 @@ msgstr "" "Aktywować\n" " konto" -#: vibes_auth/templates/user_verification_email.html:102 +#: engine/vibes_auth/templates/user_verification_email.html:102 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "Najlepsze pozdrowienia,
zespół %(project_name)s" -#: vibes_auth/utils/emailing.py:23 +#: engine/vibes_auth/utils/emailing.py:23 #, python-brace-format msgid "{config.PROJECT_NAME} | Activate Account" msgstr "{config.PROJECT_NAME} | Aktywuj konto" -#: vibes_auth/utils/emailing.py:62 +#: engine/vibes_auth/utils/emailing.py:62 #, python-brace-format msgid "{config.PROJECT_NAME} | Reset Password" msgstr "{config.PROJECT_NAME} | Resetuj hasło" -#: vibes_auth/validators.py:13 +#: engine/vibes_auth/validators.py:13 msgid "" "invalid phone number format. the number must be entered in the format: " "\"+999999999\". up to 15 digits allowed." @@ -518,7 +527,7 @@ msgstr "" "Nieprawidłowy format numeru telefonu. Numer musi być wprowadzony w formacie: " "\"+999999999\". Dozwolone do 15 cyfr." -#: vibes_auth/views.py:30 +#: engine/vibes_auth/views.py:30 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 " @@ -533,7 +542,7 @@ msgstr "" "oparciu o podstawowy widok tokenu i zapewnia odpowiednie ograniczenie " "szybkości w celu ochrony przed atakami typu brute force." -#: vibes_auth/views.py:48 +#: engine/vibes_auth/views.py:48 msgid "" "Handles refreshing of tokens for authentication purposes. This class is used " "to provide functionality for token refresh operations as part of an " @@ -548,7 +557,7 @@ msgstr "" "powiązanym serializerze w celu sprawdzenia poprawności danych wejściowych " "odświeżania tokena i wygenerowania odpowiednich danych wyjściowych." -#: vibes_auth/views.py:67 +#: engine/vibes_auth/views.py:67 msgid "" "Represents a view for verifying JSON Web Tokens (JWT) using specific " "serialization and validation logic. " @@ -556,11 +565,11 @@ msgstr "" "Reprezentuje widok do weryfikacji tokenów sieciowych JSON (JWT) przy użyciu " "określonej logiki serializacji i walidacji." -#: vibes_auth/views.py:80 +#: engine/vibes_auth/views.py:80 msgid "the token is invalid" msgstr "Token jest nieprawidłowy" -#: vibes_auth/viewsets.py:45 +#: engine/vibes_auth/viewsets.py:45 msgid "" "User view set implementation.\n" "Provides a set of actions that manage user-related data such as creation, " @@ -575,10 +584,10 @@ msgstr "" "scalanie ostatnio przeglądanych elementów. Ta klasa rozszerza mixiny i " "GenericViewSet dla solidnej obsługi API." -#: vibes_auth/viewsets.py:99 +#: engine/vibes_auth/viewsets.py:99 msgid "password reset successfully" msgstr "Hasło zostało pomyślnie zresetowane!" -#: vibes_auth/viewsets.py:132 +#: engine/vibes_auth/viewsets.py:132 msgid "account already activated!" msgstr "Konto zostało już aktywowane..." diff --git a/vibes_auth/locale/pt_BR/LC_MESSAGES/django.mo b/engine/vibes_auth/locale/pt_BR/LC_MESSAGES/django.mo similarity index 66% rename from vibes_auth/locale/pt_BR/LC_MESSAGES/django.mo rename to engine/vibes_auth/locale/pt_BR/LC_MESSAGES/django.mo index 49e80df2..f88f6c14 100644 Binary files a/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/vibes_auth/locale/pt_BR/LC_MESSAGES/django.po b/engine/vibes_auth/locale/pt_BR/LC_MESSAGES/django.po similarity index 67% rename from vibes_auth/locale/pt_BR/LC_MESSAGES/django.po rename to engine/vibes_auth/locale/pt_BR/LC_MESSAGES/django.po index 76c5bed0..988e3793 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,159 +13,170 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: vibes_auth/admin.py:39 vibes_auth/admin.py:40 -#: vibes_auth/graphene/object_types.py:46 +#: engine/vibes_auth/admin.py:40 engine/vibes_auth/admin.py:41 +#: engine/vibes_auth/graphene/object_types.py:46 msgid "balance" msgstr "Equilíbrio" -#: vibes_auth/admin.py:48 +#: engine/vibes_auth/admin.py:49 msgid "order" msgstr "Pedido" -#: vibes_auth/admin.py:49 vibes_auth/graphene/object_types.py:44 +#: engine/vibes_auth/admin.py:50 engine/vibes_auth/graphene/object_types.py:44 msgid "orders" msgstr "Pedidos" -#: vibes_auth/admin.py:59 +#: engine/vibes_auth/admin.py:60 msgid "personal info" msgstr "Informações pessoais" -#: vibes_auth/admin.py:63 vibes_auth/graphene/object_types.py:43 +#: engine/vibes_auth/admin.py:64 engine/vibes_auth/graphene/object_types.py:43 msgid "permissions" msgstr "Permissões" -#: vibes_auth/admin.py:76 +#: engine/vibes_auth/admin.py:77 msgid "important dates" msgstr "Datas importantes" -#: vibes_auth/admin.py:77 +#: engine/vibes_auth/admin.py:78 msgid "additional info" msgstr "Informações adicionais" -#: vibes_auth/apps.py:8 +#: engine/vibes_auth/admin.py:145 +msgid "Close selected threads" +msgstr "Fechar as linhas selecionadas" + +#: engine/vibes_auth/admin.py:149 +msgid "Open selected threads" +msgstr "Abrir linhas selecionadas" + +#: engine/vibes_auth/apps.py:8 msgid "authentication" msgstr "Autenticação" -#: vibes_auth/docs/drf/views.py:15 +#: engine/vibes_auth/docs/drf/views.py:15 msgid "obtain a token pair" msgstr "Obter um par de tokens" -#: vibes_auth/docs/drf/views.py:16 +#: engine/vibes_auth/docs/drf/views.py:16 msgid "obtain a token pair (refresh and access) for authentication." msgstr "Obter um par de tokens (atualização e acesso) para autenticação." -#: vibes_auth/docs/drf/views.py:35 +#: engine/vibes_auth/docs/drf/views.py:35 msgid "refresh a token pair" msgstr "Atualizar um par de tokens" -#: vibes_auth/docs/drf/views.py:36 +#: engine/vibes_auth/docs/drf/views.py:36 msgid "refresh a token pair (refresh and access)." msgstr "Atualizar um par de tokens (atualizar e acessar)." -#: vibes_auth/docs/drf/views.py:55 +#: engine/vibes_auth/docs/drf/views.py:55 msgid "verify a token" msgstr "Verificar um token" -#: vibes_auth/docs/drf/views.py:56 +#: engine/vibes_auth/docs/drf/views.py:56 msgid "Verify a token (refresh or access)." msgstr "Verificar um token (atualização ou acesso)." -#: vibes_auth/docs/drf/views.py:62 vibes_auth/views.py:78 +#: engine/vibes_auth/docs/drf/views.py:62 engine/vibes_auth/views.py:78 msgid "the token is valid" msgstr "O token é válido" -#: vibes_auth/docs/drf/viewsets.py:16 +#: engine/vibes_auth/docs/drf/viewsets.py:16 msgid "create a new user" msgstr "Criar um novo usuário" -#: vibes_auth/docs/drf/viewsets.py:21 +#: engine/vibes_auth/docs/drf/viewsets.py:21 msgid "retrieve a user's details" msgstr "Recuperar os detalhes de um usuário" -#: vibes_auth/docs/drf/viewsets.py:25 +#: engine/vibes_auth/docs/drf/viewsets.py:25 msgid "update a user's details" msgstr "Atualizar os detalhes de um usuário" -#: vibes_auth/docs/drf/viewsets.py:30 +#: engine/vibes_auth/docs/drf/viewsets.py:30 msgid "delete a user" msgstr "Excluir um usuário" -#: vibes_auth/docs/drf/viewsets.py:34 +#: engine/vibes_auth/docs/drf/viewsets.py:34 msgid "reset a user's password by sending a reset password email" msgstr "" "Redefinir a senha de um usuário enviando um e-mail de redefinição de senha" -#: vibes_auth/docs/drf/viewsets.py:39 +#: engine/vibes_auth/docs/drf/viewsets.py:39 msgid "handle avatar upload for a user" msgstr "Manipular o upload do avatar de um usuário" -#: vibes_auth/docs/drf/viewsets.py:54 +#: engine/vibes_auth/docs/drf/viewsets.py:54 msgid "confirm a user's password reset" msgstr "Confirmar a redefinição de senha de um usuário" -#: vibes_auth/docs/drf/viewsets.py:58 vibes_auth/graphene/mutations.py:320 -#: vibes_auth/serializers.py:105 vibes_auth/serializers.py:109 -#: vibes_auth/viewsets.py:84 +#: engine/vibes_auth/docs/drf/viewsets.py:58 +#: engine/vibes_auth/graphene/mutations.py:320 +#: engine/vibes_auth/serializers.py:105 engine/vibes_auth/serializers.py:109 +#: engine/vibes_auth/viewsets.py:84 msgid "passwords do not match" msgstr "As senhas não correspondem" -#: vibes_auth/docs/drf/viewsets.py:63 +#: engine/vibes_auth/docs/drf/viewsets.py:63 msgid "activate a user's account" msgstr "Ativar a conta de um usuário" -#: vibes_auth/docs/drf/viewsets.py:67 +#: engine/vibes_auth/docs/drf/viewsets.py:67 msgid "activation link is invalid or account already activated" msgstr "O link de ativação é inválido ou a conta já está ativada" -#: vibes_auth/docs/drf/viewsets.py:72 +#: engine/vibes_auth/docs/drf/viewsets.py:72 msgid "merge client-stored recently viewed products" msgstr "Mesclar produtos recentemente visualizados armazenados pelo cliente" -#: vibes_auth/graphene/mutations.py:41 +#: engine/vibes_auth/graphene/mutations.py:41 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." -#: vibes_auth/graphene/mutations.py:61 +#: engine/vibes_auth/graphene/mutations.py:61 msgid "password too weak" msgstr "A senha é muito fraca" -#: vibes_auth/graphene/mutations.py:110 +#: engine/vibes_auth/graphene/mutations.py:110 #, python-brace-format msgid "{name} does not exist: {uuid}" msgstr "{name} não existe: {uuid}!" -#: vibes_auth/graphene/mutations.py:120 +#: engine/vibes_auth/graphene/mutations.py:120 msgid "malformed email" msgstr "E-mail malformado" -#: vibes_auth/graphene/mutations.py:127 vibes_auth/serializers.py:115 +#: engine/vibes_auth/graphene/mutations.py:127 +#: engine/vibes_auth/serializers.py:115 #, python-brace-format msgid "malformed phone number: {phone_number}" msgstr "Número de telefone malformado: {phone_number}!" -#: vibes_auth/graphene/mutations.py:149 +#: engine/vibes_auth/graphene/mutations.py:149 #, python-brace-format msgid "Invalid attribute format: {attribute_pair}" msgstr "Formato de atributo inválido: {attribute_pair}!" -#: vibes_auth/graphene/mutations.py:273 vibes_auth/viewsets.py:127 -#: vibes_auth/viewsets.py:146 +#: engine/vibes_auth/graphene/mutations.py:273 +#: engine/vibes_auth/viewsets.py:127 engine/vibes_auth/viewsets.py:146 msgid "activation link is invalid!" msgstr "O link de ativação é inválido!" -#: vibes_auth/graphene/mutations.py:276 +#: engine/vibes_auth/graphene/mutations.py:276 msgid "account already activated..." msgstr "A conta já foi ativada..." -#: vibes_auth/graphene/mutations.py:283 vibes_auth/graphene/mutations.py:339 +#: engine/vibes_auth/graphene/mutations.py:283 +#: engine/vibes_auth/graphene/mutations.py:339 msgid "something went wrong: {e!s}" msgstr "Algo deu errado: {e!s}" -#: vibes_auth/graphene/mutations.py:327 vibes_auth/viewsets.py:95 +#: engine/vibes_auth/graphene/mutations.py:327 engine/vibes_auth/viewsets.py:95 msgid "token is invalid!" msgstr "O token é inválido!" -#: vibes_auth/graphene/object_types.py:40 +#: engine/vibes_auth/graphene/object_types.py:40 msgid "" "the products this user has viewed most recently (max 48), in reverse‐" "chronological order" @@ -173,100 +184,97 @@ msgstr "" "Os produtos que esse usuário visualizou mais recentemente (máximo de 48), em " "ordem cronológica inversa." -#: vibes_auth/graphene/object_types.py:42 vibes_auth/models.py:132 +#: engine/vibes_auth/graphene/object_types.py:42 +#: engine/vibes_auth/models.py:123 msgid "groups" msgstr "Grupos" -#: vibes_auth/graphene/object_types.py:45 +#: engine/vibes_auth/graphene/object_types.py:45 msgid "wishlist" msgstr "Lista de desejos" -#: vibes_auth/graphene/object_types.py:47 vibes_auth/models.py:58 +#: engine/vibes_auth/graphene/object_types.py:47 engine/vibes_auth/models.py:59 msgid "avatar" msgstr "Avatar" -#: vibes_auth/graphene/object_types.py:48 +#: engine/vibes_auth/graphene/object_types.py:48 msgid "attributes may be used to store custom data" msgstr "Os atributos podem ser usados para armazenar dados personalizados" -#: vibes_auth/graphene/object_types.py:49 +#: engine/vibes_auth/graphene/object_types.py:50 #, python-brace-format -msgid "language is one of the {LANGUAGES} with default {LANGUAGE_CODE}" -msgstr "O idioma é um dos {LANGUAGES} com o padrão {LANGUAGE_CODE}" +msgid "" +"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}" -#: vibes_auth/graphene/object_types.py:50 +#: engine/vibes_auth/graphene/object_types.py:52 msgid "address set" msgstr "Endereços" -#: vibes_auth/messaging/admin.py:36 -msgid "Close selected threads" -msgstr "Fechar as linhas selecionadas" - -#: vibes_auth/messaging/admin.py:40 -msgid "Open selected threads" -msgstr "Abrir linhas selecionadas" - -#: vibes_auth/messaging/models.py:24 +#: engine/vibes_auth/messaging/models.py:24 msgid "Open" msgstr "Aberto" -#: vibes_auth/messaging/models.py:25 +#: engine/vibes_auth/messaging/models.py:25 msgid "Closed" msgstr "Fechado" -#: vibes_auth/messaging/models.py:29 +#: engine/vibes_auth/messaging/models.py:29 msgid "User" msgstr "Usuário" -#: vibes_auth/messaging/models.py:30 +#: engine/vibes_auth/messaging/models.py:30 msgid "Staff" msgstr "Equipe" -#: vibes_auth/messaging/models.py:31 +#: engine/vibes_auth/messaging/models.py:31 msgid "System" msgstr "Sistema" -#: vibes_auth/messaging/models.py:36 +#: engine/vibes_auth/messaging/models.py:36 msgid "For anonymous threads" msgstr "Para tópicos anônimos" -#: vibes_auth/messaging/models.py:50 +#: engine/vibes_auth/messaging/models.py:50 msgid "Chat thread" msgstr "Linha de bate-papo" -#: vibes_auth/messaging/models.py:51 +#: engine/vibes_auth/messaging/models.py:51 msgid "Chat threads" msgstr "Tópicos de bate-papo" -#: vibes_auth/messaging/models.py:56 +#: engine/vibes_auth/messaging/models.py:56 msgid "Provide user or email for anonymous thread." msgstr "Forneça o usuário ou e-mail para o tópico anônimo." -#: vibes_auth/messaging/models.py:58 vibes_auth/messaging/services.py:133 +#: engine/vibes_auth/messaging/models.py:58 +#: engine/vibes_auth/messaging/services.py:132 msgid "Assignee must be a staff user." msgstr "O responsável deve ser um usuário da equipe." -#: vibes_auth/messaging/models.py:74 +#: engine/vibes_auth/messaging/models.py:74 msgid "Chat message" msgstr "Mensagem de bate-papo" -#: vibes_auth/messaging/models.py:75 +#: engine/vibes_auth/messaging/models.py:75 msgid "Chat messages" msgstr "Mensagens de bate-papo" -#: vibes_auth/messaging/services.py:48 +#: engine/vibes_auth/messaging/services.py:47 msgid "Valid email is required for anonymous chats." msgstr "É necessário um e-mail válido para chats anônimos." -#: vibes_auth/messaging/services.py:56 +#: engine/vibes_auth/messaging/services.py:55 msgid "Message must be 1..1028 characters." msgstr "A mensagem deve ter de 1 a 1028 caracteres." -#: vibes_auth/messaging/services.py:90 +#: engine/vibes_auth/messaging/services.py:89 msgid "We're searching for the operator to answer you already, hold by!" msgstr "Estamos procurando o operador para lhe responder, aguarde!" -#: vibes_auth/models.py:30 +#: engine/vibes_auth/models.py:31 msgid "" "Represents a User entity with customized fields and methods for extended " "functionality. This class extends the AbstractUser model and integrates " @@ -285,153 +293,153 @@ msgstr "" "modelo User foi projetado para lidar com casos de uso específicos para o " "gerenciamento aprimorado de usuários." -#: vibes_auth/models.py:41 +#: engine/vibes_auth/models.py:42 msgid "email" msgstr "E-mail" -#: vibes_auth/models.py:41 +#: engine/vibes_auth/models.py:42 msgid "user email address" msgstr "Endereço de e-mail do usuário" -#: vibes_auth/models.py:43 +#: engine/vibes_auth/models.py:44 msgid "phone_number" msgstr "Número de telefone" -#: vibes_auth/models.py:48 +#: engine/vibes_auth/models.py:49 msgid "user phone number" msgstr "Número de telefone do usuário" -#: vibes_auth/models.py:54 +#: engine/vibes_auth/models.py:55 msgid "first_name" msgstr "Primeiro nome" -#: vibes_auth/models.py:55 +#: engine/vibes_auth/models.py:56 msgid "last_name" msgstr "Sobrenome" -#: vibes_auth/models.py:61 +#: engine/vibes_auth/models.py:62 msgid "user profile image" msgstr "Imagem do perfil do usuário" -#: vibes_auth/models.py:66 +#: engine/vibes_auth/models.py:67 msgid "is verified" msgstr "É verificado" -#: vibes_auth/models.py:67 +#: engine/vibes_auth/models.py:68 msgid "user verification status" msgstr "Status de verificação do usuário" -#: vibes_auth/models.py:70 +#: engine/vibes_auth/models.py:71 msgid "is_active" msgstr "Está ativo" -#: vibes_auth/models.py:72 +#: engine/vibes_auth/models.py:73 msgid "unselect this instead of deleting accounts" msgstr "Desmarque essa opção em vez de excluir contas" -#: vibes_auth/models.py:75 +#: engine/vibes_auth/models.py:76 msgid "is_subscribed" msgstr "Está inscrito" -#: vibes_auth/models.py:75 +#: engine/vibes_auth/models.py:76 msgid "user's newsletter subscription status" msgstr "Status da assinatura do boletim informativo do usuário" -#: vibes_auth/models.py:78 +#: engine/vibes_auth/models.py:79 msgid "activation token" msgstr "Token de ativação" -#: vibes_auth/models.py:80 +#: engine/vibes_auth/models.py:83 msgid "attributes" msgstr "Atributos" -#: vibes_auth/models.py:110 +#: engine/vibes_auth/models.py:115 msgid "user" msgstr "Usuário" -#: vibes_auth/models.py:111 +#: engine/vibes_auth/models.py:116 msgid "users" msgstr "Usuários" -#: vibes_auth/models.py:131 +#: engine/vibes_auth/models.py:122 msgid "group" msgstr "Grupo" -#: vibes_auth/models.py:148 +#: engine/vibes_auth/models.py:129 msgid "outstanding token" msgstr "Token excepcional" -#: vibes_auth/models.py:149 +#: engine/vibes_auth/models.py:130 msgid "outstanding tokens" msgstr "Tokens pendentes" -#: vibes_auth/models.py:167 +#: engine/vibes_auth/models.py:136 msgid "blacklisted token" msgstr "Token na lista negra" -#: vibes_auth/models.py:168 +#: engine/vibes_auth/models.py:137 msgid "blacklisted tokens" msgstr "Tokens na lista negra" -#: vibes_auth/serializers.py:99 +#: engine/vibes_auth/serializers.py:99 msgid "attributes must be a dictionary" msgstr "`attributes` deve ser um dicionário" -#: vibes_auth/serializers.py:101 +#: engine/vibes_auth/serializers.py:101 msgid "business identificator is required when registering as a business" msgstr "" "O identificador de empresa é necessário ao se registrar como uma empresa" -#: vibes_auth/serializers.py:121 +#: engine/vibes_auth/serializers.py:121 #, python-brace-format msgid "malformed email: {email}" msgstr "e-mail malformado: {email}" -#: vibes_auth/serializers.py:142 vibes_auth/serializers.py:164 -#: vibes_auth/serializers.py:186 vibes_auth/serializers.py:198 +#: engine/vibes_auth/serializers.py:142 engine/vibes_auth/serializers.py:164 +#: engine/vibes_auth/serializers.py:184 engine/vibes_auth/serializers.py:194 msgid "no active account" msgstr "Nenhuma conta ativa encontrada" -#: vibes_auth/serializers.py:174 +#: engine/vibes_auth/serializers.py:174 msgid "must set token_class attribute on class." msgstr "É necessário definir o atributo token_class na classe!" -#: vibes_auth/serializers.py:246 +#: engine/vibes_auth/serializers.py:240 msgid "token_blacklisted" msgstr "Token na lista negra" -#: vibes_auth/serializers.py:251 +#: engine/vibes_auth/serializers.py:245 msgid "invalid token" msgstr "Token inválido" -#: vibes_auth/serializers.py:257 +#: engine/vibes_auth/serializers.py:251 msgid "no user uuid claim present in token" msgstr "Nenhuma reivindicação de uuid de usuário presente no token" -#: vibes_auth/serializers.py:259 +#: engine/vibes_auth/serializers.py:253 msgid "user does not exist" msgstr "O usuário não existe" -#: vibes_auth/templates/user_reset_password_email.html:7 +#: engine/vibes_auth/templates/user_reset_password_email.html:7 msgid "reset your password" msgstr "Redefinir sua senha" -#: vibes_auth/templates/user_reset_password_email.html:85 -#: vibes_auth/templates/user_verification_email.html:85 +#: engine/vibes_auth/templates/user_reset_password_email.html:85 +#: engine/vibes_auth/templates/user_verification_email.html:85 msgid "logo" msgstr "Logotipo" -#: vibes_auth/templates/user_reset_password_email.html:90 +#: engine/vibes_auth/templates/user_reset_password_email.html:90 msgid "password reset confirmation" msgstr "Confirmação de redefinição de senha" -#: vibes_auth/templates/user_reset_password_email.html:91 -#: vibes_auth/templates/user_verification_email.html:91 +#: engine/vibes_auth/templates/user_reset_password_email.html:91 +#: engine/vibes_auth/templates/user_verification_email.html:91 #, python-format msgid "hello %(user_first_name)s," msgstr "Olá %(user_first_name)s," -#: vibes_auth/templates/user_reset_password_email.html:92 +#: 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" @@ -440,12 +448,12 @@ msgstr "" "Recebemos uma solicitação para redefinir sua senha. Para redefinir sua " "senha, clique no botão abaixo:" -#: vibes_auth/templates/user_reset_password_email.html:95 +#: engine/vibes_auth/templates/user_reset_password_email.html:95 msgid "reset password" msgstr "redefinir senha" -#: vibes_auth/templates/user_reset_password_email.html:97 -#: vibes_auth/templates/user_verification_email.html:99 +#: engine/vibes_auth/templates/user_reset_password_email.html:97 +#: engine/vibes_auth/templates/user_verification_email.html:99 msgid "" "if the button above does not work, please copy and paste the following URL\n" " into your web browser:" @@ -453,7 +461,7 @@ msgstr "" "Se o botão acima não funcionar, copie e cole o seguinte URL\n" " em seu navegador da Web:" -#: vibes_auth/templates/user_reset_password_email.html:100 +#: engine/vibes_auth/templates/user_reset_password_email.html:100 msgid "" "if you did not send this request, please ignore this\n" " email." @@ -461,22 +469,22 @@ msgstr "" "Se você não enviou essa solicitação, ignore este\n" " e-mail." -#: vibes_auth/templates/user_reset_password_email.html:102 +#: engine/vibes_auth/templates/user_reset_password_email.html:102 #, python-format msgid "best regards,
The %(project_name)s team" msgstr "Atenciosamente,
A equipe %(project_name)s" -#: vibes_auth/templates/user_reset_password_email.html:108 -#: vibes_auth/templates/user_verification_email.html:108 +#: engine/vibes_auth/templates/user_reset_password_email.html:108 +#: engine/vibes_auth/templates/user_verification_email.html:108 msgid "all rights reserved" msgstr "Todos os direitos reservados" -#: vibes_auth/templates/user_verification_email.html:7 -#: vibes_auth/templates/user_verification_email.html:90 +#: engine/vibes_auth/templates/user_verification_email.html:7 +#: engine/vibes_auth/templates/user_verification_email.html:90 msgid "activate your account" msgstr "Ativar sua conta" -#: vibes_auth/templates/user_verification_email.html:92 +#: engine/vibes_auth/templates/user_verification_email.html:92 #, python-format msgid "" "thank you for signing up for %(project_name)s. please activate your account\n" @@ -485,7 +493,7 @@ msgstr "" "Obrigado por se inscrever no %(project_name)s. Ative sua conta clicando no " "botão abaixo:" -#: vibes_auth/templates/user_verification_email.html:96 +#: engine/vibes_auth/templates/user_verification_email.html:96 msgid "" "activate\n" " account" @@ -493,22 +501,22 @@ msgstr "" "Ativar\n" " conta" -#: vibes_auth/templates/user_verification_email.html:102 +#: engine/vibes_auth/templates/user_verification_email.html:102 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "Atenciosamente,
a equipe %(project_name)s" -#: vibes_auth/utils/emailing.py:23 +#: engine/vibes_auth/utils/emailing.py:23 #, python-brace-format msgid "{config.PROJECT_NAME} | Activate Account" msgstr "{config.PROJECT_NAME} | Ativar conta" -#: vibes_auth/utils/emailing.py:62 +#: engine/vibes_auth/utils/emailing.py:62 #, python-brace-format msgid "{config.PROJECT_NAME} | Reset Password" msgstr "{config.PROJECT_NAME} | Redefinir senha" -#: vibes_auth/validators.py:13 +#: engine/vibes_auth/validators.py:13 msgid "" "invalid phone number format. the number must be entered in the format: " "\"+999999999\". up to 15 digits allowed." @@ -516,7 +524,7 @@ msgstr "" "Formato de número telefônico inválido. O número deve ser inserido no " "formato: \"+999999999\". São permitidos até 15 dígitos." -#: vibes_auth/views.py:30 +#: engine/vibes_auth/views.py:30 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 " @@ -532,7 +540,7 @@ msgstr "" "garante a limitação de taxa adequada para proteger contra ataques de força " "bruta." -#: vibes_auth/views.py:48 +#: engine/vibes_auth/views.py:48 msgid "" "Handles refreshing of tokens for authentication purposes. This class is used " "to provide functionality for token refresh operations as part of an " @@ -547,7 +555,7 @@ msgstr "" "exibição depende do serializador associado para validar as entradas de " "atualização de token e produzir saídas apropriadas." -#: vibes_auth/views.py:67 +#: engine/vibes_auth/views.py:67 msgid "" "Represents a view for verifying JSON Web Tokens (JWT) using specific " "serialization and validation logic. " @@ -555,11 +563,11 @@ msgstr "" "Representa uma visualização para verificação de JSON Web Tokens (JWT) usando " "lógica específica de serialização e validação." -#: vibes_auth/views.py:80 +#: engine/vibes_auth/views.py:80 msgid "the token is invalid" msgstr "O token é inválido" -#: vibes_auth/viewsets.py:45 +#: engine/vibes_auth/viewsets.py:45 msgid "" "User view set implementation.\n" "Provides a set of actions that manage user-related data such as creation, " @@ -574,10 +582,10 @@ msgstr "" "mesclagem de itens visualizados recentemente. Essa classe estende os mixins " "e o GenericViewSet para um tratamento robusto da API." -#: vibes_auth/viewsets.py:99 +#: engine/vibes_auth/viewsets.py:99 msgid "password reset successfully" msgstr "A senha foi redefinida com sucesso!" -#: vibes_auth/viewsets.py:132 +#: engine/vibes_auth/viewsets.py:132 msgid "account already activated!" msgstr "Você já ativou a conta..." diff --git a/vibes_auth/locale/ro_RO/LC_MESSAGES/django.mo b/engine/vibes_auth/locale/ro_RO/LC_MESSAGES/django.mo similarity index 66% rename from vibes_auth/locale/ro_RO/LC_MESSAGES/django.mo rename to engine/vibes_auth/locale/ro_RO/LC_MESSAGES/django.mo index 29191706..d429168b 100644 Binary files a/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/vibes_auth/locale/ro_RO/LC_MESSAGES/django.po b/engine/vibes_auth/locale/ro_RO/LC_MESSAGES/django.po similarity index 68% rename from vibes_auth/locale/ro_RO/LC_MESSAGES/django.po rename to engine/vibes_auth/locale/ro_RO/LC_MESSAGES/django.po index 33aa8a72..5ece036f 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,162 +13,173 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: vibes_auth/admin.py:39 vibes_auth/admin.py:40 -#: vibes_auth/graphene/object_types.py:46 +#: engine/vibes_auth/admin.py:40 engine/vibes_auth/admin.py:41 +#: engine/vibes_auth/graphene/object_types.py:46 msgid "balance" msgstr "Echilibru" -#: vibes_auth/admin.py:48 +#: engine/vibes_auth/admin.py:49 msgid "order" msgstr "Comandă" -#: vibes_auth/admin.py:49 vibes_auth/graphene/object_types.py:44 +#: engine/vibes_auth/admin.py:50 engine/vibes_auth/graphene/object_types.py:44 msgid "orders" msgstr "Ordine" -#: vibes_auth/admin.py:59 +#: engine/vibes_auth/admin.py:60 msgid "personal info" msgstr "Informații personale" -#: vibes_auth/admin.py:63 vibes_auth/graphene/object_types.py:43 +#: engine/vibes_auth/admin.py:64 engine/vibes_auth/graphene/object_types.py:43 msgid "permissions" msgstr "Permisiuni" -#: vibes_auth/admin.py:76 +#: engine/vibes_auth/admin.py:77 msgid "important dates" msgstr "Date importante" -#: vibes_auth/admin.py:77 +#: engine/vibes_auth/admin.py:78 msgid "additional info" msgstr "Informații suplimentare" -#: vibes_auth/apps.py:8 +#: engine/vibes_auth/admin.py:145 +msgid "Close selected threads" +msgstr "Închideți firele selectate" + +#: engine/vibes_auth/admin.py:149 +msgid "Open selected threads" +msgstr "Deschideți firele selectate" + +#: engine/vibes_auth/apps.py:8 msgid "authentication" msgstr "Autentificare" -#: vibes_auth/docs/drf/views.py:15 +#: engine/vibes_auth/docs/drf/views.py:15 msgid "obtain a token pair" msgstr "Obțineți o pereche de jetoane" -#: vibes_auth/docs/drf/views.py:16 +#: engine/vibes_auth/docs/drf/views.py:16 msgid "obtain a token pair (refresh and access) for authentication." msgstr "" "Obțineți o pereche de jetoane (refresh și access) pentru autentificare." -#: vibes_auth/docs/drf/views.py:35 +#: engine/vibes_auth/docs/drf/views.py:35 msgid "refresh a token pair" msgstr "Reîmprospătați o pereche de jetoane" -#: vibes_auth/docs/drf/views.py:36 +#: engine/vibes_auth/docs/drf/views.py:36 msgid "refresh a token pair (refresh and access)." msgstr "Actualizați o pereche de jetoane (actualizare și acces)." -#: vibes_auth/docs/drf/views.py:55 +#: engine/vibes_auth/docs/drf/views.py:55 msgid "verify a token" msgstr "Verificarea unui jeton" -#: vibes_auth/docs/drf/views.py:56 +#: engine/vibes_auth/docs/drf/views.py:56 msgid "Verify a token (refresh or access)." msgstr "Verificarea unui jeton (reîmprospătare sau acces)." -#: vibes_auth/docs/drf/views.py:62 vibes_auth/views.py:78 +#: engine/vibes_auth/docs/drf/views.py:62 engine/vibes_auth/views.py:78 msgid "the token is valid" msgstr "Jetonul este valid" -#: vibes_auth/docs/drf/viewsets.py:16 +#: engine/vibes_auth/docs/drf/viewsets.py:16 msgid "create a new user" msgstr "Creați un utilizator nou" -#: vibes_auth/docs/drf/viewsets.py:21 +#: engine/vibes_auth/docs/drf/viewsets.py:21 msgid "retrieve a user's details" msgstr "Recuperarea detaliilor unui utilizator" -#: vibes_auth/docs/drf/viewsets.py:25 +#: engine/vibes_auth/docs/drf/viewsets.py:25 msgid "update a user's details" msgstr "Actualizarea detaliilor unui utilizator" -#: vibes_auth/docs/drf/viewsets.py:30 +#: engine/vibes_auth/docs/drf/viewsets.py:30 msgid "delete a user" msgstr "Ștergeți un utilizator" -#: vibes_auth/docs/drf/viewsets.py:34 +#: engine/vibes_auth/docs/drf/viewsets.py:34 msgid "reset a user's password by sending a reset password email" msgstr "" "Resetați parola unui utilizator prin trimiterea unui e-mail de resetare a " "parolei" -#: vibes_auth/docs/drf/viewsets.py:39 +#: engine/vibes_auth/docs/drf/viewsets.py:39 msgid "handle avatar upload for a user" msgstr "Gestionarea încărcării avatarului pentru un utilizator" -#: vibes_auth/docs/drf/viewsets.py:54 +#: engine/vibes_auth/docs/drf/viewsets.py:54 msgid "confirm a user's password reset" msgstr "Confirmați resetarea parolei unui utilizator" -#: vibes_auth/docs/drf/viewsets.py:58 vibes_auth/graphene/mutations.py:320 -#: vibes_auth/serializers.py:105 vibes_auth/serializers.py:109 -#: vibes_auth/viewsets.py:84 +#: engine/vibes_auth/docs/drf/viewsets.py:58 +#: engine/vibes_auth/graphene/mutations.py:320 +#: engine/vibes_auth/serializers.py:105 engine/vibes_auth/serializers.py:109 +#: engine/vibes_auth/viewsets.py:84 msgid "passwords do not match" msgstr "Parolele nu se potrivesc" -#: vibes_auth/docs/drf/viewsets.py:63 +#: engine/vibes_auth/docs/drf/viewsets.py:63 msgid "activate a user's account" msgstr "Activați contul unui utilizator" -#: vibes_auth/docs/drf/viewsets.py:67 +#: engine/vibes_auth/docs/drf/viewsets.py:67 msgid "activation link is invalid or account already activated" msgstr "Linkul de activare este invalid sau contul este deja activat" -#: vibes_auth/docs/drf/viewsets.py:72 +#: engine/vibes_auth/docs/drf/viewsets.py:72 msgid "merge client-stored recently viewed products" msgstr "Fuzionați produsele recent vizualizate stocate de client" -#: vibes_auth/graphene/mutations.py:41 +#: engine/vibes_auth/graphene/mutations.py:41 msgid "the user's b64-encoded uuid who referred the new user to us." msgstr "" "Uuid codificat b64 al utilizatorului care ne-a recomandat noul utilizator." -#: vibes_auth/graphene/mutations.py:61 +#: engine/vibes_auth/graphene/mutations.py:61 msgid "password too weak" msgstr "Parola este prea slabă" -#: vibes_auth/graphene/mutations.py:110 +#: engine/vibes_auth/graphene/mutations.py:110 #, python-brace-format msgid "{name} does not exist: {uuid}" msgstr "{name} nu există: {uuid}!" -#: vibes_auth/graphene/mutations.py:120 +#: engine/vibes_auth/graphene/mutations.py:120 msgid "malformed email" msgstr "E-mail malformat" -#: vibes_auth/graphene/mutations.py:127 vibes_auth/serializers.py:115 +#: engine/vibes_auth/graphene/mutations.py:127 +#: engine/vibes_auth/serializers.py:115 #, python-brace-format msgid "malformed phone number: {phone_number}" msgstr "Număr de telefon malformat: {phone_number}!" -#: vibes_auth/graphene/mutations.py:149 +#: engine/vibes_auth/graphene/mutations.py:149 #, python-brace-format msgid "Invalid attribute format: {attribute_pair}" msgstr "Format de atribut invalid: {attribute_pair}!" -#: vibes_auth/graphene/mutations.py:273 vibes_auth/viewsets.py:127 -#: vibes_auth/viewsets.py:146 +#: engine/vibes_auth/graphene/mutations.py:273 +#: engine/vibes_auth/viewsets.py:127 engine/vibes_auth/viewsets.py:146 msgid "activation link is invalid!" msgstr "Linkul de activare este invalid!" -#: vibes_auth/graphene/mutations.py:276 +#: engine/vibes_auth/graphene/mutations.py:276 msgid "account already activated..." msgstr "Contul a fost deja activat..." -#: vibes_auth/graphene/mutations.py:283 vibes_auth/graphene/mutations.py:339 +#: engine/vibes_auth/graphene/mutations.py:283 +#: engine/vibes_auth/graphene/mutations.py:339 msgid "something went wrong: {e!s}" msgstr "Ceva nu a mers bine: {e!s}" -#: vibes_auth/graphene/mutations.py:327 vibes_auth/viewsets.py:95 +#: engine/vibes_auth/graphene/mutations.py:327 engine/vibes_auth/viewsets.py:95 msgid "token is invalid!" msgstr "Token-ul nu este valabil!" -#: vibes_auth/graphene/object_types.py:40 +#: engine/vibes_auth/graphene/object_types.py:40 msgid "" "the products this user has viewed most recently (max 48), in reverse‐" "chronological order" @@ -176,100 +187,98 @@ msgstr "" "Produsele pe care acest utilizator le-a vizualizat cel mai recent (max 48), " "în ordine cronologică inversă." -#: vibes_auth/graphene/object_types.py:42 vibes_auth/models.py:132 +#: engine/vibes_auth/graphene/object_types.py:42 +#: engine/vibes_auth/models.py:123 msgid "groups" msgstr "Grupuri" -#: vibes_auth/graphene/object_types.py:45 +#: engine/vibes_auth/graphene/object_types.py:45 msgid "wishlist" msgstr "Lista dorințelor" -#: vibes_auth/graphene/object_types.py:47 vibes_auth/models.py:58 +#: engine/vibes_auth/graphene/object_types.py:47 engine/vibes_auth/models.py:59 msgid "avatar" msgstr "Avatar" -#: vibes_auth/graphene/object_types.py:48 +#: engine/vibes_auth/graphene/object_types.py:48 msgid "attributes may be used to store custom data" msgstr "Atributele pot fi utilizate pentru a stoca date personalizate" -#: vibes_auth/graphene/object_types.py:49 +#: engine/vibes_auth/graphene/object_types.py:50 #, python-brace-format -msgid "language is one of the {LANGUAGES} with default {LANGUAGE_CODE}" -msgstr "Limba este una dintre {LANGUAGES} cu implicit {LANGUAGE_CODE}" +msgid "" +"language is one of the {settings.LANGUAGES} with default {settings." +"LANGUAGE_CODE}" +msgstr "" +"Limba este una dintre {settings.LANGUAGES} cu implicit {settings." +"LANGUAGE_CODE}" -#: vibes_auth/graphene/object_types.py:50 +#: engine/vibes_auth/graphene/object_types.py:52 msgid "address set" msgstr "Adrese" -#: vibes_auth/messaging/admin.py:36 -msgid "Close selected threads" -msgstr "Închideți firele selectate" - -#: vibes_auth/messaging/admin.py:40 -msgid "Open selected threads" -msgstr "Deschideți firele selectate" - -#: vibes_auth/messaging/models.py:24 +#: engine/vibes_auth/messaging/models.py:24 msgid "Open" msgstr "Deschis" -#: vibes_auth/messaging/models.py:25 +#: engine/vibes_auth/messaging/models.py:25 msgid "Closed" msgstr "Închis" -#: vibes_auth/messaging/models.py:29 +#: engine/vibes_auth/messaging/models.py:29 msgid "User" msgstr "Utilizator" -#: vibes_auth/messaging/models.py:30 +#: engine/vibes_auth/messaging/models.py:30 msgid "Staff" msgstr "Personal" -#: vibes_auth/messaging/models.py:31 +#: engine/vibes_auth/messaging/models.py:31 msgid "System" msgstr "Sistemul" -#: vibes_auth/messaging/models.py:36 +#: engine/vibes_auth/messaging/models.py:36 msgid "For anonymous threads" msgstr "Pentru subiecte anonime" -#: vibes_auth/messaging/models.py:50 +#: engine/vibes_auth/messaging/models.py:50 msgid "Chat thread" msgstr "Fir de chat" -#: vibes_auth/messaging/models.py:51 +#: engine/vibes_auth/messaging/models.py:51 msgid "Chat threads" msgstr "Fire de chat" -#: vibes_auth/messaging/models.py:56 +#: engine/vibes_auth/messaging/models.py:56 msgid "Provide user or email for anonymous thread." msgstr "Furnizați utilizatorul sau adresa de e-mail pentru firul anonim." -#: vibes_auth/messaging/models.py:58 vibes_auth/messaging/services.py:133 +#: engine/vibes_auth/messaging/models.py:58 +#: engine/vibes_auth/messaging/services.py:132 msgid "Assignee must be a staff user." msgstr "Destinatarul trebuie să fie un utilizator personal." -#: vibes_auth/messaging/models.py:74 +#: engine/vibes_auth/messaging/models.py:74 msgid "Chat message" msgstr "Mesaj de chat" -#: vibes_auth/messaging/models.py:75 +#: engine/vibes_auth/messaging/models.py:75 msgid "Chat messages" msgstr "Mesaje de chat" -#: vibes_auth/messaging/services.py:48 +#: engine/vibes_auth/messaging/services.py:47 msgid "Valid email is required for anonymous chats." msgstr "Pentru chat-urile anonime este necesar un e-mail valid." -#: vibes_auth/messaging/services.py:56 +#: engine/vibes_auth/messaging/services.py:55 msgid "Message must be 1..1028 characters." msgstr "Mesajul trebuie să aibă 1..1028 caractere." -#: vibes_auth/messaging/services.py:90 +#: engine/vibes_auth/messaging/services.py:89 msgid "We're searching for the operator to answer you already, hold by!" msgstr "Căutăm operatorul care să vă răspundă deja, așteptați!" -#: vibes_auth/models.py:30 +#: engine/vibes_auth/models.py:31 msgid "" "Represents a User entity with customized fields and methods for extended " "functionality. This class extends the AbstractUser model and integrates " @@ -288,154 +297,154 @@ msgstr "" "verificarea conturilor. Modelul User este conceput pentru a gestiona cazuri " "de utilizare specifice pentru gestionarea îmbunătățită a utilizatorilor." -#: vibes_auth/models.py:41 +#: engine/vibes_auth/models.py:42 msgid "email" msgstr "E-mail" -#: vibes_auth/models.py:41 +#: engine/vibes_auth/models.py:42 msgid "user email address" msgstr "Adresa de e-mail a utilizatorului" -#: vibes_auth/models.py:43 +#: engine/vibes_auth/models.py:44 msgid "phone_number" msgstr "Număr de telefon" -#: vibes_auth/models.py:48 +#: engine/vibes_auth/models.py:49 msgid "user phone number" msgstr "Numărul de telefon al utilizatorului" -#: vibes_auth/models.py:54 +#: engine/vibes_auth/models.py:55 msgid "first_name" msgstr "Numele și prenumele" -#: vibes_auth/models.py:55 +#: engine/vibes_auth/models.py:56 msgid "last_name" msgstr "Numele de familie" -#: vibes_auth/models.py:61 +#: engine/vibes_auth/models.py:62 msgid "user profile image" msgstr "Imagine profil utilizator" -#: vibes_auth/models.py:66 +#: engine/vibes_auth/models.py:67 msgid "is verified" msgstr "Este verificat" -#: vibes_auth/models.py:67 +#: engine/vibes_auth/models.py:68 msgid "user verification status" msgstr "Statutul de verificare al utilizatorului" -#: vibes_auth/models.py:70 +#: engine/vibes_auth/models.py:71 msgid "is_active" msgstr "Este activ" -#: vibes_auth/models.py:72 +#: engine/vibes_auth/models.py:73 msgid "unselect this instead of deleting accounts" msgstr "Deselectați acest lucru în loc să ștergeți conturile" -#: vibes_auth/models.py:75 +#: engine/vibes_auth/models.py:76 msgid "is_subscribed" msgstr "Este abonat" -#: vibes_auth/models.py:75 +#: engine/vibes_auth/models.py:76 msgid "user's newsletter subscription status" msgstr "Starea abonării utilizatorului la buletinul informativ" -#: vibes_auth/models.py:78 +#: engine/vibes_auth/models.py:79 msgid "activation token" msgstr "Jeton de activare" -#: vibes_auth/models.py:80 +#: engine/vibes_auth/models.py:83 msgid "attributes" msgstr "Atribute" -#: vibes_auth/models.py:110 +#: engine/vibes_auth/models.py:115 msgid "user" msgstr "Utilizator" -#: vibes_auth/models.py:111 +#: engine/vibes_auth/models.py:116 msgid "users" msgstr "Utilizatori" -#: vibes_auth/models.py:131 +#: engine/vibes_auth/models.py:122 msgid "group" msgstr "Grup" -#: vibes_auth/models.py:148 +#: engine/vibes_auth/models.py:129 msgid "outstanding token" msgstr "Simbol excepțional" -#: vibes_auth/models.py:149 +#: engine/vibes_auth/models.py:130 msgid "outstanding tokens" msgstr "Jetoane restante" -#: vibes_auth/models.py:167 +#: engine/vibes_auth/models.py:136 msgid "blacklisted token" msgstr "Token pe lista neagră" -#: vibes_auth/models.py:168 +#: engine/vibes_auth/models.py:137 msgid "blacklisted tokens" msgstr "Jetoane pe lista neagră" -#: vibes_auth/serializers.py:99 +#: engine/vibes_auth/serializers.py:99 msgid "attributes must be a dictionary" msgstr "`attributes` trebuie să fie un dicționar" -#: vibes_auth/serializers.py:101 +#: engine/vibes_auth/serializers.py:101 msgid "business identificator is required when registering as a business" msgstr "" "Identificatorul de întreprindere este necesar în momentul înregistrării ca " "întreprindere" -#: vibes_auth/serializers.py:121 +#: engine/vibes_auth/serializers.py:121 #, python-brace-format msgid "malformed email: {email}" msgstr "e-mail malformat: {email}" -#: vibes_auth/serializers.py:142 vibes_auth/serializers.py:164 -#: vibes_auth/serializers.py:186 vibes_auth/serializers.py:198 +#: engine/vibes_auth/serializers.py:142 engine/vibes_auth/serializers.py:164 +#: engine/vibes_auth/serializers.py:184 engine/vibes_auth/serializers.py:194 msgid "no active account" msgstr "Nu s-a găsit niciun cont activ" -#: vibes_auth/serializers.py:174 +#: engine/vibes_auth/serializers.py:174 msgid "must set token_class attribute on class." msgstr "Trebuie să setați atributul token_class pe clasă!" -#: vibes_auth/serializers.py:246 +#: engine/vibes_auth/serializers.py:240 msgid "token_blacklisted" msgstr "Token pe lista neagră" -#: vibes_auth/serializers.py:251 +#: engine/vibes_auth/serializers.py:245 msgid "invalid token" msgstr "Jeton invalid" -#: vibes_auth/serializers.py:257 +#: engine/vibes_auth/serializers.py:251 msgid "no user uuid claim present in token" msgstr "În jeton nu este prezentă nicio cerere uuid a utilizatorului" -#: vibes_auth/serializers.py:259 +#: engine/vibes_auth/serializers.py:253 msgid "user does not exist" msgstr "Utilizatorul nu există" -#: vibes_auth/templates/user_reset_password_email.html:7 +#: engine/vibes_auth/templates/user_reset_password_email.html:7 msgid "reset your password" msgstr "Resetați parola" -#: vibes_auth/templates/user_reset_password_email.html:85 -#: vibes_auth/templates/user_verification_email.html:85 +#: engine/vibes_auth/templates/user_reset_password_email.html:85 +#: engine/vibes_auth/templates/user_verification_email.html:85 msgid "logo" msgstr "Logo" -#: vibes_auth/templates/user_reset_password_email.html:90 +#: engine/vibes_auth/templates/user_reset_password_email.html:90 msgid "password reset confirmation" msgstr "Confirmarea resetării parolei" -#: vibes_auth/templates/user_reset_password_email.html:91 -#: vibes_auth/templates/user_verification_email.html:91 +#: engine/vibes_auth/templates/user_reset_password_email.html:91 +#: engine/vibes_auth/templates/user_verification_email.html:91 #, python-format msgid "hello %(user_first_name)s," msgstr "Bună ziua %(user_first_name)s," -#: vibes_auth/templates/user_reset_password_email.html:92 +#: 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" @@ -444,12 +453,12 @@ msgstr "" "Am primit o cerere de resetare a parolei dumneavoastră. Vă rugăm să vă " "resetați parola făcând clic pe butonul de mai jos:" -#: vibes_auth/templates/user_reset_password_email.html:95 +#: engine/vibes_auth/templates/user_reset_password_email.html:95 msgid "reset password" msgstr "resetați parola" -#: vibes_auth/templates/user_reset_password_email.html:97 -#: vibes_auth/templates/user_verification_email.html:99 +#: engine/vibes_auth/templates/user_reset_password_email.html:97 +#: engine/vibes_auth/templates/user_verification_email.html:99 msgid "" "if the button above does not work, please copy and paste the following URL\n" " into your web browser:" @@ -458,7 +467,7 @@ msgstr "" "următoarea adresă URL\n" " în browserul dvs. web:" -#: vibes_auth/templates/user_reset_password_email.html:100 +#: engine/vibes_auth/templates/user_reset_password_email.html:100 msgid "" "if you did not send this request, please ignore this\n" " email." @@ -466,22 +475,22 @@ msgstr "" "dacă nu ați trimis această cerere, vă rugăm să ignorați acest\n" " e-mail." -#: vibes_auth/templates/user_reset_password_email.html:102 +#: engine/vibes_auth/templates/user_reset_password_email.html:102 #, python-format msgid "best regards,
The %(project_name)s team" msgstr "Cele mai bune salutări,
Echipa %(project_name)s" -#: vibes_auth/templates/user_reset_password_email.html:108 -#: vibes_auth/templates/user_verification_email.html:108 +#: engine/vibes_auth/templates/user_reset_password_email.html:108 +#: engine/vibes_auth/templates/user_verification_email.html:108 msgid "all rights reserved" msgstr "Toate drepturile rezervate" -#: vibes_auth/templates/user_verification_email.html:7 -#: vibes_auth/templates/user_verification_email.html:90 +#: engine/vibes_auth/templates/user_verification_email.html:7 +#: engine/vibes_auth/templates/user_verification_email.html:90 msgid "activate your account" msgstr "Activează-ți contul" -#: vibes_auth/templates/user_verification_email.html:92 +#: engine/vibes_auth/templates/user_verification_email.html:92 #, python-format msgid "" "thank you for signing up for %(project_name)s. please activate your account\n" @@ -490,7 +499,7 @@ msgstr "" "Vă mulțumim pentru înscrierea la %(project_name)s. Vă rugăm să vă activați " "contul făcând clic pe butonul de mai jos:" -#: vibes_auth/templates/user_verification_email.html:96 +#: engine/vibes_auth/templates/user_verification_email.html:96 msgid "" "activate\n" " account" @@ -498,22 +507,22 @@ msgstr "" "Activați\n" " cont" -#: vibes_auth/templates/user_verification_email.html:102 +#: engine/vibes_auth/templates/user_verification_email.html:102 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "Cele mai bune salutări,
echipa %(project_name)s" -#: vibes_auth/utils/emailing.py:23 +#: engine/vibes_auth/utils/emailing.py:23 #, python-brace-format msgid "{config.PROJECT_NAME} | Activate Account" msgstr "{config.PROJECT_NAME} | Activare cont" -#: vibes_auth/utils/emailing.py:62 +#: engine/vibes_auth/utils/emailing.py:62 #, python-brace-format msgid "{config.PROJECT_NAME} | Reset Password" msgstr "{config.PROJECT_NAME} | Resetați parola" -#: vibes_auth/validators.py:13 +#: engine/vibes_auth/validators.py:13 msgid "" "invalid phone number format. the number must be entered in the format: " "\"+999999999\". up to 15 digits allowed." @@ -521,7 +530,7 @@ msgstr "" "Format invalid al numărului de telefon. Numărul trebuie să fie introdus în " "formatul: \"+999999999\". Sunt permise până la 15 cifre." -#: vibes_auth/views.py:30 +#: engine/vibes_auth/views.py:30 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 " @@ -537,7 +546,7 @@ msgstr "" "de bază a jetoanelor și asigură limitarea corespunzătoare a ratei pentru a " "proteja împotriva atacurilor prin forță brută." -#: vibes_auth/views.py:48 +#: engine/vibes_auth/views.py:48 msgid "" "Handles refreshing of tokens for authentication purposes. This class is used " "to provide functionality for token refresh operations as part of an " @@ -553,7 +562,7 @@ msgstr "" "intrările de reîmprospătare a jetoanelor și pentru a produce ieșirile " "corespunzătoare." -#: vibes_auth/views.py:67 +#: engine/vibes_auth/views.py:67 msgid "" "Represents a view for verifying JSON Web Tokens (JWT) using specific " "serialization and validation logic. " @@ -561,11 +570,11 @@ msgstr "" "Reprezintă o vizualizare pentru verificarea JSON Web Tokens (JWT) utilizând " "o serializare specifică și o logică de validare." -#: vibes_auth/views.py:80 +#: engine/vibes_auth/views.py:80 msgid "the token is invalid" msgstr "Jetonul nu este valabil" -#: vibes_auth/viewsets.py:45 +#: engine/vibes_auth/viewsets.py:45 msgid "" "User view set implementation.\n" "Provides a set of actions that manage user-related data such as creation, " @@ -580,10 +589,10 @@ msgstr "" "contului și îmbinarea elementelor vizualizate recent. Această clasă extinde " "mixinele și GenericViewSet pentru o gestionare robustă a API." -#: vibes_auth/viewsets.py:99 +#: engine/vibes_auth/viewsets.py:99 msgid "password reset successfully" msgstr "Parola a fost resetată cu succes!" -#: vibes_auth/viewsets.py:132 +#: engine/vibes_auth/viewsets.py:132 msgid "account already activated!" msgstr "Ați activat deja contul..." diff --git a/vibes_auth/locale/ru_RU/LC_MESSAGES/django.mo b/engine/vibes_auth/locale/ru_RU/LC_MESSAGES/django.mo similarity index 67% rename from vibes_auth/locale/ru_RU/LC_MESSAGES/django.mo rename to engine/vibes_auth/locale/ru_RU/LC_MESSAGES/django.mo index bc698ad9..b0abca36 100644 Binary files a/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/vibes_auth/locale/ru_RU/LC_MESSAGES/django.po b/engine/vibes_auth/locale/ru_RU/LC_MESSAGES/django.po similarity index 73% rename from vibes_auth/locale/ru_RU/LC_MESSAGES/django.po rename to engine/vibes_auth/locale/ru_RU/LC_MESSAGES/django.po index fc0a30a7..af940e53 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,162 +13,173 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: vibes_auth/admin.py:39 vibes_auth/admin.py:40 -#: vibes_auth/graphene/object_types.py:46 +#: engine/vibes_auth/admin.py:40 engine/vibes_auth/admin.py:41 +#: engine/vibes_auth/graphene/object_types.py:46 msgid "balance" msgstr "Баланс" -#: vibes_auth/admin.py:48 +#: engine/vibes_auth/admin.py:49 msgid "order" msgstr "Заказ" -#: vibes_auth/admin.py:49 vibes_auth/graphene/object_types.py:44 +#: engine/vibes_auth/admin.py:50 engine/vibes_auth/graphene/object_types.py:44 msgid "orders" msgstr "Заказы" -#: vibes_auth/admin.py:59 +#: engine/vibes_auth/admin.py:60 msgid "personal info" msgstr "Личная информация" -#: vibes_auth/admin.py:63 vibes_auth/graphene/object_types.py:43 +#: engine/vibes_auth/admin.py:64 engine/vibes_auth/graphene/object_types.py:43 msgid "permissions" msgstr "Разрешения" -#: vibes_auth/admin.py:76 +#: engine/vibes_auth/admin.py:77 msgid "important dates" msgstr "Важные даты" -#: vibes_auth/admin.py:77 +#: engine/vibes_auth/admin.py:78 msgid "additional info" msgstr "Дополнительная информация" -#: vibes_auth/apps.py:8 +#: engine/vibes_auth/admin.py:145 +msgid "Close selected threads" +msgstr "Закрыть выбранные нити" + +#: engine/vibes_auth/admin.py:149 +msgid "Open selected threads" +msgstr "Открыть выбранные нити" + +#: engine/vibes_auth/apps.py:8 msgid "authentication" msgstr "Аутентификация" -#: vibes_auth/docs/drf/views.py:15 +#: engine/vibes_auth/docs/drf/views.py:15 msgid "obtain a token pair" msgstr "Получение пары токенов" -#: vibes_auth/docs/drf/views.py:16 +#: engine/vibes_auth/docs/drf/views.py:16 msgid "obtain a token pair (refresh and access) for authentication." msgstr "Получите пару токенов (refresh и access) для аутентификации." -#: vibes_auth/docs/drf/views.py:35 +#: engine/vibes_auth/docs/drf/views.py:35 msgid "refresh a token pair" msgstr "Обновить пару токенов" -#: vibes_auth/docs/drf/views.py:36 +#: engine/vibes_auth/docs/drf/views.py:36 msgid "refresh a token pair (refresh and access)." msgstr "Обновление пары токенов (обновление и доступ)." -#: vibes_auth/docs/drf/views.py:55 +#: engine/vibes_auth/docs/drf/views.py:55 msgid "verify a token" msgstr "Проверка токена" -#: vibes_auth/docs/drf/views.py:56 +#: engine/vibes_auth/docs/drf/views.py:56 msgid "Verify a token (refresh or access)." msgstr "Проверка токена (обновление или доступ)." -#: vibes_auth/docs/drf/views.py:62 vibes_auth/views.py:78 +#: engine/vibes_auth/docs/drf/views.py:62 engine/vibes_auth/views.py:78 msgid "the token is valid" msgstr "Токен действителен" -#: vibes_auth/docs/drf/viewsets.py:16 +#: engine/vibes_auth/docs/drf/viewsets.py:16 msgid "create a new user" msgstr "Создайте нового пользователя" -#: vibes_auth/docs/drf/viewsets.py:21 +#: engine/vibes_auth/docs/drf/viewsets.py:21 msgid "retrieve a user's details" msgstr "Получение информации о пользователе" -#: vibes_auth/docs/drf/viewsets.py:25 +#: engine/vibes_auth/docs/drf/viewsets.py:25 msgid "update a user's details" msgstr "Обновление данных пользователя" -#: vibes_auth/docs/drf/viewsets.py:30 +#: engine/vibes_auth/docs/drf/viewsets.py:30 msgid "delete a user" msgstr "Удалить пользователя" -#: vibes_auth/docs/drf/viewsets.py:34 +#: engine/vibes_auth/docs/drf/viewsets.py:34 msgid "reset a user's password by sending a reset password email" msgstr "" "Сброс пароля пользователя путем отправки электронного сообщения о сбросе " "пароля" -#: vibes_auth/docs/drf/viewsets.py:39 +#: engine/vibes_auth/docs/drf/viewsets.py:39 msgid "handle avatar upload for a user" msgstr "Обработка загрузки аватара для пользователя" -#: vibes_auth/docs/drf/viewsets.py:54 +#: engine/vibes_auth/docs/drf/viewsets.py:54 msgid "confirm a user's password reset" msgstr "Подтверждение сброса пароля пользователя" -#: vibes_auth/docs/drf/viewsets.py:58 vibes_auth/graphene/mutations.py:320 -#: vibes_auth/serializers.py:105 vibes_auth/serializers.py:109 -#: vibes_auth/viewsets.py:84 +#: engine/vibes_auth/docs/drf/viewsets.py:58 +#: engine/vibes_auth/graphene/mutations.py:320 +#: engine/vibes_auth/serializers.py:105 engine/vibes_auth/serializers.py:109 +#: engine/vibes_auth/viewsets.py:84 msgid "passwords do not match" msgstr "Пароли не совпадают" -#: vibes_auth/docs/drf/viewsets.py:63 +#: engine/vibes_auth/docs/drf/viewsets.py:63 msgid "activate a user's account" msgstr "Активация учетной записи пользователя" -#: vibes_auth/docs/drf/viewsets.py:67 +#: engine/vibes_auth/docs/drf/viewsets.py:67 msgid "activation link is invalid or account already activated" msgstr "Ссылка на активацию недействительна или аккаунт уже активирован" -#: vibes_auth/docs/drf/viewsets.py:72 +#: engine/vibes_auth/docs/drf/viewsets.py:72 msgid "merge client-stored recently viewed products" msgstr "Объедините недавно просмотренные продукты, хранящиеся в памяти клиента" -#: vibes_auth/graphene/mutations.py:41 +#: engine/vibes_auth/graphene/mutations.py:41 msgid "the user's b64-encoded uuid who referred the new user to us." msgstr "" "b64-кодированный uuid пользователя, который направил к нам нового " "пользователя." -#: vibes_auth/graphene/mutations.py:61 +#: engine/vibes_auth/graphene/mutations.py:61 msgid "password too weak" msgstr "Пароль слишком слабый" -#: vibes_auth/graphene/mutations.py:110 +#: engine/vibes_auth/graphene/mutations.py:110 #, python-brace-format msgid "{name} does not exist: {uuid}" msgstr "{name} не существует: {uuid}!" -#: vibes_auth/graphene/mutations.py:120 +#: engine/vibes_auth/graphene/mutations.py:120 msgid "malformed email" msgstr "Некорректное письмо" -#: vibes_auth/graphene/mutations.py:127 vibes_auth/serializers.py:115 +#: engine/vibes_auth/graphene/mutations.py:127 +#: engine/vibes_auth/serializers.py:115 #, python-brace-format msgid "malformed phone number: {phone_number}" msgstr "Некорректный номер телефона: {phone_number}!" -#: vibes_auth/graphene/mutations.py:149 +#: engine/vibes_auth/graphene/mutations.py:149 #, python-brace-format msgid "Invalid attribute format: {attribute_pair}" msgstr "Недопустимый формат атрибута: {attribute_pair}!" -#: vibes_auth/graphene/mutations.py:273 vibes_auth/viewsets.py:127 -#: vibes_auth/viewsets.py:146 +#: engine/vibes_auth/graphene/mutations.py:273 +#: engine/vibes_auth/viewsets.py:127 engine/vibes_auth/viewsets.py:146 msgid "activation link is invalid!" msgstr "Ссылка на активацию недействительна!" -#: vibes_auth/graphene/mutations.py:276 +#: engine/vibes_auth/graphene/mutations.py:276 msgid "account already activated..." msgstr "Аккаунт уже активирован..." -#: vibes_auth/graphene/mutations.py:283 vibes_auth/graphene/mutations.py:339 +#: engine/vibes_auth/graphene/mutations.py:283 +#: engine/vibes_auth/graphene/mutations.py:339 msgid "something went wrong: {e!s}" msgstr "Что-то пошло не так: {e!s}" -#: vibes_auth/graphene/mutations.py:327 vibes_auth/viewsets.py:95 +#: engine/vibes_auth/graphene/mutations.py:327 engine/vibes_auth/viewsets.py:95 msgid "token is invalid!" msgstr "Токен недействителен!" -#: vibes_auth/graphene/object_types.py:40 +#: engine/vibes_auth/graphene/object_types.py:40 msgid "" "the products this user has viewed most recently (max 48), in reverse‐" "chronological order" @@ -176,100 +187,97 @@ msgstr "" "Продукты, которые этот пользователь просматривал в последнее время (не более " "48), в обратном хронологическом порядке." -#: vibes_auth/graphene/object_types.py:42 vibes_auth/models.py:132 +#: engine/vibes_auth/graphene/object_types.py:42 +#: engine/vibes_auth/models.py:123 msgid "groups" msgstr "Группы" -#: vibes_auth/graphene/object_types.py:45 +#: engine/vibes_auth/graphene/object_types.py:45 msgid "wishlist" msgstr "Список желаний" -#: vibes_auth/graphene/object_types.py:47 vibes_auth/models.py:58 +#: engine/vibes_auth/graphene/object_types.py:47 engine/vibes_auth/models.py:59 msgid "avatar" msgstr "Аватар" -#: vibes_auth/graphene/object_types.py:48 +#: engine/vibes_auth/graphene/object_types.py:48 msgid "attributes may be used to store custom data" msgstr "Атрибуты могут использоваться для хранения пользовательских данных" -#: vibes_auth/graphene/object_types.py:49 +#: engine/vibes_auth/graphene/object_types.py:50 #, python-brace-format -msgid "language is one of the {LANGUAGES} with default {LANGUAGE_CODE}" -msgstr "Язык - один из {LANGUAGES}, по умолчанию {LANGUAGE_CODE}." +msgid "" +"language is one of the {settings.LANGUAGES} with default {settings." +"LANGUAGE_CODE}" +msgstr "" +"Язык - один из {settings.LANGUAGES}, по умолчанию {settings.LANGUAGE_CODE}." -#: vibes_auth/graphene/object_types.py:50 +#: engine/vibes_auth/graphene/object_types.py:52 msgid "address set" msgstr "Адреса" -#: vibes_auth/messaging/admin.py:36 -msgid "Close selected threads" -msgstr "Закрыть выбранные нити" - -#: vibes_auth/messaging/admin.py:40 -msgid "Open selected threads" -msgstr "Открыть выбранные нити" - -#: vibes_auth/messaging/models.py:24 +#: engine/vibes_auth/messaging/models.py:24 msgid "Open" msgstr "Открыть" -#: vibes_auth/messaging/models.py:25 +#: engine/vibes_auth/messaging/models.py:25 msgid "Closed" msgstr "Закрытый" -#: vibes_auth/messaging/models.py:29 +#: engine/vibes_auth/messaging/models.py:29 msgid "User" msgstr "Пользователь" -#: vibes_auth/messaging/models.py:30 +#: engine/vibes_auth/messaging/models.py:30 msgid "Staff" msgstr "Персонал" -#: vibes_auth/messaging/models.py:31 +#: engine/vibes_auth/messaging/models.py:31 msgid "System" msgstr "Система" -#: vibes_auth/messaging/models.py:36 +#: engine/vibes_auth/messaging/models.py:36 msgid "For anonymous threads" msgstr "Для анонимных потоков" -#: vibes_auth/messaging/models.py:50 +#: engine/vibes_auth/messaging/models.py:50 msgid "Chat thread" msgstr "Нить чата" -#: vibes_auth/messaging/models.py:51 +#: engine/vibes_auth/messaging/models.py:51 msgid "Chat threads" msgstr "Нити чата" -#: vibes_auth/messaging/models.py:56 +#: engine/vibes_auth/messaging/models.py:56 msgid "Provide user or email for anonymous thread." msgstr "Укажите пользователя или электронную почту для анонимной темы." -#: vibes_auth/messaging/models.py:58 vibes_auth/messaging/services.py:133 +#: engine/vibes_auth/messaging/models.py:58 +#: engine/vibes_auth/messaging/services.py:132 msgid "Assignee must be a staff user." msgstr "Получатель должен быть штатным пользователем." -#: vibes_auth/messaging/models.py:74 +#: engine/vibes_auth/messaging/models.py:74 msgid "Chat message" msgstr "Сообщение в чате" -#: vibes_auth/messaging/models.py:75 +#: engine/vibes_auth/messaging/models.py:75 msgid "Chat messages" msgstr "Сообщения в чате" -#: vibes_auth/messaging/services.py:48 +#: engine/vibes_auth/messaging/services.py:47 msgid "Valid email is required for anonymous chats." msgstr "Для анонимных чатов требуется действительный адрес электронной почты." -#: vibes_auth/messaging/services.py:56 +#: engine/vibes_auth/messaging/services.py:55 msgid "Message must be 1..1028 characters." msgstr "Сообщение должно содержать 1...1028 символов." -#: vibes_auth/messaging/services.py:90 +#: engine/vibes_auth/messaging/services.py:89 msgid "We're searching for the operator to answer you already, hold by!" msgstr "Мы ищем оператора, чтобы ответить вам, держитесь!" -#: vibes_auth/models.py:30 +#: engine/vibes_auth/models.py:31 msgid "" "Represents a User entity with customized fields and methods for extended " "functionality. This class extends the AbstractUser model and integrates " @@ -288,152 +296,152 @@ msgstr "" "Модель User предназначена для обработки конкретных случаев использования для " "расширенного управления пользователями." -#: vibes_auth/models.py:41 +#: engine/vibes_auth/models.py:42 msgid "email" msgstr "Электронная почта" -#: vibes_auth/models.py:41 +#: engine/vibes_auth/models.py:42 msgid "user email address" msgstr "Адрес электронной почты пользователя" -#: vibes_auth/models.py:43 +#: engine/vibes_auth/models.py:44 msgid "phone_number" msgstr "Номер телефона" -#: vibes_auth/models.py:48 +#: engine/vibes_auth/models.py:49 msgid "user phone number" msgstr "Номер телефона пользователя" -#: vibes_auth/models.py:54 +#: engine/vibes_auth/models.py:55 msgid "first_name" msgstr "Имя" -#: vibes_auth/models.py:55 +#: engine/vibes_auth/models.py:56 msgid "last_name" msgstr "Фамилия" -#: vibes_auth/models.py:61 +#: engine/vibes_auth/models.py:62 msgid "user profile image" msgstr "Изображение профиля пользователя" -#: vibes_auth/models.py:66 +#: engine/vibes_auth/models.py:67 msgid "is verified" msgstr "Проверено" -#: vibes_auth/models.py:67 +#: engine/vibes_auth/models.py:68 msgid "user verification status" msgstr "Статус верификации пользователя" -#: vibes_auth/models.py:70 +#: engine/vibes_auth/models.py:71 msgid "is_active" msgstr "Активен" -#: vibes_auth/models.py:72 +#: engine/vibes_auth/models.py:73 msgid "unselect this instead of deleting accounts" msgstr "Снимите этот флажок вместо удаления учетных записей" -#: vibes_auth/models.py:75 +#: engine/vibes_auth/models.py:76 msgid "is_subscribed" msgstr "Подписан" -#: vibes_auth/models.py:75 +#: engine/vibes_auth/models.py:76 msgid "user's newsletter subscription status" msgstr "Статус подписки пользователя на рассылку новостей" -#: vibes_auth/models.py:78 +#: engine/vibes_auth/models.py:79 msgid "activation token" msgstr "Активационный токен" -#: vibes_auth/models.py:80 +#: engine/vibes_auth/models.py:83 msgid "attributes" msgstr "Атрибуты" -#: vibes_auth/models.py:110 +#: engine/vibes_auth/models.py:115 msgid "user" msgstr "Пользователь" -#: vibes_auth/models.py:111 +#: engine/vibes_auth/models.py:116 msgid "users" msgstr "Пользователи" -#: vibes_auth/models.py:131 +#: engine/vibes_auth/models.py:122 msgid "group" msgstr "Группа" -#: vibes_auth/models.py:148 +#: engine/vibes_auth/models.py:129 msgid "outstanding token" msgstr "Выдающийся жетон" -#: vibes_auth/models.py:149 +#: engine/vibes_auth/models.py:130 msgid "outstanding tokens" msgstr "Выпущенные токены" -#: vibes_auth/models.py:167 +#: engine/vibes_auth/models.py:136 msgid "blacklisted token" msgstr "Токен в черном списке" -#: vibes_auth/models.py:168 +#: engine/vibes_auth/models.py:137 msgid "blacklisted tokens" msgstr "Чёрный список токенов" -#: vibes_auth/serializers.py:99 +#: engine/vibes_auth/serializers.py:99 msgid "attributes must be a dictionary" msgstr "`Атрибуты` должны быть словарем" -#: vibes_auth/serializers.py:101 +#: engine/vibes_auth/serializers.py:101 msgid "business identificator is required when registering as a business" msgstr "Бизнес-идентификатор необходим при регистрации в качестве предприятия" -#: vibes_auth/serializers.py:121 +#: engine/vibes_auth/serializers.py:121 #, python-brace-format msgid "malformed email: {email}" msgstr "malformed email: {email}" -#: vibes_auth/serializers.py:142 vibes_auth/serializers.py:164 -#: vibes_auth/serializers.py:186 vibes_auth/serializers.py:198 +#: engine/vibes_auth/serializers.py:142 engine/vibes_auth/serializers.py:164 +#: engine/vibes_auth/serializers.py:184 engine/vibes_auth/serializers.py:194 msgid "no active account" msgstr "Активная учетная запись не найдена" -#: vibes_auth/serializers.py:174 +#: engine/vibes_auth/serializers.py:174 msgid "must set token_class attribute on class." msgstr "Необходимо установить атрибут token_class для класса!" -#: vibes_auth/serializers.py:246 +#: engine/vibes_auth/serializers.py:240 msgid "token_blacklisted" msgstr "Токен занесен в черный список" -#: vibes_auth/serializers.py:251 +#: engine/vibes_auth/serializers.py:245 msgid "invalid token" msgstr "Неверный токен" -#: vibes_auth/serializers.py:257 +#: engine/vibes_auth/serializers.py:251 msgid "no user uuid claim present in token" msgstr "В токене отсутствует утверждение uuid пользователя" -#: vibes_auth/serializers.py:259 +#: engine/vibes_auth/serializers.py:253 msgid "user does not exist" msgstr "Пользователь не существует" -#: vibes_auth/templates/user_reset_password_email.html:7 +#: engine/vibes_auth/templates/user_reset_password_email.html:7 msgid "reset your password" msgstr "Сбросить пароль" -#: vibes_auth/templates/user_reset_password_email.html:85 -#: vibes_auth/templates/user_verification_email.html:85 +#: engine/vibes_auth/templates/user_reset_password_email.html:85 +#: engine/vibes_auth/templates/user_verification_email.html:85 msgid "logo" msgstr "Логотип" -#: vibes_auth/templates/user_reset_password_email.html:90 +#: engine/vibes_auth/templates/user_reset_password_email.html:90 msgid "password reset confirmation" msgstr "Подтверждение сброса пароля" -#: vibes_auth/templates/user_reset_password_email.html:91 -#: vibes_auth/templates/user_verification_email.html:91 +#: engine/vibes_auth/templates/user_reset_password_email.html:91 +#: engine/vibes_auth/templates/user_verification_email.html:91 #, python-format msgid "hello %(user_first_name)s," msgstr "Привет %(user_first_name)s," -#: vibes_auth/templates/user_reset_password_email.html:92 +#: 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" @@ -442,12 +450,12 @@ msgstr "" "Мы получили запрос на сброс вашего пароля. Пожалуйста, сбросьте пароль, " "нажав на кнопку ниже:" -#: vibes_auth/templates/user_reset_password_email.html:95 +#: engine/vibes_auth/templates/user_reset_password_email.html:95 msgid "reset password" msgstr "сброс пароля" -#: vibes_auth/templates/user_reset_password_email.html:97 -#: vibes_auth/templates/user_verification_email.html:99 +#: engine/vibes_auth/templates/user_reset_password_email.html:97 +#: engine/vibes_auth/templates/user_verification_email.html:99 msgid "" "if the button above does not work, please copy and paste the following URL\n" " into your web browser:" @@ -456,29 +464,29 @@ msgstr "" "URL-адрес\n" " в свой веб-браузер:" -#: vibes_auth/templates/user_reset_password_email.html:100 +#: engine/vibes_auth/templates/user_reset_password_email.html:100 msgid "" "if you did not send this request, please ignore this\n" " email." msgstr "" "Если вы не отправляли этот запрос, пожалуйста, проигнорируйте это письмо." -#: vibes_auth/templates/user_reset_password_email.html:102 +#: engine/vibes_auth/templates/user_reset_password_email.html:102 #, python-format msgid "best regards,
The %(project_name)s team" msgstr "С наилучшими пожеланиями,
Команда %(project_name)s" -#: vibes_auth/templates/user_reset_password_email.html:108 -#: vibes_auth/templates/user_verification_email.html:108 +#: engine/vibes_auth/templates/user_reset_password_email.html:108 +#: engine/vibes_auth/templates/user_verification_email.html:108 msgid "all rights reserved" msgstr "Все права защищены" -#: vibes_auth/templates/user_verification_email.html:7 -#: vibes_auth/templates/user_verification_email.html:90 +#: engine/vibes_auth/templates/user_verification_email.html:7 +#: engine/vibes_auth/templates/user_verification_email.html:90 msgid "activate your account" msgstr "Активируйте свой аккаунт" -#: vibes_auth/templates/user_verification_email.html:92 +#: engine/vibes_auth/templates/user_verification_email.html:92 #, python-format msgid "" "thank you for signing up for %(project_name)s. please activate your account\n" @@ -487,7 +495,7 @@ msgstr "" "Спасибо, что зарегистрировались на сайте %(project_name)s. Пожалуйста, " "активируйте свой аккаунт, нажав на кнопку ниже:" -#: vibes_auth/templates/user_verification_email.html:96 +#: engine/vibes_auth/templates/user_verification_email.html:96 msgid "" "activate\n" " account" @@ -495,22 +503,22 @@ msgstr "" "Активировать\n" " аккаунт" -#: vibes_auth/templates/user_verification_email.html:102 +#: engine/vibes_auth/templates/user_verification_email.html:102 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "С наилучшими пожеланиями,
команда %(project_name)s" -#: vibes_auth/utils/emailing.py:23 +#: engine/vibes_auth/utils/emailing.py:23 #, python-brace-format msgid "{config.PROJECT_NAME} | Activate Account" msgstr "{config.PROJECT_NAME} | Активировать учетную запись" -#: vibes_auth/utils/emailing.py:62 +#: engine/vibes_auth/utils/emailing.py:62 #, python-brace-format msgid "{config.PROJECT_NAME} | Reset Password" msgstr "{config.PROJECT_NAME} | Сброс пароля" -#: vibes_auth/validators.py:13 +#: engine/vibes_auth/validators.py:13 msgid "" "invalid phone number format. the number must be entered in the format: " "\"+999999999\". up to 15 digits allowed." @@ -518,7 +526,7 @@ msgstr "" "Неверный формат телефонного номера. Номер должен быть введен в формате: " "\"+999999999\". Допускается до 15 цифр." -#: vibes_auth/views.py:30 +#: engine/vibes_auth/views.py:30 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 " @@ -533,7 +541,7 @@ msgstr "" "построено поверх базового представления токенов и обеспечивает надлежащее " "ограничение скорости для защиты от атак грубой силы." -#: vibes_auth/views.py:48 +#: engine/vibes_auth/views.py:48 msgid "" "Handles refreshing of tokens for authentication purposes. This class is used " "to provide functionality for token refresh operations as part of an " @@ -548,7 +556,7 @@ msgstr "" "полагается на ассоциированный сериализатор для проверки входных данных " "обновления маркера и создания соответствующих выходных данных." -#: vibes_auth/views.py:67 +#: engine/vibes_auth/views.py:67 msgid "" "Represents a view for verifying JSON Web Tokens (JWT) using specific " "serialization and validation logic. " @@ -556,11 +564,11 @@ msgstr "" "Представляет собой представление для проверки JSON Web Tokens (JWT) с " "использованием специальной логики сериализации и валидации." -#: vibes_auth/views.py:80 +#: engine/vibes_auth/views.py:80 msgid "the token is invalid" msgstr "Токен недействителен" -#: vibes_auth/viewsets.py:45 +#: engine/vibes_auth/viewsets.py:45 msgid "" "User view set implementation.\n" "Provides a set of actions that manage user-related data such as creation, " @@ -575,10 +583,10 @@ msgstr "" "активацию учетной записи и объединение недавно просмотренных элементов. Этот " "класс расширяет миксины и GenericViewSet для надежной работы с API." -#: vibes_auth/viewsets.py:99 +#: engine/vibes_auth/viewsets.py:99 msgid "password reset successfully" msgstr "Пароль был успешно сброшен!" -#: vibes_auth/viewsets.py:132 +#: engine/vibes_auth/viewsets.py:132 msgid "account already activated!" msgstr "Вы уже активировали учетную запись..." diff --git a/vibes_auth/locale/sv_SE/LC_MESSAGES/django.mo b/engine/vibes_auth/locale/sv_SE/LC_MESSAGES/django.mo similarity index 66% rename from vibes_auth/locale/sv_SE/LC_MESSAGES/django.mo rename to engine/vibes_auth/locale/sv_SE/LC_MESSAGES/django.mo index 0993166f..149d7c1f 100644 Binary files a/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/vibes_auth/locale/sv_SE/LC_MESSAGES/django.po b/engine/vibes_auth/locale/sv_SE/LC_MESSAGES/django.po similarity index 67% rename from vibes_auth/locale/sv_SE/LC_MESSAGES/django.po rename to engine/vibes_auth/locale/sv_SE/LC_MESSAGES/django.po index 9d79f9db..b69edfa1 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,161 +13,172 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: vibes_auth/admin.py:39 vibes_auth/admin.py:40 -#: vibes_auth/graphene/object_types.py:46 +#: engine/vibes_auth/admin.py:40 engine/vibes_auth/admin.py:41 +#: engine/vibes_auth/graphene/object_types.py:46 msgid "balance" msgstr "Balans" -#: vibes_auth/admin.py:48 +#: engine/vibes_auth/admin.py:49 msgid "order" msgstr "Beställning" -#: vibes_auth/admin.py:49 vibes_auth/graphene/object_types.py:44 +#: engine/vibes_auth/admin.py:50 engine/vibes_auth/graphene/object_types.py:44 msgid "orders" msgstr "Beställningar" -#: vibes_auth/admin.py:59 +#: engine/vibes_auth/admin.py:60 msgid "personal info" msgstr "Personlig information" -#: vibes_auth/admin.py:63 vibes_auth/graphene/object_types.py:43 +#: engine/vibes_auth/admin.py:64 engine/vibes_auth/graphene/object_types.py:43 msgid "permissions" msgstr "Behörigheter" -#: vibes_auth/admin.py:76 +#: engine/vibes_auth/admin.py:77 msgid "important dates" msgstr "Viktiga datum" -#: vibes_auth/admin.py:77 +#: engine/vibes_auth/admin.py:78 msgid "additional info" msgstr "Ytterligare information" -#: vibes_auth/apps.py:8 +#: engine/vibes_auth/admin.py:145 +msgid "Close selected threads" +msgstr "Stäng valda trådar" + +#: engine/vibes_auth/admin.py:149 +msgid "Open selected threads" +msgstr "Öppna valda trådar" + +#: engine/vibes_auth/apps.py:8 msgid "authentication" msgstr "Autentisering" -#: vibes_auth/docs/drf/views.py:15 +#: engine/vibes_auth/docs/drf/views.py:15 msgid "obtain a token pair" msgstr "Skaffa ett tokenpar" -#: vibes_auth/docs/drf/views.py:16 +#: engine/vibes_auth/docs/drf/views.py:16 msgid "obtain a token pair (refresh and access) for authentication." msgstr "Hämta ett tokenpar (refresh och access) för autentisering." -#: vibes_auth/docs/drf/views.py:35 +#: engine/vibes_auth/docs/drf/views.py:35 msgid "refresh a token pair" msgstr "Uppdatera ett tokenpar" -#: vibes_auth/docs/drf/views.py:36 +#: engine/vibes_auth/docs/drf/views.py:36 msgid "refresh a token pair (refresh and access)." msgstr "Uppdatera ett tokenpar (uppdatering och åtkomst)." -#: vibes_auth/docs/drf/views.py:55 +#: engine/vibes_auth/docs/drf/views.py:55 msgid "verify a token" msgstr "Verifiera en token" -#: vibes_auth/docs/drf/views.py:56 +#: engine/vibes_auth/docs/drf/views.py:56 msgid "Verify a token (refresh or access)." msgstr "Verifiera en token (uppdatering eller åtkomst)." -#: vibes_auth/docs/drf/views.py:62 vibes_auth/views.py:78 +#: engine/vibes_auth/docs/drf/views.py:62 engine/vibes_auth/views.py:78 msgid "the token is valid" msgstr "Token är giltig" -#: vibes_auth/docs/drf/viewsets.py:16 +#: engine/vibes_auth/docs/drf/viewsets.py:16 msgid "create a new user" msgstr "Skapa en ny användare" -#: vibes_auth/docs/drf/viewsets.py:21 +#: engine/vibes_auth/docs/drf/viewsets.py:21 msgid "retrieve a user's details" msgstr "Hämta uppgifter om en användare" -#: vibes_auth/docs/drf/viewsets.py:25 +#: engine/vibes_auth/docs/drf/viewsets.py:25 msgid "update a user's details" msgstr "Uppdatera en användares uppgifter" -#: vibes_auth/docs/drf/viewsets.py:30 +#: engine/vibes_auth/docs/drf/viewsets.py:30 msgid "delete a user" msgstr "Ta bort en användare" -#: vibes_auth/docs/drf/viewsets.py:34 +#: engine/vibes_auth/docs/drf/viewsets.py:34 msgid "reset a user's password by sending a reset password email" msgstr "" "Återställ en användares lösenord genom att skicka ett e-postmeddelande om " "återställt lösenord" -#: vibes_auth/docs/drf/viewsets.py:39 +#: engine/vibes_auth/docs/drf/viewsets.py:39 msgid "handle avatar upload for a user" msgstr "Hantera uppladdning av avatar för en användare" -#: vibes_auth/docs/drf/viewsets.py:54 +#: engine/vibes_auth/docs/drf/viewsets.py:54 msgid "confirm a user's password reset" msgstr "Bekräfta återställning av en användares lösenord" -#: vibes_auth/docs/drf/viewsets.py:58 vibes_auth/graphene/mutations.py:320 -#: vibes_auth/serializers.py:105 vibes_auth/serializers.py:109 -#: vibes_auth/viewsets.py:84 +#: engine/vibes_auth/docs/drf/viewsets.py:58 +#: engine/vibes_auth/graphene/mutations.py:320 +#: engine/vibes_auth/serializers.py:105 engine/vibes_auth/serializers.py:109 +#: engine/vibes_auth/viewsets.py:84 msgid "passwords do not match" msgstr "Lösenorden stämmer inte överens" -#: vibes_auth/docs/drf/viewsets.py:63 +#: engine/vibes_auth/docs/drf/viewsets.py:63 msgid "activate a user's account" msgstr "Aktivera en användares konto" -#: vibes_auth/docs/drf/viewsets.py:67 +#: engine/vibes_auth/docs/drf/viewsets.py:67 msgid "activation link is invalid or account already activated" msgstr "Aktiveringslänken är ogiltig eller kontot är redan aktiverat" -#: vibes_auth/docs/drf/viewsets.py:72 +#: engine/vibes_auth/docs/drf/viewsets.py:72 msgid "merge client-stored recently viewed products" msgstr "Sammanfoga klientlagrade nyligen visade produkter" -#: vibes_auth/graphene/mutations.py:41 +#: engine/vibes_auth/graphene/mutations.py:41 msgid "the user's b64-encoded uuid who referred the new user to us." msgstr "" "Den användares b64-kodade uuid som hänvisade den nya användaren till oss." -#: vibes_auth/graphene/mutations.py:61 +#: engine/vibes_auth/graphene/mutations.py:61 msgid "password too weak" msgstr "Lösenordet är för svagt" -#: vibes_auth/graphene/mutations.py:110 +#: engine/vibes_auth/graphene/mutations.py:110 #, python-brace-format msgid "{name} does not exist: {uuid}" msgstr "{name} existerar inte: {uuid}!" -#: vibes_auth/graphene/mutations.py:120 +#: engine/vibes_auth/graphene/mutations.py:120 msgid "malformed email" msgstr "Missvisande e-post" -#: vibes_auth/graphene/mutations.py:127 vibes_auth/serializers.py:115 +#: engine/vibes_auth/graphene/mutations.py:127 +#: engine/vibes_auth/serializers.py:115 #, python-brace-format msgid "malformed phone number: {phone_number}" msgstr "Missbildat telefonnummer: {phone_number}!" -#: vibes_auth/graphene/mutations.py:149 +#: engine/vibes_auth/graphene/mutations.py:149 #, python-brace-format msgid "Invalid attribute format: {attribute_pair}" msgstr "Ogiltigt attributformat: {attribute_pair}!" -#: vibes_auth/graphene/mutations.py:273 vibes_auth/viewsets.py:127 -#: vibes_auth/viewsets.py:146 +#: engine/vibes_auth/graphene/mutations.py:273 +#: engine/vibes_auth/viewsets.py:127 engine/vibes_auth/viewsets.py:146 msgid "activation link is invalid!" msgstr "Aktiveringslänken är ogiltig!" -#: vibes_auth/graphene/mutations.py:276 +#: engine/vibes_auth/graphene/mutations.py:276 msgid "account already activated..." msgstr "Kontot har redan aktiverats..." -#: vibes_auth/graphene/mutations.py:283 vibes_auth/graphene/mutations.py:339 +#: engine/vibes_auth/graphene/mutations.py:283 +#: engine/vibes_auth/graphene/mutations.py:339 msgid "something went wrong: {e!s}" msgstr "Något gick fel: {e!s}" -#: vibes_auth/graphene/mutations.py:327 vibes_auth/viewsets.py:95 +#: engine/vibes_auth/graphene/mutations.py:327 engine/vibes_auth/viewsets.py:95 msgid "token is invalid!" msgstr "Token är ogiltig!" -#: vibes_auth/graphene/object_types.py:40 +#: engine/vibes_auth/graphene/object_types.py:40 msgid "" "the products this user has viewed most recently (max 48), in reverse‐" "chronological order" @@ -175,100 +186,97 @@ msgstr "" "De produkter som den här användaren har tittat på senast (max 48), i omvänd " "kronologisk ordning." -#: vibes_auth/graphene/object_types.py:42 vibes_auth/models.py:132 +#: engine/vibes_auth/graphene/object_types.py:42 +#: engine/vibes_auth/models.py:123 msgid "groups" msgstr "Grupper" -#: vibes_auth/graphene/object_types.py:45 +#: engine/vibes_auth/graphene/object_types.py:45 msgid "wishlist" msgstr "Önskelista" -#: vibes_auth/graphene/object_types.py:47 vibes_auth/models.py:58 +#: engine/vibes_auth/graphene/object_types.py:47 engine/vibes_auth/models.py:59 msgid "avatar" msgstr "Avatar" -#: vibes_auth/graphene/object_types.py:48 +#: engine/vibes_auth/graphene/object_types.py:48 msgid "attributes may be used to store custom data" msgstr "Attribut kan användas för att lagra anpassade data" -#: vibes_auth/graphene/object_types.py:49 +#: engine/vibes_auth/graphene/object_types.py:50 #, python-brace-format -msgid "language is one of the {LANGUAGES} with default {LANGUAGE_CODE}" -msgstr "Språk är en av {LANGUAGES} med standard {LANGUAGE_CODE}." +msgid "" +"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}." -#: vibes_auth/graphene/object_types.py:50 +#: engine/vibes_auth/graphene/object_types.py:52 msgid "address set" msgstr "Adresser" -#: vibes_auth/messaging/admin.py:36 -msgid "Close selected threads" -msgstr "Stäng valda trådar" - -#: vibes_auth/messaging/admin.py:40 -msgid "Open selected threads" -msgstr "Öppna valda trådar" - -#: vibes_auth/messaging/models.py:24 +#: engine/vibes_auth/messaging/models.py:24 msgid "Open" msgstr "Öppna" -#: vibes_auth/messaging/models.py:25 +#: engine/vibes_auth/messaging/models.py:25 msgid "Closed" msgstr "Stängt" -#: vibes_auth/messaging/models.py:29 +#: engine/vibes_auth/messaging/models.py:29 msgid "User" msgstr "Användare" -#: vibes_auth/messaging/models.py:30 +#: engine/vibes_auth/messaging/models.py:30 msgid "Staff" msgstr "Personal" -#: vibes_auth/messaging/models.py:31 +#: engine/vibes_auth/messaging/models.py:31 msgid "System" msgstr "System" -#: vibes_auth/messaging/models.py:36 +#: engine/vibes_auth/messaging/models.py:36 msgid "For anonymous threads" msgstr "För anonyma trådar" -#: vibes_auth/messaging/models.py:50 +#: engine/vibes_auth/messaging/models.py:50 msgid "Chat thread" msgstr "Chattråd" -#: vibes_auth/messaging/models.py:51 +#: engine/vibes_auth/messaging/models.py:51 msgid "Chat threads" msgstr "Chatt-trådar" -#: vibes_auth/messaging/models.py:56 +#: engine/vibes_auth/messaging/models.py:56 msgid "Provide user or email for anonymous thread." msgstr "Ange användare eller e-post för anonym tråd." -#: vibes_auth/messaging/models.py:58 vibes_auth/messaging/services.py:133 +#: engine/vibes_auth/messaging/models.py:58 +#: engine/vibes_auth/messaging/services.py:132 msgid "Assignee must be a staff user." msgstr "Mottagaren måste vara en personalanvändare." -#: vibes_auth/messaging/models.py:74 +#: engine/vibes_auth/messaging/models.py:74 msgid "Chat message" msgstr "Chattmeddelande" -#: vibes_auth/messaging/models.py:75 +#: engine/vibes_auth/messaging/models.py:75 msgid "Chat messages" msgstr "Chattmeddelanden" -#: vibes_auth/messaging/services.py:48 +#: engine/vibes_auth/messaging/services.py:47 msgid "Valid email is required for anonymous chats." msgstr "Giltig e-postadress krävs för anonyma chattar." -#: vibes_auth/messaging/services.py:56 +#: engine/vibes_auth/messaging/services.py:55 msgid "Message must be 1..1028 characters." msgstr "Meddelandet måste innehålla 1..1028 tecken." -#: vibes_auth/messaging/services.py:90 +#: engine/vibes_auth/messaging/services.py:89 msgid "We're searching for the operator to answer you already, hold by!" msgstr "Vi söker efter en operatör som kan svara dig redan nu, så håll ut!" -#: vibes_auth/models.py:30 +#: engine/vibes_auth/models.py:31 msgid "" "Represents a User entity with customized fields and methods for extended " "functionality. This class extends the AbstractUser model and integrates " @@ -286,152 +294,152 @@ msgstr "" "aktivering för att verifiera konton. User-modellen är utformad för att " "hantera specifika användningsfall för förbättrad användarhantering." -#: vibes_auth/models.py:41 +#: engine/vibes_auth/models.py:42 msgid "email" msgstr "E-post" -#: vibes_auth/models.py:41 +#: engine/vibes_auth/models.py:42 msgid "user email address" msgstr "Användarens e-postadress" -#: vibes_auth/models.py:43 +#: engine/vibes_auth/models.py:44 msgid "phone_number" msgstr "Telefonnummer" -#: vibes_auth/models.py:48 +#: engine/vibes_auth/models.py:49 msgid "user phone number" msgstr "Användarens telefonnummer" -#: vibes_auth/models.py:54 +#: engine/vibes_auth/models.py:55 msgid "first_name" msgstr "Förnamn" -#: vibes_auth/models.py:55 +#: engine/vibes_auth/models.py:56 msgid "last_name" msgstr "Efternamn" -#: vibes_auth/models.py:61 +#: engine/vibes_auth/models.py:62 msgid "user profile image" msgstr "Bild på användarprofil" -#: vibes_auth/models.py:66 +#: engine/vibes_auth/models.py:67 msgid "is verified" msgstr "Är verifierad" -#: vibes_auth/models.py:67 +#: engine/vibes_auth/models.py:68 msgid "user verification status" msgstr "Användarens verifieringsstatus" -#: vibes_auth/models.py:70 +#: engine/vibes_auth/models.py:71 msgid "is_active" msgstr "Är aktiv" -#: vibes_auth/models.py:72 +#: engine/vibes_auth/models.py:73 msgid "unselect this instead of deleting accounts" msgstr "Avmarkera detta istället för att radera konton" -#: vibes_auth/models.py:75 +#: engine/vibes_auth/models.py:76 msgid "is_subscribed" msgstr "Är prenumererad" -#: vibes_auth/models.py:75 +#: engine/vibes_auth/models.py:76 msgid "user's newsletter subscription status" msgstr "Användarens status för prenumeration på nyhetsbrev" -#: vibes_auth/models.py:78 +#: engine/vibes_auth/models.py:79 msgid "activation token" msgstr "Aktiveringstoken" -#: vibes_auth/models.py:80 +#: engine/vibes_auth/models.py:83 msgid "attributes" msgstr "Attribut" -#: vibes_auth/models.py:110 +#: engine/vibes_auth/models.py:115 msgid "user" msgstr "Användare" -#: vibes_auth/models.py:111 +#: engine/vibes_auth/models.py:116 msgid "users" msgstr "Användare" -#: vibes_auth/models.py:131 +#: engine/vibes_auth/models.py:122 msgid "group" msgstr "Grupp" -#: vibes_auth/models.py:148 +#: engine/vibes_auth/models.py:129 msgid "outstanding token" msgstr "Utestående symbol" -#: vibes_auth/models.py:149 +#: engine/vibes_auth/models.py:130 msgid "outstanding tokens" msgstr "Utestående polletter" -#: vibes_auth/models.py:167 +#: engine/vibes_auth/models.py:136 msgid "blacklisted token" msgstr "Svartlistad token" -#: vibes_auth/models.py:168 +#: engine/vibes_auth/models.py:137 msgid "blacklisted tokens" msgstr "Svartlistade tokens" -#: vibes_auth/serializers.py:99 +#: engine/vibes_auth/serializers.py:99 msgid "attributes must be a dictionary" msgstr "`attributes` måste vara en ordbok" -#: vibes_auth/serializers.py:101 +#: engine/vibes_auth/serializers.py:101 msgid "business identificator is required when registering as a business" msgstr "Företagsidentifierare krävs när du registrerar dig som företag" -#: vibes_auth/serializers.py:121 +#: engine/vibes_auth/serializers.py:121 #, python-brace-format msgid "malformed email: {email}" msgstr "missbildad e-post: {email}" -#: vibes_auth/serializers.py:142 vibes_auth/serializers.py:164 -#: vibes_auth/serializers.py:186 vibes_auth/serializers.py:198 +#: engine/vibes_auth/serializers.py:142 engine/vibes_auth/serializers.py:164 +#: engine/vibes_auth/serializers.py:184 engine/vibes_auth/serializers.py:194 msgid "no active account" msgstr "Inget aktivt konto hittades" -#: vibes_auth/serializers.py:174 +#: engine/vibes_auth/serializers.py:174 msgid "must set token_class attribute on class." msgstr "Måste sätta attributet token_class på klassen!" -#: vibes_auth/serializers.py:246 +#: engine/vibes_auth/serializers.py:240 msgid "token_blacklisted" msgstr "Token blacklisted" -#: vibes_auth/serializers.py:251 +#: engine/vibes_auth/serializers.py:245 msgid "invalid token" msgstr "Ogiltig token" -#: vibes_auth/serializers.py:257 +#: engine/vibes_auth/serializers.py:251 msgid "no user uuid claim present in token" msgstr "Inget användar-uuid-krav finns i token" -#: vibes_auth/serializers.py:259 +#: engine/vibes_auth/serializers.py:253 msgid "user does not exist" msgstr "Användaren finns inte" -#: vibes_auth/templates/user_reset_password_email.html:7 +#: engine/vibes_auth/templates/user_reset_password_email.html:7 msgid "reset your password" msgstr "Återställ ditt lösenord" -#: vibes_auth/templates/user_reset_password_email.html:85 -#: vibes_auth/templates/user_verification_email.html:85 +#: engine/vibes_auth/templates/user_reset_password_email.html:85 +#: engine/vibes_auth/templates/user_verification_email.html:85 msgid "logo" msgstr "Logotyp" -#: vibes_auth/templates/user_reset_password_email.html:90 +#: engine/vibes_auth/templates/user_reset_password_email.html:90 msgid "password reset confirmation" msgstr "Bekräftelse på återställning av lösenord" -#: vibes_auth/templates/user_reset_password_email.html:91 -#: vibes_auth/templates/user_verification_email.html:91 +#: engine/vibes_auth/templates/user_reset_password_email.html:91 +#: engine/vibes_auth/templates/user_verification_email.html:91 #, python-format msgid "hello %(user_first_name)s," msgstr "Hej %(user_first_name)s," -#: vibes_auth/templates/user_reset_password_email.html:92 +#: 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" @@ -440,12 +448,12 @@ msgstr "" "Vi har fått en begäran om att återställa ditt lösenord. Vänligen återställ " "ditt lösenord genom att klicka på knappen nedan:" -#: vibes_auth/templates/user_reset_password_email.html:95 +#: engine/vibes_auth/templates/user_reset_password_email.html:95 msgid "reset password" msgstr "återställa lösenord" -#: vibes_auth/templates/user_reset_password_email.html:97 -#: vibes_auth/templates/user_verification_email.html:99 +#: engine/vibes_auth/templates/user_reset_password_email.html:97 +#: engine/vibes_auth/templates/user_verification_email.html:99 msgid "" "if the button above does not work, please copy and paste the following URL\n" " into your web browser:" @@ -453,7 +461,7 @@ msgstr "" "Om knappen ovan inte fungerar, vänligen kopiera och klistra in följande URL\n" " i din webbläsare:" -#: vibes_auth/templates/user_reset_password_email.html:100 +#: engine/vibes_auth/templates/user_reset_password_email.html:100 msgid "" "if you did not send this request, please ignore this\n" " email." @@ -461,22 +469,22 @@ msgstr "" "om du inte har skickat denna begäran, vänligen ignorera detta\n" " e-post." -#: vibes_auth/templates/user_reset_password_email.html:102 +#: engine/vibes_auth/templates/user_reset_password_email.html:102 #, python-format msgid "best regards,
The %(project_name)s team" msgstr "Bästa hälsningar,
The %(project_name)s team" -#: vibes_auth/templates/user_reset_password_email.html:108 -#: vibes_auth/templates/user_verification_email.html:108 +#: engine/vibes_auth/templates/user_reset_password_email.html:108 +#: engine/vibes_auth/templates/user_verification_email.html:108 msgid "all rights reserved" msgstr "Alla rättigheter förbehålls" -#: vibes_auth/templates/user_verification_email.html:7 -#: vibes_auth/templates/user_verification_email.html:90 +#: engine/vibes_auth/templates/user_verification_email.html:7 +#: engine/vibes_auth/templates/user_verification_email.html:90 msgid "activate your account" msgstr "Aktivera ditt konto" -#: vibes_auth/templates/user_verification_email.html:92 +#: engine/vibes_auth/templates/user_verification_email.html:92 #, python-format msgid "" "thank you for signing up for %(project_name)s. please activate your account\n" @@ -485,7 +493,7 @@ msgstr "" "Tack för att du registrerat dig för %(project_name)s. Vänligen aktivera ditt " "konto genom att klicka på knappen nedan:" -#: vibes_auth/templates/user_verification_email.html:96 +#: engine/vibes_auth/templates/user_verification_email.html:96 msgid "" "activate\n" " account" @@ -493,22 +501,22 @@ msgstr "" "Aktivera\n" " konto" -#: vibes_auth/templates/user_verification_email.html:102 +#: engine/vibes_auth/templates/user_verification_email.html:102 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "Bästa hälsningar,
teamet %(project_name)s" -#: vibes_auth/utils/emailing.py:23 +#: engine/vibes_auth/utils/emailing.py:23 #, python-brace-format msgid "{config.PROJECT_NAME} | Activate Account" msgstr "{config.PROJECT_NAME} | Aktivera konto" -#: vibes_auth/utils/emailing.py:62 +#: engine/vibes_auth/utils/emailing.py:62 #, python-brace-format msgid "{config.PROJECT_NAME} | Reset Password" msgstr "{config.PROJECT_NAME} | Återställ lösenord" -#: vibes_auth/validators.py:13 +#: engine/vibes_auth/validators.py:13 msgid "" "invalid phone number format. the number must be entered in the format: " "\"+999999999\". up to 15 digits allowed." @@ -516,7 +524,7 @@ msgstr "" "Ogiltigt format på telefonnumret. Numret måste anges i formatet: " "\"+999999999\". Upp till 15 siffror är tillåtna." -#: vibes_auth/views.py:30 +#: engine/vibes_auth/views.py:30 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 " @@ -531,7 +539,7 @@ msgstr "" "säkerställer korrekt hastighetsbegränsning för att skydda mot brute force-" "attacker." -#: vibes_auth/views.py:48 +#: engine/vibes_auth/views.py:48 msgid "" "Handles refreshing of tokens for authentication purposes. This class is used " "to provide functionality for token refresh operations as part of an " @@ -546,7 +554,7 @@ msgstr "" "den associerade serialiseraren för att validera inmatningar för " "tokenuppdatering och producera lämpliga utmatningar." -#: vibes_auth/views.py:67 +#: engine/vibes_auth/views.py:67 msgid "" "Represents a view for verifying JSON Web Tokens (JWT) using specific " "serialization and validation logic. " @@ -554,11 +562,11 @@ msgstr "" "Representerar en vy för verifiering av JSON Web Tokens (JWT) med hjälp av " "specifik serialiserings- och valideringslogik." -#: vibes_auth/views.py:80 +#: engine/vibes_auth/views.py:80 msgid "the token is invalid" msgstr "Token är ogiltig" -#: vibes_auth/viewsets.py:45 +#: engine/vibes_auth/viewsets.py:45 msgid "" "User view set implementation.\n" "Provides a set of actions that manage user-related data such as creation, " @@ -573,10 +581,10 @@ msgstr "" "och sammanslagning av nyligen visade objekt. Denna klass utökar mixins och " "GenericViewSet för robust API-hantering." -#: vibes_auth/viewsets.py:99 +#: engine/vibes_auth/viewsets.py:99 msgid "password reset successfully" msgstr "Lösenordet har återställts framgångsrikt!" -#: vibes_auth/viewsets.py:132 +#: engine/vibes_auth/viewsets.py:132 msgid "account already activated!" msgstr "Du har redan aktiverat kontot..." diff --git a/vibes_auth/locale/th_TH/LC_MESSAGES/django.mo b/engine/vibes_auth/locale/th_TH/LC_MESSAGES/django.mo similarity index 68% rename from vibes_auth/locale/th_TH/LC_MESSAGES/django.mo rename to engine/vibes_auth/locale/th_TH/LC_MESSAGES/django.mo index a7b3b7b8..5e3b39fc 100644 Binary files a/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/vibes_auth/locale/th_TH/LC_MESSAGES/django.po b/engine/vibes_auth/locale/th_TH/LC_MESSAGES/django.po similarity index 75% rename from vibes_auth/locale/th_TH/LC_MESSAGES/django.po rename to engine/vibes_auth/locale/th_TH/LC_MESSAGES/django.po index ad7c8d3d..791d841d 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,257 +13,264 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: vibes_auth/admin.py:39 vibes_auth/admin.py:40 -#: vibes_auth/graphene/object_types.py:46 +#: engine/vibes_auth/admin.py:40 engine/vibes_auth/admin.py:41 +#: engine/vibes_auth/graphene/object_types.py:46 msgid "balance" msgstr "สมดุล" -#: vibes_auth/admin.py:48 +#: engine/vibes_auth/admin.py:49 msgid "order" msgstr "คำสั่ง" -#: vibes_auth/admin.py:49 vibes_auth/graphene/object_types.py:44 +#: engine/vibes_auth/admin.py:50 engine/vibes_auth/graphene/object_types.py:44 msgid "orders" msgstr "คำสั่ง" -#: vibes_auth/admin.py:59 +#: engine/vibes_auth/admin.py:60 msgid "personal info" msgstr "ข้อมูลส่วนตัว" -#: vibes_auth/admin.py:63 vibes_auth/graphene/object_types.py:43 +#: engine/vibes_auth/admin.py:64 engine/vibes_auth/graphene/object_types.py:43 msgid "permissions" msgstr "สิทธิ์การใช้งาน" -#: vibes_auth/admin.py:76 +#: engine/vibes_auth/admin.py:77 msgid "important dates" msgstr "วันที่สำคัญ" -#: vibes_auth/admin.py:77 +#: engine/vibes_auth/admin.py:78 msgid "additional info" msgstr "ข้อมูลเพิ่มเติม" -#: vibes_auth/apps.py:8 +#: engine/vibes_auth/admin.py:145 +msgid "Close selected threads" +msgstr "ปิดกระทู้ที่เลือก" + +#: engine/vibes_auth/admin.py:149 +msgid "Open selected threads" +msgstr "เปิดกระทู้ที่เลือก" + +#: engine/vibes_auth/apps.py:8 msgid "authentication" msgstr "การยืนยันตัวตน" -#: vibes_auth/docs/drf/views.py:15 +#: engine/vibes_auth/docs/drf/views.py:15 msgid "obtain a token pair" msgstr "รับคู่โทเค็น" -#: vibes_auth/docs/drf/views.py:16 +#: engine/vibes_auth/docs/drf/views.py:16 msgid "obtain a token pair (refresh and access) for authentication." msgstr "รับคู่โทเค็น (รีเฟรชและเข้าถึง) สำหรับการยืนยันตัวตน" -#: vibes_auth/docs/drf/views.py:35 +#: engine/vibes_auth/docs/drf/views.py:35 msgid "refresh a token pair" msgstr "รีเฟรชคู่โทเค็น" -#: vibes_auth/docs/drf/views.py:36 +#: engine/vibes_auth/docs/drf/views.py:36 msgid "refresh a token pair (refresh and access)." msgstr "รีเฟรชคู่โทเค็น (รีเฟรชและเข้าถึง)" -#: vibes_auth/docs/drf/views.py:55 +#: engine/vibes_auth/docs/drf/views.py:55 msgid "verify a token" msgstr "ตรวจสอบโทเค็น" -#: vibes_auth/docs/drf/views.py:56 +#: engine/vibes_auth/docs/drf/views.py:56 msgid "Verify a token (refresh or access)." msgstr "ตรวจสอบโทเค็น (รีเฟรชหรือเข้าถึง)" -#: vibes_auth/docs/drf/views.py:62 vibes_auth/views.py:78 +#: engine/vibes_auth/docs/drf/views.py:62 engine/vibes_auth/views.py:78 msgid "the token is valid" msgstr "โทเค็นนี้ใช้ได้" -#: vibes_auth/docs/drf/viewsets.py:16 +#: engine/vibes_auth/docs/drf/viewsets.py:16 msgid "create a new user" msgstr "สร้างผู้ใช้ใหม่" -#: vibes_auth/docs/drf/viewsets.py:21 +#: engine/vibes_auth/docs/drf/viewsets.py:21 msgid "retrieve a user's details" msgstr "ดึงข้อมูลรายละเอียดของผู้ใช้" -#: vibes_auth/docs/drf/viewsets.py:25 +#: engine/vibes_auth/docs/drf/viewsets.py:25 msgid "update a user's details" msgstr "อัปเดตข้อมูลผู้ใช้" -#: vibes_auth/docs/drf/viewsets.py:30 +#: engine/vibes_auth/docs/drf/viewsets.py:30 msgid "delete a user" msgstr "ลบผู้ใช้" -#: vibes_auth/docs/drf/viewsets.py:34 +#: engine/vibes_auth/docs/drf/viewsets.py:34 msgid "reset a user's password by sending a reset password email" msgstr "รีเซ็ตรหัสผ่านของผู้ใช้โดยการส่งอีเมลรีเซ็ตรหัสผ่าน" -#: vibes_auth/docs/drf/viewsets.py:39 +#: engine/vibes_auth/docs/drf/viewsets.py:39 msgid "handle avatar upload for a user" msgstr "จัดการการอัปโหลดอวาตาร์สำหรับผู้ใช้" -#: vibes_auth/docs/drf/viewsets.py:54 +#: engine/vibes_auth/docs/drf/viewsets.py:54 msgid "confirm a user's password reset" msgstr "ยืนยันการรีเซ็ตรหัสผ่านของผู้ใช้" -#: vibes_auth/docs/drf/viewsets.py:58 vibes_auth/graphene/mutations.py:320 -#: vibes_auth/serializers.py:105 vibes_auth/serializers.py:109 -#: vibes_auth/viewsets.py:84 +#: engine/vibes_auth/docs/drf/viewsets.py:58 +#: engine/vibes_auth/graphene/mutations.py:320 +#: engine/vibes_auth/serializers.py:105 engine/vibes_auth/serializers.py:109 +#: engine/vibes_auth/viewsets.py:84 msgid "passwords do not match" msgstr "รหัสผ่านไม่ตรงกัน" -#: vibes_auth/docs/drf/viewsets.py:63 +#: engine/vibes_auth/docs/drf/viewsets.py:63 msgid "activate a user's account" msgstr "เปิดใช้งานบัญชีผู้ใช้" -#: vibes_auth/docs/drf/viewsets.py:67 +#: engine/vibes_auth/docs/drf/viewsets.py:67 msgid "activation link is invalid or account already activated" msgstr "ลิงก์การเปิดใช้งานไม่ถูกต้องหรือบัญชีได้รับการเปิดใช้งานแล้ว" -#: vibes_auth/docs/drf/viewsets.py:72 +#: engine/vibes_auth/docs/drf/viewsets.py:72 msgid "merge client-stored recently viewed products" msgstr "รวมสินค้าที่ลูกค้าดูล่าสุดซึ่งเก็บไว้ในระบบของลูกค้า" -#: vibes_auth/graphene/mutations.py:41 +#: engine/vibes_auth/graphene/mutations.py:41 msgid "the user's b64-encoded uuid who referred the new user to us." msgstr "ผู้ใช้ที่เข้ารหัส uuid ด้วย b64 ซึ่งแนะนำผู้ใช้ใหม่ให้เรามา" -#: vibes_auth/graphene/mutations.py:61 +#: engine/vibes_auth/graphene/mutations.py:61 msgid "password too weak" msgstr "รหัสผ่านอ่อนแอเกินไป" -#: vibes_auth/graphene/mutations.py:110 +#: engine/vibes_auth/graphene/mutations.py:110 #, python-brace-format msgid "{name} does not exist: {uuid}" msgstr "{name} ไม่พบ: {uuid}!" -#: vibes_auth/graphene/mutations.py:120 +#: engine/vibes_auth/graphene/mutations.py:120 msgid "malformed email" msgstr "อีเมลไม่ถูกต้อง" -#: vibes_auth/graphene/mutations.py:127 vibes_auth/serializers.py:115 +#: engine/vibes_auth/graphene/mutations.py:127 +#: engine/vibes_auth/serializers.py:115 #, python-brace-format msgid "malformed phone number: {phone_number}" msgstr "หมายเลขโทรศัพท์ไม่ถูกต้อง: {phone_number}!" -#: vibes_auth/graphene/mutations.py:149 +#: engine/vibes_auth/graphene/mutations.py:149 #, python-brace-format msgid "Invalid attribute format: {attribute_pair}" msgstr "รูปแบบแอตทริบิวต์ไม่ถูกต้อง: {attribute_pair}!" -#: vibes_auth/graphene/mutations.py:273 vibes_auth/viewsets.py:127 -#: vibes_auth/viewsets.py:146 +#: engine/vibes_auth/graphene/mutations.py:273 +#: engine/vibes_auth/viewsets.py:127 engine/vibes_auth/viewsets.py:146 msgid "activation link is invalid!" msgstr "ลิงก์การเปิดใช้งานไม่ถูกต้อง!" -#: vibes_auth/graphene/mutations.py:276 +#: engine/vibes_auth/graphene/mutations.py:276 msgid "account already activated..." msgstr "บัญชีได้รับการเปิดใช้งานแล้ว..." -#: vibes_auth/graphene/mutations.py:283 vibes_auth/graphene/mutations.py:339 +#: engine/vibes_auth/graphene/mutations.py:283 +#: engine/vibes_auth/graphene/mutations.py:339 msgid "something went wrong: {e!s}" msgstr "เกิดข้อผิดพลาด: {e!s}" -#: vibes_auth/graphene/mutations.py:327 vibes_auth/viewsets.py:95 +#: engine/vibes_auth/graphene/mutations.py:327 engine/vibes_auth/viewsets.py:95 msgid "token is invalid!" msgstr "โทเคนไม่ถูกต้อง!" -#: vibes_auth/graphene/object_types.py:40 +#: engine/vibes_auth/graphene/object_types.py:40 msgid "" "the products this user has viewed most recently (max 48), in reverse‐" "chronological order" msgstr "สินค้าที่ผู้ใช้รายนี้ดูล่าสุด (สูงสุด 48 รายการ) เรียงตามลำดับเวลาล่าสุด" -#: vibes_auth/graphene/object_types.py:42 vibes_auth/models.py:132 +#: engine/vibes_auth/graphene/object_types.py:42 +#: engine/vibes_auth/models.py:123 msgid "groups" msgstr "กลุ่ม" -#: vibes_auth/graphene/object_types.py:45 +#: engine/vibes_auth/graphene/object_types.py:45 msgid "wishlist" msgstr "รายการสิ่งที่ต้องการ" -#: vibes_auth/graphene/object_types.py:47 vibes_auth/models.py:58 +#: engine/vibes_auth/graphene/object_types.py:47 engine/vibes_auth/models.py:59 msgid "avatar" msgstr "อวตาร" -#: vibes_auth/graphene/object_types.py:48 +#: engine/vibes_auth/graphene/object_types.py:48 msgid "attributes may be used to store custom data" msgstr "คุณลักษณะอาจใช้เพื่อเก็บข้อมูลที่กำหนดเอง" -#: vibes_auth/graphene/object_types.py:49 +#: engine/vibes_auth/graphene/object_types.py:50 #, python-brace-format -msgid "language is one of the {LANGUAGES} with default {LANGUAGE_CODE}" -msgstr "ภาษาเป็นหนึ่งใน {LANGUAGES} ที่มีค่าเริ่มต้น {LANGUAGE_CODE}" +msgid "" +"language is one of the {settings.LANGUAGES} with default {settings." +"LANGUAGE_CODE}" +msgstr "ภาษาเป็นหนึ่งใน {settings.LANGUAGES} ที่มีค่าเริ่มต้น {settings.LANGUAGE_CODE}" -#: vibes_auth/graphene/object_types.py:50 +#: engine/vibes_auth/graphene/object_types.py:52 msgid "address set" msgstr "ที่อยู่" -#: vibes_auth/messaging/admin.py:36 -msgid "Close selected threads" -msgstr "ปิดกระทู้ที่เลือก" - -#: vibes_auth/messaging/admin.py:40 -msgid "Open selected threads" -msgstr "เปิดกระทู้ที่เลือก" - -#: vibes_auth/messaging/models.py:24 +#: engine/vibes_auth/messaging/models.py:24 msgid "Open" msgstr "เปิด" -#: vibes_auth/messaging/models.py:25 +#: engine/vibes_auth/messaging/models.py:25 msgid "Closed" msgstr "ปิด" -#: vibes_auth/messaging/models.py:29 +#: engine/vibes_auth/messaging/models.py:29 msgid "User" msgstr "ผู้ใช้" -#: vibes_auth/messaging/models.py:30 +#: engine/vibes_auth/messaging/models.py:30 msgid "Staff" msgstr "พนักงาน" -#: vibes_auth/messaging/models.py:31 +#: engine/vibes_auth/messaging/models.py:31 msgid "System" msgstr "ระบบ" -#: vibes_auth/messaging/models.py:36 +#: engine/vibes_auth/messaging/models.py:36 msgid "For anonymous threads" msgstr "สำหรับกระทู้ที่ไม่ระบุชื่อ" -#: vibes_auth/messaging/models.py:50 +#: engine/vibes_auth/messaging/models.py:50 msgid "Chat thread" msgstr "หัวข้อสนทนา" -#: vibes_auth/messaging/models.py:51 +#: engine/vibes_auth/messaging/models.py:51 msgid "Chat threads" msgstr "หัวข้อสนทนา" -#: vibes_auth/messaging/models.py:56 +#: engine/vibes_auth/messaging/models.py:56 msgid "Provide user or email for anonymous thread." msgstr "กรุณาให้ข้อมูลผู้ใช้หรืออีเมลสำหรับกระทู้แบบไม่ระบุตัวตน" -#: vibes_auth/messaging/models.py:58 vibes_auth/messaging/services.py:133 +#: engine/vibes_auth/messaging/models.py:58 +#: engine/vibes_auth/messaging/services.py:132 msgid "Assignee must be a staff user." msgstr "ผู้รับมอบหมายต้องเป็นผู้ใช้ที่เป็นพนักงานเท่านั้น" -#: vibes_auth/messaging/models.py:74 +#: engine/vibes_auth/messaging/models.py:74 msgid "Chat message" msgstr "ข้อความแชท" -#: vibes_auth/messaging/models.py:75 +#: engine/vibes_auth/messaging/models.py:75 msgid "Chat messages" msgstr "ข้อความแชท" -#: vibes_auth/messaging/services.py:48 +#: engine/vibes_auth/messaging/services.py:47 msgid "Valid email is required for anonymous chats." msgstr "จำเป็นต้องมีอีเมลที่ถูกต้องสำหรับการแชทแบบไม่ระบุตัวตน" -#: vibes_auth/messaging/services.py:56 +#: engine/vibes_auth/messaging/services.py:55 msgid "Message must be 1..1028 characters." msgstr "ข้อความต้องมีความยาว 1..1028 ตัวอักษร" -#: vibes_auth/messaging/services.py:90 +#: engine/vibes_auth/messaging/services.py:89 msgid "We're searching for the operator to answer you already, hold by!" msgstr "เรากำลังค้นหาผู้ดำเนินการเพื่อตอบคุณอยู่ กรุณารอสักครู่!" -#: vibes_auth/models.py:30 +#: engine/vibes_auth/models.py:31 msgid "" "Represents a User entity with customized fields and methods for extended " "functionality. This class extends the AbstractUser model and integrates " @@ -280,152 +287,152 @@ msgstr "" "นอกจากนี้ยังมียูทิลิตี้สำหรับจัดการรายการที่ดูล่าสุดและการเปิดใช้งานแบบใช้โทเค็นเพื่อยืนยันบัญชี " "โมเดลผู้ใช้ได้รับการออกแบบมาเพื่อจัดการกรณีการใช้งานเฉพาะสำหรับการจัดการผู้ใช้ที่ดียิ่งขึ้น" -#: vibes_auth/models.py:41 +#: engine/vibes_auth/models.py:42 msgid "email" msgstr "อีเมล" -#: vibes_auth/models.py:41 +#: engine/vibes_auth/models.py:42 msgid "user email address" msgstr "ที่อยู่อีเมลของผู้ใช้" -#: vibes_auth/models.py:43 +#: engine/vibes_auth/models.py:44 msgid "phone_number" msgstr "หมายเลขโทรศัพท์" -#: vibes_auth/models.py:48 +#: engine/vibes_auth/models.py:49 msgid "user phone number" msgstr "หมายเลขโทรศัพท์ผู้ใช้" -#: vibes_auth/models.py:54 +#: engine/vibes_auth/models.py:55 msgid "first_name" msgstr "ชื่อ" -#: vibes_auth/models.py:55 +#: engine/vibes_auth/models.py:56 msgid "last_name" msgstr "นามสกุล" -#: vibes_auth/models.py:61 +#: engine/vibes_auth/models.py:62 msgid "user profile image" msgstr "รูปภาพโปรไฟล์ผู้ใช้" -#: vibes_auth/models.py:66 +#: engine/vibes_auth/models.py:67 msgid "is verified" msgstr "ได้รับการยืนยันแล้ว" -#: vibes_auth/models.py:67 +#: engine/vibes_auth/models.py:68 msgid "user verification status" msgstr "สถานะการยืนยันของผู้ใช้" -#: vibes_auth/models.py:70 +#: engine/vibes_auth/models.py:71 msgid "is_active" msgstr "กำลังใช้งานอยู่" -#: vibes_auth/models.py:72 +#: engine/vibes_auth/models.py:73 msgid "unselect this instead of deleting accounts" msgstr "ยกเลิกการเลือกสิ่งนี้แทนการลบบัญชี" -#: vibes_auth/models.py:75 +#: engine/vibes_auth/models.py:76 msgid "is_subscribed" msgstr "สมัครสมาชิกแล้ว" -#: vibes_auth/models.py:75 +#: engine/vibes_auth/models.py:76 msgid "user's newsletter subscription status" msgstr "สถานะการสมัครสมาชิกจดหมายข่าวของผู้ใช้" -#: vibes_auth/models.py:78 +#: engine/vibes_auth/models.py:79 msgid "activation token" msgstr "โทเค็นการเปิดใช้งาน" -#: vibes_auth/models.py:80 +#: engine/vibes_auth/models.py:83 msgid "attributes" msgstr "คุณลักษณะ" -#: vibes_auth/models.py:110 +#: engine/vibes_auth/models.py:115 msgid "user" msgstr "ผู้ใช้" -#: vibes_auth/models.py:111 +#: engine/vibes_auth/models.py:116 msgid "users" msgstr "ผู้ใช้" -#: vibes_auth/models.py:131 +#: engine/vibes_auth/models.py:122 msgid "group" msgstr "กลุ่ม" -#: vibes_auth/models.py:148 +#: engine/vibes_auth/models.py:129 msgid "outstanding token" msgstr "โทเค็นที่ยังไม่ได้ใช้" -#: vibes_auth/models.py:149 +#: engine/vibes_auth/models.py:130 msgid "outstanding tokens" msgstr "โทเค็นที่ยังไม่ได้ใช้" -#: vibes_auth/models.py:167 +#: engine/vibes_auth/models.py:136 msgid "blacklisted token" msgstr "โทเค็นที่ถูกขึ้นบัญชีดำ" -#: vibes_auth/models.py:168 +#: engine/vibes_auth/models.py:137 msgid "blacklisted tokens" msgstr "โทเค็นที่ถูกขึ้นบัญชีดำ" -#: vibes_auth/serializers.py:99 +#: engine/vibes_auth/serializers.py:99 msgid "attributes must be a dictionary" msgstr "`attributes` ต้องเป็นพจนานุกรม" -#: vibes_auth/serializers.py:101 +#: engine/vibes_auth/serializers.py:101 msgid "business identificator is required when registering as a business" msgstr "จำเป็นต้องระบุรหัสประจำตัวธุรกิจเมื่อลงทะเบียนเป็นธุรกิจ" -#: vibes_auth/serializers.py:121 +#: engine/vibes_auth/serializers.py:121 #, python-brace-format msgid "malformed email: {email}" msgstr "อีเมลไม่ถูกต้อง: {email}" -#: vibes_auth/serializers.py:142 vibes_auth/serializers.py:164 -#: vibes_auth/serializers.py:186 vibes_auth/serializers.py:198 +#: engine/vibes_auth/serializers.py:142 engine/vibes_auth/serializers.py:164 +#: engine/vibes_auth/serializers.py:184 engine/vibes_auth/serializers.py:194 msgid "no active account" msgstr "ไม่พบบัญชีที่ใช้งานอยู่" -#: vibes_auth/serializers.py:174 +#: engine/vibes_auth/serializers.py:174 msgid "must set token_class attribute on class." msgstr "ต้องตั้งค่าแอตทริบิวต์ token_class บนคลาส!" -#: vibes_auth/serializers.py:246 +#: engine/vibes_auth/serializers.py:240 msgid "token_blacklisted" msgstr "โทเค็นถูกขึ้นบัญชีดำ" -#: vibes_auth/serializers.py:251 +#: engine/vibes_auth/serializers.py:245 msgid "invalid token" msgstr "โทเค็นไม่ถูกต้อง" -#: vibes_auth/serializers.py:257 +#: engine/vibes_auth/serializers.py:251 msgid "no user uuid claim present in token" msgstr "ไม่มีการอ้างสิทธิ์ uuid ของผู้ใช้ในโทเค็น" -#: vibes_auth/serializers.py:259 +#: engine/vibes_auth/serializers.py:253 msgid "user does not exist" msgstr "ผู้ใช้ไม่มีอยู่" -#: vibes_auth/templates/user_reset_password_email.html:7 +#: engine/vibes_auth/templates/user_reset_password_email.html:7 msgid "reset your password" msgstr "รีเซ็ตรหัสผ่านของคุณ" -#: vibes_auth/templates/user_reset_password_email.html:85 -#: vibes_auth/templates/user_verification_email.html:85 +#: engine/vibes_auth/templates/user_reset_password_email.html:85 +#: engine/vibes_auth/templates/user_verification_email.html:85 msgid "logo" msgstr "โลโก้" -#: vibes_auth/templates/user_reset_password_email.html:90 +#: engine/vibes_auth/templates/user_reset_password_email.html:90 msgid "password reset confirmation" msgstr "การยืนยันการรีเซ็ตรหัสผ่าน" -#: vibes_auth/templates/user_reset_password_email.html:91 -#: vibes_auth/templates/user_verification_email.html:91 +#: engine/vibes_auth/templates/user_reset_password_email.html:91 +#: engine/vibes_auth/templates/user_verification_email.html:91 #, python-format msgid "hello %(user_first_name)s," msgstr "สวัสดีครับ/ค่ะ %(user_first_name)s," -#: vibes_auth/templates/user_reset_password_email.html:92 +#: 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" @@ -433,39 +440,39 @@ msgid "" msgstr "" "เราได้รับคำขอให้คุณรีเซ็ตรหัสผ่านของคุณ กรุณาทำการรีเซ็ตรหัสผ่านของคุณโดยคลิกที่ปุ่มด้านล่าง:" -#: vibes_auth/templates/user_reset_password_email.html:95 +#: engine/vibes_auth/templates/user_reset_password_email.html:95 msgid "reset password" msgstr "รีเซ็ตรหัสผ่าน" -#: vibes_auth/templates/user_reset_password_email.html:97 -#: vibes_auth/templates/user_verification_email.html:99 +#: engine/vibes_auth/templates/user_reset_password_email.html:97 +#: engine/vibes_auth/templates/user_verification_email.html:99 msgid "" "if the button above does not work, please copy and paste the following URL\n" " into your web browser:" msgstr "หากปุ่มด้านบนไม่ทำงาน โปรดคัดลอกและวาง URL ต่อไปนี้ลงในเว็บเบราว์เซอร์ของคุณ:" -#: vibes_auth/templates/user_reset_password_email.html:100 +#: engine/vibes_auth/templates/user_reset_password_email.html:100 msgid "" "if you did not send this request, please ignore this\n" " email." msgstr "หากคุณไม่ได้ส่งคำขอนี้ โปรดละเว้นอีเมลนี้" -#: vibes_auth/templates/user_reset_password_email.html:102 +#: engine/vibes_auth/templates/user_reset_password_email.html:102 #, python-format msgid "best regards,
The %(project_name)s team" msgstr "ขอแสดงความนับถือ
ทีมงาน %(project_name)s" -#: vibes_auth/templates/user_reset_password_email.html:108 -#: vibes_auth/templates/user_verification_email.html:108 +#: engine/vibes_auth/templates/user_reset_password_email.html:108 +#: engine/vibes_auth/templates/user_verification_email.html:108 msgid "all rights reserved" msgstr "สงวนลิขสิทธิ์" -#: vibes_auth/templates/user_verification_email.html:7 -#: vibes_auth/templates/user_verification_email.html:90 +#: engine/vibes_auth/templates/user_verification_email.html:7 +#: engine/vibes_auth/templates/user_verification_email.html:90 msgid "activate your account" msgstr "เปิดใช้งานบัญชีของคุณ" -#: vibes_auth/templates/user_verification_email.html:92 +#: engine/vibes_auth/templates/user_verification_email.html:92 #, python-format msgid "" "thank you for signing up for %(project_name)s. please activate your account\n" @@ -473,28 +480,28 @@ msgid "" msgstr "" "ขอบคุณที่ลงทะเบียนสำหรับ %(project_name)s กรุณาเปิดใช้งานบัญชีของคุณโดยคลิกที่ปุ่มด้านล่าง:" -#: vibes_auth/templates/user_verification_email.html:96 +#: engine/vibes_auth/templates/user_verification_email.html:96 msgid "" "activate\n" " account" msgstr "เปิดใช้งานบัญชี" -#: vibes_auth/templates/user_verification_email.html:102 +#: engine/vibes_auth/templates/user_verification_email.html:102 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "ขอแสดงความนับถือ
ทีมงาน %(project_name)s" -#: vibes_auth/utils/emailing.py:23 +#: engine/vibes_auth/utils/emailing.py:23 #, python-brace-format msgid "{config.PROJECT_NAME} | Activate Account" msgstr "{config.PROJECT_NAME} | เปิดใช้งานบัญชี" -#: vibes_auth/utils/emailing.py:62 +#: engine/vibes_auth/utils/emailing.py:62 #, python-brace-format msgid "{config.PROJECT_NAME} | Reset Password" msgstr "{config.PROJECT_NAME} | ตั้งค่ารหัสผ่านใหม่" -#: vibes_auth/validators.py:13 +#: engine/vibes_auth/validators.py:13 msgid "" "invalid phone number format. the number must be entered in the format: " "\"+999999999\". up to 15 digits allowed." @@ -502,7 +509,7 @@ msgstr "" "รูปแบบหมายเลขโทรศัพท์ไม่ถูกต้อง. หมายเลขต้องถูกป้อนในรูปแบบ: \"+999999999\". " "อนุญาตให้ใช้ได้ถึง 15 หลัก." -#: vibes_auth/views.py:30 +#: engine/vibes_auth/views.py:30 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 " @@ -516,7 +523,7 @@ msgstr "" "มุมมองนี้สร้างขึ้นบนมุมมองโทเค็นพื้นฐานและรับประกันการจำกัดอัตราที่เหมาะสมเพื่อป้องกันการโจมตีแบบ " "brute force" -#: vibes_auth/views.py:48 +#: engine/vibes_auth/views.py:48 msgid "" "Handles refreshing of tokens for authentication purposes. This class is used " "to provide functionality for token refresh operations as part of an " @@ -529,7 +536,7 @@ msgstr "" "มันทำให้แน่ใจว่าลูกค้าสามารถขอโทเค็นที่รีเฟรชแล้วได้ภายในขีดจำกัดอัตราที่กำหนดไว้ " "หน้าจอนี้พึ่งพาตัวจัดลำดับที่เกี่ยวข้องเพื่อตรวจสอบความถูกต้องของข้อมูลการรีเฟรชโทเค็นและสร้างผลลัพธ์ที่เหมาะสม" -#: vibes_auth/views.py:67 +#: engine/vibes_auth/views.py:67 msgid "" "Represents a view for verifying JSON Web Tokens (JWT) using specific " "serialization and validation logic. " @@ -537,11 +544,11 @@ msgstr "" "แสดงมุมมองสำหรับการตรวจสอบโทเค็นเว็บ JSON (JWT) " "โดยใช้การแปลงลำดับและการตรวจสอบความถูกต้องตามตรรกะเฉพาะ" -#: vibes_auth/views.py:80 +#: engine/vibes_auth/views.py:80 msgid "the token is invalid" msgstr "โทเค็นไม่ถูกต้อง" -#: vibes_auth/viewsets.py:45 +#: engine/vibes_auth/viewsets.py:45 msgid "" "User view set implementation.\n" "Provides a set of actions that manage user-related data such as creation, " @@ -554,10 +561,10 @@ msgstr "" "การอัปโหลดอวาตาร์ การเปิดใช้งานบัญชี และการรวมรายการที่ดูล่าสุด คลาสนี้ขยายส่วนผสมและ " "GenericViewSet เพื่อการจัดการ API ที่มีความแข็งแกร่ง" -#: vibes_auth/viewsets.py:99 +#: engine/vibes_auth/viewsets.py:99 msgid "password reset successfully" msgstr "รหัสผ่านได้รับการรีเซ็ตเรียบร้อยแล้ว!" -#: vibes_auth/viewsets.py:132 +#: engine/vibes_auth/viewsets.py:132 msgid "account already activated!" msgstr "คุณได้เปิดใช้งานบัญชีเรียบร้อยแล้ว..." diff --git a/vibes_auth/locale/tr_TR/LC_MESSAGES/django.mo b/engine/vibes_auth/locale/tr_TR/LC_MESSAGES/django.mo similarity index 65% rename from vibes_auth/locale/tr_TR/LC_MESSAGES/django.mo rename to engine/vibes_auth/locale/tr_TR/LC_MESSAGES/django.mo index 65405566..f94278cd 100644 Binary files a/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/vibes_auth/locale/tr_TR/LC_MESSAGES/django.po b/engine/vibes_auth/locale/tr_TR/LC_MESSAGES/django.po similarity index 68% rename from vibes_auth/locale/tr_TR/LC_MESSAGES/django.po rename to engine/vibes_auth/locale/tr_TR/LC_MESSAGES/django.po index 0e04c5f5..33e62d6f 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,159 +13,170 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: vibes_auth/admin.py:39 vibes_auth/admin.py:40 -#: vibes_auth/graphene/object_types.py:46 +#: engine/vibes_auth/admin.py:40 engine/vibes_auth/admin.py:41 +#: engine/vibes_auth/graphene/object_types.py:46 msgid "balance" msgstr "Denge" -#: vibes_auth/admin.py:48 +#: engine/vibes_auth/admin.py:49 msgid "order" msgstr "Sipariş" -#: vibes_auth/admin.py:49 vibes_auth/graphene/object_types.py:44 +#: engine/vibes_auth/admin.py:50 engine/vibes_auth/graphene/object_types.py:44 msgid "orders" msgstr "Siparişler" -#: vibes_auth/admin.py:59 +#: engine/vibes_auth/admin.py:60 msgid "personal info" msgstr "Kişisel Bilgiler" -#: vibes_auth/admin.py:63 vibes_auth/graphene/object_types.py:43 +#: engine/vibes_auth/admin.py:64 engine/vibes_auth/graphene/object_types.py:43 msgid "permissions" msgstr "İzinler" -#: vibes_auth/admin.py:76 +#: engine/vibes_auth/admin.py:77 msgid "important dates" msgstr "Önemli tarihler" -#: vibes_auth/admin.py:77 +#: engine/vibes_auth/admin.py:78 msgid "additional info" msgstr "Ek Bilgi" -#: vibes_auth/apps.py:8 +#: engine/vibes_auth/admin.py:145 +msgid "Close selected threads" +msgstr "Seçili konuları kapatın" + +#: engine/vibes_auth/admin.py:149 +msgid "Open selected threads" +msgstr "Seçili konuları açın" + +#: engine/vibes_auth/apps.py:8 msgid "authentication" msgstr "Kimlik Doğrulama" -#: vibes_auth/docs/drf/views.py:15 +#: engine/vibes_auth/docs/drf/views.py:15 msgid "obtain a token pair" msgstr "Bir belirteç çifti elde edin" -#: vibes_auth/docs/drf/views.py:16 +#: engine/vibes_auth/docs/drf/views.py:16 msgid "obtain a token pair (refresh and access) for authentication." msgstr "Kimlik doğrulama için bir belirteç çifti (yenileme ve erişim) alın." -#: vibes_auth/docs/drf/views.py:35 +#: engine/vibes_auth/docs/drf/views.py:35 msgid "refresh a token pair" msgstr "Belirteç çiftini yenileyin" -#: vibes_auth/docs/drf/views.py:36 +#: engine/vibes_auth/docs/drf/views.py:36 msgid "refresh a token pair (refresh and access)." msgstr "Bir token çiftini yenileyin (yenileme ve erişim)." -#: vibes_auth/docs/drf/views.py:55 +#: engine/vibes_auth/docs/drf/views.py:55 msgid "verify a token" msgstr "Bir belirteci doğrulayın" -#: vibes_auth/docs/drf/views.py:56 +#: engine/vibes_auth/docs/drf/views.py:56 msgid "Verify a token (refresh or access)." msgstr "Bir belirteci doğrulayın (yenileme veya erişim)." -#: vibes_auth/docs/drf/views.py:62 vibes_auth/views.py:78 +#: engine/vibes_auth/docs/drf/views.py:62 engine/vibes_auth/views.py:78 msgid "the token is valid" msgstr "Belirteç geçerlidir" -#: vibes_auth/docs/drf/viewsets.py:16 +#: engine/vibes_auth/docs/drf/viewsets.py:16 msgid "create a new user" msgstr "Yeni bir kullanıcı oluşturun" -#: vibes_auth/docs/drf/viewsets.py:21 +#: engine/vibes_auth/docs/drf/viewsets.py:21 msgid "retrieve a user's details" msgstr "Bir kullanıcının ayrıntılarını alma" -#: vibes_auth/docs/drf/viewsets.py:25 +#: engine/vibes_auth/docs/drf/viewsets.py:25 msgid "update a user's details" msgstr "Kullanıcı bilgilerini güncelleme" -#: vibes_auth/docs/drf/viewsets.py:30 +#: engine/vibes_auth/docs/drf/viewsets.py:30 msgid "delete a user" msgstr "Kullanıcı silme" -#: vibes_auth/docs/drf/viewsets.py:34 +#: engine/vibes_auth/docs/drf/viewsets.py:34 msgid "reset a user's password by sending a reset password email" msgstr "" "Parola sıfırlama e-postası göndererek bir kullanıcının parolasını sıfırlama" -#: vibes_auth/docs/drf/viewsets.py:39 +#: engine/vibes_auth/docs/drf/viewsets.py:39 msgid "handle avatar upload for a user" msgstr "Bir kullanıcı için avatar yükleme işlemini gerçekleştirin" -#: vibes_auth/docs/drf/viewsets.py:54 +#: engine/vibes_auth/docs/drf/viewsets.py:54 msgid "confirm a user's password reset" msgstr "Bir kullanıcının parola sıfırlamasını onaylama" -#: vibes_auth/docs/drf/viewsets.py:58 vibes_auth/graphene/mutations.py:320 -#: vibes_auth/serializers.py:105 vibes_auth/serializers.py:109 -#: vibes_auth/viewsets.py:84 +#: engine/vibes_auth/docs/drf/viewsets.py:58 +#: engine/vibes_auth/graphene/mutations.py:320 +#: engine/vibes_auth/serializers.py:105 engine/vibes_auth/serializers.py:109 +#: engine/vibes_auth/viewsets.py:84 msgid "passwords do not match" msgstr "Parolalar eşleşmiyor" -#: vibes_auth/docs/drf/viewsets.py:63 +#: engine/vibes_auth/docs/drf/viewsets.py:63 msgid "activate a user's account" msgstr "Bir kullanıcının hesabını etkinleştirme" -#: vibes_auth/docs/drf/viewsets.py:67 +#: engine/vibes_auth/docs/drf/viewsets.py:67 msgid "activation link is invalid or account already activated" msgstr "Etkinleştirme bağlantısı geçersiz veya hesap zaten etkinleştirilmiş" -#: vibes_auth/docs/drf/viewsets.py:72 +#: engine/vibes_auth/docs/drf/viewsets.py:72 msgid "merge client-stored recently viewed products" msgstr "İstemcide depolanan son görüntülenen ürünleri birleştirme" -#: vibes_auth/graphene/mutations.py:41 +#: engine/vibes_auth/graphene/mutations.py:41 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." -#: vibes_auth/graphene/mutations.py:61 +#: engine/vibes_auth/graphene/mutations.py:61 msgid "password too weak" msgstr "Şifre çok zayıf" -#: vibes_auth/graphene/mutations.py:110 +#: engine/vibes_auth/graphene/mutations.py:110 #, python-brace-format msgid "{name} does not exist: {uuid}" msgstr "{name} mevcut değil: {uuid}!" -#: vibes_auth/graphene/mutations.py:120 +#: engine/vibes_auth/graphene/mutations.py:120 msgid "malformed email" msgstr "Hatalı biçimlendirilmiş e-posta" -#: vibes_auth/graphene/mutations.py:127 vibes_auth/serializers.py:115 +#: engine/vibes_auth/graphene/mutations.py:127 +#: engine/vibes_auth/serializers.py:115 #, python-brace-format msgid "malformed phone number: {phone_number}" msgstr "Hatalı biçimlendirilmiş telefon numarası: {phone_number}!" -#: vibes_auth/graphene/mutations.py:149 +#: engine/vibes_auth/graphene/mutations.py:149 #, python-brace-format msgid "Invalid attribute format: {attribute_pair}" msgstr "Geçersiz öznitelik biçimi: {attribute_pair}!" -#: vibes_auth/graphene/mutations.py:273 vibes_auth/viewsets.py:127 -#: vibes_auth/viewsets.py:146 +#: engine/vibes_auth/graphene/mutations.py:273 +#: engine/vibes_auth/viewsets.py:127 engine/vibes_auth/viewsets.py:146 msgid "activation link is invalid!" msgstr "Aktivasyon bağlantısı geçersiz!" -#: vibes_auth/graphene/mutations.py:276 +#: engine/vibes_auth/graphene/mutations.py:276 msgid "account already activated..." msgstr "Hesap zaten etkinleştirildi..." -#: vibes_auth/graphene/mutations.py:283 vibes_auth/graphene/mutations.py:339 +#: engine/vibes_auth/graphene/mutations.py:283 +#: engine/vibes_auth/graphene/mutations.py:339 msgid "something went wrong: {e!s}" msgstr "Bir şeyler ters gitti: {e!s}" -#: vibes_auth/graphene/mutations.py:327 vibes_auth/viewsets.py:95 +#: engine/vibes_auth/graphene/mutations.py:327 engine/vibes_auth/viewsets.py:95 msgid "token is invalid!" msgstr "Jeton geçersiz!" -#: vibes_auth/graphene/object_types.py:40 +#: engine/vibes_auth/graphene/object_types.py:40 msgid "" "the products this user has viewed most recently (max 48), in reverse‐" "chronological order" @@ -173,100 +184,97 @@ msgstr "" "Bu kullanıcının en son görüntülediği ürünler (en fazla 48), ters kronolojik " "sırayla." -#: vibes_auth/graphene/object_types.py:42 vibes_auth/models.py:132 +#: engine/vibes_auth/graphene/object_types.py:42 +#: engine/vibes_auth/models.py:123 msgid "groups" msgstr "Gruplar" -#: vibes_auth/graphene/object_types.py:45 +#: engine/vibes_auth/graphene/object_types.py:45 msgid "wishlist" msgstr "İstek Listesi" -#: vibes_auth/graphene/object_types.py:47 vibes_auth/models.py:58 +#: engine/vibes_auth/graphene/object_types.py:47 engine/vibes_auth/models.py:59 msgid "avatar" msgstr "Avatar" -#: vibes_auth/graphene/object_types.py:48 +#: engine/vibes_auth/graphene/object_types.py:48 msgid "attributes may be used to store custom data" msgstr "Öznitelikler özel verileri saklamak için kullanılabilir" -#: vibes_auth/graphene/object_types.py:49 +#: engine/vibes_auth/graphene/object_types.py:50 #, python-brace-format -msgid "language is one of the {LANGUAGES} with default {LANGUAGE_CODE}" -msgstr "Dil, varsayılan {LANGUAGE_CODE} ile {LANGUAGES}'dan biridir" +msgid "" +"language is one of the {settings.LANGUAGES} with default {settings." +"LANGUAGE_CODE}" +msgstr "" +"Dil, varsayılan {settings.LANGUAGE_CODE} ile {settings.LANGUAGES}'dan biridir" -#: vibes_auth/graphene/object_types.py:50 +#: engine/vibes_auth/graphene/object_types.py:52 msgid "address set" msgstr "Adresler" -#: vibes_auth/messaging/admin.py:36 -msgid "Close selected threads" -msgstr "Seçili konuları kapatın" - -#: vibes_auth/messaging/admin.py:40 -msgid "Open selected threads" -msgstr "Seçili konuları açın" - -#: vibes_auth/messaging/models.py:24 +#: engine/vibes_auth/messaging/models.py:24 msgid "Open" msgstr "Açık" -#: vibes_auth/messaging/models.py:25 +#: engine/vibes_auth/messaging/models.py:25 msgid "Closed" msgstr "Kapalı" -#: vibes_auth/messaging/models.py:29 +#: engine/vibes_auth/messaging/models.py:29 msgid "User" msgstr "Kullanıcı" -#: vibes_auth/messaging/models.py:30 +#: engine/vibes_auth/messaging/models.py:30 msgid "Staff" msgstr "Personel" -#: vibes_auth/messaging/models.py:31 +#: engine/vibes_auth/messaging/models.py:31 msgid "System" msgstr "Sistem" -#: vibes_auth/messaging/models.py:36 +#: engine/vibes_auth/messaging/models.py:36 msgid "For anonymous threads" msgstr "Anonim konular için" -#: vibes_auth/messaging/models.py:50 +#: engine/vibes_auth/messaging/models.py:50 msgid "Chat thread" msgstr "Sohbet başlığı" -#: vibes_auth/messaging/models.py:51 +#: engine/vibes_auth/messaging/models.py:51 msgid "Chat threads" msgstr "Sohbet konuları" -#: vibes_auth/messaging/models.py:56 +#: engine/vibes_auth/messaging/models.py:56 msgid "Provide user or email for anonymous thread." msgstr "Anonim konu için kullanıcı veya e-posta sağlayın." -#: vibes_auth/messaging/models.py:58 vibes_auth/messaging/services.py:133 +#: engine/vibes_auth/messaging/models.py:58 +#: engine/vibes_auth/messaging/services.py:132 msgid "Assignee must be a staff user." msgstr "Atanan kişi bir personel kullanıcısı olmalıdır." -#: vibes_auth/messaging/models.py:74 +#: engine/vibes_auth/messaging/models.py:74 msgid "Chat message" msgstr "Sohbet mesajı" -#: vibes_auth/messaging/models.py:75 +#: engine/vibes_auth/messaging/models.py:75 msgid "Chat messages" msgstr "Sohbet mesajları" -#: vibes_auth/messaging/services.py:48 +#: engine/vibes_auth/messaging/services.py:47 msgid "Valid email is required for anonymous chats." msgstr "Anonim sohbetler için geçerli e-posta gereklidir." -#: vibes_auth/messaging/services.py:56 +#: engine/vibes_auth/messaging/services.py:55 msgid "Message must be 1..1028 characters." msgstr "Mesaj 1..1028 karakter olmalıdır." -#: vibes_auth/messaging/services.py:90 +#: engine/vibes_auth/messaging/services.py:89 msgid "We're searching for the operator to answer you already, hold by!" msgstr "Size cevap verecek operatörü arıyoruz, bekleyin!" -#: vibes_auth/models.py:30 +#: engine/vibes_auth/models.py:31 msgid "" "Represents a User entity with customized fields and methods for extended " "functionality. This class extends the AbstractUser model and integrates " @@ -285,152 +293,152 @@ msgstr "" "kullanıcı yönetimi için belirli kullanım durumlarını ele almak üzere " "tasarlanmıştır." -#: vibes_auth/models.py:41 +#: engine/vibes_auth/models.py:42 msgid "email" msgstr "E-posta" -#: vibes_auth/models.py:41 +#: engine/vibes_auth/models.py:42 msgid "user email address" msgstr "Kullanıcının e-posta adresi" -#: vibes_auth/models.py:43 +#: engine/vibes_auth/models.py:44 msgid "phone_number" msgstr "Telefon Numarası" -#: vibes_auth/models.py:48 +#: engine/vibes_auth/models.py:49 msgid "user phone number" msgstr "Kullanıcı telefon numarası" -#: vibes_auth/models.py:54 +#: engine/vibes_auth/models.py:55 msgid "first_name" msgstr "İlk isim" -#: vibes_auth/models.py:55 +#: engine/vibes_auth/models.py:56 msgid "last_name" msgstr "Soyadı" -#: vibes_auth/models.py:61 +#: engine/vibes_auth/models.py:62 msgid "user profile image" msgstr "Kullanıcı profili resmi" -#: vibes_auth/models.py:66 +#: engine/vibes_auth/models.py:67 msgid "is verified" msgstr "Doğrulandı" -#: vibes_auth/models.py:67 +#: engine/vibes_auth/models.py:68 msgid "user verification status" msgstr "Kullanıcının doğrulama durumu" -#: vibes_auth/models.py:70 +#: engine/vibes_auth/models.py:71 msgid "is_active" msgstr "Aktif" -#: vibes_auth/models.py:72 +#: engine/vibes_auth/models.py:73 msgid "unselect this instead of deleting accounts" msgstr "Hesapları silmek yerine bunun seçimini kaldırın" -#: vibes_auth/models.py:75 +#: engine/vibes_auth/models.py:76 msgid "is_subscribed" msgstr "Abone olundu" -#: vibes_auth/models.py:75 +#: engine/vibes_auth/models.py:76 msgid "user's newsletter subscription status" msgstr "Kullanıcının haber bülteni abonelik durumu" -#: vibes_auth/models.py:78 +#: engine/vibes_auth/models.py:79 msgid "activation token" msgstr "Etkinleştirme belirteci" -#: vibes_auth/models.py:80 +#: engine/vibes_auth/models.py:83 msgid "attributes" msgstr "Nitelikler" -#: vibes_auth/models.py:110 +#: engine/vibes_auth/models.py:115 msgid "user" msgstr "Kullanıcı" -#: vibes_auth/models.py:111 +#: engine/vibes_auth/models.py:116 msgid "users" msgstr "Kullanıcılar" -#: vibes_auth/models.py:131 +#: engine/vibes_auth/models.py:122 msgid "group" msgstr "Grup" -#: vibes_auth/models.py:148 +#: engine/vibes_auth/models.py:129 msgid "outstanding token" msgstr "Olağanüstü belirteç" -#: vibes_auth/models.py:149 +#: engine/vibes_auth/models.py:130 msgid "outstanding tokens" msgstr "Ödenmemiş jetonlar" -#: vibes_auth/models.py:167 +#: engine/vibes_auth/models.py:136 msgid "blacklisted token" msgstr "Kara listeye alınmış belirteç" -#: vibes_auth/models.py:168 +#: engine/vibes_auth/models.py:137 msgid "blacklisted tokens" msgstr "Kara listeye alınmış belirteçler" -#: vibes_auth/serializers.py:99 +#: engine/vibes_auth/serializers.py:99 msgid "attributes must be a dictionary" msgstr "attributes` bir sözlük olmalıdır" -#: vibes_auth/serializers.py:101 +#: engine/vibes_auth/serializers.py:101 msgid "business identificator is required when registering as a business" msgstr "İşletme olarak kayıt olurken işletme tanımlayıcısı gereklidir" -#: vibes_auth/serializers.py:121 +#: engine/vibes_auth/serializers.py:121 #, python-brace-format msgid "malformed email: {email}" msgstr "hatalı biçimlendirilmiş e-posta: {email}" -#: vibes_auth/serializers.py:142 vibes_auth/serializers.py:164 -#: vibes_auth/serializers.py:186 vibes_auth/serializers.py:198 +#: engine/vibes_auth/serializers.py:142 engine/vibes_auth/serializers.py:164 +#: engine/vibes_auth/serializers.py:184 engine/vibes_auth/serializers.py:194 msgid "no active account" msgstr "Etkin hesap bulunamadı" -#: vibes_auth/serializers.py:174 +#: engine/vibes_auth/serializers.py:174 msgid "must set token_class attribute on class." msgstr "Sınıf üzerinde token_class niteliği ayarlanmalıdır!" -#: vibes_auth/serializers.py:246 +#: engine/vibes_auth/serializers.py:240 msgid "token_blacklisted" msgstr "Jeton kara listeye alındı" -#: vibes_auth/serializers.py:251 +#: engine/vibes_auth/serializers.py:245 msgid "invalid token" msgstr "Geçersiz belirteç" -#: vibes_auth/serializers.py:257 +#: engine/vibes_auth/serializers.py:251 msgid "no user uuid claim present in token" msgstr "Belirteçte kullanıcı uuid talebi yok" -#: vibes_auth/serializers.py:259 +#: engine/vibes_auth/serializers.py:253 msgid "user does not exist" msgstr "Kullanıcı mevcut değil" -#: vibes_auth/templates/user_reset_password_email.html:7 +#: engine/vibes_auth/templates/user_reset_password_email.html:7 msgid "reset your password" msgstr "Şifrenizi sıfırlayın" -#: vibes_auth/templates/user_reset_password_email.html:85 -#: vibes_auth/templates/user_verification_email.html:85 +#: engine/vibes_auth/templates/user_reset_password_email.html:85 +#: engine/vibes_auth/templates/user_verification_email.html:85 msgid "logo" msgstr "Logo" -#: vibes_auth/templates/user_reset_password_email.html:90 +#: engine/vibes_auth/templates/user_reset_password_email.html:90 msgid "password reset confirmation" msgstr "Parola sıfırlama onayı" -#: vibes_auth/templates/user_reset_password_email.html:91 -#: vibes_auth/templates/user_verification_email.html:91 +#: engine/vibes_auth/templates/user_reset_password_email.html:91 +#: engine/vibes_auth/templates/user_verification_email.html:91 #, python-format msgid "hello %(user_first_name)s," msgstr "Merhaba %(user_first_name)s," -#: vibes_auth/templates/user_reset_password_email.html:92 +#: 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" @@ -439,12 +447,12 @@ msgstr "" "Şifrenizi sıfırlamak için bir talep aldık. Lütfen aşağıdaki butona " "tıklayarak şifrenizi sıfırlayın:" -#: vibes_auth/templates/user_reset_password_email.html:95 +#: engine/vibes_auth/templates/user_reset_password_email.html:95 msgid "reset password" msgstr "şifre sıfırlama" -#: vibes_auth/templates/user_reset_password_email.html:97 -#: vibes_auth/templates/user_verification_email.html:99 +#: engine/vibes_auth/templates/user_reset_password_email.html:97 +#: engine/vibes_auth/templates/user_verification_email.html:99 msgid "" "if the button above does not work, please copy and paste the following URL\n" " into your web browser:" @@ -452,7 +460,7 @@ msgstr "" "Yukarıdaki düğme çalışmazsa, lütfen aşağıdaki URL'yi kopyalayıp yapıştırın\n" " web tarayıcınıza:" -#: vibes_auth/templates/user_reset_password_email.html:100 +#: engine/vibes_auth/templates/user_reset_password_email.html:100 msgid "" "if you did not send this request, please ignore this\n" " email." @@ -460,22 +468,22 @@ msgstr "" "eğer bu talebi siz göndermediyseniz, lütfen bunu dikkate almayın\n" " E-posta." -#: vibes_auth/templates/user_reset_password_email.html:102 +#: engine/vibes_auth/templates/user_reset_password_email.html:102 #, python-format msgid "best regards,
The %(project_name)s team" msgstr "Saygılarımla,
The %(project_name)s team" -#: vibes_auth/templates/user_reset_password_email.html:108 -#: vibes_auth/templates/user_verification_email.html:108 +#: engine/vibes_auth/templates/user_reset_password_email.html:108 +#: engine/vibes_auth/templates/user_verification_email.html:108 msgid "all rights reserved" msgstr "Tüm hakları saklıdır" -#: vibes_auth/templates/user_verification_email.html:7 -#: vibes_auth/templates/user_verification_email.html:90 +#: engine/vibes_auth/templates/user_verification_email.html:7 +#: engine/vibes_auth/templates/user_verification_email.html:90 msgid "activate your account" msgstr "Hesabınızı etkinleştirin" -#: vibes_auth/templates/user_verification_email.html:92 +#: engine/vibes_auth/templates/user_verification_email.html:92 #, python-format msgid "" "thank you for signing up for %(project_name)s. please activate your account\n" @@ -484,7 +492,7 @@ msgstr "" "%(project_name)s'a kaydolduğunuz için teşekkür ederiz. Lütfen aşağıdaki " "düğmeye tıklayarak hesabınızı etkinleştirin:" -#: vibes_auth/templates/user_verification_email.html:96 +#: engine/vibes_auth/templates/user_verification_email.html:96 msgid "" "activate\n" " account" @@ -492,22 +500,22 @@ msgstr "" "Etkinleştir\n" " hesap" -#: vibes_auth/templates/user_verification_email.html:102 +#: engine/vibes_auth/templates/user_verification_email.html:102 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "Saygılarımla,
the %(project_name)s team" -#: vibes_auth/utils/emailing.py:23 +#: engine/vibes_auth/utils/emailing.py:23 #, python-brace-format msgid "{config.PROJECT_NAME} | Activate Account" msgstr "{config.PROJECT_NAME} | Hesabı Etkinleştir" -#: vibes_auth/utils/emailing.py:62 +#: engine/vibes_auth/utils/emailing.py:62 #, python-brace-format msgid "{config.PROJECT_NAME} | Reset Password" msgstr "{config.PROJECT_NAME} | Şifreyi Sıfırla" -#: vibes_auth/validators.py:13 +#: engine/vibes_auth/validators.py:13 msgid "" "invalid phone number format. the number must be entered in the format: " "\"+999999999\". up to 15 digits allowed." @@ -515,7 +523,7 @@ msgstr "" "Geçersiz telefon numarası biçimi. Numara şu formatta girilmelidir: " "\"+999999999\". En fazla 15 haneye izin verilir." -#: vibes_auth/views.py:30 +#: engine/vibes_auth/views.py:30 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 " @@ -530,7 +538,7 @@ msgstr "" "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." -#: vibes_auth/views.py:48 +#: engine/vibes_auth/views.py:48 msgid "" "Handles refreshing of tokens for authentication purposes. This class is used " "to provide functionality for token refresh operations as part of an " @@ -545,7 +553,7 @@ msgstr "" "yenileme girdilerini doğrulamak ve uygun çıktıları üretmek için ilişkili " "serileştiriciye dayanır." -#: vibes_auth/views.py:67 +#: engine/vibes_auth/views.py:67 msgid "" "Represents a view for verifying JSON Web Tokens (JWT) using specific " "serialization and validation logic. " @@ -553,11 +561,11 @@ msgstr "" "Belirli serileştirme ve doğrulama mantığını kullanarak JSON Web " "Belirteçlerini (JWT) doğrulamaya yönelik bir görünümü temsil eder." -#: vibes_auth/views.py:80 +#: engine/vibes_auth/views.py:80 msgid "the token is invalid" msgstr "Belirteç geçersiz" -#: vibes_auth/viewsets.py:45 +#: engine/vibes_auth/viewsets.py:45 msgid "" "User view set implementation.\n" "Provides a set of actions that manage user-related data such as creation, " @@ -571,10 +579,10 @@ msgstr "" "öğ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." -#: vibes_auth/viewsets.py:99 +#: engine/vibes_auth/viewsets.py:99 msgid "password reset successfully" msgstr "Şifre başarıyla sıfırlandı!" -#: vibes_auth/viewsets.py:132 +#: engine/vibes_auth/viewsets.py:132 msgid "account already activated!" msgstr "Hesabı zaten etkinleştirdiniz..." diff --git a/vibes_auth/locale/vi_VN/LC_MESSAGES/django.mo b/engine/vibes_auth/locale/vi_VN/LC_MESSAGES/django.mo similarity index 67% rename from vibes_auth/locale/vi_VN/LC_MESSAGES/django.mo rename to engine/vibes_auth/locale/vi_VN/LC_MESSAGES/django.mo index 35d8b5da..3bdec51a 100644 Binary files a/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/vibes_auth/locale/vi_VN/LC_MESSAGES/django.po b/engine/vibes_auth/locale/vi_VN/LC_MESSAGES/django.po similarity index 69% rename from vibes_auth/locale/vi_VN/LC_MESSAGES/django.po rename to engine/vibes_auth/locale/vi_VN/LC_MESSAGES/django.po index 540baead..eeef13da 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,161 +13,172 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: vibes_auth/admin.py:39 vibes_auth/admin.py:40 -#: vibes_auth/graphene/object_types.py:46 +#: engine/vibes_auth/admin.py:40 engine/vibes_auth/admin.py:41 +#: engine/vibes_auth/graphene/object_types.py:46 msgid "balance" msgstr "Cân bằng" -#: vibes_auth/admin.py:48 +#: engine/vibes_auth/admin.py:49 msgid "order" msgstr "Đặt hàng" -#: vibes_auth/admin.py:49 vibes_auth/graphene/object_types.py:44 +#: engine/vibes_auth/admin.py:50 engine/vibes_auth/graphene/object_types.py:44 msgid "orders" msgstr "Đơn hàng" -#: vibes_auth/admin.py:59 +#: engine/vibes_auth/admin.py:60 msgid "personal info" msgstr "Thông tin cá nhân" -#: vibes_auth/admin.py:63 vibes_auth/graphene/object_types.py:43 +#: engine/vibes_auth/admin.py:64 engine/vibes_auth/graphene/object_types.py:43 msgid "permissions" msgstr "Quyền" -#: vibes_auth/admin.py:76 +#: engine/vibes_auth/admin.py:77 msgid "important dates" msgstr "Các ngày quan trọng" -#: vibes_auth/admin.py:77 +#: engine/vibes_auth/admin.py:78 msgid "additional info" msgstr "Thông tin bổ sung" -#: vibes_auth/apps.py:8 +#: engine/vibes_auth/admin.py:145 +msgid "Close selected threads" +msgstr "Đóng các chủ đề đã chọn" + +#: engine/vibes_auth/admin.py:149 +msgid "Open selected threads" +msgstr "Mở các chủ đề đã chọn" + +#: engine/vibes_auth/apps.py:8 msgid "authentication" msgstr "Xác thực" -#: vibes_auth/docs/drf/views.py:15 +#: engine/vibes_auth/docs/drf/views.py:15 msgid "obtain a token pair" msgstr "Nhận cặp token" -#: vibes_auth/docs/drf/views.py:16 +#: engine/vibes_auth/docs/drf/views.py:16 msgid "obtain a token pair (refresh and access) for authentication." msgstr "Nhận cặp token (refresh và access) để xác thực." -#: vibes_auth/docs/drf/views.py:35 +#: engine/vibes_auth/docs/drf/views.py:35 msgid "refresh a token pair" msgstr "Cập nhật cặp token" -#: vibes_auth/docs/drf/views.py:36 +#: engine/vibes_auth/docs/drf/views.py:36 msgid "refresh a token pair (refresh and access)." msgstr "Cập nhật cặp token (cập nhật và truy cập)." -#: vibes_auth/docs/drf/views.py:55 +#: engine/vibes_auth/docs/drf/views.py:55 msgid "verify a token" msgstr "Xác minh token" -#: vibes_auth/docs/drf/views.py:56 +#: engine/vibes_auth/docs/drf/views.py:56 msgid "Verify a token (refresh or access)." msgstr "Xác minh token (cập nhật hoặc truy cập)." -#: vibes_auth/docs/drf/views.py:62 vibes_auth/views.py:78 +#: engine/vibes_auth/docs/drf/views.py:62 engine/vibes_auth/views.py:78 msgid "the token is valid" msgstr "Token này hợp lệ" -#: vibes_auth/docs/drf/viewsets.py:16 +#: engine/vibes_auth/docs/drf/viewsets.py:16 msgid "create a new user" msgstr "Tạo một người dùng mới" -#: vibes_auth/docs/drf/viewsets.py:21 +#: engine/vibes_auth/docs/drf/viewsets.py:21 msgid "retrieve a user's details" msgstr "Lấy thông tin chi tiết của người dùng" -#: vibes_auth/docs/drf/viewsets.py:25 +#: engine/vibes_auth/docs/drf/viewsets.py:25 msgid "update a user's details" msgstr "Cập nhật thông tin của người dùng" -#: vibes_auth/docs/drf/viewsets.py:30 +#: engine/vibes_auth/docs/drf/viewsets.py:30 msgid "delete a user" msgstr "Xóa người dùng" -#: vibes_auth/docs/drf/viewsets.py:34 +#: engine/vibes_auth/docs/drf/viewsets.py:34 msgid "reset a user's password by sending a reset password email" msgstr "Đặt lại mật khẩu của người dùng bằng cách gửi email đặt lại mật khẩu." -#: vibes_auth/docs/drf/viewsets.py:39 +#: engine/vibes_auth/docs/drf/viewsets.py:39 msgid "handle avatar upload for a user" msgstr "Xử lý việc tải lên avatar cho người dùng" -#: vibes_auth/docs/drf/viewsets.py:54 +#: engine/vibes_auth/docs/drf/viewsets.py:54 msgid "confirm a user's password reset" msgstr "Xác nhận việc đặt lại mật khẩu của người dùng" -#: vibes_auth/docs/drf/viewsets.py:58 vibes_auth/graphene/mutations.py:320 -#: vibes_auth/serializers.py:105 vibes_auth/serializers.py:109 -#: vibes_auth/viewsets.py:84 +#: engine/vibes_auth/docs/drf/viewsets.py:58 +#: engine/vibes_auth/graphene/mutations.py:320 +#: engine/vibes_auth/serializers.py:105 engine/vibes_auth/serializers.py:109 +#: engine/vibes_auth/viewsets.py:84 msgid "passwords do not match" msgstr "Mật khẩu không khớp." -#: vibes_auth/docs/drf/viewsets.py:63 +#: engine/vibes_auth/docs/drf/viewsets.py:63 msgid "activate a user's account" msgstr "Kích hoạt tài khoản của người dùng" -#: vibes_auth/docs/drf/viewsets.py:67 +#: engine/vibes_auth/docs/drf/viewsets.py:67 msgid "activation link is invalid or account already activated" msgstr "Liên kết kích hoạt không hợp lệ hoặc tài khoản đã được kích hoạt." -#: vibes_auth/docs/drf/viewsets.py:72 +#: engine/vibes_auth/docs/drf/viewsets.py:72 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" -#: vibes_auth/graphene/mutations.py:41 +#: engine/vibes_auth/graphene/mutations.py:41 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." -#: vibes_auth/graphene/mutations.py:61 +#: engine/vibes_auth/graphene/mutations.py:61 msgid "password too weak" msgstr "Mật khẩu quá yếu." -#: vibes_auth/graphene/mutations.py:110 +#: engine/vibes_auth/graphene/mutations.py:110 #, python-brace-format msgid "{name} does not exist: {uuid}" msgstr "{name} không tồn tại: {uuid}!" -#: vibes_auth/graphene/mutations.py:120 +#: engine/vibes_auth/graphene/mutations.py:120 msgid "malformed email" msgstr "Email không hợp lệ" -#: vibes_auth/graphene/mutations.py:127 vibes_auth/serializers.py:115 +#: engine/vibes_auth/graphene/mutations.py:127 +#: engine/vibes_auth/serializers.py:115 #, python-brace-format msgid "malformed phone number: {phone_number}" msgstr "Số điện thoại không hợp lệ: {phone_number}!" -#: vibes_auth/graphene/mutations.py:149 +#: engine/vibes_auth/graphene/mutations.py:149 #, python-brace-format msgid "Invalid attribute format: {attribute_pair}" msgstr "Định dạng thuộc tính không hợp lệ: {attribute_pair}!" -#: vibes_auth/graphene/mutations.py:273 vibes_auth/viewsets.py:127 -#: vibes_auth/viewsets.py:146 +#: engine/vibes_auth/graphene/mutations.py:273 +#: engine/vibes_auth/viewsets.py:127 engine/vibes_auth/viewsets.py:146 msgid "activation link is invalid!" msgstr "Liên kết kích hoạt không hợp lệ!" -#: vibes_auth/graphene/mutations.py:276 +#: engine/vibes_auth/graphene/mutations.py:276 msgid "account already activated..." msgstr "Tài khoản đã được kích hoạt..." -#: vibes_auth/graphene/mutations.py:283 vibes_auth/graphene/mutations.py:339 +#: engine/vibes_auth/graphene/mutations.py:283 +#: engine/vibes_auth/graphene/mutations.py:339 msgid "something went wrong: {e!s}" msgstr "Có sự cố xảy ra: {e!s}" -#: vibes_auth/graphene/mutations.py:327 vibes_auth/viewsets.py:95 +#: engine/vibes_auth/graphene/mutations.py:327 engine/vibes_auth/viewsets.py:95 msgid "token is invalid!" msgstr "Token không hợp lệ!" -#: vibes_auth/graphene/object_types.py:40 +#: engine/vibes_auth/graphene/object_types.py:40 msgid "" "the products this user has viewed most recently (max 48), in reverse‐" "chronological order" @@ -175,103 +186,101 @@ 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." -#: vibes_auth/graphene/object_types.py:42 vibes_auth/models.py:132 +#: engine/vibes_auth/graphene/object_types.py:42 +#: engine/vibes_auth/models.py:123 msgid "groups" msgstr "Nhóm" -#: vibes_auth/graphene/object_types.py:45 +#: engine/vibes_auth/graphene/object_types.py:45 msgid "wishlist" msgstr "Danh sách mong muốn" -#: vibes_auth/graphene/object_types.py:47 vibes_auth/models.py:58 +#: engine/vibes_auth/graphene/object_types.py:47 engine/vibes_auth/models.py:59 msgid "avatar" msgstr "Avatar" -#: vibes_auth/graphene/object_types.py:48 +#: engine/vibes_auth/graphene/object_types.py:48 msgid "attributes may be used to store custom data" msgstr "Các thuộc tính có thể được sử dụng để lưu trữ dữ liệu tùy chỉnh." -#: vibes_auth/graphene/object_types.py:49 +#: engine/vibes_auth/graphene/object_types.py:50 #, python-brace-format -msgid "language is one of the {LANGUAGES} with default {LANGUAGE_CODE}" -msgstr "Ngôn ngữ là một trong những {LANGUAGES} với mặc định {LANGUAGE_CODE}" +msgid "" +"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}" -#: vibes_auth/graphene/object_types.py:50 +#: engine/vibes_auth/graphene/object_types.py:52 msgid "address set" msgstr "Địa chỉ" -#: vibes_auth/messaging/admin.py:36 -msgid "Close selected threads" -msgstr "Đóng các chủ đề đã chọn" - -#: vibes_auth/messaging/admin.py:40 -msgid "Open selected threads" -msgstr "Mở các chủ đề đã chọn" - -#: vibes_auth/messaging/models.py:24 +#: engine/vibes_auth/messaging/models.py:24 msgid "Open" msgstr "Mở" -#: vibes_auth/messaging/models.py:25 +#: engine/vibes_auth/messaging/models.py:25 msgid "Closed" msgstr "Đóng" -#: vibes_auth/messaging/models.py:29 +#: engine/vibes_auth/messaging/models.py:29 msgid "User" msgstr "Người dùng" -#: vibes_auth/messaging/models.py:30 +#: engine/vibes_auth/messaging/models.py:30 msgid "Staff" msgstr "Nhân viên" -#: vibes_auth/messaging/models.py:31 +#: engine/vibes_auth/messaging/models.py:31 msgid "System" msgstr "Hệ thống" -#: vibes_auth/messaging/models.py:36 +#: engine/vibes_auth/messaging/models.py:36 msgid "For anonymous threads" msgstr "Đối với các chủ đề ẩn danh" -#: vibes_auth/messaging/models.py:50 +#: engine/vibes_auth/messaging/models.py:50 msgid "Chat thread" msgstr "Dòng trò chuyện" -#: vibes_auth/messaging/models.py:51 +#: engine/vibes_auth/messaging/models.py:51 msgid "Chat threads" msgstr "Các chuỗi trò chuyện" -#: vibes_auth/messaging/models.py:56 +#: engine/vibes_auth/messaging/models.py:56 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." -#: vibes_auth/messaging/models.py:58 vibes_auth/messaging/services.py:133 +#: engine/vibes_auth/messaging/models.py:58 +#: engine/vibes_auth/messaging/services.py:132 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." -#: vibes_auth/messaging/models.py:74 +#: engine/vibes_auth/messaging/models.py:74 msgid "Chat message" msgstr "Tin nhắn trò chuyện" -#: vibes_auth/messaging/models.py:75 +#: engine/vibes_auth/messaging/models.py:75 msgid "Chat messages" msgstr "Tin nhắn trò chuyện" -#: vibes_auth/messaging/services.py:48 +#: engine/vibes_auth/messaging/services.py:47 msgid "Valid email is required for anonymous chats." msgstr "Địa chỉ email hợp lệ là bắt buộc cho các cuộc trò chuyện ẩn danh." -#: vibes_auth/messaging/services.py:56 +#: engine/vibes_auth/messaging/services.py:55 msgid "Message must be 1..1028 characters." msgstr "Thông điệp phải có độ dài từ 1 đến 1028 ký tự." -#: vibes_auth/messaging/services.py:90 +#: engine/vibes_auth/messaging/services.py:89 msgid "We're searching for the operator to answer you already, hold by!" msgstr "" "Chúng tôi đang tìm kiếm nhân viên tổng đài để trả lời cho bạn, xin vui lòng " "chờ một lát!" -#: vibes_auth/models.py:30 +#: engine/vibes_auth/models.py:31 msgid "" "Represents a User entity with customized fields and methods for extended " "functionality. This class extends the AbstractUser model and integrates " @@ -289,152 +298,152 @@ msgstr "" "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." -#: vibes_auth/models.py:41 +#: engine/vibes_auth/models.py:42 msgid "email" msgstr "Email" -#: vibes_auth/models.py:41 +#: engine/vibes_auth/models.py:42 msgid "user email address" msgstr "Địa chỉ email của người dùng" -#: vibes_auth/models.py:43 +#: engine/vibes_auth/models.py:44 msgid "phone_number" msgstr "Số điện thoại" -#: vibes_auth/models.py:48 +#: engine/vibes_auth/models.py:49 msgid "user phone number" msgstr "Số điện thoại của người dùng" -#: vibes_auth/models.py:54 +#: engine/vibes_auth/models.py:55 msgid "first_name" msgstr "Họ" -#: vibes_auth/models.py:55 +#: engine/vibes_auth/models.py:56 msgid "last_name" msgstr "Họ" -#: vibes_auth/models.py:61 +#: engine/vibes_auth/models.py:62 msgid "user profile image" msgstr "Hình ảnh hồ sơ người dùng" -#: vibes_auth/models.py:66 +#: engine/vibes_auth/models.py:67 msgid "is verified" msgstr "Đã được xác minh" -#: vibes_auth/models.py:67 +#: engine/vibes_auth/models.py:68 msgid "user verification status" msgstr "Trạng thái xác minh của người dùng" -#: vibes_auth/models.py:70 +#: engine/vibes_auth/models.py:71 msgid "is_active" msgstr "Đang hoạt động" -#: vibes_auth/models.py:72 +#: engine/vibes_auth/models.py:73 msgid "unselect this instead of deleting accounts" msgstr "Hủy chọn tùy chọn này thay vì xóa tài khoản." -#: vibes_auth/models.py:75 +#: engine/vibes_auth/models.py:76 msgid "is_subscribed" msgstr "Đã đăng ký" -#: vibes_auth/models.py:75 +#: engine/vibes_auth/models.py:76 msgid "user's newsletter subscription status" msgstr "Tình trạng đăng ký bản tin của người dùng" -#: vibes_auth/models.py:78 +#: engine/vibes_auth/models.py:79 msgid "activation token" msgstr "Mã kích hoạt" -#: vibes_auth/models.py:80 +#: engine/vibes_auth/models.py:83 msgid "attributes" msgstr "Thuộc tính" -#: vibes_auth/models.py:110 +#: engine/vibes_auth/models.py:115 msgid "user" msgstr "Người dùng" -#: vibes_auth/models.py:111 +#: engine/vibes_auth/models.py:116 msgid "users" msgstr "Người dùng" -#: vibes_auth/models.py:131 +#: engine/vibes_auth/models.py:122 msgid "group" msgstr "Nhóm" -#: vibes_auth/models.py:148 +#: engine/vibes_auth/models.py:129 msgid "outstanding token" msgstr "Token xuất sắc" -#: vibes_auth/models.py:149 +#: engine/vibes_auth/models.py:130 msgid "outstanding tokens" msgstr "Token xuất sắc" -#: vibes_auth/models.py:167 +#: engine/vibes_auth/models.py:136 msgid "blacklisted token" msgstr "Token bị đưa vào danh sách đen" -#: vibes_auth/models.py:168 +#: engine/vibes_auth/models.py:137 msgid "blacklisted tokens" msgstr "Các token bị đưa vào danh sách đen" -#: vibes_auth/serializers.py:99 +#: engine/vibes_auth/serializers.py:99 msgid "attributes must be a dictionary" msgstr "`attributes` phải là một từ điển." -#: vibes_auth/serializers.py:101 +#: engine/vibes_auth/serializers.py:101 msgid "business identificator is required when registering as a business" msgstr "Mã định danh doanh nghiệp là bắt buộc khi đăng ký kinh doanh." -#: vibes_auth/serializers.py:121 +#: engine/vibes_auth/serializers.py:121 #, python-brace-format msgid "malformed email: {email}" msgstr "Email không hợp lệ: {email}" -#: vibes_auth/serializers.py:142 vibes_auth/serializers.py:164 -#: vibes_auth/serializers.py:186 vibes_auth/serializers.py:198 +#: engine/vibes_auth/serializers.py:142 engine/vibes_auth/serializers.py:164 +#: engine/vibes_auth/serializers.py:184 engine/vibes_auth/serializers.py:194 msgid "no active account" msgstr "Không tìm thấy tài khoản hoạt động." -#: vibes_auth/serializers.py:174 +#: engine/vibes_auth/serializers.py:174 msgid "must set token_class attribute on class." msgstr "Phải đặt thuộc tính token_class cho lớp!" -#: vibes_auth/serializers.py:246 +#: engine/vibes_auth/serializers.py:240 msgid "token_blacklisted" msgstr "Token bị đưa vào danh sách đen" -#: vibes_auth/serializers.py:251 +#: engine/vibes_auth/serializers.py:245 msgid "invalid token" msgstr "Token không hợp lệ" -#: vibes_auth/serializers.py:257 +#: engine/vibes_auth/serializers.py:251 msgid "no user uuid claim present in token" msgstr "Không có yêu cầu UUID của người dùng trong token." -#: vibes_auth/serializers.py:259 +#: engine/vibes_auth/serializers.py:253 msgid "user does not exist" msgstr "Người dùng không tồn tại" -#: vibes_auth/templates/user_reset_password_email.html:7 +#: engine/vibes_auth/templates/user_reset_password_email.html:7 msgid "reset your password" msgstr "Đặt lại mật khẩu của bạn" -#: vibes_auth/templates/user_reset_password_email.html:85 -#: vibes_auth/templates/user_verification_email.html:85 +#: engine/vibes_auth/templates/user_reset_password_email.html:85 +#: engine/vibes_auth/templates/user_verification_email.html:85 msgid "logo" msgstr "Biểu trưng" -#: vibes_auth/templates/user_reset_password_email.html:90 +#: engine/vibes_auth/templates/user_reset_password_email.html:90 msgid "password reset confirmation" msgstr "Xác nhận đặt lại mật khẩu" -#: vibes_auth/templates/user_reset_password_email.html:91 -#: vibes_auth/templates/user_verification_email.html:91 +#: engine/vibes_auth/templates/user_reset_password_email.html:91 +#: engine/vibes_auth/templates/user_verification_email.html:91 #, python-format msgid "hello %(user_first_name)s," msgstr "Xin chào %(user_first_name)s," -#: vibes_auth/templates/user_reset_password_email.html:92 +#: 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" @@ -443,12 +452,12 @@ 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 " "mật khẩu bằng cách nhấp vào nút bên dưới:" -#: vibes_auth/templates/user_reset_password_email.html:95 +#: engine/vibes_auth/templates/user_reset_password_email.html:95 msgid "reset password" msgstr "Đặt lại mật khẩu" -#: vibes_auth/templates/user_reset_password_email.html:97 -#: vibes_auth/templates/user_verification_email.html:99 +#: engine/vibes_auth/templates/user_reset_password_email.html:97 +#: engine/vibes_auth/templates/user_verification_email.html:99 msgid "" "if the button above does not work, please copy and paste the following URL\n" " into your web browser:" @@ -456,28 +465,28 @@ msgstr "" "Nếu nút ở trên không hoạt động, vui lòng sao chép và dán URL sau vào trình " "duyệt web của bạn:" -#: vibes_auth/templates/user_reset_password_email.html:100 +#: engine/vibes_auth/templates/user_reset_password_email.html:100 msgid "" "if you did not send this request, please ignore this\n" " email." msgstr "Nếu bạn không gửi yêu cầu này, vui lòng bỏ qua email này." -#: vibes_auth/templates/user_reset_password_email.html:102 +#: engine/vibes_auth/templates/user_reset_password_email.html:102 #, python-format msgid "best regards,
The %(project_name)s team" msgstr "Trân trọng,
Đội ngũ %(project_name)s" -#: vibes_auth/templates/user_reset_password_email.html:108 -#: vibes_auth/templates/user_verification_email.html:108 +#: engine/vibes_auth/templates/user_reset_password_email.html:108 +#: engine/vibes_auth/templates/user_verification_email.html:108 msgid "all rights reserved" msgstr "Tất cả các quyền được bảo lưu." -#: vibes_auth/templates/user_verification_email.html:7 -#: vibes_auth/templates/user_verification_email.html:90 +#: engine/vibes_auth/templates/user_verification_email.html:7 +#: engine/vibes_auth/templates/user_verification_email.html:90 msgid "activate your account" msgstr "Kích hoạt tài khoản của bạn" -#: vibes_auth/templates/user_verification_email.html:92 +#: engine/vibes_auth/templates/user_verification_email.html:92 #, python-format msgid "" "thank you for signing up for %(project_name)s. please activate your account\n" @@ -486,28 +495,28 @@ 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:" -#: vibes_auth/templates/user_verification_email.html:96 +#: engine/vibes_auth/templates/user_verification_email.html:96 msgid "" "activate\n" " account" msgstr "Kích hoạt tài khoản" -#: vibes_auth/templates/user_verification_email.html:102 +#: engine/vibes_auth/templates/user_verification_email.html:102 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "Trân trọng,
Đội ngũ %(project_name)s" -#: vibes_auth/utils/emailing.py:23 +#: engine/vibes_auth/utils/emailing.py:23 #, python-brace-format msgid "{config.PROJECT_NAME} | Activate Account" msgstr "{config.PROJECT_NAME} | Kích hoạt tài khoản" -#: vibes_auth/utils/emailing.py:62 +#: engine/vibes_auth/utils/emailing.py:62 #, python-brace-format msgid "{config.PROJECT_NAME} | Reset Password" msgstr "{config.PROJECT_NAME} | Đặt lại mật khẩu" -#: vibes_auth/validators.py:13 +#: engine/vibes_auth/validators.py:13 msgid "" "invalid phone number format. the number must be entered in the format: " "\"+999999999\". up to 15 digits allowed." @@ -515,7 +524,7 @@ 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ố." -#: vibes_auth/views.py:30 +#: engine/vibes_auth/views.py:30 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 " @@ -530,7 +539,7 @@ msgstr "" "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." -#: vibes_auth/views.py:48 +#: engine/vibes_auth/views.py:48 msgid "" "Handles refreshing of tokens for authentication purposes. This class is used " "to provide functionality for token refresh operations as part of an " @@ -545,7 +554,7 @@ msgstr "" "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." -#: vibes_auth/views.py:67 +#: engine/vibes_auth/views.py:67 msgid "" "Represents a view for verifying JSON Web Tokens (JWT) using specific " "serialization and validation logic. " @@ -553,11 +562,11 @@ msgstr "" "Đại diện cho một giao diện dùng để xác minh JSON Web Tokens (JWT) bằng cách " "sử dụng logic serialization và xác thực cụ thể." -#: vibes_auth/views.py:80 +#: engine/vibes_auth/views.py:80 msgid "the token is invalid" msgstr "Token không hợp lệ" -#: vibes_auth/viewsets.py:45 +#: engine/vibes_auth/viewsets.py:45 msgid "" "User view set implementation.\n" "Provides a set of actions that manage user-related data such as creation, " @@ -571,10 +580,10 @@ msgstr "" "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ẽ." -#: vibes_auth/viewsets.py:99 +#: engine/vibes_auth/viewsets.py:99 msgid "password reset successfully" msgstr "Mật khẩu đã được đặt lại thành công!" -#: vibes_auth/viewsets.py:132 +#: engine/vibes_auth/viewsets.py:132 msgid "account already activated!" msgstr "Bạn đã kích hoạt tài khoản..." diff --git a/vibes_auth/locale/zh_Hans/LC_MESSAGES/django.mo b/engine/vibes_auth/locale/zh_Hans/LC_MESSAGES/django.mo similarity index 67% rename from vibes_auth/locale/zh_Hans/LC_MESSAGES/django.mo rename to engine/vibes_auth/locale/zh_Hans/LC_MESSAGES/django.mo index 13b775da..a41583e3 100644 Binary files a/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/vibes_auth/locale/zh_Hans/LC_MESSAGES/django.po b/engine/vibes_auth/locale/zh_Hans/LC_MESSAGES/django.po similarity index 65% rename from vibes_auth/locale/zh_Hans/LC_MESSAGES/django.po rename to engine/vibes_auth/locale/zh_Hans/LC_MESSAGES/django.po index 05fe4091..dab4764f 100644 --- a/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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,257 +13,264 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: vibes_auth/admin.py:39 vibes_auth/admin.py:40 -#: vibes_auth/graphene/object_types.py:46 +#: engine/vibes_auth/admin.py:40 engine/vibes_auth/admin.py:41 +#: engine/vibes_auth/graphene/object_types.py:46 msgid "balance" msgstr "平衡" -#: vibes_auth/admin.py:48 +#: engine/vibes_auth/admin.py:49 msgid "order" msgstr "订购" -#: vibes_auth/admin.py:49 vibes_auth/graphene/object_types.py:44 +#: engine/vibes_auth/admin.py:50 engine/vibes_auth/graphene/object_types.py:44 msgid "orders" msgstr "订单" -#: vibes_auth/admin.py:59 +#: engine/vibes_auth/admin.py:60 msgid "personal info" msgstr "个人信息" -#: vibes_auth/admin.py:63 vibes_auth/graphene/object_types.py:43 +#: engine/vibes_auth/admin.py:64 engine/vibes_auth/graphene/object_types.py:43 msgid "permissions" msgstr "权限" -#: vibes_auth/admin.py:76 +#: engine/vibes_auth/admin.py:77 msgid "important dates" msgstr "重要日期" -#: vibes_auth/admin.py:77 +#: engine/vibes_auth/admin.py:78 msgid "additional info" msgstr "其他信息" -#: vibes_auth/apps.py:8 +#: engine/vibes_auth/admin.py:145 +msgid "Close selected threads" +msgstr "关闭选定的线程" + +#: engine/vibes_auth/admin.py:149 +msgid "Open selected threads" +msgstr "打开选定的线程" + +#: engine/vibes_auth/apps.py:8 msgid "authentication" msgstr "认证" -#: vibes_auth/docs/drf/views.py:15 +#: engine/vibes_auth/docs/drf/views.py:15 msgid "obtain a token pair" msgstr "获取令牌对" -#: vibes_auth/docs/drf/views.py:16 +#: engine/vibes_auth/docs/drf/views.py:16 msgid "obtain a token pair (refresh and access) for authentication." msgstr "获取用于身份验证的令牌对(刷新和访问)。" -#: vibes_auth/docs/drf/views.py:35 +#: engine/vibes_auth/docs/drf/views.py:35 msgid "refresh a token pair" msgstr "刷新令牌对" -#: vibes_auth/docs/drf/views.py:36 +#: engine/vibes_auth/docs/drf/views.py:36 msgid "refresh a token pair (refresh and access)." msgstr "刷新令牌对(刷新和访问)。" -#: vibes_auth/docs/drf/views.py:55 +#: engine/vibes_auth/docs/drf/views.py:55 msgid "verify a token" msgstr "验证令牌" -#: vibes_auth/docs/drf/views.py:56 +#: engine/vibes_auth/docs/drf/views.py:56 msgid "Verify a token (refresh or access)." msgstr "验证令牌(刷新或访问)。" -#: vibes_auth/docs/drf/views.py:62 vibes_auth/views.py:78 +#: engine/vibes_auth/docs/drf/views.py:62 engine/vibes_auth/views.py:78 msgid "the token is valid" msgstr "令牌有效" -#: vibes_auth/docs/drf/viewsets.py:16 +#: engine/vibes_auth/docs/drf/viewsets.py:16 msgid "create a new user" msgstr "创建新用户" -#: vibes_auth/docs/drf/viewsets.py:21 +#: engine/vibes_auth/docs/drf/viewsets.py:21 msgid "retrieve a user's details" msgstr "读取用户详细信息" -#: vibes_auth/docs/drf/viewsets.py:25 +#: engine/vibes_auth/docs/drf/viewsets.py:25 msgid "update a user's details" msgstr "更新用户信息" -#: vibes_auth/docs/drf/viewsets.py:30 +#: engine/vibes_auth/docs/drf/viewsets.py:30 msgid "delete a user" msgstr "删除用户" -#: vibes_auth/docs/drf/viewsets.py:34 +#: engine/vibes_auth/docs/drf/viewsets.py:34 msgid "reset a user's password by sending a reset password email" msgstr "通过发送重置密码电子邮件重置用户密码" -#: vibes_auth/docs/drf/viewsets.py:39 +#: engine/vibes_auth/docs/drf/viewsets.py:39 msgid "handle avatar upload for a user" msgstr "处理用户的头像上传" -#: vibes_auth/docs/drf/viewsets.py:54 +#: engine/vibes_auth/docs/drf/viewsets.py:54 msgid "confirm a user's password reset" msgstr "确认用户密码重置" -#: vibes_auth/docs/drf/viewsets.py:58 vibes_auth/graphene/mutations.py:320 -#: vibes_auth/serializers.py:105 vibes_auth/serializers.py:109 -#: vibes_auth/viewsets.py:84 +#: engine/vibes_auth/docs/drf/viewsets.py:58 +#: engine/vibes_auth/graphene/mutations.py:320 +#: engine/vibes_auth/serializers.py:105 engine/vibes_auth/serializers.py:109 +#: engine/vibes_auth/viewsets.py:84 msgid "passwords do not match" msgstr "密码不匹配" -#: vibes_auth/docs/drf/viewsets.py:63 +#: engine/vibes_auth/docs/drf/viewsets.py:63 msgid "activate a user's account" msgstr "激活用户帐户" -#: vibes_auth/docs/drf/viewsets.py:67 +#: engine/vibes_auth/docs/drf/viewsets.py:67 msgid "activation link is invalid or account already activated" msgstr "激活链接无效或账户已激活" -#: vibes_auth/docs/drf/viewsets.py:72 +#: engine/vibes_auth/docs/drf/viewsets.py:72 msgid "merge client-stored recently viewed products" msgstr "合并客户存储的最近查看的产品" -#: vibes_auth/graphene/mutations.py:41 +#: engine/vibes_auth/graphene/mutations.py:41 msgid "the user's b64-encoded uuid who referred the new user to us." msgstr "将新用户推荐给我们的用户的 b64-encoded uuid。" -#: vibes_auth/graphene/mutations.py:61 +#: engine/vibes_auth/graphene/mutations.py:61 msgid "password too weak" msgstr "密码太弱" -#: vibes_auth/graphene/mutations.py:110 +#: engine/vibes_auth/graphene/mutations.py:110 #, python-brace-format msgid "{name} does not exist: {uuid}" msgstr "{name} 不存在:{uuid}!" -#: vibes_auth/graphene/mutations.py:120 +#: engine/vibes_auth/graphene/mutations.py:120 msgid "malformed email" msgstr "畸形电子邮件" -#: vibes_auth/graphene/mutations.py:127 vibes_auth/serializers.py:115 +#: engine/vibes_auth/graphene/mutations.py:127 +#: engine/vibes_auth/serializers.py:115 #, python-brace-format msgid "malformed phone number: {phone_number}" msgstr "畸形电话号码:{phone_number}!" -#: vibes_auth/graphene/mutations.py:149 +#: engine/vibes_auth/graphene/mutations.py:149 #, python-brace-format msgid "Invalid attribute format: {attribute_pair}" msgstr "属性格式无效:{attribute_pair}!" -#: vibes_auth/graphene/mutations.py:273 vibes_auth/viewsets.py:127 -#: vibes_auth/viewsets.py:146 +#: engine/vibes_auth/graphene/mutations.py:273 +#: engine/vibes_auth/viewsets.py:127 engine/vibes_auth/viewsets.py:146 msgid "activation link is invalid!" msgstr "激活链接无效!" -#: vibes_auth/graphene/mutations.py:276 +#: engine/vibes_auth/graphene/mutations.py:276 msgid "account already activated..." msgstr "帐户已激活..." -#: vibes_auth/graphene/mutations.py:283 vibes_auth/graphene/mutations.py:339 +#: engine/vibes_auth/graphene/mutations.py:283 +#: engine/vibes_auth/graphene/mutations.py:339 msgid "something went wrong: {e!s}" msgstr "出了问题:{e!s}" -#: vibes_auth/graphene/mutations.py:327 vibes_auth/viewsets.py:95 +#: engine/vibes_auth/graphene/mutations.py:327 engine/vibes_auth/viewsets.py:95 msgid "token is invalid!" msgstr "令牌无效!" -#: vibes_auth/graphene/object_types.py:40 +#: engine/vibes_auth/graphene/object_types.py:40 msgid "" "the products this user has viewed most recently (max 48), in reverse‐" "chronological order" msgstr "该用户最近查看过的产品(最多 48 个),按倒序排列。" -#: vibes_auth/graphene/object_types.py:42 vibes_auth/models.py:132 +#: engine/vibes_auth/graphene/object_types.py:42 +#: engine/vibes_auth/models.py:123 msgid "groups" msgstr "组别" -#: vibes_auth/graphene/object_types.py:45 +#: engine/vibes_auth/graphene/object_types.py:45 msgid "wishlist" msgstr "愿望清单" -#: vibes_auth/graphene/object_types.py:47 vibes_auth/models.py:58 +#: engine/vibes_auth/graphene/object_types.py:47 engine/vibes_auth/models.py:59 msgid "avatar" msgstr "阿凡达" -#: vibes_auth/graphene/object_types.py:48 +#: engine/vibes_auth/graphene/object_types.py:48 msgid "attributes may be used to store custom data" msgstr "属性可用于存储自定义数据" -#: vibes_auth/graphene/object_types.py:49 +#: engine/vibes_auth/graphene/object_types.py:50 #, python-brace-format -msgid "language is one of the {LANGUAGES} with default {LANGUAGE_CODE}" -msgstr "语言是{LANGUAGES}之一,默认为{LANGUAGE_CODE}。" +msgid "" +"language is one of the {settings.LANGUAGES} with default {settings." +"LANGUAGE_CODE}" +msgstr "语言是{settings.LANGUAGES}之一,默认为{settings.LANGUAGE_CODE}。" -#: vibes_auth/graphene/object_types.py:50 +#: engine/vibes_auth/graphene/object_types.py:52 msgid "address set" msgstr "地址" -#: vibes_auth/messaging/admin.py:36 -msgid "Close selected threads" -msgstr "关闭选定的线程" - -#: vibes_auth/messaging/admin.py:40 -msgid "Open selected threads" -msgstr "打开选定的线程" - -#: vibes_auth/messaging/models.py:24 +#: engine/vibes_auth/messaging/models.py:24 msgid "Open" msgstr "开放" -#: vibes_auth/messaging/models.py:25 +#: engine/vibes_auth/messaging/models.py:25 msgid "Closed" msgstr "关闭" -#: vibes_auth/messaging/models.py:29 +#: engine/vibes_auth/messaging/models.py:29 msgid "User" msgstr "用户" -#: vibes_auth/messaging/models.py:30 +#: engine/vibes_auth/messaging/models.py:30 msgid "Staff" msgstr "工作人员" -#: vibes_auth/messaging/models.py:31 +#: engine/vibes_auth/messaging/models.py:31 msgid "System" msgstr "系统" -#: vibes_auth/messaging/models.py:36 +#: engine/vibes_auth/messaging/models.py:36 msgid "For anonymous threads" msgstr "匿名主题" -#: vibes_auth/messaging/models.py:50 +#: engine/vibes_auth/messaging/models.py:50 msgid "Chat thread" msgstr "聊天主题" -#: vibes_auth/messaging/models.py:51 +#: engine/vibes_auth/messaging/models.py:51 msgid "Chat threads" msgstr "聊天主题" -#: vibes_auth/messaging/models.py:56 +#: engine/vibes_auth/messaging/models.py:56 msgid "Provide user or email for anonymous thread." msgstr "为匿名主题提供用户或电子邮件。" -#: vibes_auth/messaging/models.py:58 vibes_auth/messaging/services.py:133 +#: engine/vibes_auth/messaging/models.py:58 +#: engine/vibes_auth/messaging/services.py:132 msgid "Assignee must be a staff user." msgstr "受让人必须是工作人员用户。" -#: vibes_auth/messaging/models.py:74 +#: engine/vibes_auth/messaging/models.py:74 msgid "Chat message" msgstr "聊天信息" -#: vibes_auth/messaging/models.py:75 +#: engine/vibes_auth/messaging/models.py:75 msgid "Chat messages" msgstr "聊天信息" -#: vibes_auth/messaging/services.py:48 +#: engine/vibes_auth/messaging/services.py:47 msgid "Valid email is required for anonymous chats." msgstr "匿名聊天需要有效的电子邮件。" -#: vibes_auth/messaging/services.py:56 +#: engine/vibes_auth/messaging/services.py:55 msgid "Message must be 1..1028 characters." msgstr "信息必须为 1...1028 个字符。" -#: vibes_auth/messaging/services.py:90 +#: engine/vibes_auth/messaging/services.py:89 msgid "We're searching for the operator to answer you already, hold by!" msgstr "我们正在寻找接线员,请稍候!" -#: vibes_auth/models.py:30 +#: engine/vibes_auth/models.py:31 msgid "" "Represents a User entity with customized fields and methods for extended " "functionality. This class extends the AbstractUser model and integrates " @@ -278,164 +285,164 @@ msgstr "" "它还为管理最近查看的项目和基于令牌的激活提供了实用工具,以便验证账户。用户模" "型旨在处理增强用户管理的特定用例。" -#: vibes_auth/models.py:41 +#: engine/vibes_auth/models.py:42 msgid "email" msgstr "电子邮件" -#: vibes_auth/models.py:41 +#: engine/vibes_auth/models.py:42 msgid "user email address" msgstr "用户电子邮件地址" -#: vibes_auth/models.py:43 +#: engine/vibes_auth/models.py:44 msgid "phone_number" msgstr "电话号码" -#: vibes_auth/models.py:48 +#: engine/vibes_auth/models.py:49 msgid "user phone number" msgstr "用户电话号码" -#: vibes_auth/models.py:54 +#: engine/vibes_auth/models.py:55 msgid "first_name" msgstr "姓名" -#: vibes_auth/models.py:55 +#: engine/vibes_auth/models.py:56 msgid "last_name" msgstr "姓氏" -#: vibes_auth/models.py:61 +#: engine/vibes_auth/models.py:62 msgid "user profile image" msgstr "用户配置文件图像" -#: vibes_auth/models.py:66 +#: engine/vibes_auth/models.py:67 msgid "is verified" msgstr "已核实" -#: vibes_auth/models.py:67 +#: engine/vibes_auth/models.py:68 msgid "user verification status" msgstr "用户验证状态" -#: vibes_auth/models.py:70 +#: engine/vibes_auth/models.py:71 msgid "is_active" msgstr "处于活动状态" -#: vibes_auth/models.py:72 +#: engine/vibes_auth/models.py:73 msgid "unselect this instead of deleting accounts" msgstr "取消选择此选项,而不是删除账户" -#: vibes_auth/models.py:75 +#: engine/vibes_auth/models.py:76 msgid "is_subscribed" msgstr "已订阅" -#: vibes_auth/models.py:75 +#: engine/vibes_auth/models.py:76 msgid "user's newsletter subscription status" msgstr "用户的通讯订阅状态" -#: vibes_auth/models.py:78 +#: engine/vibes_auth/models.py:79 msgid "activation token" msgstr "激活令牌" -#: vibes_auth/models.py:80 +#: engine/vibes_auth/models.py:83 msgid "attributes" msgstr "属性" -#: vibes_auth/models.py:110 +#: engine/vibes_auth/models.py:115 msgid "user" msgstr "用户" -#: vibes_auth/models.py:111 +#: engine/vibes_auth/models.py:116 msgid "users" msgstr "用户" -#: vibes_auth/models.py:131 +#: engine/vibes_auth/models.py:122 msgid "group" msgstr "组别" -#: vibes_auth/models.py:148 +#: engine/vibes_auth/models.py:129 msgid "outstanding token" msgstr "出色的代币" -#: vibes_auth/models.py:149 +#: engine/vibes_auth/models.py:130 msgid "outstanding tokens" msgstr "未兑代币" -#: vibes_auth/models.py:167 +#: engine/vibes_auth/models.py:136 msgid "blacklisted token" msgstr "黑名单令牌" -#: vibes_auth/models.py:168 +#: engine/vibes_auth/models.py:137 msgid "blacklisted tokens" msgstr "黑名单令牌" -#: vibes_auth/serializers.py:99 +#: engine/vibes_auth/serializers.py:99 msgid "attributes must be a dictionary" msgstr "属性 \"必须是一个字典" -#: vibes_auth/serializers.py:101 +#: engine/vibes_auth/serializers.py:101 msgid "business identificator is required when registering as a business" msgstr "注册为企业时需要使用企业标识符" -#: vibes_auth/serializers.py:121 +#: engine/vibes_auth/serializers.py:121 #, python-brace-format msgid "malformed email: {email}" msgstr "畸形电子邮件:{email}" -#: vibes_auth/serializers.py:142 vibes_auth/serializers.py:164 -#: vibes_auth/serializers.py:186 vibes_auth/serializers.py:198 +#: engine/vibes_auth/serializers.py:142 engine/vibes_auth/serializers.py:164 +#: engine/vibes_auth/serializers.py:184 engine/vibes_auth/serializers.py:194 msgid "no active account" msgstr "未找到活动账户" -#: vibes_auth/serializers.py:174 +#: engine/vibes_auth/serializers.py:174 msgid "must set token_class attribute on class." msgstr "必须在类上设置 token_class 属性!" -#: vibes_auth/serializers.py:246 +#: engine/vibes_auth/serializers.py:240 msgid "token_blacklisted" msgstr "令牌被列入黑名单" -#: vibes_auth/serializers.py:251 +#: engine/vibes_auth/serializers.py:245 msgid "invalid token" msgstr "无效令牌" -#: vibes_auth/serializers.py:257 +#: engine/vibes_auth/serializers.py:251 msgid "no user uuid claim present in token" msgstr "令牌中没有用户 uuid 声明" -#: vibes_auth/serializers.py:259 +#: engine/vibes_auth/serializers.py:253 msgid "user does not exist" msgstr "用户不存在" -#: vibes_auth/templates/user_reset_password_email.html:7 +#: engine/vibes_auth/templates/user_reset_password_email.html:7 msgid "reset your password" msgstr "重置密码" -#: vibes_auth/templates/user_reset_password_email.html:85 -#: vibes_auth/templates/user_verification_email.html:85 +#: engine/vibes_auth/templates/user_reset_password_email.html:85 +#: engine/vibes_auth/templates/user_verification_email.html:85 msgid "logo" msgstr "标志" -#: vibes_auth/templates/user_reset_password_email.html:90 +#: engine/vibes_auth/templates/user_reset_password_email.html:90 msgid "password reset confirmation" msgstr "密码重置确认" -#: vibes_auth/templates/user_reset_password_email.html:91 -#: vibes_auth/templates/user_verification_email.html:91 +#: engine/vibes_auth/templates/user_reset_password_email.html:91 +#: engine/vibes_auth/templates/user_verification_email.html:91 #, python-format msgid "hello %(user_first_name)s," msgstr "你好%(user_first_name)s," -#: vibes_auth/templates/user_reset_password_email.html:92 +#: 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" " by clicking the button below:" msgstr "我们收到了重置密码的请求。请点击下面的按钮重置密码:" -#: vibes_auth/templates/user_reset_password_email.html:95 +#: engine/vibes_auth/templates/user_reset_password_email.html:95 msgid "reset password" msgstr "重置密码" -#: vibes_auth/templates/user_reset_password_email.html:97 -#: vibes_auth/templates/user_verification_email.html:99 +#: engine/vibes_auth/templates/user_reset_password_email.html:97 +#: engine/vibes_auth/templates/user_verification_email.html:99 msgid "" "if the button above does not work, please copy and paste the following URL\n" " into your web browser:" @@ -443,7 +450,7 @@ msgstr "" "如果上面的按钮不起作用,请将以下 URL 复制并粘贴到浏览器中\n" " 复制并粘贴到您的浏览器中:" -#: vibes_auth/templates/user_reset_password_email.html:100 +#: engine/vibes_auth/templates/user_reset_password_email.html:100 msgid "" "if you did not send this request, please ignore this\n" " email." @@ -451,29 +458,29 @@ msgstr "" "如果您没有发送此请求,请忽略此邮件\n" " 电子邮件。" -#: vibes_auth/templates/user_reset_password_email.html:102 +#: engine/vibes_auth/templates/user_reset_password_email.html:102 #, python-format msgid "best regards,
The %(project_name)s team" msgstr "致以最诚挚的问候,
%(project_name)s 团队" -#: vibes_auth/templates/user_reset_password_email.html:108 -#: vibes_auth/templates/user_verification_email.html:108 +#: engine/vibes_auth/templates/user_reset_password_email.html:108 +#: engine/vibes_auth/templates/user_verification_email.html:108 msgid "all rights reserved" msgstr "保留所有权利" -#: vibes_auth/templates/user_verification_email.html:7 -#: vibes_auth/templates/user_verification_email.html:90 +#: engine/vibes_auth/templates/user_verification_email.html:7 +#: engine/vibes_auth/templates/user_verification_email.html:90 msgid "activate your account" msgstr "激活账户" -#: vibes_auth/templates/user_verification_email.html:92 +#: engine/vibes_auth/templates/user_verification_email.html:92 #, python-format msgid "" "thank you for signing up for %(project_name)s. please activate your account\n" " by clicking the button below:" msgstr "感谢您注册%(project_name)s_。请点击下面的按钮激活您的帐户:" -#: vibes_auth/templates/user_verification_email.html:96 +#: engine/vibes_auth/templates/user_verification_email.html:96 msgid "" "activate\n" " account" @@ -481,29 +488,29 @@ msgstr "" "激活\n" " 账户" -#: vibes_auth/templates/user_verification_email.html:102 +#: engine/vibes_auth/templates/user_verification_email.html:102 #, python-format msgid "best regards,
the %(project_name)s team" msgstr "致以最崇高的敬意,
%(project_name)s_团队" -#: vibes_auth/utils/emailing.py:23 +#: engine/vibes_auth/utils/emailing.py:23 #, python-brace-format msgid "{config.PROJECT_NAME} | Activate Account" msgstr "{config.PROJECT_NAME}| 激活帐户" -#: vibes_auth/utils/emailing.py:62 +#: engine/vibes_auth/utils/emailing.py:62 #, python-brace-format msgid "{config.PROJECT_NAME} | Reset Password" msgstr "{config.PROJECT_NAME}| 重置密码" -#: vibes_auth/validators.py:13 +#: engine/vibes_auth/validators.py:13 msgid "" "invalid phone number format. the number must be entered in the format: " "\"+999999999\". up to 15 digits allowed." msgstr "" "电话号码格式无效。电话号码必须按格式输入:\"+999999999\".最多允许 15 位数字。" -#: vibes_auth/views.py:30 +#: engine/vibes_auth/views.py:30 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 " @@ -515,7 +522,7 @@ msgstr "" "份验证的流程,客户端可使用提供的凭据获取一对 JWT 令牌(访问和刷新)。它建立在" "基本令牌视图之上,并确保适当的速率限制,以防止暴力攻击。" -#: vibes_auth/views.py:48 +#: engine/vibes_auth/views.py:48 msgid "" "Handles refreshing of tokens for authentication purposes. This class is used " "to provide functionality for token refresh operations as part of an " @@ -527,17 +534,17 @@ msgstr "" "供功能。它能确保客户端在规定的速率限制内请求刷新令牌。视图依赖于相关的序列化" "器来验证令牌刷新输入并产生适当的输出。" -#: vibes_auth/views.py:67 +#: engine/vibes_auth/views.py:67 msgid "" "Represents a view for verifying JSON Web Tokens (JWT) using specific " "serialization and validation logic. " msgstr "代表使用特定序列化和验证逻辑验证 JSON Web 标记 (JWT) 的视图。" -#: vibes_auth/views.py:80 +#: engine/vibes_auth/views.py:80 msgid "the token is invalid" msgstr "令牌无效" -#: vibes_auth/viewsets.py:45 +#: engine/vibes_auth/viewsets.py:45 msgid "" "User view set implementation.\n" "Provides a set of actions that manage user-related data such as creation, " @@ -550,10 +557,10 @@ msgstr "" "操作,包括密码重置、上传头像、激活账户和合并最近查看的项目。该类对 mixins 和 " "GenericViewSet 进行了扩展,以实现强大的 API 处理功能。" -#: vibes_auth/viewsets.py:99 +#: engine/vibes_auth/viewsets.py:99 msgid "password reset successfully" msgstr "密码已重置成功!" -#: vibes_auth/viewsets.py:132 +#: engine/vibes_auth/viewsets.py:132 msgid "account already activated!" msgstr "您已经激活了账户..." diff --git a/vibes_auth/managers.py b/engine/vibes_auth/managers.py similarity index 95% rename from vibes_auth/managers.py rename to engine/vibes_auth/managers.py index c03ca824..279157c4 100644 --- a/vibes_auth/managers.py +++ b/engine/vibes_auth/managers.py @@ -1,13 +1,12 @@ import logging -import traceback from django.contrib import auth from django.contrib.auth.base_user import BaseUserManager from django.contrib.auth.hashers import make_password -from core.models import Address, Order +from engine.core.models import Address, Order -logger = logging.getLogger("django") +logger = logging.getLogger(__name__) class UserManager(BaseUserManager): @@ -48,8 +47,7 @@ class UserManager(BaseUserManager): user.save() return user except Exception as e: - logger.error(e) - logger.error(traceback.format_exc()) + logger.error(e, exc_info=True) # noinspection PyUnusedLocal def _create_user(self, email, password, **extra_fields): diff --git a/vibes_auth/migrations/__init__.py b/engine/vibes_auth/messaging/__init__.py similarity index 100% rename from vibes_auth/migrations/__init__.py rename to engine/vibes_auth/messaging/__init__.py diff --git a/vibes_auth/messaging/auth.py b/engine/vibes_auth/messaging/auth.py similarity index 91% rename from vibes_auth/messaging/auth.py rename to engine/vibes_auth/messaging/auth.py index e4f5d256..6019134e 100644 --- a/vibes_auth/messaging/auth.py +++ b/engine/vibes_auth/messaging/auth.py @@ -1,7 +1,7 @@ from __future__ import annotations from contextlib import suppress -from typing import Iterable, Optional +from typing import Iterable from channels.middleware import BaseMiddleware from django.contrib.auth.models import AnonymousUser @@ -14,7 +14,7 @@ class _LazyUser(LazyObject): self._wrapped = AnonymousUser() -def _extract_jwt_from_subprotocols(subprotocols: Optional[Iterable[str]]) -> Optional[str]: +def _extract_jwt_from_subprotocols(subprotocols: Iterable[str] | None) -> str | None: if not subprotocols: return None items = list(subprotocols) diff --git a/vibes_auth/messaging/consumers.py b/engine/vibes_auth/messaging/consumers.py similarity index 100% rename from vibes_auth/messaging/consumers.py rename to engine/vibes_auth/messaging/consumers.py diff --git a/vibes_auth/messaging/models.py b/engine/vibes_auth/messaging/models.py similarity index 96% rename from vibes_auth/messaging/models.py rename to engine/vibes_auth/messaging/models.py index 47ca92b6..12973ea3 100644 --- a/vibes_auth/messaging/models.py +++ b/engine/vibes_auth/messaging/models.py @@ -16,8 +16,8 @@ from django.db.models import ( from django.utils import timezone from django.utils.translation import gettext_lazy as _ -from core.abstract import NiceModel -from vibes_auth.models import User +from engine.core.abstract import NiceModel +from engine.vibes_auth.models import User class ThreadStatus(TextChoices): diff --git a/vibes_auth/messaging/routing.py b/engine/vibes_auth/messaging/routing.py similarity index 72% rename from vibes_auth/messaging/routing.py rename to engine/vibes_auth/messaging/routing.py index 86f0117e..38175694 100644 --- a/vibes_auth/messaging/routing.py +++ b/engine/vibes_auth/messaging/routing.py @@ -1,6 +1,6 @@ from django.urls import re_path -from vibes_auth.messaging.consumers import StaffInboxConsumer, ThreadConsumer, UserMessageConsumer +from engine.vibes_auth.messaging.consumers import StaffInboxConsumer, ThreadConsumer, UserMessageConsumer websocket_urlpatterns = [ re_path(r"^ws/chat/message$", UserMessageConsumer.as_asgi()), diff --git a/vibes_auth/messaging/services.py b/engine/vibes_auth/messaging/services.py similarity index 92% rename from vibes_auth/messaging/services.py rename to engine/vibes_auth/messaging/services.py index 7184fb8b..a78c4b54 100644 --- a/vibes_auth/messaging/services.py +++ b/engine/vibes_auth/messaging/services.py @@ -1,7 +1,6 @@ from __future__ import annotations from dataclasses import dataclass -from typing import Optional from asgiref.sync import async_to_sync from channels.layers import get_channel_layer @@ -11,8 +10,8 @@ from django.db.models import Count from django.utils import timezone from django.utils.translation import gettext_lazy as _ -from vibes_auth.messaging.models import ChatMessage, ChatThread, SenderType, ThreadStatus -from vibes_auth.models import User +from engine.vibes_auth.messaging.models import ChatMessage, ChatThread, SenderType, ThreadStatus +from engine.vibes_auth.models import User THREAD_GROUP_PREFIX = "thread:" STAFF_INBOX_GROUP = "staff:inbox" @@ -24,7 +23,7 @@ class MessageDTO: thread: str text: str sender_type: str - sender_user: Optional[str] + sender_user: str | None sent_at: str @@ -51,7 +50,7 @@ def create_anon_thread(email: str) -> ChatThread: return thread -def send_message(thread: ChatThread, *, sender_user: Optional[User], sender_type: SenderType, text: str) -> ChatMessage: +def send_message(thread: ChatThread, *, sender_user: User | None, sender_type: SenderType, text: str) -> ChatMessage: if not text or len(text) > 1028: raise ValidationError({"text": _("Message must be 1..1028 characters.")}) if sender_user and not sender_user.is_staff: @@ -76,7 +75,7 @@ def send_message(thread: ChatThread, *, sender_user: Optional[User], sender_type "thread": str(thread.uuid), "text": msg.text, "sender_type": msg.sender_type, - "sender_user": str(msg.sender_user.uuid) if msg.sender_user_id else None, + "sender_user": str(msg.sender_user.uuid) if msg.sender_user else None, "sent_at": msg.sent_at.isoformat(), }, }, @@ -88,7 +87,7 @@ def send_message(thread: ChatThread, *, sender_user: Optional[User], sender_type def auto_reply(thread: ChatThread) -> None: text = _("We're searching for the operator to answer you already, hold by!") - msg = ChatMessage.objects.create( + msg = ChatMessage.objects.create( # type: ignore [misc] thread=thread, sender_type=SenderType.SYSTEM, sender_user=None, @@ -151,7 +150,7 @@ def close_thread(thread: ChatThread, actor: User | None) -> ChatThread: return thread -def find_least_load_staff() -> Optional[User]: +def find_least_load_staff() -> User | None: qs = ( User.objects.filter(is_staff=True, is_active=True) .annotate( diff --git a/vibes_auth/migrations/0001_initial.py b/engine/vibes_auth/migrations/0001_initial.py similarity index 94% rename from vibes_auth/migrations/0001_initial.py rename to engine/vibes_auth/migrations/0001_initial.py index d0314d29..1fe09bd9 100644 --- a/vibes_auth/migrations/0001_initial.py +++ b/engine/vibes_auth/migrations/0001_initial.py @@ -1,5 +1,3 @@ -# Generated by Django 5.1.5 on 2025-03-10 11:56 - import uuid import django.contrib.auth.models @@ -7,16 +5,17 @@ import django.utils.timezone import django_extensions.db.fields from django.db import migrations, models -import vibes_auth.managers -import vibes_auth.models -import vibes_auth.validators +import engine.vibes_auth.managers +import engine.vibes_auth.models +import engine.vibes_auth.validators class Migration(migrations.Migration): initial = True + # noinspection PyUnresolvedReferences dependencies = [ - ("auth", "0012_alter_user_first_name_max_length"), + ("auth", "__latest__"), ] operations = [ @@ -96,7 +95,7 @@ class Migration(migrations.Migration): max_length=20, null=True, unique=True, - validators=[vibes_auth.validators.validate_phone_number], + validators=[engine.vibes_auth.validators.validate_phone_number], verbose_name="phone_number", ), ), @@ -108,7 +107,7 @@ class Migration(migrations.Migration): blank=True, help_text="user profile image", null=True, - upload_to=vibes_auth.models.User.get_uuid_as_path, + upload_to=engine.vibes_auth.models.User.get_uuid_as_path, verbose_name="avatar", ), ), @@ -166,7 +165,7 @@ class Migration(migrations.Migration): help_text="The groups this user belongs to. A user will get all permissions granted to each of their groups.", related_name="user_set", related_query_name="user", - to="auth.group", + to="vibes_auth.group", verbose_name="groups", ), ), @@ -188,7 +187,7 @@ class Migration(migrations.Migration): "swappable": "AUTH_USER_MODEL", }, managers=[ - ("objects", vibes_auth.managers.UserManager()), + ("objects", engine.vibes_auth.managers.UserManager()), ], ), ] diff --git a/vibes_auth/migrations/0002_blacklistedtoken_outstandingtoken.py b/engine/vibes_auth/migrations/0002_blacklistedtoken_outstandingtoken.py similarity index 89% rename from vibes_auth/migrations/0002_blacklistedtoken_outstandingtoken.py rename to engine/vibes_auth/migrations/0002_blacklistedtoken_outstandingtoken.py index e7b4a20a..5aea9aa3 100644 --- a/vibes_auth/migrations/0002_blacklistedtoken_outstandingtoken.py +++ b/engine/vibes_auth/migrations/0002_blacklistedtoken_outstandingtoken.py @@ -1,11 +1,10 @@ -# Generated by Django 5.1.5 on 2025-03-10 11:57 - from django.db import migrations class Migration(migrations.Migration): + # noinspection PyUnresolvedReferences dependencies = [ - ("token_blacklist", "0012_alter_outstandingtoken_user"), + ("token_blacklist", "__latest__"), ("vibes_auth", "0001_initial"), ] diff --git a/vibes_auth/migrations/0003_alter_user_language.py b/engine/vibes_auth/migrations/0003_alter_user_language.py similarity index 100% rename from vibes_auth/migrations/0003_alter_user_language.py rename to engine/vibes_auth/migrations/0003_alter_user_language.py diff --git a/vibes_auth/migrations/0004_alter_user_language.py b/engine/vibes_auth/migrations/0004_alter_user_language.py similarity index 97% rename from vibes_auth/migrations/0004_alter_user_language.py rename to engine/vibes_auth/migrations/0004_alter_user_language.py index 597b7729..f1c634e1 100644 --- a/vibes_auth/migrations/0004_alter_user_language.py +++ b/engine/vibes_auth/migrations/0004_alter_user_language.py @@ -1,5 +1,3 @@ -# Generated by Django 5.2 on 2025-09-19 11:59 - from django.db import migrations, models diff --git a/engine/vibes_auth/migrations/0005_alter_user_groups.py b/engine/vibes_auth/migrations/0005_alter_user_groups.py new file mode 100644 index 00000000..008dd95f --- /dev/null +++ b/engine/vibes_auth/migrations/0005_alter_user_groups.py @@ -0,0 +1,22 @@ +from django.db import migrations, models + + +class Migration(migrations.Migration): + dependencies = [ + ("vibes_auth", "0004_alter_user_language"), + ] + + operations = [ + migrations.AlterField( + model_name="user", + name="groups", + field=models.ManyToManyField( + blank=True, + help_text="The groups this user belongs to. A user will get all permissions granted to each of their groups.", + related_name="user_set", + related_query_name="user", + to="auth.group", + verbose_name="groups", + ), + ), + ] diff --git a/vibes_auth/templates/__init__.py b/engine/vibes_auth/migrations/__init__.py similarity index 100% rename from vibes_auth/templates/__init__.py rename to engine/vibes_auth/migrations/__init__.py diff --git a/vibes_auth/models.py b/engine/vibes_auth/models.py similarity index 71% rename from vibes_auth/models.py rename to engine/vibes_auth/models.py index 2eb00d04..9622145a 100644 --- a/vibes_auth/models.py +++ b/engine/vibes_auth/models.py @@ -1,5 +1,6 @@ from uuid import uuid4 +from django.conf import settings from django.contrib.auth.models import AbstractUser from django.contrib.auth.models import Group as BaseGroup from django.core.cache import cache @@ -19,10 +20,10 @@ from rest_framework_simplejwt.token_blacklist.models import ( OutstandingToken as BaseOutstandingToken, ) -from core.abstract import NiceModel -from evibes.settings import LANGUAGE_CODE, LANGUAGES -from vibes_auth.managers import UserManager -from vibes_auth.validators import validate_phone_number +from engine.core.abstract import NiceModel +from engine.vibes_auth.managers import UserManager +from engine.vibes_auth.validators import validate_phone_number +from engine.payments.models import Balance class User(AbstractUser, NiceModel): # type: ignore [django-manager-missing] @@ -76,9 +77,13 @@ class User(AbstractUser, NiceModel): # type: ignore [django-manager-missing] ) activation_token = UUIDField(default=uuid4, verbose_name=_("activation token")) - language = CharField(choices=LANGUAGES, default=LANGUAGE_CODE, null=False, blank=False, max_length=7) + language = CharField( + choices=settings.LANGUAGES, default=settings.LANGUAGE_CODE, null=False, blank=False, max_length=7 + ) attributes = JSONField(verbose_name=_("attributes"), default=dict, blank=True, null=True) + payments_balance: "Balance" + USERNAME_FIELD = "email" REQUIRED_FIELDS = [] # noinspection PyClassVar @@ -112,20 +117,6 @@ class User(AbstractUser, NiceModel): # type: ignore [django-manager-missing] class Group(BaseGroup): - """ - Proxy model representing a Group entity. - - This class acts as a proxy for the `BaseGroup` model, providing additional - configuration for display and usage purposes. It does not introduce new fields - or behavior but alters representation and metadata for the Group model. - - Attributes: - Meta.proxy (bool): Indicates this is a proxy model. - Meta.verbose_name (str): Human-readable singular name for the Group model. - Meta.verbose_name_plural (str): Human-readable plural name for the Group - model. - """ - class Meta: proxy = True verbose_name = _("group") @@ -133,16 +124,6 @@ class Group(BaseGroup): class OutstandingToken(BaseOutstandingToken): - """ - Represents a proxy model for outstanding tokens. - - This class is a proxy for the `BaseOutstandingToken` model, used to manage - and customize behaviors or configurations related to outstanding tokens. - It does not add additional fields or logic to the base model but allows for - overloading or extending its default functionality as required. - - """ - class Meta: proxy = True verbose_name = _("outstanding token") @@ -150,18 +131,6 @@ class OutstandingToken(BaseOutstandingToken): class BlacklistedToken(BaseBlacklistedToken): - """ - Represents a blacklisted token model in the system. - - This class acts as a Django model proxy and serves the purpose of managing - blacklisted tokens. It inherits from a base class provided for this purpose, - allowing for the extension of functionality or customization of behavior - without altering the original base class's structure. It also defines the - Meta options for the model, affecting its database and administrative - representation. - - """ - class Meta: proxy = True verbose_name = _("blacklisted token") diff --git a/vibes_auth/serializers.py b/engine/vibes_auth/serializers.py similarity index 95% rename from vibes_auth/serializers.py rename to engine/vibes_auth/serializers.py index 3fca7fcf..1f1be642 100644 --- a/vibes_auth/serializers.py +++ b/engine/vibes_auth/serializers.py @@ -27,14 +27,14 @@ from rest_framework_simplejwt.settings import api_settings from rest_framework_simplejwt.token_blacklist.models import BlacklistedToken from rest_framework_simplejwt.tokens import RefreshToken, Token, UntypedToken -from core.models import Product -from core.serializers import ProductSimpleSerializer -from core.utils.security import is_safe_key -from evibes import settings -from vibes_auth.models import User -from vibes_auth.validators import validate_phone_number +from engine.core.models import Product +from engine.core.serializers import ProductSimpleSerializer +from engine.core.utils.security import is_safe_key +from django.conf import settings +from engine.vibes_auth.models import User +from engine.vibes_auth.validators import validate_phone_number -logger = logging.getLogger("django") +logger = logging.getLogger(__name__) class UserSerializer(ModelSerializer): @@ -180,8 +180,6 @@ class TokenObtainPairSerializer(TokenObtainSerializer): def validate(self, attrs: dict[str, Any]) -> dict[str, str]: data = super().validate(attrs) - logger.debug("Data validated") - if self.user is None: raise ValidationError(_("no active account")) @@ -191,16 +189,12 @@ class TokenObtainPairSerializer(TokenObtainSerializer): data["access"] = str(refresh.access_token) # type: ignore [attr-defined] data["user"] = UserSerializer(self.user).data - logger.debug("Data formed") - if api_settings.UPDATE_LAST_LOGIN: if not self.user: raise ValidationError(_("no active account")) # noinspection PyTypeChecker update_last_login(User, self.user) - logger.debug("Updated last login") - logger.debug("Returning data") return data diff --git a/vibes_auth/signals.py b/engine/vibes_auth/signals.py similarity index 85% rename from vibes_auth/signals.py rename to engine/vibes_auth/signals.py index 0a17c84a..3b001a06 100644 --- a/vibes_auth/signals.py +++ b/engine/vibes_auth/signals.py @@ -2,8 +2,8 @@ from django.db import transaction from django.db.models.signals import post_save, pre_save from django.dispatch import receiver -from vibes_auth.models import User -from vibes_auth.utils.emailing import send_verification_email_task +from engine.vibes_auth.models import User +from engine.vibes_auth.utils.emailing import send_verification_email_task @receiver(post_save, sender=User) diff --git a/vibes_auth/static/person.png b/engine/vibes_auth/static/person.png similarity index 100% rename from vibes_auth/static/person.png rename to engine/vibes_auth/static/person.png diff --git a/vibes_auth/tasks.py b/engine/vibes_auth/tasks.py similarity index 89% rename from vibes_auth/tasks.py rename to engine/vibes_auth/tasks.py index 79f7a870..6b48588f 100644 --- a/vibes_auth/tasks.py +++ b/engine/vibes_auth/tasks.py @@ -1,7 +1,7 @@ from celery import shared_task -from core.models import Order, Wishlist -from vibes_auth.models import User +from engine.core.models import Order, Wishlist +from engine.vibes_auth.models import User @shared_task(queue="default") diff --git a/vibes_auth/utils/__init__.py b/engine/vibes_auth/templates/__init__.py similarity index 100% rename from vibes_auth/utils/__init__.py rename to engine/vibes_auth/templates/__init__.py diff --git a/vibes_auth/templates/user_reset_password_email.html b/engine/vibes_auth/templates/user_reset_password_email.html similarity index 100% rename from vibes_auth/templates/user_reset_password_email.html rename to engine/vibes_auth/templates/user_reset_password_email.html diff --git a/vibes_auth/templates/user_verification_email.html b/engine/vibes_auth/templates/user_verification_email.html similarity index 100% rename from vibes_auth/templates/user_verification_email.html rename to engine/vibes_auth/templates/user_verification_email.html diff --git a/engine/vibes_auth/tests.py b/engine/vibes_auth/tests.py new file mode 100644 index 00000000..e69de29b diff --git a/vibes_auth/urls.py b/engine/vibes_auth/urls.py similarity index 77% rename from vibes_auth/urls.py rename to engine/vibes_auth/urls.py index d09ffedb..09c8c832 100644 --- a/vibes_auth/urls.py +++ b/engine/vibes_auth/urls.py @@ -1,8 +1,8 @@ from django.urls import include, path from rest_framework.routers import DefaultRouter -from vibes_auth.views import TokenObtainPairView, TokenRefreshView, TokenVerifyView -from vibes_auth.viewsets import UserViewSet +from engine.vibes_auth.views import TokenObtainPairView, TokenRefreshView, TokenVerifyView +from engine.vibes_auth.viewsets import UserViewSet app_name = "vibes_auth" diff --git a/engine/vibes_auth/utils/__init__.py b/engine/vibes_auth/utils/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/vibes_auth/utils/emailing.py b/engine/vibes_auth/utils/emailing.py similarity index 93% rename from vibes_auth/utils/emailing.py rename to engine/vibes_auth/utils/emailing.py index 611fa705..c5db665e 100644 --- a/vibes_auth/utils/emailing.py +++ b/engine/vibes_auth/utils/emailing.py @@ -8,8 +8,8 @@ from django.utils.http import urlsafe_base64_encode from django.utils.translation import activate from django.utils.translation import gettext_lazy as _ -from core.utils import get_dynamic_email_connection -from vibes_auth.models import User +from engine.core.utils import get_dynamic_email_connection +from engine.vibes_auth.models import User @shared_task(queue="default") @@ -22,7 +22,7 @@ def send_verification_email_task(user_pk: str) -> tuple[bool, str]: email_subject = _(f"{config.PROJECT_NAME} | Activate Account") email_body = render_to_string( - "user_verification_email.html", + "../templates/user_verification_email.html", { "user_first_name": user.first_name, "activation_link": f"https://{config.FRONTEND_DOMAIN}/{user.language}/activate-user?uid={urlsafe_base64_encode(force_bytes(user.uuid))}" @@ -61,7 +61,7 @@ def send_reset_password_email_task(user_pk: str) -> tuple[bool, str]: email_subject = _(f"{config.PROJECT_NAME} | Reset Password") email_body = render_to_string( - "user_reset_password_email.html", + "../templates/user_reset_password_email.html", { "user_first_name": user.first_name, "reset_link": f"https://{config.FRONTEND_DOMAIN}/{user.language}/reset-password?uid=" diff --git a/vibes_auth/validators.py b/engine/vibes_auth/validators.py similarity index 100% rename from vibes_auth/validators.py rename to engine/vibes_auth/validators.py diff --git a/vibes_auth/views.py b/engine/vibes_auth/views.py similarity index 88% rename from vibes_auth/views.py rename to engine/vibes_auth/views.py index 7cd1609c..a8e0e81e 100644 --- a/vibes_auth/views.py +++ b/engine/vibes_auth/views.py @@ -1,6 +1,7 @@ import logging from typing import Any +from django.conf import settings from django.utils.decorators import method_decorator from django.utils.translation import gettext_lazy as _ from django_ratelimit.decorators import ratelimit @@ -13,15 +14,14 @@ from rest_framework.response import Response from rest_framework_simplejwt.exceptions import TokenError from rest_framework_simplejwt.views import TokenViewBase -from evibes.settings import DEBUG -from vibes_auth.docs.drf.views import TOKEN_OBTAIN_SCHEMA, TOKEN_REFRESH_SCHEMA, TOKEN_VERIFY_SCHEMA -from vibes_auth.serializers import ( +from engine.vibes_auth.docs.drf.views import TOKEN_OBTAIN_SCHEMA, TOKEN_REFRESH_SCHEMA, TOKEN_VERIFY_SCHEMA +from engine.vibes_auth.serializers import ( TokenObtainPairSerializer, TokenRefreshSerializer, TokenVerifySerializer, ) -logger = logging.getLogger("django") +logger = logging.getLogger(__name__) @extend_schema_view(**TOKEN_OBTAIN_SCHEMA) @@ -37,7 +37,7 @@ class TokenObtainPairView(TokenViewBase): serializer_class = TokenObtainPairSerializer # type: ignore [assignment] _serializer_class = TokenObtainPairSerializer # type: ignore [assignment] - @method_decorator(ratelimit(key="ip", rate="10/h" if not DEBUG else "888/h")) + @method_decorator(ratelimit(key="ip", rate="10/h" if not settings.DEBUG else "888/h")) def post(self, request: Request, *args: list[Any], **kwargs: dict[Any, Any]) -> Response: return super().post(request, *args, **kwargs) @@ -56,7 +56,7 @@ class TokenRefreshView(TokenViewBase): serializer_class = TokenRefreshSerializer # type: ignore [assignment] _serializer_class = TokenRefreshSerializer # type: ignore [assignment] - @method_decorator(ratelimit(key="ip", rate="10/h" if not DEBUG else "888/h")) + @method_decorator(ratelimit(key="ip", rate="10/h" if not settings.DEBUG else "888/h")) def post(self, request: Request, *args: list[Any], **kwargs: dict[Any, Any]) -> Response: return super().post(request, *args, **kwargs) diff --git a/vibes_auth/viewsets.py b/engine/vibes_auth/viewsets.py similarity index 90% rename from vibes_auth/viewsets.py rename to engine/vibes_auth/viewsets.py index cd5ffb1c..498491d7 100644 --- a/vibes_auth/viewsets.py +++ b/engine/vibes_auth/viewsets.py @@ -4,6 +4,7 @@ from contextlib import suppress from secrets import compare_digest from typing import Type +from django.conf import settings from django.contrib.auth.password_validation import validate_password from django.contrib.auth.tokens import PasswordResetTokenGenerator from django.core.exceptions import ValidationError @@ -20,16 +21,15 @@ from rest_framework.response import Response from rest_framework.viewsets import GenericViewSet from rest_framework_simplejwt.tokens import RefreshToken -from evibes.settings import DEBUG -from vibes_auth.docs.drf.viewsets import USER_SCHEMA -from vibes_auth.models import User -from vibes_auth.serializers import ( +from engine.vibes_auth.docs.drf.viewsets import USER_SCHEMA +from engine.vibes_auth.models import User +from engine.vibes_auth.serializers import ( MergeRecentlyViewedSerializer, UserSerializer, ) -from vibes_auth.utils.emailing import send_reset_password_email_task +from engine.vibes_auth.utils.emailing import send_reset_password_email_task -logger = logging.getLogger("django") +logger = logging.getLogger(__name__) # noinspection PyUnusedLocal @@ -54,7 +54,7 @@ class UserViewSet( permission_classes = [AllowAny] @action(detail=False, methods=["post"]) - @method_decorator(ratelimit(key="ip", rate="2/h" if not DEBUG else "888/h")) + @method_decorator(ratelimit(key="ip", rate="2/h" if not settings.DEBUG else "888/h")) def reset_password(self, request: Request) -> Response: user = None with suppress(User.DoesNotExist): @@ -64,7 +64,7 @@ class UserViewSet( return Response(status=status.HTTP_200_OK) @action(detail=True, methods=["put"], permission_classes=[IsAuthenticated]) - @method_decorator(ratelimit(key="ip", rate="2/h" if not DEBUG else "888/h")) + @method_decorator(ratelimit(key="ip", rate="2/h" if not settings.DEBUG else "888/h")) def upload_avatar(self, request: Request, *args, **kwargs) -> Response: user = self.get_object() if request.user != user: @@ -76,7 +76,7 @@ class UserViewSet( return Response(status=status.HTTP_400_BAD_REQUEST) @action(detail=False, methods=["post"]) - @method_decorator(ratelimit(key="ip", rate="2/h" if not DEBUG else "888/h")) + @method_decorator(ratelimit(key="ip", rate="2/h" if not settings.DEBUG else "888/h")) def confirm_password_reset(self, request: Request, *args, **kwargs) -> Response: try: if not compare_digest(request.data.get("password"), request.data.get("confirm_password")): # type: ignore [arg-type] @@ -100,12 +100,12 @@ class UserViewSet( except (TypeError, ValueError, OverflowError, ValidationError, User.DoesNotExist) as e: data = {"error": str(e)} - if DEBUG: + if settings.DEBUG: data["detail"] = str(traceback.format_exc()) data["received"] = str(request.data) return Response(data, status=status.HTTP_400_BAD_REQUEST) - @method_decorator(ratelimit(key="ip", rate="3/h" if not DEBUG else "888/h")) + @method_decorator(ratelimit(key="ip", rate="3/h" if not settings.DEBUG else "888/h")) def create(self, request: Request, *args, **kwargs) -> Response: serializer = self.get_serializer(data=request.data) serializer.is_valid(raise_exception=True) @@ -115,7 +115,7 @@ class UserViewSet( return Response(serializer.data, status=status.HTTP_201_CREATED, headers=headers) @action(detail=False, methods=["post"]) - @method_decorator(ratelimit(key="ip", rate="2/h" if not DEBUG else "888/h")) + @method_decorator(ratelimit(key="ip", rate="2/h" if not settings.DEBUG else "888/h")) def activate(self, request: Request) -> Response: detail = "" activation_error: Type[Exception] | None = None @@ -140,7 +140,7 @@ class UserViewSet( activation_error = activation_error detail = str(traceback.format_exc()) if user is None: - if DEBUG: + if settings.DEBUG: raise Exception from activation_error # type: ignore [misc] return Response( {"error": _("activation link is invalid!"), "detail": detail}, diff --git a/evibes/__init__.py b/evibes/__init__.py index 03d925a0..5c74dbea 100644 --- a/evibes/__init__.py +++ b/evibes/__init__.py @@ -1,11 +1,8 @@ from .celery import app as celery __all__ = ( - "api_urls", "asgi", - "b2b_urls", "celery", - "hosts", "middleware", "pagination", "settings", diff --git a/evibes/api_urls.py b/evibes/api_urls.py deleted file mode 100644 index b7ee3cd1..00000000 --- a/evibes/api_urls.py +++ /dev/null @@ -1,53 +0,0 @@ -from django.conf import settings -from django.conf.urls.i18n import i18n_patterns -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 -from drf_spectacular.views import SpectacularAPIView - -from core.graphene.schema import schema -from core.views import ( - CustomGraphQLView, - CustomRedocView, - CustomSwaggerView, - favicon_view, - index, - version, -) -from evibes.settings import SPECTACULAR_PLATFORM_SETTINGS - -urlpatterns = [ - path(r"health/", include("health_check.urls", namespace="health_check")), - path("prometheus/", include("django_prometheus.urls")), - path(r"graphql/", csrf_exempt(CustomGraphQLView.as_view(graphiql=True, schema=schema)), name="graphql-platform"), - path( - r"docs/", - SpectacularAPIView.as_view(urlconf="evibes.api_urls", custom_settings=SPECTACULAR_PLATFORM_SETTINGS), - name="schema-platform", - ), - path( - r"docs/swagger/", - CustomSwaggerView.as_view(url_name="schema-platform"), - name="swagger-ui-platform", - ), - path( - r"docs/redoc/", - CustomRedocView.as_view(url_name="schema-platform"), - name="redoc-ui-platform", - ), - path("summernote/", include("django_summernote.urls")), - path(r"i18n/", include("django.conf.urls.i18n")), - path(r"favicon.ico", favicon_view), - path(r"", index), - path(r"", version), - path(r"", include("core.api_urls", namespace="core")), - path(r"auth/", include("vibes_auth.urls", namespace="vibes_auth")), - path(r"payments/", include("payments.urls", namespace="payments")), - path(r"blog/", include("blog.urls", namespace="blog")), - path("admin/doc/", include("django.contrib.admindocs.urls")), -] + i18n_patterns(path("admin/", admin.site.urls)) - -if settings.DEBUG: - urlpatterns += static(settings.STATIC_URL, document_root=settings.STATIC_ROOT) - urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT) diff --git a/evibes/asgi.py b/evibes/asgi.py index b7354e6f..89ce9d5d 100644 --- a/evibes/asgi.py +++ b/evibes/asgi.py @@ -15,13 +15,13 @@ from django.core.asgi import get_asgi_application os.environ.setdefault("DJANGO_SETTINGS_MODULE", "evibes.settings") django.setup() -from vibes_auth.messaging.auth import JWTAuthMiddlewareStack # noqa: E402 +from engine.vibes_auth.messaging.auth import JWTAuthMiddlewareStack # noqa: E402 http_application = get_asgi_application() websocket_urlpatterns: List = [] with suppress(ModuleNotFoundError): - from vibes_auth.messaging.routing import websocket_urlpatterns + from engine.vibes_auth.messaging.routing import websocket_urlpatterns application = ProtocolTypeRouter( { diff --git a/evibes/b2b_urls.py b/evibes/b2b_urls.py deleted file mode 100644 index aeeeee23..00000000 --- a/evibes/b2b_urls.py +++ /dev/null @@ -1,23 +0,0 @@ -from django.conf import settings -from django.conf.urls.static import static -from django.urls import include, path -from drf_spectacular.views import SpectacularAPIView - -from core.views import CustomRedocView, CustomSwaggerView, favicon_view -from evibes.settings import SPECTACULAR_B2B_SETTINGS - -urlpatterns = [ - path( - r"docs/", - SpectacularAPIView.as_view(urlconf="evibes.b2b_urls", custom_settings=SPECTACULAR_B2B_SETTINGS), - name="schema-b2b", - ), - path(r"docs/swagger/", CustomSwaggerView.as_view(url_name="schema-b2b"), name="swagger-ui-b2b"), - path(r"docs/redoc/", CustomRedocView.as_view(url_name="schema-b2b"), name="redoc-ui-b2b"), - path(r"favicon.ico", favicon_view), - path(r"", include("core.b2b_urls", namespace="core_b2b")), -] - -if settings.DEBUG: - urlpatterns += static(settings.STATIC_URL, document_root=settings.STATIC_ROOT) - urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT) diff --git a/evibes/hosts.py b/evibes/hosts.py deleted file mode 100644 index 454a0dbe..00000000 --- a/evibes/hosts.py +++ /dev/null @@ -1,7 +0,0 @@ -from django_hosts import host, patterns - -host_patterns = patterns( - "", - host(r"api", "evibes.api_urls", name="api"), - host(r"b2b", "evibes.b2b_urls", name="b2b"), -) diff --git a/evibes/locale/ar_AR/LC_MESSAGES/django.mo b/evibes/locale/ar_AR/LC_MESSAGES/django.mo index 48d6ffc1..a401c8d4 100644 Binary files a/evibes/locale/ar_AR/LC_MESSAGES/django.mo and b/evibes/locale/ar_AR/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/ar_AR/LC_MESSAGES/django.po b/evibes/locale/ar_AR/LC_MESSAGES/django.po index 84e9997e..c72379f8 100644 --- a/evibes/locale/ar_AR/LC_MESSAGES/django.po +++ b/evibes/locale/ar_AR/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -70,93 +70,171 @@ msgid "Mail from option" msgstr "عنوان مرسل البريد الإلكتروني" #: evibes/settings/constance.py:36 -msgid "Payment gateway URL" -msgstr "عنوان URL لبوابة الدفع" - -#: evibes/settings/constance.py:37 -msgid "Payment gateway token" -msgstr "الرمز المميز لبوابة الدفع" - -#: evibes/settings/constance.py:38 -msgid "Payment gateway minimum amount" -msgstr "الحد الأدنى لمبلغ بوابة الدفع" - -#: evibes/settings/constance.py:39 -msgid "Payment gateway maximum amount" -msgstr "الحد الأقصى لمبلغ بوابة الدفع" - -#: evibes/settings/constance.py:40 msgid "Exchange rate API key" msgstr "مفتاح API لسعر الصرف" -#: evibes/settings/constance.py:41 +#: evibes/settings/constance.py:37 msgid "OpenStreetMap Nominatim API URL" msgstr "عنوان URL لواجهة برمجة تطبيقات OpenStreetMap Nominatim" -#: evibes/settings/constance.py:42 +#: evibes/settings/constance.py:38 msgid "OpenAI API Key" msgstr "مفتاح واجهة برمجة تطبيقات OpenAI" -#: evibes/settings/constance.py:43 +#: evibes/settings/constance.py:39 msgid "Abstract API Key" msgstr "مفتاح واجهة برمجة التطبيقات المجردة" -#: evibes/settings/constance.py:44 +#: evibes/settings/constance.py:40 msgid "HTTP Proxy" msgstr "وكيل HTTP" -#: evibes/settings/constance.py:45 +#: evibes/settings/constance.py:41 msgid "Disable buy functionality" msgstr "تعطيل وظيفة الشراء" -#: evibes/settings/constance.py:46 +#: evibes/settings/constance.py:42 msgid "An entity for storing advertisiment data" msgstr "كيان لتخزين بيانات الإعلانات" -#: evibes/settings/constance.py:47 +#: evibes/settings/constance.py:43 msgid "An entity for storing analytics data" msgstr "كيان لتخزين بيانات التحليلات" -#: evibes/settings/constance.py:48 +#: evibes/settings/constance.py:44 msgid "Save responses from vendors' APIs" msgstr "حفظ الاستجابات من واجهات برمجة تطبيقات البائعين" -#: evibes/settings/constance.py:49 +#: evibes/settings/constance.py:45 msgid "Use Telegram-bot functionality" msgstr "استخدم وظيفة تيليجرام-بوت" -#: evibes/settings/constance.py:50 +#: evibes/settings/constance.py:46 msgid "How many days we store messages from anonymous users" msgstr "عدد الأيام التي نخزن فيها الرسائل من المستخدمين المجهولين" -#: evibes/settings/constance.py:51 +#: evibes/settings/constance.py:47 msgid "How many days we store messages from authenticated users" msgstr "عدد الأيام التي نخزن فيها الرسائل من المستخدمين الموثقين" -#: evibes/settings/constance.py:57 +#: evibes/settings/constance.py:53 msgid "General Options" msgstr "الخيارات العامة" -#: evibes/settings/constance.py:65 +#: evibes/settings/constance.py:62 msgid "Email Options" msgstr "خيارات البريد الإلكتروني" -#: evibes/settings/constance.py:75 -msgid "Payment Gateway Options" -msgstr "خيارات بوابة الدفع" - -#: evibes/settings/constance.py:82 +#: evibes/settings/constance.py:72 msgid "Features Options" msgstr "خيارات الميزات" -#: evibes/settings/constance.py:92 +#: evibes/settings/constance.py:82 msgid "SEO Options" msgstr "خيارات تحسين محركات البحث" -#: evibes/settings/constance.py:96 +#: evibes/settings/constance.py:86 msgid "Debugging Options" msgstr "خيارات التصحيح" +#: evibes/settings/drf.py:50 +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 {\n" +" SIMPLE_JWT.get(\"ACCESS_TOKEN_LIFETIME\").total_seconds() // 60 if not DEBUG else 3600 # type: ignore [union-attr]\n" +"} {\"minutes\" if not DEBUG else \"hours\"}.\n" +"- Refresh token lifetime is {\n" +" SIMPLE_JWT.get(\"REFRESH_TOKEN_LIFETIME\").total_seconds() // 3600 # type: ignore [union-attr]\n" +"} 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 (basic-auth protected): `/prometheus/`\n" +"\n" +"## Version\n" +"Current API version: {EVIBES_VERSION}\n" +msgstr "" +"\n" +"مرحباً بك في وثائق eVibes.\n" +"\n" +"eVibes عبارة عن منصة تجارة إلكترونية قوية تتيح لك إطلاق وإدارة متجر إلكتروني من أي نوع بنقرات قليلة.\n" +"\n" +"## الميزات الرئيسية\n" +"- ** كتالوج المنتجات:** إدارة تفاصيل المنتج والتسعير والمخزون والتوافر عبر فئات متعددة.\n" +"- **إدارة الطلبات:** معالجة الطلبات وتتبع التنفيذ والتعامل مع طلبات العملاء بكفاءة.\n" +"- **المصادقة والتفويض:** مصادقة شاملة للمستخدمين باستخدام رموز JWT المميزة والأذونات المستندة إلى الأدوار.\n" +"- ** معالجة المدفوعات:** دمج بوابات دفع متعددة وإدارة المعاملات بشكل آمن.\n" +"- ** إدارة المدونة والمحتوى:** إنشاء وإدارة منشورات المدونة والمحتوى التسويقي لمتجرك.\n" +"- ** عمليات B2B:** نقاط نهاية مخصصة للمعاملات بين الشركات وإدارة البيع بالجملة.\n" +"- **دعم متعدد اللغات:** خدمة العملاء في جميع أنحاء العالم مع إمكانات التدويل الكاملة (i18n).\n" +"- **تكامل مخصص:** بنية واجهة برمجة تطبيقات قابلة للتوسيع للتكامل مع المنصات والخدمات الخارجية.\n" +"- **التحليلات والتقارير:** إنشاء تقارير مفصلة عن المبيعات والمخزون وسلوك العملاء.\n" +"- ** تحديثات في الوقت الفعلي:** احصل على بيانات مباشرة عن مستويات المخزون وحالات الطلبات وتغييرات الأسعار.\n" +"\n" +"## واجهات برمجة التطبيقات المتاحة\n" +"- **واجهة برمجة تطبيقات REST:** واجهة REST كاملة (هذه الوثائق)\n" +"- ** واجهة برمجة تطبيقات GraphiQL:** متوفرة على '/graphql/' مع واجهة GraphiQL للاستعلامات التفاعلية\n" +"\n" +"## المصادقة\n" +"- يتم التعامل مع المصادقة عبر رموز JWT المميزة. قم بتضمين الرمز المميز في رأس \"X-EVIBES-AUTH\" لطلباتك بصيغة \"حامل \".\n" +"{\n" +" SIMPLE_JWT.get(\"ACCESS_TOKEN_LIFETIME\").total_seconds() // 60 if not DEBUG else 3600 # type: ignore [union-attr]\n" +"} {\"minutes\" if not DEBUG else \"hours\"}{\n" +" SIMPLE_JWT.get(\"REFRESH_TOKEN_LIFETIME\").total_seconds() // 3600 # type: ignore [union-attr]\n" +"}- يتم تدوير رموز التحديث تلقائيًا وإبطالها بعد الاستخدام لتعزيز الأمان.\n" +"\n" +"## التدويل (i18n)\n" +"- قم بتعيين رأس \"قبول اللغة\" لتحديد لغتك المفضلة (على سبيل المثال، \"قبول اللغة: en-US\").\n" +"- يمكن استرداد اللغات المتاحة من نقطة النهاية \"/ التطبيق/اللغات/\".\n" +"- جميع المحتويات التي تواجه المستخدم تدعم لغات متعددة خارج الصندوق.\n" +"\n" +"## تنسيقات الاستجابة\n" +"تدعم واجهة برمجة التطبيقات تنسيقات استجابة متعددة:\n" +"- **JSON** (افتراضي، بتنسيق camelCase)\n" +"- **XML** (أضف \"?format=xml\" أو قم بتعيين \"قبول: application/xml\")\n" +"- **YAML** (أضف '؟تنسيق=yaml' أو اضبط 'قبول: application/x-yaml')\n" +"\n" +"## الصحة والمراقبة\n" +"- فحوصات الصحة: '/الصحة/'\n" +"- مقاييس بروميثيوس (محمية بمصادقة أساسية): '//prometheus/'\n" +"\n" +"## الإصدار\n" +"إصدار API الحالي: {EVIBES_VERSION}\n" + #: evibes/settings/jazzmin.py:20 msgid "Home" msgstr "الصفحة الرئيسية" @@ -170,13 +248,9 @@ msgid "GraphQL Docs" msgstr "مستندات GraphQL" #: evibes/settings/jazzmin.py:29 -msgid "Platform REST Docs" -msgstr "مستندات النظام الأساسي REST" +msgid "REST Docs" +msgstr "مستندات REST" -#: evibes/settings/jazzmin.py:34 -msgid "B2B REST Docs" -msgstr "مستندات B2B REST" - -#: evibes/settings/jazzmin.py:38 +#: evibes/settings/jazzmin.py:33 msgid "Support" msgstr "الدعم" diff --git a/evibes/locale/cs_CZ/LC_MESSAGES/django.mo b/evibes/locale/cs_CZ/LC_MESSAGES/django.mo index cc830b29..abdb7230 100644 Binary files a/evibes/locale/cs_CZ/LC_MESSAGES/django.mo and b/evibes/locale/cs_CZ/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/cs_CZ/LC_MESSAGES/django.po b/evibes/locale/cs_CZ/LC_MESSAGES/django.po index 468b4817..1d952b4c 100644 --- a/evibes/locale/cs_CZ/LC_MESSAGES/django.po +++ b/evibes/locale/cs_CZ/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -70,93 +70,173 @@ msgid "Mail from option" msgstr "Adresa odesílatele e-mailů" #: evibes/settings/constance.py:36 -msgid "Payment gateway URL" -msgstr "Adresa URL platební brány" - -#: evibes/settings/constance.py:37 -msgid "Payment gateway token" -msgstr "Token platební brány" - -#: evibes/settings/constance.py:38 -msgid "Payment gateway minimum amount" -msgstr "Minimální částka platební brány" - -#: evibes/settings/constance.py:39 -msgid "Payment gateway maximum amount" -msgstr "Maximální částka platební brány" - -#: evibes/settings/constance.py:40 msgid "Exchange rate API key" msgstr "Klíč API pro směnný kurz" -#: evibes/settings/constance.py:41 +#: evibes/settings/constance.py:37 msgid "OpenStreetMap Nominatim API URL" msgstr "URL rozhraní API OpenStreetMap Nominatim" -#: evibes/settings/constance.py:42 +#: evibes/settings/constance.py:38 msgid "OpenAI API Key" msgstr "Klíč API OpenAI" -#: evibes/settings/constance.py:43 +#: evibes/settings/constance.py:39 msgid "Abstract API Key" msgstr "Abstraktní klíč API" -#: evibes/settings/constance.py:44 +#: evibes/settings/constance.py:40 msgid "HTTP Proxy" msgstr "Proxy server HTTP" -#: evibes/settings/constance.py:45 +#: evibes/settings/constance.py:41 msgid "Disable buy functionality" msgstr "Zakázat funkci nákupu" -#: evibes/settings/constance.py:46 +#: evibes/settings/constance.py:42 msgid "An entity for storing advertisiment data" msgstr "Subjekt pro ukládání dat inzerátů" -#: evibes/settings/constance.py:47 +#: evibes/settings/constance.py:43 msgid "An entity for storing analytics data" msgstr "Subjekt pro ukládání analytických dat" -#: evibes/settings/constance.py:48 +#: evibes/settings/constance.py:44 msgid "Save responses from vendors' APIs" msgstr "Ukládání odpovědí z rozhraní API dodavatelů" -#: evibes/settings/constance.py:49 +#: evibes/settings/constance.py:45 msgid "Use Telegram-bot functionality" msgstr "Použití funkce Telegram-bot" -#: evibes/settings/constance.py:50 +#: evibes/settings/constance.py:46 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:51 +#: evibes/settings/constance.py:47 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:57 +#: evibes/settings/constance.py:53 msgid "General Options" msgstr "Obecné možnosti" -#: evibes/settings/constance.py:65 +#: evibes/settings/constance.py:62 msgid "Email Options" msgstr "Možnosti e-mailu" -#: evibes/settings/constance.py:75 -msgid "Payment Gateway Options" -msgstr "Možnosti platební brány" - -#: evibes/settings/constance.py:82 +#: evibes/settings/constance.py:72 msgid "Features Options" msgstr "Možnosti funkcí" -#: evibes/settings/constance.py:92 +#: evibes/settings/constance.py:82 msgid "SEO Options" msgstr "Možnosti SEO" -#: evibes/settings/constance.py:96 +#: evibes/settings/constance.py:86 msgid "Debugging Options" msgstr "Možnosti ladění" +#: evibes/settings/drf.py:50 +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 {\n" +" SIMPLE_JWT.get(\"ACCESS_TOKEN_LIFETIME\").total_seconds() // 60 if not DEBUG else 3600 # type: ignore [union-attr]\n" +"} {\"minutes\" if not DEBUG else \"hours\"}.\n" +"- Refresh token lifetime is {\n" +" SIMPLE_JWT.get(\"REFRESH_TOKEN_LIFETIME\").total_seconds() // 3600 # type: ignore [union-attr]\n" +"} 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 (basic-auth protected): `/prometheus/`\n" +"\n" +"## Version\n" +"Current API version: {EVIBES_VERSION}\n" +msgstr "" +"\n" +"Vítejte v dokumentaci systému eVibes.\n" +"\n" +"eVibes je výkonná platforma pro elektronické obchodování, která umožňuje 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" +"\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" +"\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" +"- Životnost přístupového tokenu je {\n" +" SIMPLE_JWT.get(\"ACCESS_TOKEN_LIFETIME\").total_seconds() // 60 if not DEBUG else 3600 # type: ignore [union-attr]\n" +"}. {\"minutes\" if not DEBUG else \"hours\"}.\n" +"- Životnost tokenu pro obnovení je {\n" +" SIMPLE_JWT.get(\"REFRESH_TOKEN_LIFETIME\").total_seconds() // 3600 # type: ignore [union-attr]\n" +"} hodin.\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" +"- 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" +"\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" +"\n" +"## Stav a monitorování\n" +"- Kontroly stavu: `/health/`\n" +"- Metriky Prometheus (chráněno basic-auth): `/prometheus/`\n" +"\n" +"## Verze\n" +"Aktuální verze API: {EVIBES_VERSION}\n" + #: evibes/settings/jazzmin.py:20 msgid "Home" msgstr "Home" @@ -170,13 +250,9 @@ msgid "GraphQL Docs" msgstr "Dokumenty GraphQL" #: evibes/settings/jazzmin.py:29 -msgid "Platform REST Docs" -msgstr "Dokumenty platformy REST" +msgid "REST Docs" +msgstr "Dokumenty REST" -#: evibes/settings/jazzmin.py:34 -msgid "B2B REST Docs" -msgstr "Dokumenty B2B REST" - -#: evibes/settings/jazzmin.py:38 +#: evibes/settings/jazzmin.py:33 msgid "Support" msgstr "Podpora" diff --git a/evibes/locale/da_DK/LC_MESSAGES/django.mo b/evibes/locale/da_DK/LC_MESSAGES/django.mo index fa4c1d36..46381a1f 100644 Binary files a/evibes/locale/da_DK/LC_MESSAGES/django.mo and b/evibes/locale/da_DK/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/da_DK/LC_MESSAGES/django.po b/evibes/locale/da_DK/LC_MESSAGES/django.po index 9783da10..3ae2f9da 100644 --- a/evibes/locale/da_DK/LC_MESSAGES/django.po +++ b/evibes/locale/da_DK/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -70,93 +70,173 @@ msgid "Mail from option" msgstr "Adressen på e-mailens afsender" #: evibes/settings/constance.py:36 -msgid "Payment gateway URL" -msgstr "URL til betalingsgateway" - -#: evibes/settings/constance.py:37 -msgid "Payment gateway token" -msgstr "Token til betalingsgateway" - -#: evibes/settings/constance.py:38 -msgid "Payment gateway minimum amount" -msgstr "Minimumsbeløb for betalingsgateway" - -#: evibes/settings/constance.py:39 -msgid "Payment gateway maximum amount" -msgstr "Betalingsgatewayens maksimale beløb" - -#: evibes/settings/constance.py:40 msgid "Exchange rate API key" msgstr "API-nøgle til valutakurs" -#: evibes/settings/constance.py:41 +#: evibes/settings/constance.py:37 msgid "OpenStreetMap Nominatim API URL" msgstr "OpenStreetMap Nominatim API URL" -#: evibes/settings/constance.py:42 +#: evibes/settings/constance.py:38 msgid "OpenAI API Key" msgstr "OpenAI API-nøgle" -#: evibes/settings/constance.py:43 +#: evibes/settings/constance.py:39 msgid "Abstract API Key" msgstr "Abstrakt API-nøgle" -#: evibes/settings/constance.py:44 +#: evibes/settings/constance.py:40 msgid "HTTP Proxy" msgstr "HTTP-proxy" -#: evibes/settings/constance.py:45 +#: evibes/settings/constance.py:41 msgid "Disable buy functionality" msgstr "Deaktiver købsfunktionalitet" -#: evibes/settings/constance.py:46 +#: evibes/settings/constance.py:42 msgid "An entity for storing advertisiment data" msgstr "En enhed til lagring af annonceringsdata" -#: evibes/settings/constance.py:47 +#: evibes/settings/constance.py:43 msgid "An entity for storing analytics data" msgstr "En enhed til lagring af analysedata" -#: evibes/settings/constance.py:48 +#: evibes/settings/constance.py:44 msgid "Save responses from vendors' APIs" msgstr "Gem svar fra leverandørers API'er" -#: evibes/settings/constance.py:49 +#: evibes/settings/constance.py:45 msgid "Use Telegram-bot functionality" msgstr "Brug Telegram-bot-funktionalitet" -#: evibes/settings/constance.py:50 +#: evibes/settings/constance.py:46 msgid "How many days we store messages from anonymous users" msgstr "Hvor mange dage vi gemmer beskeder fra anonyme brugere" -#: evibes/settings/constance.py:51 +#: evibes/settings/constance.py:47 msgid "How many days we store messages from authenticated users" msgstr "Hvor mange dage vi gemmer beskeder fra godkendte brugere" -#: evibes/settings/constance.py:57 +#: evibes/settings/constance.py:53 msgid "General Options" msgstr "Generelle indstillinger" -#: evibes/settings/constance.py:65 +#: evibes/settings/constance.py:62 msgid "Email Options" msgstr "Indstillinger for e-mail" -#: evibes/settings/constance.py:75 -msgid "Payment Gateway Options" -msgstr "Muligheder for betalingsgateway" - -#: evibes/settings/constance.py:82 +#: evibes/settings/constance.py:72 msgid "Features Options" msgstr "Funktioner Indstillinger" -#: evibes/settings/constance.py:92 +#: evibes/settings/constance.py:82 msgid "SEO Options" msgstr "SEO-muligheder" -#: evibes/settings/constance.py:96 +#: evibes/settings/constance.py:86 msgid "Debugging Options" msgstr "Indstillinger for fejlfinding" +#: evibes/settings/drf.py:50 +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 {\n" +" SIMPLE_JWT.get(\"ACCESS_TOKEN_LIFETIME\").total_seconds() // 60 if not DEBUG else 3600 # type: ignore [union-attr]\n" +"} {\"minutes\" if not DEBUG else \"hours\"}.\n" +"- Refresh token lifetime is {\n" +" SIMPLE_JWT.get(\"REFRESH_TOKEN_LIFETIME\").total_seconds() // 3600 # type: ignore [union-attr]\n" +"} 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 (basic-auth protected): `/prometheus/`\n" +"\n" +"## Version\n" +"Current API version: {EVIBES_VERSION}\n" +msgstr "" +"\n" +"Velkommen til eVibes' 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" +"\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" +"\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" +"\n" +"## Autentificering\n" +"- Autentificering håndteres via JWT-tokens. Inkluder tokenet i `X-EVIBES-AUTH`-headeren i dine anmodninger i formatet `Bearer `.\n" +"- Adgangstokenets levetid er {\n" +" SIMPLE_JWT.get(\"ACCESS_TOKEN_LIFETIME\").total_seconds() // 60 if not DEBUG else 3600 # type: ignore [union-attr]\n" +"} {\"minutes\" if not DEBUG else \"hours\"}.\n" +"- Opdateringstokenets levetid er {\n" +" SIMPLE_JWT.get(\"REFRESH_TOKEN_LIFETIME\").total_seconds() // 3600 # type: ignore [union-attr]\n" +"} timer.\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" +"- Tilgængelige sprog kan hentes fra `/app/languages/` endpoint.\n" +"- Alt brugervendt indhold understøtter flere sprog fra starten.\n" +"\n" +"## Svarformater\n" +"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" +"\n" +"## Sundhed og overvågning\n" +"- Sundhedstjek: `/health/`\n" +"- Prometheus-metrikker (beskyttet af basic-auth): `/prometheus/`\n" +"\n" +"## Version\n" +"Nuværende API-version: {EVIBES_VERSION}\n" + #: evibes/settings/jazzmin.py:20 msgid "Home" msgstr "Hjem" @@ -170,13 +250,9 @@ msgid "GraphQL Docs" msgstr "GraphQL-dokumenter" #: evibes/settings/jazzmin.py:29 -msgid "Platform REST Docs" -msgstr "Platform REST-dokumenter" +msgid "REST Docs" +msgstr "REST-dokumenter" -#: evibes/settings/jazzmin.py:34 -msgid "B2B REST Docs" -msgstr "B2B REST-dokumenter" - -#: evibes/settings/jazzmin.py:38 +#: evibes/settings/jazzmin.py:33 msgid "Support" msgstr "Støtte" diff --git a/evibes/locale/de_DE/LC_MESSAGES/django.mo b/evibes/locale/de_DE/LC_MESSAGES/django.mo index 1de3afd2..383a9ead 100644 Binary files a/evibes/locale/de_DE/LC_MESSAGES/django.mo and b/evibes/locale/de_DE/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/de_DE/LC_MESSAGES/django.po b/evibes/locale/de_DE/LC_MESSAGES/django.po index f7159751..9124be6c 100644 --- a/evibes/locale/de_DE/LC_MESSAGES/django.po +++ b/evibes/locale/de_DE/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -70,94 +70,174 @@ msgid "Mail from option" msgstr "Die Adresse des Absenders der E-Mail" #: evibes/settings/constance.py:36 -msgid "Payment gateway URL" -msgstr "URL des Zahlungsgateways" - -#: evibes/settings/constance.py:37 -msgid "Payment gateway token" -msgstr "Zahlungsgateway-Token" - -#: evibes/settings/constance.py:38 -msgid "Payment gateway minimum amount" -msgstr "Mindestbetrag für das Zahlungsgateway" - -#: evibes/settings/constance.py:39 -msgid "Payment gateway maximum amount" -msgstr "Höchstbetrag des Zahlungsgateways" - -#: evibes/settings/constance.py:40 msgid "Exchange rate API key" msgstr "Wechselkurs-API-Schlüssel" -#: evibes/settings/constance.py:41 +#: evibes/settings/constance.py:37 msgid "OpenStreetMap Nominatim API URL" msgstr "OpenStreetMap Nominatim API URL" -#: evibes/settings/constance.py:42 +#: evibes/settings/constance.py:38 msgid "OpenAI API Key" msgstr "OpenAI API Key" -#: evibes/settings/constance.py:43 +#: evibes/settings/constance.py:39 msgid "Abstract API Key" msgstr "Abstrakter API-Schlüssel" -#: evibes/settings/constance.py:44 +#: evibes/settings/constance.py:40 msgid "HTTP Proxy" msgstr "HTTP-Proxy" -#: evibes/settings/constance.py:45 +#: evibes/settings/constance.py:41 msgid "Disable buy functionality" msgstr "Kauffunktionalität deaktivieren" -#: evibes/settings/constance.py:46 +#: evibes/settings/constance.py:42 msgid "An entity for storing advertisiment data" msgstr "Eine Einheit zur Speicherung von Werbedaten" -#: evibes/settings/constance.py:47 +#: evibes/settings/constance.py:43 msgid "An entity for storing analytics data" msgstr "Eine Einheit zur Speicherung von Analysedaten" -#: evibes/settings/constance.py:48 +#: evibes/settings/constance.py:44 msgid "Save responses from vendors' APIs" msgstr "Speichern von Antworten aus den APIs von Anbietern" -#: evibes/settings/constance.py:49 +#: evibes/settings/constance.py:45 msgid "Use Telegram-bot functionality" msgstr "Telegram-Bot-Funktionalität verwenden" -#: evibes/settings/constance.py:50 +#: evibes/settings/constance.py:46 msgid "How many days we store messages from anonymous users" msgstr "Wie viele Tage wir Nachrichten von anonymen Nutzern speichern" -#: evibes/settings/constance.py:51 +#: evibes/settings/constance.py:47 msgid "How many days we store messages from authenticated users" msgstr "" "Wie viele Tage wir Nachrichten von authentifizierten Benutzern speichern" -#: evibes/settings/constance.py:57 +#: evibes/settings/constance.py:53 msgid "General Options" msgstr "Allgemeine Optionen" -#: evibes/settings/constance.py:65 +#: evibes/settings/constance.py:62 msgid "Email Options" msgstr "E-Mail-Optionen" -#: evibes/settings/constance.py:75 -msgid "Payment Gateway Options" -msgstr "Zahlungs-Gateway-Optionen" - -#: evibes/settings/constance.py:82 +#: evibes/settings/constance.py:72 msgid "Features Options" msgstr "Merkmale Optionen" -#: evibes/settings/constance.py:92 +#: evibes/settings/constance.py:82 msgid "SEO Options" msgstr "SEO-Optionen" -#: evibes/settings/constance.py:96 +#: evibes/settings/constance.py:86 msgid "Debugging Options" msgstr "Debugging-Optionen" +#: evibes/settings/drf.py:50 +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 {\n" +" SIMPLE_JWT.get(\"ACCESS_TOKEN_LIFETIME\").total_seconds() // 60 if not DEBUG else 3600 # type: ignore [union-attr]\n" +"} {\"minutes\" if not DEBUG else \"hours\"}.\n" +"- Refresh token lifetime is {\n" +" SIMPLE_JWT.get(\"REFRESH_TOKEN_LIFETIME\").total_seconds() // 3600 # type: ignore [union-attr]\n" +"} 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 (basic-auth protected): `/prometheus/`\n" +"\n" +"## Version\n" +"Current API version: {EVIBES_VERSION}\n" +msgstr "" +"\n" +"Willkommen bei der eVibes-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" +"\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" +"\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" +"\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 {\n" +" SIMPLE_JWT.get(\"ACCESS_TOKEN_LIFETIME\").total_seconds() // 60 if not DEBUG else 3600 # type: ignore [union-attr]\n" +"} {\"minutes\" if not DEBUG else \"hours\"}.\n" +"- Die Lebensdauer von Auffrischungstoken beträgt {\n" +" SIMPLE_JWT.get(\"REFRESH_TOKEN_LIFETIME\").total_seconds() // 3600 # type: ignore [union-attr]\n" +"} Stunden.\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" +"- 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" +"\n" +"## Gesundheit & Überwachung\n" +"- Gesundheitsprüfungen: `/health/`\n" +"- Prometheus-Metriken (basic-auth geschützt): `/prometheus/`\n" +"\n" +"## Version\n" +"Aktuelle API-Version: {EVIBES_VERSION}\n" + #: evibes/settings/jazzmin.py:20 msgid "Home" msgstr "Startseite" @@ -171,13 +251,9 @@ msgid "GraphQL Docs" msgstr "GraphQL Docs" #: evibes/settings/jazzmin.py:29 -msgid "Platform REST Docs" -msgstr "Plattform REST Docs" +msgid "REST Docs" +msgstr "REST-Dokumente" -#: evibes/settings/jazzmin.py:34 -msgid "B2B REST Docs" -msgstr "B2B REST-Dokumente" - -#: evibes/settings/jazzmin.py:38 +#: evibes/settings/jazzmin.py:33 msgid "Support" msgstr "Unterstützung" diff --git a/evibes/locale/en_GB/LC_MESSAGES/django.mo b/evibes/locale/en_GB/LC_MESSAGES/django.mo index 889e5f71..01f0d1d6 100644 Binary files a/evibes/locale/en_GB/LC_MESSAGES/django.mo and b/evibes/locale/en_GB/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/en_GB/LC_MESSAGES/django.po b/evibes/locale/en_GB/LC_MESSAGES/django.po index 0b30c721..d4bdb856 100644 --- a/evibes/locale/en_GB/LC_MESSAGES/django.po +++ b/evibes/locale/en_GB/LC_MESSAGES/django.po @@ -2,12 +2,12 @@ # 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 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -74,93 +74,173 @@ msgid "Mail from option" msgstr "The address of the emails sender" #: evibes/settings/constance.py:36 -msgid "Payment gateway URL" -msgstr "Payment gateway URL" - -#: evibes/settings/constance.py:37 -msgid "Payment gateway token" -msgstr "Payment gateway token" - -#: evibes/settings/constance.py:38 -msgid "Payment gateway minimum amount" -msgstr "Payment gateway minimum amount" - -#: evibes/settings/constance.py:39 -msgid "Payment gateway maximum amount" -msgstr "Payment gateway maximum amount" - -#: evibes/settings/constance.py:40 msgid "Exchange rate API key" msgstr "Exchange rate API key" -#: evibes/settings/constance.py:41 +#: evibes/settings/constance.py:37 msgid "OpenStreetMap Nominatim API URL" msgstr "OpenStreetMap Nominatim API URL" -#: evibes/settings/constance.py:42 +#: evibes/settings/constance.py:38 msgid "OpenAI API Key" msgstr "OpenAI API Key" -#: evibes/settings/constance.py:43 +#: evibes/settings/constance.py:39 msgid "Abstract API Key" msgstr "Abstract API Key" -#: evibes/settings/constance.py:44 +#: evibes/settings/constance.py:40 msgid "HTTP Proxy" msgstr "HTTP Proxy" -#: evibes/settings/constance.py:45 +#: evibes/settings/constance.py:41 msgid "Disable buy functionality" msgstr "Disable buy functionality" -#: evibes/settings/constance.py:46 +#: evibes/settings/constance.py:42 msgid "An entity for storing advertisiment data" msgstr "An entity for storing advertisiment data" -#: evibes/settings/constance.py:47 +#: evibes/settings/constance.py:43 msgid "An entity for storing analytics data" msgstr "An entity for storing analytics data" -#: evibes/settings/constance.py:48 +#: evibes/settings/constance.py:44 msgid "Save responses from vendors' APIs" msgstr "Save responses from vendors' APIs" -#: evibes/settings/constance.py:49 +#: evibes/settings/constance.py:45 msgid "Use Telegram-bot functionality" msgstr "Use Telegram-bot functionality" -#: evibes/settings/constance.py:50 +#: evibes/settings/constance.py:46 msgid "How many days we store messages from anonymous users" msgstr "How many days we store messages from anonymous users" -#: evibes/settings/constance.py:51 +#: evibes/settings/constance.py:47 msgid "How many days we store messages from authenticated users" msgstr "How many days we store messages from authenticated users" -#: evibes/settings/constance.py:57 +#: evibes/settings/constance.py:53 msgid "General Options" msgstr "General Options" -#: evibes/settings/constance.py:65 +#: evibes/settings/constance.py:62 msgid "Email Options" msgstr "Email Options" -#: evibes/settings/constance.py:75 -msgid "Payment Gateway Options" -msgstr "Payment Gateway Options" - -#: evibes/settings/constance.py:82 +#: evibes/settings/constance.py:72 msgid "Features Options" msgstr "Features Options" -#: evibes/settings/constance.py:92 +#: evibes/settings/constance.py:82 msgid "SEO Options" msgstr "SEO Options" -#: evibes/settings/constance.py:96 +#: evibes/settings/constance.py:86 msgid "Debugging Options" msgstr "Debugging Options" +#: evibes/settings/drf.py:50 +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 {\n" +" SIMPLE_JWT.get(\"ACCESS_TOKEN_LIFETIME\").total_seconds() // 60 if not DEBUG else 3600 # type: ignore [union-attr]\n" +"} {\"minutes\" if not DEBUG else \"hours\"}.\n" +"- Refresh token lifetime is {\n" +" SIMPLE_JWT.get(\"REFRESH_TOKEN_LIFETIME\").total_seconds() // 3600 # type: ignore [union-attr]\n" +"} 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 (basic-auth protected): `/prometheus/`\n" +"\n" +"## Version\n" +"Current API version: {EVIBES_VERSION}\n" +msgstr "" +"\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 {\n" +" SIMPLE_JWT.get(\"ACCESS_TOKEN_LIFETIME\").total_seconds() // 60 if not DEBUG else 3600 # type: ignore [union-attr]\n" +"} {\"minutes\" if not DEBUG else \"hours\"}.\n" +"- Refresh token lifetime is {\n" +" SIMPLE_JWT.get(\"REFRESH_TOKEN_LIFETIME\").total_seconds() // 3600 # type: ignore [union-attr]\n" +"} 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 (basic-auth protected): `/prometheus/`\n" +"\n" +"## Version\n" +"Current API version: {EVIBES_VERSION}\n" + #: evibes/settings/jazzmin.py:20 msgid "Home" msgstr "Home" @@ -174,13 +254,9 @@ msgid "GraphQL Docs" msgstr "GraphQL Docs" #: evibes/settings/jazzmin.py:29 -msgid "Platform REST Docs" -msgstr "Platform REST Docs" +msgid "REST Docs" +msgstr "REST Docs" -#: evibes/settings/jazzmin.py:34 -msgid "B2B REST Docs" -msgstr "B2B REST Docs" - -#: evibes/settings/jazzmin.py:38 +#: evibes/settings/jazzmin.py:33 msgid "Support" msgstr "Support" diff --git a/evibes/locale/en_US/LC_MESSAGES/django.mo b/evibes/locale/en_US/LC_MESSAGES/django.mo index 46d8740f..3384909f 100644 Binary files a/evibes/locale/en_US/LC_MESSAGES/django.mo and b/evibes/locale/en_US/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/en_US/LC_MESSAGES/django.po b/evibes/locale/en_US/LC_MESSAGES/django.po index d2bf04bf..033c9f18 100644 --- a/evibes/locale/en_US/LC_MESSAGES/django.po +++ b/evibes/locale/en_US/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -70,93 +70,173 @@ msgid "Mail from option" msgstr "The address of the emails sender" #: evibes/settings/constance.py:36 -msgid "Payment gateway URL" -msgstr "Payment gateway URL" - -#: evibes/settings/constance.py:37 -msgid "Payment gateway token" -msgstr "Payment gateway token" - -#: evibes/settings/constance.py:38 -msgid "Payment gateway minimum amount" -msgstr "Payment gateway minimum amount" - -#: evibes/settings/constance.py:39 -msgid "Payment gateway maximum amount" -msgstr "Payment gateway maximum amount" - -#: evibes/settings/constance.py:40 msgid "Exchange rate API key" msgstr "Exchange rate API key" -#: evibes/settings/constance.py:41 +#: evibes/settings/constance.py:37 msgid "OpenStreetMap Nominatim API URL" msgstr "OpenStreetMap Nominatim API URL" -#: evibes/settings/constance.py:42 +#: evibes/settings/constance.py:38 msgid "OpenAI API Key" msgstr "OpenAI API Key" -#: evibes/settings/constance.py:43 +#: evibes/settings/constance.py:39 msgid "Abstract API Key" msgstr "Abstract API Key" -#: evibes/settings/constance.py:44 +#: evibes/settings/constance.py:40 msgid "HTTP Proxy" msgstr "HTTP Proxy" -#: evibes/settings/constance.py:45 +#: evibes/settings/constance.py:41 msgid "Disable buy functionality" msgstr "Disable buy functionality" -#: evibes/settings/constance.py:46 +#: evibes/settings/constance.py:42 msgid "An entity for storing advertisiment data" msgstr "An entity for storing advertisiment data" -#: evibes/settings/constance.py:47 +#: evibes/settings/constance.py:43 msgid "An entity for storing analytics data" msgstr "An entity for storing analytics data" -#: evibes/settings/constance.py:48 +#: evibes/settings/constance.py:44 msgid "Save responses from vendors' APIs" msgstr "Save responses from vendors' APIs" -#: evibes/settings/constance.py:49 +#: evibes/settings/constance.py:45 msgid "Use Telegram-bot functionality" msgstr "Use Telegram-bot functionality" -#: evibes/settings/constance.py:50 +#: evibes/settings/constance.py:46 msgid "How many days we store messages from anonymous users" msgstr "How many days we store messages from anonymous users" -#: evibes/settings/constance.py:51 +#: evibes/settings/constance.py:47 msgid "How many days we store messages from authenticated users" msgstr "How many days we store messages from authenticated users" -#: evibes/settings/constance.py:57 +#: evibes/settings/constance.py:53 msgid "General Options" msgstr "General Options" -#: evibes/settings/constance.py:65 +#: evibes/settings/constance.py:62 msgid "Email Options" msgstr "Email Options" -#: evibes/settings/constance.py:75 -msgid "Payment Gateway Options" -msgstr "Payment Gateway Options" - -#: evibes/settings/constance.py:82 +#: evibes/settings/constance.py:72 msgid "Features Options" msgstr "Features Options" -#: evibes/settings/constance.py:92 +#: evibes/settings/constance.py:82 msgid "SEO Options" msgstr "SEO Options" -#: evibes/settings/constance.py:96 +#: evibes/settings/constance.py:86 msgid "Debugging Options" msgstr "Debugging Options" +#: evibes/settings/drf.py:50 +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 {\n" +" SIMPLE_JWT.get(\"ACCESS_TOKEN_LIFETIME\").total_seconds() // 60 if not DEBUG else 3600 # type: ignore [union-attr]\n" +"} {\"minutes\" if not DEBUG else \"hours\"}.\n" +"- Refresh token lifetime is {\n" +" SIMPLE_JWT.get(\"REFRESH_TOKEN_LIFETIME\").total_seconds() // 3600 # type: ignore [union-attr]\n" +"} 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 (basic-auth protected): `/prometheus/`\n" +"\n" +"## Version\n" +"Current API version: {EVIBES_VERSION}\n" +msgstr "" +"\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 {\n" +" SIMPLE_JWT.get(\"ACCESS_TOKEN_LIFETIME\").total_seconds() // 60 if not DEBUG else 3600 # type: ignore [union-attr]\n" +"} {\"minutes\" if not DEBUG else \"hours\"}.\n" +"- Refresh token lifetime is {\n" +" SIMPLE_JWT.get(\"REFRESH_TOKEN_LIFETIME\").total_seconds() // 3600 # type: ignore [union-attr]\n" +"} 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 (basic-auth protected): `/prometheus/`\n" +"\n" +"## Version\n" +"Current API version: {EVIBES_VERSION}\n" + #: evibes/settings/jazzmin.py:20 msgid "Home" msgstr "Home" @@ -170,13 +250,9 @@ msgid "GraphQL Docs" msgstr "GraphQL Docs" #: evibes/settings/jazzmin.py:29 -msgid "Platform REST Docs" -msgstr "Platform REST Docs" +msgid "REST Docs" +msgstr "REST Docs" -#: evibes/settings/jazzmin.py:34 -msgid "B2B REST Docs" -msgstr "B2B REST Docs" - -#: evibes/settings/jazzmin.py:38 +#: evibes/settings/jazzmin.py:33 msgid "Support" msgstr "Support" diff --git a/evibes/locale/es_ES/LC_MESSAGES/django.mo b/evibes/locale/es_ES/LC_MESSAGES/django.mo index 08d0c981..662bf5b5 100644 Binary files a/evibes/locale/es_ES/LC_MESSAGES/django.mo and b/evibes/locale/es_ES/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/es_ES/LC_MESSAGES/django.po b/evibes/locale/es_ES/LC_MESSAGES/django.po index 422610b7..40b04af5 100644 --- a/evibes/locale/es_ES/LC_MESSAGES/django.po +++ b/evibes/locale/es_ES/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -70,93 +70,173 @@ msgid "Mail from option" msgstr "Dirección del remitente del correo electrónico" #: evibes/settings/constance.py:36 -msgid "Payment gateway URL" -msgstr "URL de la pasarela de pago" - -#: evibes/settings/constance.py:37 -msgid "Payment gateway token" -msgstr "Token de pasarela de pago" - -#: evibes/settings/constance.py:38 -msgid "Payment gateway minimum amount" -msgstr "Importe mínimo de la pasarela de pago" - -#: evibes/settings/constance.py:39 -msgid "Payment gateway maximum amount" -msgstr "Importe máximo de la pasarela de pago" - -#: evibes/settings/constance.py:40 msgid "Exchange rate API key" msgstr "Clave API de tipo de cambio" -#: evibes/settings/constance.py:41 +#: evibes/settings/constance.py:37 msgid "OpenStreetMap Nominatim API URL" msgstr "URL de la API Nominatim de OpenStreetMap" -#: evibes/settings/constance.py:42 +#: evibes/settings/constance.py:38 msgid "OpenAI API Key" msgstr "Clave API de OpenAI" -#: evibes/settings/constance.py:43 +#: evibes/settings/constance.py:39 msgid "Abstract API Key" msgstr "Clave API abstracta" -#: evibes/settings/constance.py:44 +#: evibes/settings/constance.py:40 msgid "HTTP Proxy" msgstr "Proxy HTTP" -#: evibes/settings/constance.py:45 +#: evibes/settings/constance.py:41 msgid "Disable buy functionality" msgstr "Desactivar la función de compra" -#: evibes/settings/constance.py:46 +#: evibes/settings/constance.py:42 msgid "An entity for storing advertisiment data" msgstr "Una entidad para almacenar datos publicitarios" -#: evibes/settings/constance.py:47 +#: evibes/settings/constance.py:43 msgid "An entity for storing analytics data" msgstr "Una entidad para almacenar datos analíticos" -#: evibes/settings/constance.py:48 +#: evibes/settings/constance.py:44 msgid "Save responses from vendors' APIs" msgstr "Guardar las respuestas de las API de los proveedores" -#: evibes/settings/constance.py:49 +#: evibes/settings/constance.py:45 msgid "Use Telegram-bot functionality" msgstr "Utilizar la funcionalidad de Telegram-bot" -#: evibes/settings/constance.py:50 +#: evibes/settings/constance.py:46 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:51 +#: evibes/settings/constance.py:47 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:57 +#: evibes/settings/constance.py:53 msgid "General Options" msgstr "Opciones generales" -#: evibes/settings/constance.py:65 +#: evibes/settings/constance.py:62 msgid "Email Options" msgstr "Opciones de correo electrónico" -#: evibes/settings/constance.py:75 -msgid "Payment Gateway Options" -msgstr "Opciones de pasarela de pago" - -#: evibes/settings/constance.py:82 +#: evibes/settings/constance.py:72 msgid "Features Options" msgstr "Características Opciones" -#: evibes/settings/constance.py:92 +#: evibes/settings/constance.py:82 msgid "SEO Options" msgstr "Opciones SEO" -#: evibes/settings/constance.py:96 +#: evibes/settings/constance.py:86 msgid "Debugging Options" msgstr "Opciones de depuración" +#: evibes/settings/drf.py:50 +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 {\n" +" SIMPLE_JWT.get(\"ACCESS_TOKEN_LIFETIME\").total_seconds() // 60 if not DEBUG else 3600 # type: ignore [union-attr]\n" +"} {\"minutes\" if not DEBUG else \"hours\"}.\n" +"- Refresh token lifetime is {\n" +" SIMPLE_JWT.get(\"REFRESH_TOKEN_LIFETIME\").total_seconds() // 3600 # type: ignore [union-attr]\n" +"} 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 (basic-auth protected): `/prometheus/`\n" +"\n" +"## Version\n" +"Current API version: {EVIBES_VERSION}\n" +msgstr "" +"\n" +"Bienvenido a la documentación de eVibes.\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" +"\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" +"\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" +"\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 duración del token de acceso es {\n" +" SIMPLE_JWT.get(\"ACCESS_TOKEN_LIFETIME\").total_seconds() // 60 if not DEBUG else 3600 # type: ignore [union-attr]\n" +"} {\"minutes\" if not DEBUG else \"hours\"}.\n" +"- La duración del token de actualización es de {\n" +" SIMPLE_JWT.get(\"REFRESH_TOKEN_LIFETIME\").total_seconds() // 3600 # type: ignore [union-attr]\n" +"} horas.\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" +"\n" +"## Formatos de respuesta\n" +"La API admite varios formatos de respuesta:\n" +"- JSON** (por defecto, con formato camelCase)\n" +"- XML** (añada `?format=xml` o establezca `Accept: application/xml`)\n" +"- YAML** (añada `?format=yaml` o establezca `Accept: application/x-yaml`)\n" +"\n" +"## Salud y supervisión\n" +"- Comprobaciones de salud: `/health/`\n" +"- Métricas de Prometheus (protegidas por basic-auth): `/prometheus/`\n" +"\n" +"## Versión\n" +"Versión actual de la API: {EVIBES_VERSION}\n" + #: evibes/settings/jazzmin.py:20 msgid "Home" msgstr "Inicio" @@ -170,13 +250,9 @@ msgid "GraphQL Docs" msgstr "Documentos GraphQL" #: evibes/settings/jazzmin.py:29 -msgid "Platform REST Docs" -msgstr "Plataforma REST Docs" +msgid "REST Docs" +msgstr "Documentos REST" -#: evibes/settings/jazzmin.py:34 -msgid "B2B REST Docs" -msgstr "Documentos B2B REST" - -#: evibes/settings/jazzmin.py:38 +#: evibes/settings/jazzmin.py:33 msgid "Support" msgstr "Ayuda" diff --git a/evibes/locale/fa_IR/LC_MESSAGES/django.po b/evibes/locale/fa_IR/LC_MESSAGES/django.po index 6b2e56eb..f0973067 100644 --- a/evibes/locale/fa_IR/LC_MESSAGES/django.po +++ b/evibes/locale/fa_IR/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -73,93 +73,142 @@ msgid "Mail from option" msgstr "" #: evibes/settings/constance.py:36 -msgid "Payment gateway URL" -msgstr "" - -#: evibes/settings/constance.py:37 -msgid "Payment gateway token" -msgstr "" - -#: evibes/settings/constance.py:38 -msgid "Payment gateway minimum amount" -msgstr "" - -#: evibes/settings/constance.py:39 -msgid "Payment gateway maximum amount" -msgstr "" - -#: evibes/settings/constance.py:40 msgid "Exchange rate API key" msgstr "" -#: evibes/settings/constance.py:41 +#: evibes/settings/constance.py:37 msgid "OpenStreetMap Nominatim API URL" msgstr "" -#: evibes/settings/constance.py:42 +#: evibes/settings/constance.py:38 msgid "OpenAI API Key" msgstr "" -#: evibes/settings/constance.py:43 +#: evibes/settings/constance.py:39 msgid "Abstract API Key" msgstr "" -#: evibes/settings/constance.py:44 +#: evibes/settings/constance.py:40 msgid "HTTP Proxy" msgstr "" -#: evibes/settings/constance.py:45 +#: evibes/settings/constance.py:41 msgid "Disable buy functionality" msgstr "" -#: evibes/settings/constance.py:46 +#: evibes/settings/constance.py:42 msgid "An entity for storing advertisiment data" msgstr "" -#: evibes/settings/constance.py:47 +#: evibes/settings/constance.py:43 msgid "An entity for storing analytics data" msgstr "" -#: evibes/settings/constance.py:48 +#: evibes/settings/constance.py:44 msgid "Save responses from vendors' APIs" msgstr "" -#: evibes/settings/constance.py:49 +#: evibes/settings/constance.py:45 msgid "Use Telegram-bot functionality" msgstr "" -#: evibes/settings/constance.py:50 +#: evibes/settings/constance.py:46 msgid "How many days we store messages from anonymous users" msgstr "" -#: evibes/settings/constance.py:51 +#: evibes/settings/constance.py:47 msgid "How many days we store messages from authenticated users" msgstr "" -#: evibes/settings/constance.py:57 +#: evibes/settings/constance.py:53 msgid "General Options" msgstr "" -#: evibes/settings/constance.py:65 +#: evibes/settings/constance.py:62 msgid "Email Options" msgstr "" -#: evibes/settings/constance.py:75 -msgid "Payment Gateway Options" -msgstr "" - -#: evibes/settings/constance.py:82 +#: evibes/settings/constance.py:72 msgid "Features Options" msgstr "" -#: evibes/settings/constance.py:92 +#: evibes/settings/constance.py:82 msgid "SEO Options" msgstr "" -#: evibes/settings/constance.py:96 +#: evibes/settings/constance.py:86 msgid "Debugging Options" msgstr "" +#: evibes/settings/drf.py:50 +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 {\n" +" SIMPLE_JWT.get(\"ACCESS_TOKEN_LIFETIME\").total_seconds() // 60 if not " +"DEBUG else 3600 # type: ignore [union-attr]\n" +"} {\"minutes\" if not DEBUG else \"hours\"}.\n" +"- Refresh token lifetime is {\n" +" SIMPLE_JWT.get(\"REFRESH_TOKEN_LIFETIME\").total_seconds() // 3600 # " +"type: ignore [union-attr]\n" +"} 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 (basic-auth protected): `/prometheus/`\n" +"\n" +"## Version\n" +"Current API version: {EVIBES_VERSION}\n" +msgstr "" + #: evibes/settings/jazzmin.py:20 msgid "Home" msgstr "" @@ -173,13 +222,9 @@ msgid "GraphQL Docs" msgstr "" #: evibes/settings/jazzmin.py:29 -msgid "Platform REST Docs" +msgid "REST Docs" msgstr "" -#: evibes/settings/jazzmin.py:34 -msgid "B2B REST Docs" -msgstr "" - -#: evibes/settings/jazzmin.py:38 +#: evibes/settings/jazzmin.py:33 msgid "Support" msgstr "" diff --git a/evibes/locale/fr_FR/LC_MESSAGES/django.mo b/evibes/locale/fr_FR/LC_MESSAGES/django.mo index 0929ccca..cc8e7e13 100644 Binary files a/evibes/locale/fr_FR/LC_MESSAGES/django.mo and b/evibes/locale/fr_FR/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/fr_FR/LC_MESSAGES/django.po b/evibes/locale/fr_FR/LC_MESSAGES/django.po index c24963d0..33d24196 100644 --- a/evibes/locale/fr_FR/LC_MESSAGES/django.po +++ b/evibes/locale/fr_FR/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -70,97 +70,177 @@ msgid "Mail from option" msgstr "L'adresse de l'expéditeur du courrier électronique" #: evibes/settings/constance.py:36 -msgid "Payment gateway URL" -msgstr "URL de la passerelle de paiement" - -#: evibes/settings/constance.py:37 -msgid "Payment gateway token" -msgstr "Jeton de passerelle de paiement" - -#: evibes/settings/constance.py:38 -msgid "Payment gateway minimum amount" -msgstr "Montant minimum de la passerelle de paiement" - -#: evibes/settings/constance.py:39 -msgid "Payment gateway maximum amount" -msgstr "Montant maximum de la passerelle de paiement" - -#: evibes/settings/constance.py:40 msgid "Exchange rate API key" msgstr "Clé API pour le taux de change" -#: evibes/settings/constance.py:41 +#: evibes/settings/constance.py:37 msgid "OpenStreetMap Nominatim API URL" msgstr "URL de l'API OpenStreetMap Nominatim" -#: evibes/settings/constance.py:42 +#: evibes/settings/constance.py:38 msgid "OpenAI API Key" msgstr "OpenAI API Key" -#: evibes/settings/constance.py:43 +#: evibes/settings/constance.py:39 msgid "Abstract API Key" msgstr "Clé API abstraite" -#: evibes/settings/constance.py:44 +#: evibes/settings/constance.py:40 msgid "HTTP Proxy" msgstr "HTTP Proxy" -#: evibes/settings/constance.py:45 +#: evibes/settings/constance.py:41 msgid "Disable buy functionality" msgstr "Désactiver la fonctionnalité d'achat" -#: evibes/settings/constance.py:46 +#: evibes/settings/constance.py:42 msgid "An entity for storing advertisiment data" msgstr "Une entité pour stocker des données publicitaires" -#: evibes/settings/constance.py:47 +#: evibes/settings/constance.py:43 msgid "An entity for storing analytics data" msgstr "Une entité pour stocker des données analytiques" -#: evibes/settings/constance.py:48 +#: evibes/settings/constance.py:44 msgid "Save responses from vendors' APIs" msgstr "Sauvegarder les réponses des API des fournisseurs" -#: evibes/settings/constance.py:49 +#: evibes/settings/constance.py:45 msgid "Use Telegram-bot functionality" msgstr "Utiliser la fonctionnalité Telegram-bot" -#: evibes/settings/constance.py:50 +#: evibes/settings/constance.py:46 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:51 +#: evibes/settings/constance.py:47 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:57 +#: evibes/settings/constance.py:53 msgid "General Options" msgstr "Options générales" -#: evibes/settings/constance.py:65 +#: evibes/settings/constance.py:62 msgid "Email Options" msgstr "Options de courrier électronique" -#: evibes/settings/constance.py:75 -msgid "Payment Gateway Options" -msgstr "Options de passerelle de paiement" - -#: evibes/settings/constance.py:82 +#: evibes/settings/constance.py:72 msgid "Features Options" msgstr "Caractéristiques Options" -#: evibes/settings/constance.py:92 +#: evibes/settings/constance.py:82 msgid "SEO Options" msgstr "Options de référencement" -#: evibes/settings/constance.py:96 +#: evibes/settings/constance.py:86 msgid "Debugging Options" msgstr "Options de débogage" +#: evibes/settings/drf.py:50 +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 {\n" +" SIMPLE_JWT.get(\"ACCESS_TOKEN_LIFETIME\").total_seconds() // 60 if not DEBUG else 3600 # type: ignore [union-attr]\n" +"} {\"minutes\" if not DEBUG else \"hours\"}.\n" +"- Refresh token lifetime is {\n" +" SIMPLE_JWT.get(\"REFRESH_TOKEN_LIFETIME\").total_seconds() // 3600 # type: ignore [union-attr]\n" +"} 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 (basic-auth protected): `/prometheus/`\n" +"\n" +"## Version\n" +"Current API version: {EVIBES_VERSION}\n" +msgstr "" +"\n" +"Bienvenue dans la documentation d'eVibes.\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" +"\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 plates-formes 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" +"\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" +"- La durée de vie du jeton d'accès est de {\n" +" SIMPLE_JWT.get(\"ACCESS_TOKEN_LIFETIME\").total_seconds() // 60 if not DEBUG else 3600 # type: ignore [union-attr]\n" +"} {\"minutes\" if not DEBUG else \"hours\"}.\n" +"- La durée de vie du jeton de rafraîchissement est de {\n" +" SIMPLE_JWT.get(\"REFRESH_TOKEN_LIFETIME\").total_seconds() // 3600 # type: ignore [union-attr]\n" +"} 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" +"\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" +"\n" +"## Santé et surveillance\n" +"- Contrôles de santé : `/health/`\n" +"- Métriques Prometheus (protégées par l'authentification de base) : `/prometheus/`\n" +"\n" +"## Version\n" +"Version actuelle de l'API : {EVIBES_VERSION}\n" + #: evibes/settings/jazzmin.py:20 msgid "Home" msgstr "Accueil" @@ -174,13 +254,9 @@ msgid "GraphQL Docs" msgstr "Docs GraphQL" #: evibes/settings/jazzmin.py:29 -msgid "Platform REST Docs" -msgstr "Docs REST de la plateforme" +msgid "REST Docs" +msgstr "Docs REST" -#: evibes/settings/jazzmin.py:34 -msgid "B2B REST Docs" -msgstr "B2B REST Docs" - -#: evibes/settings/jazzmin.py:38 +#: evibes/settings/jazzmin.py:33 msgid "Support" msgstr "Soutien" diff --git a/evibes/locale/he_IL/LC_MESSAGES/django.mo b/evibes/locale/he_IL/LC_MESSAGES/django.mo index 7543a797..91e1fc07 100644 Binary files a/evibes/locale/he_IL/LC_MESSAGES/django.mo and b/evibes/locale/he_IL/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/he_IL/LC_MESSAGES/django.po b/evibes/locale/he_IL/LC_MESSAGES/django.po index 3a3adf09..5ce14f9a 100644 --- a/evibes/locale/he_IL/LC_MESSAGES/django.po +++ b/evibes/locale/he_IL/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -70,93 +70,138 @@ msgid "Mail from option" msgstr "כתובת השולח של הודעות הדוא\"ל" #: evibes/settings/constance.py:36 -msgid "Payment gateway URL" -msgstr "כתובת URL של שער התשלומים" - -#: evibes/settings/constance.py:37 -msgid "Payment gateway token" -msgstr "אסימון שער תשלום" - -#: evibes/settings/constance.py:38 -msgid "Payment gateway minimum amount" -msgstr "סכום מינימום לשער תשלום" - -#: evibes/settings/constance.py:39 -msgid "Payment gateway maximum amount" -msgstr "סכום מקסימלי בשער התשלומים" - -#: evibes/settings/constance.py:40 msgid "Exchange rate API key" msgstr "מפתח API לשער החליפין" -#: evibes/settings/constance.py:41 +#: evibes/settings/constance.py:37 msgid "OpenStreetMap Nominatim API URL" msgstr "כתובת ה-API של OpenStreetMap Nominatim" -#: evibes/settings/constance.py:42 +#: evibes/settings/constance.py:38 msgid "OpenAI API Key" msgstr "מפתח API של OpenAI" -#: evibes/settings/constance.py:43 +#: evibes/settings/constance.py:39 msgid "Abstract API Key" msgstr "מפתח API מופשט" -#: evibes/settings/constance.py:44 +#: evibes/settings/constance.py:40 msgid "HTTP Proxy" msgstr "פרוקסי HTTP" -#: evibes/settings/constance.py:45 +#: evibes/settings/constance.py:41 msgid "Disable buy functionality" msgstr "השבת פונקציונליות הרכישה" -#: evibes/settings/constance.py:46 +#: evibes/settings/constance.py:42 msgid "An entity for storing advertisiment data" msgstr "ישות לאחסון נתוני פרסום" -#: evibes/settings/constance.py:47 +#: evibes/settings/constance.py:43 msgid "An entity for storing analytics data" msgstr "ישות לאחסון נתוני ניתוח" -#: evibes/settings/constance.py:48 +#: evibes/settings/constance.py:44 msgid "Save responses from vendors' APIs" msgstr "שמור תגובות מ-API של ספקים" -#: evibes/settings/constance.py:49 +#: evibes/settings/constance.py:45 msgid "Use Telegram-bot functionality" msgstr "השתמש בפונקציונליות של Telegram-bot" -#: evibes/settings/constance.py:50 +#: evibes/settings/constance.py:46 msgid "How many days we store messages from anonymous users" msgstr "כמה ימים אנו שומרים הודעות ממשתמשים אנונימיים" -#: evibes/settings/constance.py:51 +#: evibes/settings/constance.py:47 msgid "How many days we store messages from authenticated users" msgstr "כמה ימים אנו שומרים הודעות ממשתמשים מאומתים" -#: evibes/settings/constance.py:57 +#: evibes/settings/constance.py:53 msgid "General Options" msgstr "אפשרויות כלליות" -#: evibes/settings/constance.py:65 +#: evibes/settings/constance.py:62 msgid "Email Options" msgstr "אפשרויות דוא\"ל" -#: evibes/settings/constance.py:75 -msgid "Payment Gateway Options" -msgstr "אפשרויות שער תשלום" - -#: evibes/settings/constance.py:82 +#: evibes/settings/constance.py:72 msgid "Features Options" msgstr "אפשרויות תכונות" -#: evibes/settings/constance.py:92 +#: evibes/settings/constance.py:82 msgid "SEO Options" msgstr "אפשרויות SEO" -#: evibes/settings/constance.py:96 +#: evibes/settings/constance.py:86 msgid "Debugging Options" msgstr "אפשרויות ניפוי באגים" +#: evibes/settings/drf.py:50 +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 {\n" +" SIMPLE_JWT.get(\"ACCESS_TOKEN_LIFETIME\").total_seconds() // 60 if not DEBUG else 3600 # type: ignore [union-attr]\n" +"} {\"minutes\" if not DEBUG else \"hours\"}.\n" +"- Refresh token lifetime is {\n" +" SIMPLE_JWT.get(\"REFRESH_TOKEN_LIFETIME\").total_seconds() // 3600 # type: ignore [union-attr]\n" +"} 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 (basic-auth protected): `/prometheus/`\n" +"\n" +"## Version\n" +"Current API version: {EVIBES_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" +"- אורך חיי אסימון הגישה הוא {\n" +" SIMPLE_JWT.get(\"ACCESS_TOKEN_LIFETIME\").total_seconds() // 60 if not DEBUG else 3600 # type: ignore [union-attr]\n" +"} {\"minutes\" if not DEBUG else \"hours\"}. - אורך חיי אסימון הרענון הוא {\n" +" SIMPLE_JWT.get(\"REFRESH_TOKEN_LIFETIME\").total_seconds() // 3600 # type: ignore [union-attr]\n" +"} שעות. - אסימוני הרענון מסתובבים באופן אוטומטי ומבוטלים לאחר השימוש לשם אבטחה משופרת. ## בינלאומיות (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/` ## גרסה גרסת ה-API הנוכחית: {EVIBES_VERSION}\n" + #: evibes/settings/jazzmin.py:20 msgid "Home" msgstr "בית" @@ -170,13 +215,9 @@ msgid "GraphQL Docs" msgstr "מסמכי GraphQL" #: evibes/settings/jazzmin.py:29 -msgid "Platform REST Docs" -msgstr "מסמכי REST של הפלטפורמה" +msgid "REST Docs" +msgstr "מסמכי REST" -#: evibes/settings/jazzmin.py:34 -msgid "B2B REST Docs" -msgstr "מסמכי REST B2B" - -#: evibes/settings/jazzmin.py:38 +#: evibes/settings/jazzmin.py:33 msgid "Support" msgstr "תמיכה" diff --git a/evibes/locale/hi_IN/LC_MESSAGES/django.mo b/evibes/locale/hi_IN/LC_MESSAGES/django.mo index 692bae97..7640ce00 100644 Binary files a/evibes/locale/hi_IN/LC_MESSAGES/django.mo and b/evibes/locale/hi_IN/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/hi_IN/LC_MESSAGES/django.po b/evibes/locale/hi_IN/LC_MESSAGES/django.po index badc8147..b7c91c1a 100644 --- a/evibes/locale/hi_IN/LC_MESSAGES/django.po +++ b/evibes/locale/hi_IN/LC_MESSAGES/django.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: EVIBES 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -73,93 +73,142 @@ msgid "Mail from option" msgstr "" #: evibes/settings/constance.py:36 -msgid "Payment gateway URL" -msgstr "" - -#: evibes/settings/constance.py:37 -msgid "Payment gateway token" -msgstr "" - -#: evibes/settings/constance.py:38 -msgid "Payment gateway minimum amount" -msgstr "" - -#: evibes/settings/constance.py:39 -msgid "Payment gateway maximum amount" -msgstr "" - -#: evibes/settings/constance.py:40 msgid "Exchange rate API key" msgstr "" -#: evibes/settings/constance.py:41 +#: evibes/settings/constance.py:37 msgid "OpenStreetMap Nominatim API URL" msgstr "" -#: evibes/settings/constance.py:42 +#: evibes/settings/constance.py:38 msgid "OpenAI API Key" msgstr "" -#: evibes/settings/constance.py:43 +#: evibes/settings/constance.py:39 msgid "Abstract API Key" msgstr "" -#: evibes/settings/constance.py:44 +#: evibes/settings/constance.py:40 msgid "HTTP Proxy" msgstr "" -#: evibes/settings/constance.py:45 +#: evibes/settings/constance.py:41 msgid "Disable buy functionality" msgstr "" -#: evibes/settings/constance.py:46 +#: evibes/settings/constance.py:42 msgid "An entity for storing advertisiment data" msgstr "" -#: evibes/settings/constance.py:47 +#: evibes/settings/constance.py:43 msgid "An entity for storing analytics data" msgstr "" -#: evibes/settings/constance.py:48 +#: evibes/settings/constance.py:44 msgid "Save responses from vendors' APIs" msgstr "" -#: evibes/settings/constance.py:49 +#: evibes/settings/constance.py:45 msgid "Use Telegram-bot functionality" msgstr "" -#: evibes/settings/constance.py:50 +#: evibes/settings/constance.py:46 msgid "How many days we store messages from anonymous users" msgstr "" -#: evibes/settings/constance.py:51 +#: evibes/settings/constance.py:47 msgid "How many days we store messages from authenticated users" msgstr "" -#: evibes/settings/constance.py:57 +#: evibes/settings/constance.py:53 msgid "General Options" msgstr "" -#: evibes/settings/constance.py:65 +#: evibes/settings/constance.py:62 msgid "Email Options" msgstr "" -#: evibes/settings/constance.py:75 -msgid "Payment Gateway Options" -msgstr "" - -#: evibes/settings/constance.py:82 +#: evibes/settings/constance.py:72 msgid "Features Options" msgstr "" -#: evibes/settings/constance.py:92 +#: evibes/settings/constance.py:82 msgid "SEO Options" msgstr "" -#: evibes/settings/constance.py:96 +#: evibes/settings/constance.py:86 msgid "Debugging Options" msgstr "" +#: evibes/settings/drf.py:50 +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 {\n" +" SIMPLE_JWT.get(\"ACCESS_TOKEN_LIFETIME\").total_seconds() // 60 if not " +"DEBUG else 3600 # type: ignore [union-attr]\n" +"} {\"minutes\" if not DEBUG else \"hours\"}.\n" +"- Refresh token lifetime is {\n" +" SIMPLE_JWT.get(\"REFRESH_TOKEN_LIFETIME\").total_seconds() // 3600 # " +"type: ignore [union-attr]\n" +"} 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 (basic-auth protected): `/prometheus/`\n" +"\n" +"## Version\n" +"Current API version: {EVIBES_VERSION}\n" +msgstr "" + #: evibes/settings/jazzmin.py:20 msgid "Home" msgstr "" @@ -173,13 +222,9 @@ msgid "GraphQL Docs" msgstr "" #: evibes/settings/jazzmin.py:29 -msgid "Platform REST Docs" +msgid "REST Docs" msgstr "" -#: evibes/settings/jazzmin.py:34 -msgid "B2B REST Docs" -msgstr "" - -#: evibes/settings/jazzmin.py:38 +#: evibes/settings/jazzmin.py:33 msgid "Support" msgstr "" diff --git a/evibes/locale/hr_HR/LC_MESSAGES/django.po b/evibes/locale/hr_HR/LC_MESSAGES/django.po index 6b2e56eb..f0973067 100644 --- a/evibes/locale/hr_HR/LC_MESSAGES/django.po +++ b/evibes/locale/hr_HR/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -73,93 +73,142 @@ msgid "Mail from option" msgstr "" #: evibes/settings/constance.py:36 -msgid "Payment gateway URL" -msgstr "" - -#: evibes/settings/constance.py:37 -msgid "Payment gateway token" -msgstr "" - -#: evibes/settings/constance.py:38 -msgid "Payment gateway minimum amount" -msgstr "" - -#: evibes/settings/constance.py:39 -msgid "Payment gateway maximum amount" -msgstr "" - -#: evibes/settings/constance.py:40 msgid "Exchange rate API key" msgstr "" -#: evibes/settings/constance.py:41 +#: evibes/settings/constance.py:37 msgid "OpenStreetMap Nominatim API URL" msgstr "" -#: evibes/settings/constance.py:42 +#: evibes/settings/constance.py:38 msgid "OpenAI API Key" msgstr "" -#: evibes/settings/constance.py:43 +#: evibes/settings/constance.py:39 msgid "Abstract API Key" msgstr "" -#: evibes/settings/constance.py:44 +#: evibes/settings/constance.py:40 msgid "HTTP Proxy" msgstr "" -#: evibes/settings/constance.py:45 +#: evibes/settings/constance.py:41 msgid "Disable buy functionality" msgstr "" -#: evibes/settings/constance.py:46 +#: evibes/settings/constance.py:42 msgid "An entity for storing advertisiment data" msgstr "" -#: evibes/settings/constance.py:47 +#: evibes/settings/constance.py:43 msgid "An entity for storing analytics data" msgstr "" -#: evibes/settings/constance.py:48 +#: evibes/settings/constance.py:44 msgid "Save responses from vendors' APIs" msgstr "" -#: evibes/settings/constance.py:49 +#: evibes/settings/constance.py:45 msgid "Use Telegram-bot functionality" msgstr "" -#: evibes/settings/constance.py:50 +#: evibes/settings/constance.py:46 msgid "How many days we store messages from anonymous users" msgstr "" -#: evibes/settings/constance.py:51 +#: evibes/settings/constance.py:47 msgid "How many days we store messages from authenticated users" msgstr "" -#: evibes/settings/constance.py:57 +#: evibes/settings/constance.py:53 msgid "General Options" msgstr "" -#: evibes/settings/constance.py:65 +#: evibes/settings/constance.py:62 msgid "Email Options" msgstr "" -#: evibes/settings/constance.py:75 -msgid "Payment Gateway Options" -msgstr "" - -#: evibes/settings/constance.py:82 +#: evibes/settings/constance.py:72 msgid "Features Options" msgstr "" -#: evibes/settings/constance.py:92 +#: evibes/settings/constance.py:82 msgid "SEO Options" msgstr "" -#: evibes/settings/constance.py:96 +#: evibes/settings/constance.py:86 msgid "Debugging Options" msgstr "" +#: evibes/settings/drf.py:50 +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 {\n" +" SIMPLE_JWT.get(\"ACCESS_TOKEN_LIFETIME\").total_seconds() // 60 if not " +"DEBUG else 3600 # type: ignore [union-attr]\n" +"} {\"minutes\" if not DEBUG else \"hours\"}.\n" +"- Refresh token lifetime is {\n" +" SIMPLE_JWT.get(\"REFRESH_TOKEN_LIFETIME\").total_seconds() // 3600 # " +"type: ignore [union-attr]\n" +"} 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 (basic-auth protected): `/prometheus/`\n" +"\n" +"## Version\n" +"Current API version: {EVIBES_VERSION}\n" +msgstr "" + #: evibes/settings/jazzmin.py:20 msgid "Home" msgstr "" @@ -173,13 +222,9 @@ msgid "GraphQL Docs" msgstr "" #: evibes/settings/jazzmin.py:29 -msgid "Platform REST Docs" +msgid "REST Docs" msgstr "" -#: evibes/settings/jazzmin.py:34 -msgid "B2B REST Docs" -msgstr "" - -#: evibes/settings/jazzmin.py:38 +#: evibes/settings/jazzmin.py:33 msgid "Support" msgstr "" diff --git a/evibes/locale/id_ID/LC_MESSAGES/django.mo b/evibes/locale/id_ID/LC_MESSAGES/django.mo index 8826865c..d3374595 100644 Binary files a/evibes/locale/id_ID/LC_MESSAGES/django.mo and b/evibes/locale/id_ID/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/id_ID/LC_MESSAGES/django.po b/evibes/locale/id_ID/LC_MESSAGES/django.po index 59647d57..13955b99 100644 --- a/evibes/locale/id_ID/LC_MESSAGES/django.po +++ b/evibes/locale/id_ID/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -70,93 +70,173 @@ msgid "Mail from option" msgstr "Alamat pengirim email" #: evibes/settings/constance.py:36 -msgid "Payment gateway URL" -msgstr "URL gateway pembayaran" - -#: evibes/settings/constance.py:37 -msgid "Payment gateway token" -msgstr "Token gateway pembayaran" - -#: evibes/settings/constance.py:38 -msgid "Payment gateway minimum amount" -msgstr "Jumlah minimum gateway pembayaran" - -#: evibes/settings/constance.py:39 -msgid "Payment gateway maximum amount" -msgstr "Jumlah maksimum gateway pembayaran" - -#: evibes/settings/constance.py:40 msgid "Exchange rate API key" msgstr "Kunci API nilai tukar" -#: evibes/settings/constance.py:41 +#: evibes/settings/constance.py:37 msgid "OpenStreetMap Nominatim API URL" msgstr "URL API OpenStreetMap Nominatim" -#: evibes/settings/constance.py:42 +#: evibes/settings/constance.py:38 msgid "OpenAI API Key" msgstr "Kunci API OpenAI" -#: evibes/settings/constance.py:43 +#: evibes/settings/constance.py:39 msgid "Abstract API Key" msgstr "Kunci API Abstrak" -#: evibes/settings/constance.py:44 +#: evibes/settings/constance.py:40 msgid "HTTP Proxy" msgstr "Proksi HTTP" -#: evibes/settings/constance.py:45 +#: evibes/settings/constance.py:41 msgid "Disable buy functionality" msgstr "Menonaktifkan fungsionalitas beli" -#: evibes/settings/constance.py:46 +#: evibes/settings/constance.py:42 msgid "An entity for storing advertisiment data" msgstr "Entitas untuk menyimpan data iklan" -#: evibes/settings/constance.py:47 +#: evibes/settings/constance.py:43 msgid "An entity for storing analytics data" msgstr "Entitas untuk menyimpan data analitik" -#: evibes/settings/constance.py:48 +#: evibes/settings/constance.py:44 msgid "Save responses from vendors' APIs" msgstr "Menyimpan tanggapan dari API vendor" -#: evibes/settings/constance.py:49 +#: evibes/settings/constance.py:45 msgid "Use Telegram-bot functionality" msgstr "Menggunakan fungsionalitas Telegram-bot" -#: evibes/settings/constance.py:50 +#: evibes/settings/constance.py:46 msgid "How many days we store messages from anonymous users" msgstr "Berapa hari kami menyimpan pesan dari pengguna anonim" -#: evibes/settings/constance.py:51 +#: evibes/settings/constance.py:47 msgid "How many days we store messages from authenticated users" msgstr "Berapa hari kami menyimpan pesan dari pengguna yang diautentikasi" -#: evibes/settings/constance.py:57 +#: evibes/settings/constance.py:53 msgid "General Options" msgstr "Opsi Umum" -#: evibes/settings/constance.py:65 +#: evibes/settings/constance.py:62 msgid "Email Options" msgstr "Opsi Email" -#: evibes/settings/constance.py:75 -msgid "Payment Gateway Options" -msgstr "Opsi Gerbang Pembayaran" - -#: evibes/settings/constance.py:82 +#: evibes/settings/constance.py:72 msgid "Features Options" msgstr "Opsi Fitur" -#: evibes/settings/constance.py:92 +#: evibes/settings/constance.py:82 msgid "SEO Options" msgstr "Opsi SEO" -#: evibes/settings/constance.py:96 +#: evibes/settings/constance.py:86 msgid "Debugging Options" msgstr "Opsi Debugging" +#: evibes/settings/drf.py:50 +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 {\n" +" SIMPLE_JWT.get(\"ACCESS_TOKEN_LIFETIME\").total_seconds() // 60 if not DEBUG else 3600 # type: ignore [union-attr]\n" +"} {\"minutes\" if not DEBUG else \"hours\"}.\n" +"- Refresh token lifetime is {\n" +" SIMPLE_JWT.get(\"REFRESH_TOKEN_LIFETIME\").total_seconds() // 3600 # type: ignore [union-attr]\n" +"} 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 (basic-auth protected): `/prometheus/`\n" +"\n" +"## Version\n" +"Current API version: {EVIBES_VERSION}\n" +msgstr "" +"\n" +"Selamat datang di dokumentasi eVibes.\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" +"\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" +"\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" +"\n" +"## Otentikasi\n" +"- Otentikasi ditangani melalui token JWT. Sertakan token di header `X-EVIBES-AUTH` pada permintaan Anda dalam format `Bearer `.\n" +"- Masa berlaku token akses adalah {\n" +" SIMPLE_JWT.get(\"ACCESS_TOKEN_LIFETIME\").total_seconds() // 60 if not DEBUG else 3600 # type: ignore [union-attr]\n" +"} {\"minutes\" if not DEBUG else \"hours\"}.\n" +"- Masa berlaku token refresh adalah {\n" +" SIMPLE_JWT.get(\"REFRESH_TOKEN_LIFETIME\").total_seconds() // 3600 # type: ignore [union-attr]\n" +"} jam.\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" +"- Bahasa yang tersedia dapat diambil dari titik akhir `/app/languages/`.\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" +"\n" +"## Kesehatan & Pemantauan\n" +"- Pemeriksaan kesehatan: `/health/`\n" +"- Metrik Prometheus (dilindungi oleh autentikasi dasar): `/prometheus/`\n" +"\n" +"## Versi\n" +"Versi API saat ini: {EVIBES_VERSION}\n" + #: evibes/settings/jazzmin.py:20 msgid "Home" msgstr "Beranda" @@ -170,13 +250,9 @@ msgid "GraphQL Docs" msgstr "Dokumen GraphQL" #: evibes/settings/jazzmin.py:29 -msgid "Platform REST Docs" -msgstr "Dokumen SISA Platform" +msgid "REST Docs" +msgstr "Dokumen REST" -#: evibes/settings/jazzmin.py:34 -msgid "B2B REST Docs" -msgstr "Dokumen SISA B2B" - -#: evibes/settings/jazzmin.py:38 +#: evibes/settings/jazzmin.py:33 msgid "Support" msgstr "Dukungan" diff --git a/evibes/locale/it_IT/LC_MESSAGES/django.mo b/evibes/locale/it_IT/LC_MESSAGES/django.mo index fd1353cd..b7d58a61 100644 Binary files a/evibes/locale/it_IT/LC_MESSAGES/django.mo and b/evibes/locale/it_IT/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/it_IT/LC_MESSAGES/django.po b/evibes/locale/it_IT/LC_MESSAGES/django.po index c8823a74..371efa8d 100644 --- a/evibes/locale/it_IT/LC_MESSAGES/django.po +++ b/evibes/locale/it_IT/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -70,93 +70,173 @@ msgid "Mail from option" msgstr "L'indirizzo del mittente dell'e-mail" #: evibes/settings/constance.py:36 -msgid "Payment gateway URL" -msgstr "URL del gateway di pagamento" - -#: evibes/settings/constance.py:37 -msgid "Payment gateway token" -msgstr "Token del gateway di pagamento" - -#: evibes/settings/constance.py:38 -msgid "Payment gateway minimum amount" -msgstr "Importo minimo del gateway di pagamento" - -#: evibes/settings/constance.py:39 -msgid "Payment gateway maximum amount" -msgstr "Importo massimo del gateway di pagamento" - -#: evibes/settings/constance.py:40 msgid "Exchange rate API key" msgstr "Chiave API del tasso di cambio" -#: evibes/settings/constance.py:41 +#: evibes/settings/constance.py:37 msgid "OpenStreetMap Nominatim API URL" msgstr "URL dell'API OpenStreetMap Nominatim" -#: evibes/settings/constance.py:42 +#: evibes/settings/constance.py:38 msgid "OpenAI API Key" msgstr "Chiave API OpenAI" -#: evibes/settings/constance.py:43 +#: evibes/settings/constance.py:39 msgid "Abstract API Key" msgstr "Chiave API astratta" -#: evibes/settings/constance.py:44 +#: evibes/settings/constance.py:40 msgid "HTTP Proxy" msgstr "Proxy HTTP" -#: evibes/settings/constance.py:45 +#: evibes/settings/constance.py:41 msgid "Disable buy functionality" msgstr "Disattivare la funzionalità di acquisto" -#: evibes/settings/constance.py:46 +#: evibes/settings/constance.py:42 msgid "An entity for storing advertisiment data" msgstr "Un'entità per la memorizzazione dei dati pubblicitari" -#: evibes/settings/constance.py:47 +#: evibes/settings/constance.py:43 msgid "An entity for storing analytics data" msgstr "Un'entità per la memorizzazione dei dati analitici" -#: evibes/settings/constance.py:48 +#: evibes/settings/constance.py:44 msgid "Save responses from vendors' APIs" msgstr "Salvare le risposte dalle API dei fornitori" -#: evibes/settings/constance.py:49 +#: evibes/settings/constance.py:45 msgid "Use Telegram-bot functionality" msgstr "Utilizzare la funzionalità di Telegram-bot" -#: evibes/settings/constance.py:50 +#: evibes/settings/constance.py:46 msgid "How many days we store messages from anonymous users" msgstr "Per quanti giorni conserviamo i messaggi degli utenti anonimi" -#: evibes/settings/constance.py:51 +#: evibes/settings/constance.py:47 msgid "How many days we store messages from authenticated users" msgstr "Per quanti giorni conserviamo i messaggi degli utenti autenticati" -#: evibes/settings/constance.py:57 +#: evibes/settings/constance.py:53 msgid "General Options" msgstr "Opzioni generali" -#: evibes/settings/constance.py:65 +#: evibes/settings/constance.py:62 msgid "Email Options" msgstr "Opzioni e-mail" -#: evibes/settings/constance.py:75 -msgid "Payment Gateway Options" -msgstr "Opzioni di gateway di pagamento" - -#: evibes/settings/constance.py:82 +#: evibes/settings/constance.py:72 msgid "Features Options" msgstr "Caratteristiche Opzioni" -#: evibes/settings/constance.py:92 +#: evibes/settings/constance.py:82 msgid "SEO Options" msgstr "Opzioni SEO" -#: evibes/settings/constance.py:96 +#: evibes/settings/constance.py:86 msgid "Debugging Options" msgstr "Opzioni di debug" +#: evibes/settings/drf.py:50 +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 {\n" +" SIMPLE_JWT.get(\"ACCESS_TOKEN_LIFETIME\").total_seconds() // 60 if not DEBUG else 3600 # type: ignore [union-attr]\n" +"} {\"minutes\" if not DEBUG else \"hours\"}.\n" +"- Refresh token lifetime is {\n" +" SIMPLE_JWT.get(\"REFRESH_TOKEN_LIFETIME\").total_seconds() // 3600 # type: ignore [union-attr]\n" +"} 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 (basic-auth protected): `/prometheus/`\n" +"\n" +"## Version\n" +"Current API version: {EVIBES_VERSION}\n" +msgstr "" +"\n" +"Benvenuti nella documentazione di eVibes.\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" +"\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" +"\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" +"\n" +"## Autenticazione\n" +"- L'autenticazione è gestita tramite token JWT. Includere il token nell'intestazione `X-EVIBES-AUTH` delle richieste nel formato `Bearer `.\n" +"- La durata di vita del token di accesso è {\n" +" SIMPLE_JWT.get(\"ACCESS_TOKEN_LIFETIME\").total_seconds() // 60 if not DEBUG else 3600 # type: ignore [union-attr]\n" +"} {\"minutes\" if not DEBUG else \"hours\"}.\n" +"- La durata del token di aggiornamento è di {\n" +" SIMPLE_JWT.get(\"REFRESH_TOKEN_LIFETIME\").total_seconds() // 3600 # type: ignore [union-attr]\n" +"} ore.\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" +"\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" +"\n" +"## Salute e monitoraggio\n" +"- Controlli sulla salute: `/salute/`\n" +"- Metriche Prometheus (protetto da basic-auth): `/prometheus/`\n" +"\n" +"## Versione\n" +"Versione attuale dell'API: {EVIBES_VERSION}\n" + #: evibes/settings/jazzmin.py:20 msgid "Home" msgstr "Casa" @@ -170,13 +250,9 @@ msgid "GraphQL Docs" msgstr "Documenti GraphQL" #: evibes/settings/jazzmin.py:29 -msgid "Platform REST Docs" -msgstr "Documenti della piattaforma REST" +msgid "REST Docs" +msgstr "Documenti REST" -#: evibes/settings/jazzmin.py:34 -msgid "B2B REST Docs" -msgstr "Documenti REST B2B" - -#: evibes/settings/jazzmin.py:38 +#: evibes/settings/jazzmin.py:33 msgid "Support" msgstr "Supporto" diff --git a/evibes/locale/ja_JP/LC_MESSAGES/django.mo b/evibes/locale/ja_JP/LC_MESSAGES/django.mo index 0a4db392..7c422459 100644 Binary files a/evibes/locale/ja_JP/LC_MESSAGES/django.mo and b/evibes/locale/ja_JP/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/ja_JP/LC_MESSAGES/django.po b/evibes/locale/ja_JP/LC_MESSAGES/django.po index 06a6265b..f26d2e3a 100644 --- a/evibes/locale/ja_JP/LC_MESSAGES/django.po +++ b/evibes/locale/ja_JP/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -70,93 +70,173 @@ msgid "Mail from option" msgstr "メール送信者のアドレス" #: evibes/settings/constance.py:36 -msgid "Payment gateway URL" -msgstr "決済ゲートウェイURL" - -#: evibes/settings/constance.py:37 -msgid "Payment gateway token" -msgstr "ペイメントゲートウェイ・トークン" - -#: evibes/settings/constance.py:38 -msgid "Payment gateway minimum amount" -msgstr "ペイメントゲートウェイの最低金額" - -#: evibes/settings/constance.py:39 -msgid "Payment gateway maximum amount" -msgstr "支払ゲートウェイ上限額" - -#: evibes/settings/constance.py:40 msgid "Exchange rate API key" msgstr "為替レートAPIキー" -#: evibes/settings/constance.py:41 +#: evibes/settings/constance.py:37 msgid "OpenStreetMap Nominatim API URL" msgstr "OpenStreetMap Nominatim API URL" -#: evibes/settings/constance.py:42 +#: evibes/settings/constance.py:38 msgid "OpenAI API Key" msgstr "OpenAI APIキー" -#: evibes/settings/constance.py:43 +#: evibes/settings/constance.py:39 msgid "Abstract API Key" msgstr "抽象APIキー" -#: evibes/settings/constance.py:44 +#: evibes/settings/constance.py:40 msgid "HTTP Proxy" msgstr "HTTPプロキシ" -#: evibes/settings/constance.py:45 +#: evibes/settings/constance.py:41 msgid "Disable buy functionality" msgstr "購入機能を無効にする" -#: evibes/settings/constance.py:46 +#: evibes/settings/constance.py:42 msgid "An entity for storing advertisiment data" msgstr "広告データを保存するエンティティ" -#: evibes/settings/constance.py:47 +#: evibes/settings/constance.py:43 msgid "An entity for storing analytics data" msgstr "分析データを保存するエンティティ" -#: evibes/settings/constance.py:48 +#: evibes/settings/constance.py:44 msgid "Save responses from vendors' APIs" msgstr "ベンダーのAPIからの応答を保存する" -#: evibes/settings/constance.py:49 +#: evibes/settings/constance.py:45 msgid "Use Telegram-bot functionality" msgstr "テレグラムボットの機能を使う" -#: evibes/settings/constance.py:50 +#: evibes/settings/constance.py:46 msgid "How many days we store messages from anonymous users" msgstr "匿名ユーザーからのメッセージの保存日数" -#: evibes/settings/constance.py:51 +#: evibes/settings/constance.py:47 msgid "How many days we store messages from authenticated users" msgstr "認証されたユーザーからのメッセージを何日間保存するか" -#: evibes/settings/constance.py:57 +#: evibes/settings/constance.py:53 msgid "General Options" msgstr "一般オプション" -#: evibes/settings/constance.py:65 +#: evibes/settings/constance.py:62 msgid "Email Options" msgstr "Eメールオプション" -#: evibes/settings/constance.py:75 -msgid "Payment Gateway Options" -msgstr "ペイメントゲートウェイオプション" - -#: evibes/settings/constance.py:82 +#: evibes/settings/constance.py:72 msgid "Features Options" msgstr "機能オプション" -#: evibes/settings/constance.py:92 +#: evibes/settings/constance.py:82 msgid "SEO Options" msgstr "SEOオプション" -#: evibes/settings/constance.py:96 +#: evibes/settings/constance.py:86 msgid "Debugging Options" msgstr "デバッグ・オプション" +#: evibes/settings/drf.py:50 +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 {\n" +" SIMPLE_JWT.get(\"ACCESS_TOKEN_LIFETIME\").total_seconds() // 60 if not DEBUG else 3600 # type: ignore [union-attr]\n" +"} {\"minutes\" if not DEBUG else \"hours\"}.\n" +"- Refresh token lifetime is {\n" +" SIMPLE_JWT.get(\"REFRESH_TOKEN_LIFETIME\").total_seconds() // 3600 # type: ignore [union-attr]\n" +"} 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 (basic-auth protected): `/prometheus/`\n" +"\n" +"## Version\n" +"Current API version: {EVIBES_VERSION}\n" +msgstr "" +"\n" +"eVibes のドキュメントへようこそ。\n" +"\n" +"eVibesは、数クリックであらゆる種類のオンラインストアを立ち上げ、管理できる強力なeコマースプラットフォームです。\n" +"\n" +"## 主な機能\n" +"- 商品カタログ:** 複数のカテゴリにまたがる商品の詳細、価格、在庫、在庫状況を管理します。\n" +"- 注文管理:**注文を処理し、履行を追跡し、顧客の要求を効率的に処理します。\n" +"- JWT トークンとロールベースの権限による包括的なユーザー認証。\n" +"- 複数の決済ゲートウェイを統合し、トランザクションを安全に管理します。\n" +"- ブログ・コンテンツ管理:** ブログ記事やマーケティングコンテンツを作成・管理できます。\n" +"- B2B オペレーション:** 企業間取引と卸売管理のための専用エンドポイント。\n" +"- **多言語サポート:**完全な国際化(国際化)機能で世界中の顧客にサービスを提供します。\n" +"- カスタム統合:**外部プラットフォームやサービスと統合するための拡張可能なAPIアーキテクチャ。\n" +"- 分析&レポート:**売上、在庫、顧客行動に関する詳細なレポートを生成します。\n" +"- リアルタイム更新:**在庫レベル、注文状況、価格変更に関するライブデータを取得します。\n" +"\n" +"## 利用可能なAPI\n" +"- **REST API:** 完全なRESTfulインターフェース(このドキュメント)\n" +"- **GraphQL API:** `/graphql/` で利用可能で、対話的なクエリのための GraphiQL インターフェースがある。\n" +"\n" +"## 認証\n" +"- 認証はJWTトークンで行われる。リクエストの `X-EVIBES-AUTH` ヘッダーに `Bearer ` という形式でトークンを含めてください。\n" +"- アクセストークンの有効期限は {\n" +" SIMPLE_JWT.get(\"ACCESS_TOKEN_LIFETIME\").total_seconds() // 60 if not DEBUG else 3600 # type: ignore [union-attr]\n" +"} {\"minutes\" if not DEBUG else \"hours\"}。\n" +"- リフレッシュ・トークンの有効期限は {\n" +" SIMPLE_JWT.get(\"REFRESH_TOKEN_LIFETIME\").total_seconds() // 3600 # type: ignore [union-attr]\n" +"} 時間です。\n" +"- リフレッシュ・トークンはセキュリティ強化のため、使用後に自動的にローテーションされ無効化されます。\n" +"\n" +"## 国際化 (i18n)\n" +"- Accept-Language`ヘッダを設定して、希望する言語を指定する (例: `Accept-Language: en-US`) 。\n" +"- 利用可能な言語は `/app/languages/` エンドポイントから取得できます。\n" +"- すべてのユーザー向けコンテンツは、すぐに多言語をサポートします。\n" +"\n" +"## レスポンスフォーマット\n" +"APIは複数のレスポンスフォーマットをサポートしています:\n" +"- JSON** (デフォルト、キャメルケースフォーマット)\n" +"- XML** (`?format=xml` を追加するか、`Accept: application/xml` を設定する)\n" +"- YAML** (`?format=yaml` を追加するか、`Accept: application/x-yaml` を設定してください)\n" +"\n" +"## ヘルス&モニタリング\n" +"- ヘルスチェックヘルスチェック: `/health/`\n" +"- Prometheus メトリクス(Basic-Auth で保護されている):/prometheus/`\n" +"\n" +"## バージョン\n" +"現在のAPIバージョン:現在のAPIバージョン: {EVIBES_VERSION}\n" + #: evibes/settings/jazzmin.py:20 msgid "Home" msgstr "ホーム" @@ -170,13 +250,9 @@ msgid "GraphQL Docs" msgstr "GraphQLドキュメント" #: evibes/settings/jazzmin.py:29 -msgid "Platform REST Docs" -msgstr "プラットフォームRESTドキュメント" +msgid "REST Docs" +msgstr "RESTドキュメント" -#: evibes/settings/jazzmin.py:34 -msgid "B2B REST Docs" -msgstr "B2B REST ドキュメント" - -#: evibes/settings/jazzmin.py:38 +#: evibes/settings/jazzmin.py:33 msgid "Support" msgstr "サポート" diff --git a/evibes/locale/kk_KZ/LC_MESSAGES/django.mo b/evibes/locale/kk_KZ/LC_MESSAGES/django.mo index 692bae97..7640ce00 100644 Binary files a/evibes/locale/kk_KZ/LC_MESSAGES/django.mo and b/evibes/locale/kk_KZ/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/kk_KZ/LC_MESSAGES/django.po b/evibes/locale/kk_KZ/LC_MESSAGES/django.po index badc8147..b7c91c1a 100644 --- a/evibes/locale/kk_KZ/LC_MESSAGES/django.po +++ b/evibes/locale/kk_KZ/LC_MESSAGES/django.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: EVIBES 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -73,93 +73,142 @@ msgid "Mail from option" msgstr "" #: evibes/settings/constance.py:36 -msgid "Payment gateway URL" -msgstr "" - -#: evibes/settings/constance.py:37 -msgid "Payment gateway token" -msgstr "" - -#: evibes/settings/constance.py:38 -msgid "Payment gateway minimum amount" -msgstr "" - -#: evibes/settings/constance.py:39 -msgid "Payment gateway maximum amount" -msgstr "" - -#: evibes/settings/constance.py:40 msgid "Exchange rate API key" msgstr "" -#: evibes/settings/constance.py:41 +#: evibes/settings/constance.py:37 msgid "OpenStreetMap Nominatim API URL" msgstr "" -#: evibes/settings/constance.py:42 +#: evibes/settings/constance.py:38 msgid "OpenAI API Key" msgstr "" -#: evibes/settings/constance.py:43 +#: evibes/settings/constance.py:39 msgid "Abstract API Key" msgstr "" -#: evibes/settings/constance.py:44 +#: evibes/settings/constance.py:40 msgid "HTTP Proxy" msgstr "" -#: evibes/settings/constance.py:45 +#: evibes/settings/constance.py:41 msgid "Disable buy functionality" msgstr "" -#: evibes/settings/constance.py:46 +#: evibes/settings/constance.py:42 msgid "An entity for storing advertisiment data" msgstr "" -#: evibes/settings/constance.py:47 +#: evibes/settings/constance.py:43 msgid "An entity for storing analytics data" msgstr "" -#: evibes/settings/constance.py:48 +#: evibes/settings/constance.py:44 msgid "Save responses from vendors' APIs" msgstr "" -#: evibes/settings/constance.py:49 +#: evibes/settings/constance.py:45 msgid "Use Telegram-bot functionality" msgstr "" -#: evibes/settings/constance.py:50 +#: evibes/settings/constance.py:46 msgid "How many days we store messages from anonymous users" msgstr "" -#: evibes/settings/constance.py:51 +#: evibes/settings/constance.py:47 msgid "How many days we store messages from authenticated users" msgstr "" -#: evibes/settings/constance.py:57 +#: evibes/settings/constance.py:53 msgid "General Options" msgstr "" -#: evibes/settings/constance.py:65 +#: evibes/settings/constance.py:62 msgid "Email Options" msgstr "" -#: evibes/settings/constance.py:75 -msgid "Payment Gateway Options" -msgstr "" - -#: evibes/settings/constance.py:82 +#: evibes/settings/constance.py:72 msgid "Features Options" msgstr "" -#: evibes/settings/constance.py:92 +#: evibes/settings/constance.py:82 msgid "SEO Options" msgstr "" -#: evibes/settings/constance.py:96 +#: evibes/settings/constance.py:86 msgid "Debugging Options" msgstr "" +#: evibes/settings/drf.py:50 +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 {\n" +" SIMPLE_JWT.get(\"ACCESS_TOKEN_LIFETIME\").total_seconds() // 60 if not " +"DEBUG else 3600 # type: ignore [union-attr]\n" +"} {\"minutes\" if not DEBUG else \"hours\"}.\n" +"- Refresh token lifetime is {\n" +" SIMPLE_JWT.get(\"REFRESH_TOKEN_LIFETIME\").total_seconds() // 3600 # " +"type: ignore [union-attr]\n" +"} 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 (basic-auth protected): `/prometheus/`\n" +"\n" +"## Version\n" +"Current API version: {EVIBES_VERSION}\n" +msgstr "" + #: evibes/settings/jazzmin.py:20 msgid "Home" msgstr "" @@ -173,13 +222,9 @@ msgid "GraphQL Docs" msgstr "" #: evibes/settings/jazzmin.py:29 -msgid "Platform REST Docs" +msgid "REST Docs" msgstr "" -#: evibes/settings/jazzmin.py:34 -msgid "B2B REST Docs" -msgstr "" - -#: evibes/settings/jazzmin.py:38 +#: evibes/settings/jazzmin.py:33 msgid "Support" msgstr "" diff --git a/evibes/locale/ko_KR/LC_MESSAGES/django.mo b/evibes/locale/ko_KR/LC_MESSAGES/django.mo index e0510015..979bceae 100644 Binary files a/evibes/locale/ko_KR/LC_MESSAGES/django.mo and b/evibes/locale/ko_KR/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/ko_KR/LC_MESSAGES/django.po b/evibes/locale/ko_KR/LC_MESSAGES/django.po index 9f79f0cb..0ddc05e5 100644 --- a/evibes/locale/ko_KR/LC_MESSAGES/django.po +++ b/evibes/locale/ko_KR/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -70,93 +70,173 @@ msgid "Mail from option" msgstr "이메일 발신자의 주소" #: evibes/settings/constance.py:36 -msgid "Payment gateway URL" -msgstr "결제 게이트웨이 URL" - -#: evibes/settings/constance.py:37 -msgid "Payment gateway token" -msgstr "결제 게이트웨이 토큰" - -#: evibes/settings/constance.py:38 -msgid "Payment gateway minimum amount" -msgstr "결제 대행사 최소 금액" - -#: evibes/settings/constance.py:39 -msgid "Payment gateway maximum amount" -msgstr "전자결제 대행사 최대 금액" - -#: evibes/settings/constance.py:40 msgid "Exchange rate API key" msgstr "환율 API 키" -#: evibes/settings/constance.py:41 +#: evibes/settings/constance.py:37 msgid "OpenStreetMap Nominatim API URL" msgstr "오픈스트리트맵 노미나팀 API URL" -#: evibes/settings/constance.py:42 +#: evibes/settings/constance.py:38 msgid "OpenAI API Key" msgstr "OpenAI API 키" -#: evibes/settings/constance.py:43 +#: evibes/settings/constance.py:39 msgid "Abstract API Key" msgstr "추상 API 키" -#: evibes/settings/constance.py:44 +#: evibes/settings/constance.py:40 msgid "HTTP Proxy" msgstr "HTTP 프록시" -#: evibes/settings/constance.py:45 +#: evibes/settings/constance.py:41 msgid "Disable buy functionality" msgstr "구매 기능 비활성화" -#: evibes/settings/constance.py:46 +#: evibes/settings/constance.py:42 msgid "An entity for storing advertisiment data" msgstr "광고 데이터를 저장하는 엔티티" -#: evibes/settings/constance.py:47 +#: evibes/settings/constance.py:43 msgid "An entity for storing analytics data" msgstr "분석 데이터를 저장하는 엔티티" -#: evibes/settings/constance.py:48 +#: evibes/settings/constance.py:44 msgid "Save responses from vendors' APIs" msgstr "공급업체 API의 응답 저장하기" -#: evibes/settings/constance.py:49 +#: evibes/settings/constance.py:45 msgid "Use Telegram-bot functionality" msgstr "텔레그램 봇 기능 사용" -#: evibes/settings/constance.py:50 +#: evibes/settings/constance.py:46 msgid "How many days we store messages from anonymous users" msgstr "익명 사용자의 메시지를 보관하는 일수" -#: evibes/settings/constance.py:51 +#: evibes/settings/constance.py:47 msgid "How many days we store messages from authenticated users" msgstr "인증된 사용자의 메시지를 보관하는 일수" -#: evibes/settings/constance.py:57 +#: evibes/settings/constance.py:53 msgid "General Options" msgstr "일반 옵션" -#: evibes/settings/constance.py:65 +#: evibes/settings/constance.py:62 msgid "Email Options" msgstr "이메일 옵션" -#: evibes/settings/constance.py:75 -msgid "Payment Gateway Options" -msgstr "결제 게이트웨이 옵션" - -#: evibes/settings/constance.py:82 +#: evibes/settings/constance.py:72 msgid "Features Options" msgstr "기능 옵션" -#: evibes/settings/constance.py:92 +#: evibes/settings/constance.py:82 msgid "SEO Options" msgstr "SEO 옵션" -#: evibes/settings/constance.py:96 +#: evibes/settings/constance.py:86 msgid "Debugging Options" msgstr "디버깅 옵션" +#: evibes/settings/drf.py:50 +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 {\n" +" SIMPLE_JWT.get(\"ACCESS_TOKEN_LIFETIME\").total_seconds() // 60 if not DEBUG else 3600 # type: ignore [union-attr]\n" +"} {\"minutes\" if not DEBUG else \"hours\"}.\n" +"- Refresh token lifetime is {\n" +" SIMPLE_JWT.get(\"REFRESH_TOKEN_LIFETIME\").total_seconds() // 3600 # type: ignore [union-attr]\n" +"} 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 (basic-auth protected): `/prometheus/`\n" +"\n" +"## Version\n" +"Current API version: {EVIBES_VERSION}\n" +msgstr "" +"\n" +"eVibes 문서에 오신 것을 환영합니다.\n" +"\n" +"eVibes는 클릭 몇 번으로 모든 종류의 온라인 스토어를 시작하고 관리할 수 있는 강력한 전자상거래 플랫폼입니다.\n" +"\n" +"주요 기능 ## 주요 기능\n" +"- **제품 카탈로그:** 여러 카테고리에서 제품 세부 정보, 가격, 재고 및 가용성을 관리합니다.\n" +"- 주문 관리:** 주문을 처리하고, 주문 이행을 추적하고, 고객 요청을 효율적으로 처리하세요.\n" +"- 인증 및 권한 부여:** JWT 토큰 및 역할 기반 권한으로 포괄적인 사용자 인증을 수행합니다.\n" +"- 결제 처리:** 여러 결제 게이트웨이를 통합하고 거래를 안전하게 관리하세요.\n" +"- **블로그 및 콘텐츠 관리:** 스토어용 블로그 게시물과 마케팅 콘텐츠를 생성하고 관리합니다.\n" +"- B2B 운영:** B2B 거래 및 도매 관리를 위한 전용 엔드포인트.\n" +"- 다국어 지원:** 완전한 국제화(i18n) 기능으로 전 세계 고객에게 서비스를 제공합니다.\n" +"- **맞춤형 통합:** 외부 플랫폼 및 서비스와의 통합을 위한 확장 가능한 API 아키텍처.\n" +"- **분석 및 보고:** 판매, 재고, 고객 행동에 대한 상세한 보고서를 생성합니다.\n" +"- 실시간 업데이트:** 재고 수준, 주문 상태, 가격 변동에 대한 실시간 데이터를 확인할 수 있습니다.\n" +"\n" +"## 사용 가능한 API\n" +"- **REST API:** 전체 RESTful 인터페이스(이 문서)\n" +"- GraphQL API:** 대화형 쿼리를 위한 GraphiQL 인터페이스로 `/graphql/`에서 사용 가능\n" +"\n" +"## 인증\n" +"- 인증은 JWT 토큰을 통해 처리됩니다. 토큰을 요청의 `X-EVIBES-AUTH` 헤더에 `Bearer ` 형식으로 포함하세요.\n" +"- 액세스 토큰 수명은 {\n" +" SIMPLE_JWT.get(\"ACCESS_TOKEN_LIFETIME\").total_seconds() // 60 if not DEBUG else 3600 # type: ignore [union-attr]\n" +"}입니다. {\"minutes\" if not DEBUG else \"hours\"}입니다.\n" +"- 새로 고침 토큰 수명은 {\n" +" SIMPLE_JWT.get(\"REFRESH_TOKEN_LIFETIME\").total_seconds() // 3600 # type: ignore [union-attr]\n" +"} 시간입니다.\n" +"- 새로 고침 토큰은 보안 강화를 위해 사용 후 자동으로 교체되고 무효화됩니다.\n" +"\n" +"## 국제화(i18n)\n" +"- 수락 언어` 헤더를 설정하여 선호하는 언어를 지정합니다(예: `수락 언어: en-US`).\n" +"- 사용 가능한 언어는 `/app/languages/` 엔드포인트에서 검색할 수 있습니다.\n" +"- 모든 사용자 대상 콘텐츠는 기본적으로 여러 언어를 지원합니다.\n" +"\n" +"## 응답 형식\n" +"API는 여러 응답 형식을 지원합니다:\n" +"- JSON**(기본값, 카멜케이스 형식)\n" +"- XML** (`?format=xml` 추가 또는 `수락: application/xml` 설정)\n" +"- YAML** (`?format=yaml` 추가 또는 `수락: application/x-yaml` 설정)\n" +"\n" +"## 상태 및 모니터링\n" +"- 상태 확인: `/health/`\n" +"- 프로메테우스 메트릭(기본 인증 보호): `/prometheus/`\n" +"\n" +"## 버전\n" +"현재 API 버전입니다: {EVIBES_VERSION}\n" + #: evibes/settings/jazzmin.py:20 msgid "Home" msgstr "홈" @@ -170,13 +250,9 @@ msgid "GraphQL Docs" msgstr "GraphQL 문서" #: evibes/settings/jazzmin.py:29 -msgid "Platform REST Docs" -msgstr "플랫폼 REST 문서" +msgid "REST Docs" +msgstr "REST 문서" -#: evibes/settings/jazzmin.py:34 -msgid "B2B REST Docs" -msgstr "B2B REST 문서" - -#: evibes/settings/jazzmin.py:38 +#: evibes/settings/jazzmin.py:33 msgid "Support" msgstr "지원" diff --git a/evibes/locale/nl_NL/LC_MESSAGES/django.mo b/evibes/locale/nl_NL/LC_MESSAGES/django.mo index 84a06cc1..14cf8c30 100644 Binary files a/evibes/locale/nl_NL/LC_MESSAGES/django.mo and b/evibes/locale/nl_NL/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/nl_NL/LC_MESSAGES/django.po b/evibes/locale/nl_NL/LC_MESSAGES/django.po index e7b8edc6..1f63f3ec 100644 --- a/evibes/locale/nl_NL/LC_MESSAGES/django.po +++ b/evibes/locale/nl_NL/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -70,93 +70,173 @@ msgid "Mail from option" msgstr "Het adres van de afzender van de e-mail" #: evibes/settings/constance.py:36 -msgid "Payment gateway URL" -msgstr "URL betalingsgateway" - -#: evibes/settings/constance.py:37 -msgid "Payment gateway token" -msgstr "Betaal gateway token" - -#: evibes/settings/constance.py:38 -msgid "Payment gateway minimum amount" -msgstr "Minimumbedrag betalingsgateway" - -#: evibes/settings/constance.py:39 -msgid "Payment gateway maximum amount" -msgstr "Maximumbedrag betalingsgateway" - -#: evibes/settings/constance.py:40 msgid "Exchange rate API key" msgstr "Wisselkoers API sleutel" -#: evibes/settings/constance.py:41 +#: evibes/settings/constance.py:37 msgid "OpenStreetMap Nominatim API URL" msgstr "OpenStreetMap Nominatim API URL" -#: evibes/settings/constance.py:42 +#: evibes/settings/constance.py:38 msgid "OpenAI API Key" msgstr "OpenAI API sleutel" -#: evibes/settings/constance.py:43 +#: evibes/settings/constance.py:39 msgid "Abstract API Key" msgstr "Abstracte API-sleutel" -#: evibes/settings/constance.py:44 +#: evibes/settings/constance.py:40 msgid "HTTP Proxy" msgstr "HTTP-proxy" -#: evibes/settings/constance.py:45 +#: evibes/settings/constance.py:41 msgid "Disable buy functionality" msgstr "Koopfunctie uitschakelen" -#: evibes/settings/constance.py:46 +#: evibes/settings/constance.py:42 msgid "An entity for storing advertisiment data" msgstr "Een entiteit voor het opslaan van adverteerdersgegevens" -#: evibes/settings/constance.py:47 +#: evibes/settings/constance.py:43 msgid "An entity for storing analytics data" msgstr "Een entiteit voor het opslaan van analytische gegevens" -#: evibes/settings/constance.py:48 +#: evibes/settings/constance.py:44 msgid "Save responses from vendors' APIs" msgstr "Reacties opslaan van API's van leveranciers" -#: evibes/settings/constance.py:49 +#: evibes/settings/constance.py:45 msgid "Use Telegram-bot functionality" msgstr "Telegram-bot functionaliteit gebruiken" -#: evibes/settings/constance.py:50 +#: evibes/settings/constance.py:46 msgid "How many days we store messages from anonymous users" msgstr "Hoeveel dagen we berichten van anonieme gebruikers bewaren" -#: evibes/settings/constance.py:51 +#: evibes/settings/constance.py:47 msgid "How many days we store messages from authenticated users" msgstr "Hoeveel dagen we berichten van geverifieerde gebruikers bewaren" -#: evibes/settings/constance.py:57 +#: evibes/settings/constance.py:53 msgid "General Options" msgstr "Algemene opties" -#: evibes/settings/constance.py:65 +#: evibes/settings/constance.py:62 msgid "Email Options" msgstr "E-mailopties" -#: evibes/settings/constance.py:75 -msgid "Payment Gateway Options" -msgstr "Opties voor betalingsgateways" - -#: evibes/settings/constance.py:82 +#: evibes/settings/constance.py:72 msgid "Features Options" msgstr "Functies Opties" -#: evibes/settings/constance.py:92 +#: evibes/settings/constance.py:82 msgid "SEO Options" msgstr "SEO Opties" -#: evibes/settings/constance.py:96 +#: evibes/settings/constance.py:86 msgid "Debugging Options" msgstr "Debugopties" +#: evibes/settings/drf.py:50 +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 {\n" +" SIMPLE_JWT.get(\"ACCESS_TOKEN_LIFETIME\").total_seconds() // 60 if not DEBUG else 3600 # type: ignore [union-attr]\n" +"} {\"minutes\" if not DEBUG else \"hours\"}.\n" +"- Refresh token lifetime is {\n" +" SIMPLE_JWT.get(\"REFRESH_TOKEN_LIFETIME\").total_seconds() // 3600 # type: ignore [union-attr]\n" +"} 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 (basic-auth protected): `/prometheus/`\n" +"\n" +"## Version\n" +"Current API version: {EVIBES_VERSION}\n" +msgstr "" +"\n" +"Welkom bij de eVibes 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" +"\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" +"\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" +"\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" +"- De levensduur van het toegangstoken is {\n" +" SIMPLE_JWT.get(\"ACCESS_TOKEN_LIFETIME\").total_seconds() // 60 if not DEBUG else 3600 # type: ignore [union-attr]\n" +"} {\"minutes\" if not DEBUG else \"hours\"}.\n" +"- De levensduur van een verversingstoken is {\n" +" SIMPLE_JWT.get(\"REFRESH_TOKEN_LIFETIME\").total_seconds() // 3600 # type: ignore [union-attr]\n" +"} uur.\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" +"- 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" +"\n" +"## Gezondheid en bewaking\n" +"- Gezondheidscontroles: `/gezondheid/`\n" +"- Prometheus metriek (basic-auth beschermd): `/prometheus/`\n" +"\n" +"## Versie\n" +"Huidige API versie: {EVIBES_VERSION}\n" + #: evibes/settings/jazzmin.py:20 msgid "Home" msgstr "Home" @@ -170,13 +250,9 @@ msgid "GraphQL Docs" msgstr "GraphQL-documenten" #: evibes/settings/jazzmin.py:29 -msgid "Platform REST Docs" -msgstr "Platform REST-documenten" +msgid "REST Docs" +msgstr "REST-documenten" -#: evibes/settings/jazzmin.py:34 -msgid "B2B REST Docs" -msgstr "B2B REST-documenten" - -#: evibes/settings/jazzmin.py:38 +#: evibes/settings/jazzmin.py:33 msgid "Support" msgstr "Ondersteuning" diff --git a/evibes/locale/no_NO/LC_MESSAGES/django.mo b/evibes/locale/no_NO/LC_MESSAGES/django.mo index 5aaad02b..b52f8899 100644 Binary files a/evibes/locale/no_NO/LC_MESSAGES/django.mo and b/evibes/locale/no_NO/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/no_NO/LC_MESSAGES/django.po b/evibes/locale/no_NO/LC_MESSAGES/django.po index 2a98f8e5..c2e19e73 100644 --- a/evibes/locale/no_NO/LC_MESSAGES/django.po +++ b/evibes/locale/no_NO/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -70,93 +70,173 @@ msgid "Mail from option" msgstr "Adressen til avsenderen av e-posten" #: evibes/settings/constance.py:36 -msgid "Payment gateway URL" -msgstr "URL til betalingsgateway" - -#: evibes/settings/constance.py:37 -msgid "Payment gateway token" -msgstr "Token for betalingsgateway" - -#: evibes/settings/constance.py:38 -msgid "Payment gateway minimum amount" -msgstr "Minimumsbeløp for betalingsgateway" - -#: evibes/settings/constance.py:39 -msgid "Payment gateway maximum amount" -msgstr "Maksimumsbeløp for betalingsgateway" - -#: evibes/settings/constance.py:40 msgid "Exchange rate API key" msgstr "API-nøkkel for valutakurs" -#: evibes/settings/constance.py:41 +#: evibes/settings/constance.py:37 msgid "OpenStreetMap Nominatim API URL" msgstr "OpenStreetMap Nominatim API URL" -#: evibes/settings/constance.py:42 +#: evibes/settings/constance.py:38 msgid "OpenAI API Key" msgstr "OpenAI API-nøkkel" -#: evibes/settings/constance.py:43 +#: evibes/settings/constance.py:39 msgid "Abstract API Key" msgstr "Abstrakt API-nøkkel" -#: evibes/settings/constance.py:44 +#: evibes/settings/constance.py:40 msgid "HTTP Proxy" msgstr "HTTP-proxy" -#: evibes/settings/constance.py:45 +#: evibes/settings/constance.py:41 msgid "Disable buy functionality" msgstr "Deaktiver kjøpsfunksjonalitet" -#: evibes/settings/constance.py:46 +#: evibes/settings/constance.py:42 msgid "An entity for storing advertisiment data" msgstr "En enhet for lagring av annonseringsdata" -#: evibes/settings/constance.py:47 +#: evibes/settings/constance.py:43 msgid "An entity for storing analytics data" msgstr "En enhet for lagring av analysedata" -#: evibes/settings/constance.py:48 +#: evibes/settings/constance.py:44 msgid "Save responses from vendors' APIs" msgstr "Lagre svar fra leverandørers API-er" -#: evibes/settings/constance.py:49 +#: evibes/settings/constance.py:45 msgid "Use Telegram-bot functionality" msgstr "Bruk Telegram-bot-funksjonalitet" -#: evibes/settings/constance.py:50 +#: evibes/settings/constance.py:46 msgid "How many days we store messages from anonymous users" msgstr "Hvor mange dager vi lagrer meldinger fra anonyme brukere" -#: evibes/settings/constance.py:51 +#: evibes/settings/constance.py:47 msgid "How many days we store messages from authenticated users" msgstr "Hvor mange dager vi lagrer meldinger fra autentiserte brukere" -#: evibes/settings/constance.py:57 +#: evibes/settings/constance.py:53 msgid "General Options" msgstr "Generelle alternativer" -#: evibes/settings/constance.py:65 +#: evibes/settings/constance.py:62 msgid "Email Options" msgstr "E-postalternativer" -#: evibes/settings/constance.py:75 -msgid "Payment Gateway Options" -msgstr "Alternativer for betalingsgateway" - -#: evibes/settings/constance.py:82 +#: evibes/settings/constance.py:72 msgid "Features Options" msgstr "Funksjoner Alternativer" -#: evibes/settings/constance.py:92 +#: evibes/settings/constance.py:82 msgid "SEO Options" msgstr "SEO-alternativer" -#: evibes/settings/constance.py:96 +#: evibes/settings/constance.py:86 msgid "Debugging Options" msgstr "Alternativer for feilsøking" +#: evibes/settings/drf.py:50 +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 {\n" +" SIMPLE_JWT.get(\"ACCESS_TOKEN_LIFETIME\").total_seconds() // 60 if not DEBUG else 3600 # type: ignore [union-attr]\n" +"} {\"minutes\" if not DEBUG else \"hours\"}.\n" +"- Refresh token lifetime is {\n" +" SIMPLE_JWT.get(\"REFRESH_TOKEN_LIFETIME\").total_seconds() // 3600 # type: ignore [union-attr]\n" +"} 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 (basic-auth protected): `/prometheus/`\n" +"\n" +"## Version\n" +"Current API version: {EVIBES_VERSION}\n" +msgstr "" +"\n" +"Velkommen til eVibes-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" +"\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" +"\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" +"\n" +"## Autentisering\n" +"- Autentisering håndteres via JWT-tokens. Inkluder tokenet i `X-EVIBES-AUTH`-overskriften i forespørslene dine i formatet `Bearer `.\n" +"- Levetiden for tilgangstoken er {\n" +" SIMPLE_JWT.get(\"ACCESS_TOKEN_LIFETIME\").total_seconds() // 60 if not DEBUG else 3600 # type: ignore [union-attr]\n" +"}. {\"minutes\" if not DEBUG else \"hours\"}.\n" +"- Levetiden for oppdateringstoken er {\n" +" SIMPLE_JWT.get(\"REFRESH_TOKEN_LIFETIME\").total_seconds() // 3600 # type: ignore [union-attr]\n" +"} timer.\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" +"- Tilgjengelige språk kan hentes fra endepunktet `/app/languages/`.\n" +"- Alt brukerrettet innhold støtter flere språk uten videre.\n" +"\n" +"## Svarformater\n" +"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" +"\n" +"## Helse og overvåking\n" +"- Helsesjekker: `/health/`\n" +"- Prometheus-beregninger (beskyttet med basic-auth): `/prometheus/`\n" +"\n" +"## Versjon\n" +"Gjeldende API-versjon: {EVIBES_VERSION}\n" + #: evibes/settings/jazzmin.py:20 msgid "Home" msgstr "Hjem" @@ -170,13 +250,9 @@ msgid "GraphQL Docs" msgstr "GraphQL-dokumenter" #: evibes/settings/jazzmin.py:29 -msgid "Platform REST Docs" -msgstr "REST-dokumenter for plattformen" +msgid "REST Docs" +msgstr "REST-dokumenter" -#: evibes/settings/jazzmin.py:34 -msgid "B2B REST Docs" -msgstr "B2B REST-dokumenter" - -#: evibes/settings/jazzmin.py:38 +#: evibes/settings/jazzmin.py:33 msgid "Support" msgstr "Støtte" diff --git a/evibes/locale/pl_PL/LC_MESSAGES/django.mo b/evibes/locale/pl_PL/LC_MESSAGES/django.mo index 8e6c0222..e0f4e2d8 100644 Binary files a/evibes/locale/pl_PL/LC_MESSAGES/django.mo and b/evibes/locale/pl_PL/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/pl_PL/LC_MESSAGES/django.po b/evibes/locale/pl_PL/LC_MESSAGES/django.po index d8abc74e..1a5e4416 100644 --- a/evibes/locale/pl_PL/LC_MESSAGES/django.po +++ b/evibes/locale/pl_PL/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -70,93 +70,173 @@ msgid "Mail from option" msgstr "Adres nadawcy wiadomości e-mail" #: evibes/settings/constance.py:36 -msgid "Payment gateway URL" -msgstr "Adres URL bramki płatności" - -#: evibes/settings/constance.py:37 -msgid "Payment gateway token" -msgstr "Token bramki płatności" - -#: evibes/settings/constance.py:38 -msgid "Payment gateway minimum amount" -msgstr "Minimalna kwota bramki płatności" - -#: evibes/settings/constance.py:39 -msgid "Payment gateway maximum amount" -msgstr "Maksymalna kwota bramki płatności" - -#: evibes/settings/constance.py:40 msgid "Exchange rate API key" msgstr "Klucz API kursu wymiany" -#: evibes/settings/constance.py:41 +#: evibes/settings/constance.py:37 msgid "OpenStreetMap Nominatim API URL" msgstr "Adres URL interfejsu API OpenStreetMap Nominatim" -#: evibes/settings/constance.py:42 +#: evibes/settings/constance.py:38 msgid "OpenAI API Key" msgstr "Klucz API OpenAI" -#: evibes/settings/constance.py:43 +#: evibes/settings/constance.py:39 msgid "Abstract API Key" msgstr "Abstrakcyjny klucz API" -#: evibes/settings/constance.py:44 +#: evibes/settings/constance.py:40 msgid "HTTP Proxy" msgstr "Serwer proxy HTTP" -#: evibes/settings/constance.py:45 +#: evibes/settings/constance.py:41 msgid "Disable buy functionality" msgstr "Wyłączenie funkcji kupowania" -#: evibes/settings/constance.py:46 +#: evibes/settings/constance.py:42 msgid "An entity for storing advertisiment data" msgstr "Jednostka do przechowywania danych reklamowych" -#: evibes/settings/constance.py:47 +#: evibes/settings/constance.py:43 msgid "An entity for storing analytics data" msgstr "Jednostka do przechowywania danych analitycznych" -#: evibes/settings/constance.py:48 +#: evibes/settings/constance.py:44 msgid "Save responses from vendors' APIs" msgstr "Zapisywanie odpowiedzi z interfejsów API dostawców" -#: evibes/settings/constance.py:49 +#: evibes/settings/constance.py:45 msgid "Use Telegram-bot functionality" msgstr "Korzystanie z funkcji bota Telegram" -#: evibes/settings/constance.py:50 +#: evibes/settings/constance.py:46 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:51 +#: evibes/settings/constance.py:47 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:57 +#: evibes/settings/constance.py:53 msgid "General Options" msgstr "Opcje ogólne" -#: evibes/settings/constance.py:65 +#: evibes/settings/constance.py:62 msgid "Email Options" msgstr "Opcje e-mail" -#: evibes/settings/constance.py:75 -msgid "Payment Gateway Options" -msgstr "Opcje bramki płatności" - -#: evibes/settings/constance.py:82 +#: evibes/settings/constance.py:72 msgid "Features Options" msgstr "Opcje funkcji" -#: evibes/settings/constance.py:92 +#: evibes/settings/constance.py:82 msgid "SEO Options" msgstr "Opcje SEO" -#: evibes/settings/constance.py:96 +#: evibes/settings/constance.py:86 msgid "Debugging Options" msgstr "Opcje debugowania" +#: evibes/settings/drf.py:50 +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 {\n" +" SIMPLE_JWT.get(\"ACCESS_TOKEN_LIFETIME\").total_seconds() // 60 if not DEBUG else 3600 # type: ignore [union-attr]\n" +"} {\"minutes\" if not DEBUG else \"hours\"}.\n" +"- Refresh token lifetime is {\n" +" SIMPLE_JWT.get(\"REFRESH_TOKEN_LIFETIME\").total_seconds() // 3600 # type: ignore [union-attr]\n" +"} 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 (basic-auth protected): `/prometheus/`\n" +"\n" +"## Version\n" +"Current API version: {EVIBES_VERSION}\n" +msgstr "" +"\n" +"Witamy w dokumentacji eVibes.\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" +"\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 sprawna 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 wpisami na blogu oraz 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" +"\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" +"- Okres ważności tokenu dostępu wynosi {\n" +" SIMPLE_JWT.get(\"ACCESS_TOKEN_LIFETIME\").total_seconds() // 60 if not DEBUG else 3600 # type: ignore [union-attr]\n" +"} {\"minutes\" if not DEBUG else \"hours\"}.\n" +"- Okres ważności tokenu odświeżania wynosi {\n" +" SIMPLE_JWT.get(\"REFRESH_TOKEN_LIFETIME\").total_seconds() // 3600 # type: ignore [union-attr]\n" +"} godzin.\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" +"- 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" +"\n" +"## Formaty odpowiedzi\n" +"API obsługuje wiele formatów odpowiedzi:\n" +"- **JSON** (domyślny, sformatowany camelCase)\n" +"- **XML** (dodaj `?format=xml` lub ustaw `Accept: application/xml`)\n" +"- **YAML** (dodaj `?format=yaml` lub ustaw `Accept: application/x-yaml`)\n" +"\n" +"## Zdrowie i monitorowanie\n" +"- Sprawdzanie kondycji: `/health/`\n" +"- Metryki Prometheus (chronione przez basic-auth): `/prometheus/`\n" +"\n" +"## Wersja\n" +"Aktualna wersja API: {EVIBES_VERSION}\n" + #: evibes/settings/jazzmin.py:20 msgid "Home" msgstr "Strona główna" @@ -170,13 +250,9 @@ msgid "GraphQL Docs" msgstr "Dokumenty GraphQL" #: evibes/settings/jazzmin.py:29 -msgid "Platform REST Docs" -msgstr "Dokumenty platformy REST" +msgid "REST Docs" +msgstr "Dokumenty REST" -#: evibes/settings/jazzmin.py:34 -msgid "B2B REST Docs" -msgstr "Dokumenty B2B REST" - -#: evibes/settings/jazzmin.py:38 +#: evibes/settings/jazzmin.py:33 msgid "Support" msgstr "Wsparcie" diff --git a/evibes/locale/pt_BR/LC_MESSAGES/django.mo b/evibes/locale/pt_BR/LC_MESSAGES/django.mo index 23acc17f..e10b56ba 100644 Binary files a/evibes/locale/pt_BR/LC_MESSAGES/django.mo and b/evibes/locale/pt_BR/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/pt_BR/LC_MESSAGES/django.po b/evibes/locale/pt_BR/LC_MESSAGES/django.po index 3981b649..9b541a2d 100644 --- a/evibes/locale/pt_BR/LC_MESSAGES/django.po +++ b/evibes/locale/pt_BR/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -70,93 +70,173 @@ msgid "Mail from option" msgstr "O endereço do remetente do e-mail" #: evibes/settings/constance.py:36 -msgid "Payment gateway URL" -msgstr "URL do gateway de pagamento" - -#: evibes/settings/constance.py:37 -msgid "Payment gateway token" -msgstr "Token de gateway de pagamento" - -#: evibes/settings/constance.py:38 -msgid "Payment gateway minimum amount" -msgstr "Valor mínimo do gateway de pagamento" - -#: evibes/settings/constance.py:39 -msgid "Payment gateway maximum amount" -msgstr "Valor máximo do gateway de pagamento" - -#: evibes/settings/constance.py:40 msgid "Exchange rate API key" msgstr "Chave da API de taxa de câmbio" -#: evibes/settings/constance.py:41 +#: evibes/settings/constance.py:37 msgid "OpenStreetMap Nominatim API URL" msgstr "URL da API do OpenStreetMap Nominatim" -#: evibes/settings/constance.py:42 +#: evibes/settings/constance.py:38 msgid "OpenAI API Key" msgstr "Chave da API da OpenAI" -#: evibes/settings/constance.py:43 +#: evibes/settings/constance.py:39 msgid "Abstract API Key" msgstr "Chave abstrata da API" -#: evibes/settings/constance.py:44 +#: evibes/settings/constance.py:40 msgid "HTTP Proxy" msgstr "Proxy HTTP" -#: evibes/settings/constance.py:45 +#: evibes/settings/constance.py:41 msgid "Disable buy functionality" msgstr "Desativar a funcionalidade de compra" -#: evibes/settings/constance.py:46 +#: evibes/settings/constance.py:42 msgid "An entity for storing advertisiment data" msgstr "Uma entidade para armazenar dados de propaganda" -#: evibes/settings/constance.py:47 +#: evibes/settings/constance.py:43 msgid "An entity for storing analytics data" msgstr "Uma entidade para armazenar dados analíticos" -#: evibes/settings/constance.py:48 +#: evibes/settings/constance.py:44 msgid "Save responses from vendors' APIs" msgstr "Salvar respostas das APIs dos fornecedores" -#: evibes/settings/constance.py:49 +#: evibes/settings/constance.py:45 msgid "Use Telegram-bot functionality" msgstr "Usar a funcionalidade do bot do Telegram" -#: evibes/settings/constance.py:50 +#: evibes/settings/constance.py:46 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:51 +#: evibes/settings/constance.py:47 msgid "How many days we store messages from authenticated users" msgstr "Por quantos dias armazenamos mensagens de usuários autenticados" -#: evibes/settings/constance.py:57 +#: evibes/settings/constance.py:53 msgid "General Options" msgstr "Opções gerais" -#: evibes/settings/constance.py:65 +#: evibes/settings/constance.py:62 msgid "Email Options" msgstr "Opções de e-mail" -#: evibes/settings/constance.py:75 -msgid "Payment Gateway Options" -msgstr "Opções de gateway de pagamento" - -#: evibes/settings/constance.py:82 +#: evibes/settings/constance.py:72 msgid "Features Options" msgstr "Opções de recursos" -#: evibes/settings/constance.py:92 +#: evibes/settings/constance.py:82 msgid "SEO Options" msgstr "Opções de SEO" -#: evibes/settings/constance.py:96 +#: evibes/settings/constance.py:86 msgid "Debugging Options" msgstr "Opções de depuração" +#: evibes/settings/drf.py:50 +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 {\n" +" SIMPLE_JWT.get(\"ACCESS_TOKEN_LIFETIME\").total_seconds() // 60 if not DEBUG else 3600 # type: ignore [union-attr]\n" +"} {\"minutes\" if not DEBUG else \"hours\"}.\n" +"- Refresh token lifetime is {\n" +" SIMPLE_JWT.get(\"REFRESH_TOKEN_LIFETIME\").total_seconds() // 3600 # type: ignore [union-attr]\n" +"} 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 (basic-auth protected): `/prometheus/`\n" +"\n" +"## Version\n" +"Current API version: {EVIBES_VERSION}\n" +msgstr "" +"\n" +"Bem-vindo à documentação do eVibes.\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" +"\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:** Processar pedidos, rastrear o atendimento e lidar com as solicitações dos clientes de forma eficiente.\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" +"\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" +"- O tempo de vida do token de acesso é {\n" +" SIMPLE_JWT.get(\"ACCESS_TOKEN_LIFETIME\").total_seconds() // 60 if not DEBUG else 3600 # type: ignore [union-attr]\n" +"} {\"minutes\" if not DEBUG else \"hours\"}.\n" +"- A vida útil do token de atualização é de {\n" +" SIMPLE_JWT.get(\"REFRESH_TOKEN_LIFETIME\").total_seconds() // 3600 # type: ignore [union-attr]\n" +"} horas.\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 o idioma de sua preferência (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" +"- **JSON** (padrão, formatado em camelCase)\n" +"- **XML** (adicione `?format=xml` ou defina `Accept: application/xml`)\n" +"- **YAML** (adicione `?format=yaml` ou defina `Accept: application/x-yaml`)\n" +"\n" +"## Saúde e monitoramento\n" +"- Verificações de integridade: `/health/`\n" +"- Métricas do Prometheus (protegido por autenticação básica): `/prometheus/`\n" +"\n" +"## Versão\n" +"Versão atual da API: {EVIBES_VERSION}\n" + #: evibes/settings/jazzmin.py:20 msgid "Home" msgstr "Início" @@ -170,13 +250,9 @@ msgid "GraphQL Docs" msgstr "Documentos do GraphQL" #: evibes/settings/jazzmin.py:29 -msgid "Platform REST Docs" -msgstr "Documentos REST da plataforma" +msgid "REST Docs" +msgstr "Documentos REST" -#: evibes/settings/jazzmin.py:34 -msgid "B2B REST Docs" -msgstr "Documentos B2B REST" - -#: evibes/settings/jazzmin.py:38 +#: evibes/settings/jazzmin.py:33 msgid "Support" msgstr "Suporte" diff --git a/evibes/locale/ro_RO/LC_MESSAGES/django.mo b/evibes/locale/ro_RO/LC_MESSAGES/django.mo index de4831f1..12486713 100644 Binary files a/evibes/locale/ro_RO/LC_MESSAGES/django.mo and b/evibes/locale/ro_RO/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/ro_RO/LC_MESSAGES/django.po b/evibes/locale/ro_RO/LC_MESSAGES/django.po index 30634615..edb07941 100644 --- a/evibes/locale/ro_RO/LC_MESSAGES/django.po +++ b/evibes/locale/ro_RO/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -70,93 +70,173 @@ msgid "Mail from option" msgstr "Adresa expeditorului e-mailurilor" #: evibes/settings/constance.py:36 -msgid "Payment gateway URL" -msgstr "URL-ul gateway-ului de plată" - -#: evibes/settings/constance.py:37 -msgid "Payment gateway token" -msgstr "Token pentru gateway-ul de plată" - -#: evibes/settings/constance.py:38 -msgid "Payment gateway minimum amount" -msgstr "Suma minimă a gateway-ului de plată" - -#: evibes/settings/constance.py:39 -msgid "Payment gateway maximum amount" -msgstr "Suma maximă a gateway-ului de plată" - -#: evibes/settings/constance.py:40 msgid "Exchange rate API key" msgstr "Cheie API pentru rata de schimb" -#: evibes/settings/constance.py:41 +#: evibes/settings/constance.py:37 msgid "OpenStreetMap Nominatim API URL" msgstr "OpenStreetMap Nominatim API URL" -#: evibes/settings/constance.py:42 +#: evibes/settings/constance.py:38 msgid "OpenAI API Key" msgstr "Cheie API OpenAI" -#: evibes/settings/constance.py:43 +#: evibes/settings/constance.py:39 msgid "Abstract API Key" msgstr "Cheie API abstractă" -#: evibes/settings/constance.py:44 +#: evibes/settings/constance.py:40 msgid "HTTP Proxy" msgstr "Proxy HTTP" -#: evibes/settings/constance.py:45 +#: evibes/settings/constance.py:41 msgid "Disable buy functionality" msgstr "Dezactivați funcționalitatea de cumpărare" -#: evibes/settings/constance.py:46 +#: evibes/settings/constance.py:42 msgid "An entity for storing advertisiment data" msgstr "O entitate pentru stocarea datelor privind publicitatea" -#: evibes/settings/constance.py:47 +#: evibes/settings/constance.py:43 msgid "An entity for storing analytics data" msgstr "O entitate pentru stocarea datelor analitice" -#: evibes/settings/constance.py:48 +#: evibes/settings/constance.py:44 msgid "Save responses from vendors' APIs" msgstr "Salvați răspunsurile de la API-urile furnizorilor" -#: evibes/settings/constance.py:49 +#: evibes/settings/constance.py:45 msgid "Use Telegram-bot functionality" msgstr "Utilizați funcționalitatea Telegram-bot" -#: evibes/settings/constance.py:50 +#: evibes/settings/constance.py:46 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:51 +#: evibes/settings/constance.py:47 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:57 +#: evibes/settings/constance.py:53 msgid "General Options" msgstr "Opțiuni generale" -#: evibes/settings/constance.py:65 +#: evibes/settings/constance.py:62 msgid "Email Options" msgstr "Opțiuni de e-mail" -#: evibes/settings/constance.py:75 -msgid "Payment Gateway Options" -msgstr "Opțiuni pentru portalul de plăți" - -#: evibes/settings/constance.py:82 +#: evibes/settings/constance.py:72 msgid "Features Options" msgstr "Caracteristici Opțiuni" -#: evibes/settings/constance.py:92 +#: evibes/settings/constance.py:82 msgid "SEO Options" msgstr "Opțiuni SEO" -#: evibes/settings/constance.py:96 +#: evibes/settings/constance.py:86 msgid "Debugging Options" msgstr "Opțiuni de depanare" +#: evibes/settings/drf.py:50 +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 {\n" +" SIMPLE_JWT.get(\"ACCESS_TOKEN_LIFETIME\").total_seconds() // 60 if not DEBUG else 3600 # type: ignore [union-attr]\n" +"} {\"minutes\" if not DEBUG else \"hours\"}.\n" +"- Refresh token lifetime is {\n" +" SIMPLE_JWT.get(\"REFRESH_TOKEN_LIFETIME\").total_seconds() // 3600 # type: ignore [union-attr]\n" +"} 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 (basic-auth protected): `/prometheus/`\n" +"\n" +"## Version\n" +"Current API version: {EVIBES_VERSION}\n" +msgstr "" +"\n" +"Bine ați venit la documentația eVibes.\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" +"\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" +"\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" +"\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 {\n" +" SIMPLE_JWT.get(\"ACCESS_TOKEN_LIFETIME\").total_seconds() // 60 if not DEBUG else 3600 # type: ignore [union-attr]\n" +"} {\"minutes\" if not DEBUG else \"hours\"}.\n" +"- Durata de viață a jetonului de reînnoire este de {\n" +" SIMPLE_JWT.get(\"REFRESH_TOKEN_LIFETIME\").total_seconds() // 3600 # type: ignore [union-attr]\n" +"} ore.\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" +"\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" +"\n" +"## Sănătate și monitorizare\n" +"- Verificări de sănătate: `/health/`\n" +"- Prometheus metrics (basic-auth protected): `/prometheus/`\n" +"\n" +"## Versiune\n" +"Versiunea curentă a API: {EVIBES_VERSION}\n" + #: evibes/settings/jazzmin.py:20 msgid "Home" msgstr "Acasă" @@ -170,13 +250,9 @@ msgid "GraphQL Docs" msgstr "Docuri GraphQL" #: evibes/settings/jazzmin.py:29 -msgid "Platform REST Docs" -msgstr "Platforma REST Docs" +msgid "REST Docs" +msgstr "Docuri REST" -#: evibes/settings/jazzmin.py:34 -msgid "B2B REST Docs" -msgstr "Docuri B2B REST" - -#: evibes/settings/jazzmin.py:38 +#: evibes/settings/jazzmin.py:33 msgid "Support" msgstr "Sprijin" diff --git a/evibes/locale/ru_RU/LC_MESSAGES/django.mo b/evibes/locale/ru_RU/LC_MESSAGES/django.mo index 96474f33..a4319c12 100644 Binary files a/evibes/locale/ru_RU/LC_MESSAGES/django.mo and b/evibes/locale/ru_RU/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/ru_RU/LC_MESSAGES/django.po b/evibes/locale/ru_RU/LC_MESSAGES/django.po index 20270328..27af5274 100644 --- a/evibes/locale/ru_RU/LC_MESSAGES/django.po +++ b/evibes/locale/ru_RU/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -70,93 +70,173 @@ msgid "Mail from option" msgstr "Адрес отправителя электронного письма" #: evibes/settings/constance.py:36 -msgid "Payment gateway URL" -msgstr "URL-адрес платежного шлюза" - -#: evibes/settings/constance.py:37 -msgid "Payment gateway token" -msgstr "Токен платежного шлюза" - -#: evibes/settings/constance.py:38 -msgid "Payment gateway minimum amount" -msgstr "Минимальная сумма платежного шлюза" - -#: evibes/settings/constance.py:39 -msgid "Payment gateway maximum amount" -msgstr "Максимальная сумма платежного шлюза" - -#: evibes/settings/constance.py:40 msgid "Exchange rate API key" msgstr "Ключ API обменного курса" -#: evibes/settings/constance.py:41 +#: evibes/settings/constance.py:37 msgid "OpenStreetMap Nominatim API URL" msgstr "URL-адрес API OpenStreetMap Nominatim" -#: evibes/settings/constance.py:42 +#: evibes/settings/constance.py:38 msgid "OpenAI API Key" msgstr "Ключ API OpenAI" -#: evibes/settings/constance.py:43 +#: evibes/settings/constance.py:39 msgid "Abstract API Key" msgstr "Абстрактный ключ API" -#: evibes/settings/constance.py:44 +#: evibes/settings/constance.py:40 msgid "HTTP Proxy" msgstr "HTTP-прокси" -#: evibes/settings/constance.py:45 +#: evibes/settings/constance.py:41 msgid "Disable buy functionality" msgstr "Отключить функцию покупки" -#: evibes/settings/constance.py:46 +#: evibes/settings/constance.py:42 msgid "An entity for storing advertisiment data" msgstr "Устройство для хранения данных о рекламе" -#: evibes/settings/constance.py:47 +#: evibes/settings/constance.py:43 msgid "An entity for storing analytics data" msgstr "Сущность для хранения аналитических данных" -#: evibes/settings/constance.py:48 +#: evibes/settings/constance.py:44 msgid "Save responses from vendors' APIs" msgstr "Сохраняйте ответы от API поставщиков" -#: evibes/settings/constance.py:49 +#: evibes/settings/constance.py:45 msgid "Use Telegram-bot functionality" msgstr "Используйте функциональность Telegram-бота" -#: evibes/settings/constance.py:50 +#: evibes/settings/constance.py:46 msgid "How many days we store messages from anonymous users" msgstr "Сколько дней мы храним сообщения от анонимных пользователей" -#: evibes/settings/constance.py:51 +#: evibes/settings/constance.py:47 msgid "How many days we store messages from authenticated users" msgstr "Сколько дней мы храним сообщения от аутентифицированных пользователей" -#: evibes/settings/constance.py:57 +#: evibes/settings/constance.py:53 msgid "General Options" msgstr "Общие параметры" -#: evibes/settings/constance.py:65 +#: evibes/settings/constance.py:62 msgid "Email Options" msgstr "Параметры электронной почты" -#: evibes/settings/constance.py:75 -msgid "Payment Gateway Options" -msgstr "Варианты платежных шлюзов" - -#: evibes/settings/constance.py:82 +#: evibes/settings/constance.py:72 msgid "Features Options" msgstr "Особенности Опции" -#: evibes/settings/constance.py:92 +#: evibes/settings/constance.py:82 msgid "SEO Options" msgstr "Параметры SEO" -#: evibes/settings/constance.py:96 +#: evibes/settings/constance.py:86 msgid "Debugging Options" msgstr "Параметры отладки" +#: evibes/settings/drf.py:50 +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 {\n" +" SIMPLE_JWT.get(\"ACCESS_TOKEN_LIFETIME\").total_seconds() // 60 if not DEBUG else 3600 # type: ignore [union-attr]\n" +"} {\"minutes\" if not DEBUG else \"hours\"}.\n" +"- Refresh token lifetime is {\n" +" SIMPLE_JWT.get(\"REFRESH_TOKEN_LIFETIME\").total_seconds() // 3600 # type: ignore [union-attr]\n" +"} 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 (basic-auth protected): `/prometheus/`\n" +"\n" +"## Version\n" +"Current API version: {EVIBES_VERSION}\n" +msgstr "" +"\n" +"Добро пожаловать в документацию eVibes.\n" +"\n" +"eVibes - это мощная платформа для электронной коммерции, которая позволяет запустить и управлять интернет-магазином любого типа всего за несколько кликов.\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" +"\n" +"## Аутентификация\n" +"- Аутентификация осуществляется с помощью JWT-токенов. Включите токен в заголовок `X-EVIBES-AUTH` ваших запросов в формате `Bearer <ваш_токен>`.\n" +"- Срок действия токена доступа составляет {\n" +" SIMPLE_JWT.get(\"ACCESS_TOKEN_LIFETIME\").total_seconds() // 60 if not DEBUG else 3600 # type: ignore [union-attr]\n" +"} {\"minutes\" if not DEBUG else \"hours\"}.\n" +"- Время жизни токена обновления составляет {\n" +" SIMPLE_JWT.get(\"REFRESH_TOKEN_LIFETIME\").total_seconds() // 3600 # type: ignore [union-attr]\n" +"} часов.\n" +"- Для повышения безопасности маркеры доступа автоматически поворачиваются и аннулируются после использования.\n" +"\n" +"## Интернационализация (i18n)\n" +"- Укажите в заголовке `Accept-Language` предпочтительный язык (например, `Accept-Language: en-US`).\n" +"- Доступные языки можно получить из конечной точки `/app/languages/`.\n" +"- Весь контент, предназначенный для пользователей, изначально поддерживает несколько языков.\n" +"\n" +"## Форматы ответов\n" +"API поддерживает несколько форматов ответов:\n" +"- **JSON** (по умолчанию, с форматированием в camelCase)\n" +"- **XML** (добавьте `?format=xml` или установите `Accept: application/xml`)\n" +"- **YAML** (добавьте `?format=yaml` или установите `Accept: application/x-yaml`)\n" +"\n" +"## Здоровье и мониторинг\n" +"- Проверка здоровья: `/health/`\n" +"- Метрики Prometheus (с защитой basic-auth): `/prometheus/`\n" +"\n" +"## Версия\n" +"Текущая версия API: {EVIBES_VERSION}\n" + #: evibes/settings/jazzmin.py:20 msgid "Home" msgstr "Главная" @@ -170,13 +250,9 @@ msgid "GraphQL Docs" msgstr "Документация по GraphQL" #: evibes/settings/jazzmin.py:29 -msgid "Platform REST Docs" +msgid "REST Docs" msgstr "Документация по REST" -#: evibes/settings/jazzmin.py:34 -msgid "B2B REST Docs" -msgstr "Документация по B2B REST" - -#: evibes/settings/jazzmin.py:38 +#: evibes/settings/jazzmin.py:33 msgid "Support" msgstr "Поддержка" diff --git a/evibes/locale/sv_SE/LC_MESSAGES/django.mo b/evibes/locale/sv_SE/LC_MESSAGES/django.mo index 07647db6..4aa043a5 100644 Binary files a/evibes/locale/sv_SE/LC_MESSAGES/django.mo and b/evibes/locale/sv_SE/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/sv_SE/LC_MESSAGES/django.po b/evibes/locale/sv_SE/LC_MESSAGES/django.po index 5a0cc9b4..d715bc86 100644 --- a/evibes/locale/sv_SE/LC_MESSAGES/django.po +++ b/evibes/locale/sv_SE/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -70,93 +70,173 @@ msgid "Mail from option" msgstr "Adressen till e-postmeddelandets avsändare" #: evibes/settings/constance.py:36 -msgid "Payment gateway URL" -msgstr "URL för betalningsgateway" - -#: evibes/settings/constance.py:37 -msgid "Payment gateway token" -msgstr "Token för betalningsgateway" - -#: evibes/settings/constance.py:38 -msgid "Payment gateway minimum amount" -msgstr "Minsta belopp för betalningsgateway" - -#: evibes/settings/constance.py:39 -msgid "Payment gateway maximum amount" -msgstr "Betalningsgatewayens maximala belopp" - -#: evibes/settings/constance.py:40 msgid "Exchange rate API key" msgstr "API-nyckel för växelkurs" -#: evibes/settings/constance.py:41 +#: evibes/settings/constance.py:37 msgid "OpenStreetMap Nominatim API URL" msgstr "OpenStreetMap Nominatim API URL" -#: evibes/settings/constance.py:42 +#: evibes/settings/constance.py:38 msgid "OpenAI API Key" msgstr "OpenAI API-nyckel" -#: evibes/settings/constance.py:43 +#: evibes/settings/constance.py:39 msgid "Abstract API Key" msgstr "Abstrakt API-nyckel" -#: evibes/settings/constance.py:44 +#: evibes/settings/constance.py:40 msgid "HTTP Proxy" msgstr "HTTP-proxy" -#: evibes/settings/constance.py:45 +#: evibes/settings/constance.py:41 msgid "Disable buy functionality" msgstr "Inaktivera köpfunktionalitet" -#: evibes/settings/constance.py:46 +#: evibes/settings/constance.py:42 msgid "An entity for storing advertisiment data" msgstr "En enhet för lagring av annonseringsdata" -#: evibes/settings/constance.py:47 +#: evibes/settings/constance.py:43 msgid "An entity for storing analytics data" msgstr "En enhet för lagring av analysdata" -#: evibes/settings/constance.py:48 +#: evibes/settings/constance.py:44 msgid "Save responses from vendors' APIs" msgstr "Spara svar från leverantörers API:er" -#: evibes/settings/constance.py:49 +#: evibes/settings/constance.py:45 msgid "Use Telegram-bot functionality" msgstr "Använd Telegram-bot-funktionalitet" -#: evibes/settings/constance.py:50 +#: evibes/settings/constance.py:46 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:51 +#: evibes/settings/constance.py:47 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:57 +#: evibes/settings/constance.py:53 msgid "General Options" msgstr "Allmänna alternativ" -#: evibes/settings/constance.py:65 +#: evibes/settings/constance.py:62 msgid "Email Options" msgstr "Alternativ för e-post" -#: evibes/settings/constance.py:75 -msgid "Payment Gateway Options" -msgstr "Alternativ för betalningsgateway" - -#: evibes/settings/constance.py:82 +#: evibes/settings/constance.py:72 msgid "Features Options" msgstr "Funktioner Alternativ" -#: evibes/settings/constance.py:92 +#: evibes/settings/constance.py:82 msgid "SEO Options" msgstr "SEO-alternativ" -#: evibes/settings/constance.py:96 +#: evibes/settings/constance.py:86 msgid "Debugging Options" msgstr "Alternativ för felsökning" +#: evibes/settings/drf.py:50 +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 {\n" +" SIMPLE_JWT.get(\"ACCESS_TOKEN_LIFETIME\").total_seconds() // 60 if not DEBUG else 3600 # type: ignore [union-attr]\n" +"} {\"minutes\" if not DEBUG else \"hours\"}.\n" +"- Refresh token lifetime is {\n" +" SIMPLE_JWT.get(\"REFRESH_TOKEN_LIFETIME\").total_seconds() // 3600 # type: ignore [union-attr]\n" +"} 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 (basic-auth protected): `/prometheus/`\n" +"\n" +"## Version\n" +"Current API version: {EVIBES_VERSION}\n" +msgstr "" +"\n" +"Välkommen till eVibes 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" +"\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" +"\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" +"\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" +"- Åtkomsttokenens livstid är {\n" +" SIMPLE_JWT.get(\"ACCESS_TOKEN_LIFETIME\").total_seconds() // 60 if not DEBUG else 3600 # type: ignore [union-attr]\n" +"} {\"minutes\" if not DEBUG else \"hours\"}.\n" +"- Uppdateringstokenens livslängd är {\n" +" SIMPLE_JWT.get(\"REFRESH_TOKEN_LIFETIME\").total_seconds() // 3600 # type: ignore [union-attr]\n" +"} timmar.\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" +"- 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" +"\n" +"## Hälsa och övervakning\n" +"- Hälsokontroller: `/hälsa/`\n" +"- Prometheus-mätvärden (skyddade med grundläggande autentisering): `/prometheus/`\n" +"\n" +"## Version\n" +"Aktuell API-version: {EVIBES_VERSION}\n" + #: evibes/settings/jazzmin.py:20 msgid "Home" msgstr "Hem" @@ -170,13 +250,9 @@ msgid "GraphQL Docs" msgstr "GraphQL-dokument" #: evibes/settings/jazzmin.py:29 -msgid "Platform REST Docs" -msgstr "Plattform REST-dokument" +msgid "REST Docs" +msgstr "REST-dokument" -#: evibes/settings/jazzmin.py:34 -msgid "B2B REST Docs" -msgstr "B2B REST-dokument" - -#: evibes/settings/jazzmin.py:38 +#: evibes/settings/jazzmin.py:33 msgid "Support" msgstr "Stöd" diff --git a/evibes/locale/th_TH/LC_MESSAGES/django.mo b/evibes/locale/th_TH/LC_MESSAGES/django.mo index 5ab198da..bbfa65af 100644 Binary files a/evibes/locale/th_TH/LC_MESSAGES/django.mo and b/evibes/locale/th_TH/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/th_TH/LC_MESSAGES/django.po b/evibes/locale/th_TH/LC_MESSAGES/django.po index 37eb5b46..ca0cd343 100644 --- a/evibes/locale/th_TH/LC_MESSAGES/django.po +++ b/evibes/locale/th_TH/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -70,93 +70,138 @@ msgid "Mail from option" msgstr "ที่อยู่ของผู้ส่งอีเมล" #: evibes/settings/constance.py:36 -msgid "Payment gateway URL" -msgstr "URL ของเกตเวย์การชำระเงิน" - -#: evibes/settings/constance.py:37 -msgid "Payment gateway token" -msgstr "โทเค็นเกตเวย์การชำระเงิน" - -#: evibes/settings/constance.py:38 -msgid "Payment gateway minimum amount" -msgstr "จำนวนเงินขั้นต่ำของเกตเวย์การชำระเงิน" - -#: evibes/settings/constance.py:39 -msgid "Payment gateway maximum amount" -msgstr "จำนวนเงินสูงสุดของเกตเวย์การชำระเงิน" - -#: evibes/settings/constance.py:40 msgid "Exchange rate API key" msgstr "คีย์ API อัตราแลกเปลี่ยน" -#: evibes/settings/constance.py:41 +#: evibes/settings/constance.py:37 msgid "OpenStreetMap Nominatim API URL" msgstr "URL ของ API OpenStreetMap Nominatim" -#: evibes/settings/constance.py:42 +#: evibes/settings/constance.py:38 msgid "OpenAI API Key" msgstr "คีย์ API ของ OpenAI" -#: evibes/settings/constance.py:43 +#: evibes/settings/constance.py:39 msgid "Abstract API Key" msgstr "คีย์ API แบบนามธรรม" -#: evibes/settings/constance.py:44 +#: evibes/settings/constance.py:40 msgid "HTTP Proxy" msgstr "HTTP พร็อกซี" -#: evibes/settings/constance.py:45 +#: evibes/settings/constance.py:41 msgid "Disable buy functionality" msgstr "ปิดการใช้งานฟังก์ชันการซื้อ" -#: evibes/settings/constance.py:46 +#: evibes/settings/constance.py:42 msgid "An entity for storing advertisiment data" msgstr "หน่วยงานสำหรับเก็บข้อมูลโฆษณา" -#: evibes/settings/constance.py:47 +#: evibes/settings/constance.py:43 msgid "An entity for storing analytics data" msgstr "หน่วยงานสำหรับเก็บข้อมูลการวิเคราะห์" -#: evibes/settings/constance.py:48 +#: evibes/settings/constance.py:44 msgid "Save responses from vendors' APIs" msgstr "บันทึกการตอบกลับจาก API ของผู้ขาย" -#: evibes/settings/constance.py:49 +#: evibes/settings/constance.py:45 msgid "Use Telegram-bot functionality" msgstr "ใช้ฟังก์ชันของบอท Telegram" -#: evibes/settings/constance.py:50 +#: evibes/settings/constance.py:46 msgid "How many days we store messages from anonymous users" msgstr "เราเก็บข้อความจากผู้ใช้ที่ไม่ระบุตัวตนไว้กี่วัน" -#: evibes/settings/constance.py:51 +#: evibes/settings/constance.py:47 msgid "How many days we store messages from authenticated users" msgstr "เราเก็บข้อความจากผู้ใช้ที่ผ่านการยืนยันตัวตนไว้กี่วัน" -#: evibes/settings/constance.py:57 +#: evibes/settings/constance.py:53 msgid "General Options" msgstr "ตัวเลือกทั่วไป" -#: evibes/settings/constance.py:65 +#: evibes/settings/constance.py:62 msgid "Email Options" msgstr "ตัวเลือกอีเมล" -#: evibes/settings/constance.py:75 -msgid "Payment Gateway Options" -msgstr "ตัวเลือกเกตเวย์การชำระเงิน" - -#: evibes/settings/constance.py:82 +#: evibes/settings/constance.py:72 msgid "Features Options" msgstr "คุณสมบัติ ตัวเลือก" -#: evibes/settings/constance.py:92 +#: evibes/settings/constance.py:82 msgid "SEO Options" msgstr "ตัวเลือก SEO" -#: evibes/settings/constance.py:96 +#: evibes/settings/constance.py:86 msgid "Debugging Options" msgstr "ตัวเลือกการแก้ไขข้อผิดพลาด" +#: evibes/settings/drf.py:50 +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 {\n" +" SIMPLE_JWT.get(\"ACCESS_TOKEN_LIFETIME\").total_seconds() // 60 if not DEBUG else 3600 # type: ignore [union-attr]\n" +"} {\"minutes\" if not DEBUG else \"hours\"}.\n" +"- Refresh token lifetime is {\n" +" SIMPLE_JWT.get(\"REFRESH_TOKEN_LIFETIME\").total_seconds() // 3600 # type: ignore [union-attr]\n" +"} 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 (basic-auth protected): `/prometheus/`\n" +"\n" +"## Version\n" +"Current API version: {EVIBES_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" +"- ระยะเวลาการใช้งานโทเค็นการเข้าถึงคือ {\n" +" SIMPLE_JWT.get(\"ACCESS_TOKEN_LIFETIME\").total_seconds() // 60 if not DEBUG else 3600 # type: ignore [union-attr]\n" +"} {\"minutes\" if not DEBUG else \"hours\"}. - ระยะเวลาการใช้งานโทเค็นการรีเฟรชคือ {\n" +" SIMPLE_JWT.get(\"REFRESH_TOKEN_LIFETIME\").total_seconds() // 3600 # type: ignore [union-attr]\n" +"} ชั่วโมง. - โทเค็นการรีเฟรชจะถูกหมุนเวียนและยกเลิกการใช้งานโดยอัตโนมัติหลังการใช้งานเพื่อเพิ่มความปลอดภัย. ## การแปลภาษา (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 (ป้องกันด้วย basic-auth): `/prometheus/` ## เวอร์ชัน เวอร์ชัน API ปัจจุบัน: {EVIBES_VERSION}\n" + #: evibes/settings/jazzmin.py:20 msgid "Home" msgstr "หน้าแรก" @@ -170,13 +215,9 @@ msgid "GraphQL Docs" msgstr "เอกสาร GraphQL" #: evibes/settings/jazzmin.py:29 -msgid "Platform REST Docs" -msgstr "เอกสาร REST ของแพลตฟอร์ม" +msgid "REST Docs" +msgstr "เอกสาร REST" -#: evibes/settings/jazzmin.py:34 -msgid "B2B REST Docs" -msgstr "เอกสาร B2B REST" - -#: evibes/settings/jazzmin.py:38 +#: evibes/settings/jazzmin.py:33 msgid "Support" msgstr "การสนับสนุน" diff --git a/evibes/locale/tr_TR/LC_MESSAGES/django.mo b/evibes/locale/tr_TR/LC_MESSAGES/django.mo index cc8719c8..a9d88838 100644 Binary files a/evibes/locale/tr_TR/LC_MESSAGES/django.mo and b/evibes/locale/tr_TR/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/tr_TR/LC_MESSAGES/django.po b/evibes/locale/tr_TR/LC_MESSAGES/django.po index 4ff7d7d4..88faa495 100644 --- a/evibes/locale/tr_TR/LC_MESSAGES/django.po +++ b/evibes/locale/tr_TR/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -70,93 +70,174 @@ msgid "Mail from option" msgstr "E-posta göndericisinin adresi" #: evibes/settings/constance.py:36 -msgid "Payment gateway URL" -msgstr "Ödeme ağ geçidi URL'si" - -#: evibes/settings/constance.py:37 -msgid "Payment gateway token" -msgstr "Ödeme ağ geçidi belirteci" - -#: evibes/settings/constance.py:38 -msgid "Payment gateway minimum amount" -msgstr "Ödeme ağ geçidi minimum tutarı" - -#: evibes/settings/constance.py:39 -msgid "Payment gateway maximum amount" -msgstr "Ödeme ağ geçidi maksimum tutarı" - -#: evibes/settings/constance.py:40 msgid "Exchange rate API key" msgstr "Döviz kuru API anahtarı" -#: evibes/settings/constance.py:41 +#: evibes/settings/constance.py:37 msgid "OpenStreetMap Nominatim API URL" msgstr "OpenStreetMap Nominatim API URL'si" -#: evibes/settings/constance.py:42 +#: evibes/settings/constance.py:38 msgid "OpenAI API Key" msgstr "OpenAI API Anahtarı" -#: evibes/settings/constance.py:43 +#: evibes/settings/constance.py:39 msgid "Abstract API Key" msgstr "Soyut API Anahtarı" -#: evibes/settings/constance.py:44 +#: evibes/settings/constance.py:40 msgid "HTTP Proxy" msgstr "HTTP Proxy" -#: evibes/settings/constance.py:45 +#: evibes/settings/constance.py:41 msgid "Disable buy functionality" msgstr "Satın alma işlevini devre dışı bırakın" -#: evibes/settings/constance.py:46 +#: evibes/settings/constance.py:42 msgid "An entity for storing advertisiment data" msgstr "Reklam verilerini depolamak için bir varlık" -#: evibes/settings/constance.py:47 +#: evibes/settings/constance.py:43 msgid "An entity for storing analytics data" msgstr "Analitik verileri depolamak için bir varlık" -#: evibes/settings/constance.py:48 +#: evibes/settings/constance.py:44 msgid "Save responses from vendors' APIs" msgstr "Satıcıların API'lerinden gelen yanıtları kaydedin" -#: evibes/settings/constance.py:49 +#: evibes/settings/constance.py:45 msgid "Use Telegram-bot functionality" msgstr "Telegram-bot işlevselliğini kullanın" -#: evibes/settings/constance.py:50 +#: evibes/settings/constance.py:46 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:51 +#: evibes/settings/constance.py:47 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:57 +#: evibes/settings/constance.py:53 msgid "General Options" msgstr "Genel Seçenekler" -#: evibes/settings/constance.py:65 +#: evibes/settings/constance.py:62 msgid "Email Options" msgstr "E-posta Seçenekleri" -#: evibes/settings/constance.py:75 -msgid "Payment Gateway Options" -msgstr "Ödeme Geçidi Seçenekleri" - -#: evibes/settings/constance.py:82 +#: evibes/settings/constance.py:72 msgid "Features Options" msgstr "Özellikler Seçenekler" -#: evibes/settings/constance.py:92 +#: evibes/settings/constance.py:82 msgid "SEO Options" msgstr "SEO Seçenekleri" -#: evibes/settings/constance.py:96 +#: evibes/settings/constance.py:86 msgid "Debugging Options" msgstr "Hata Ayıklama Seçenekleri" +#: evibes/settings/drf.py:50 +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 {\n" +" SIMPLE_JWT.get(\"ACCESS_TOKEN_LIFETIME\").total_seconds() // 60 if not DEBUG else 3600 # type: ignore [union-attr]\n" +"} {\"minutes\" if not DEBUG else \"hours\"}.\n" +"- Refresh token lifetime is {\n" +" SIMPLE_JWT.get(\"REFRESH_TOKEN_LIFETIME\").total_seconds() // 3600 # type: ignore [union-attr]\n" +"} 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 (basic-auth protected): `/prometheus/`\n" +"\n" +"## Version\n" +"Current API version: {EVIBES_VERSION}\n" +msgstr "" +"\n" +"eVibes 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" +"\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" +"\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" +"\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" +"- Erişim belirteci ömrü {\n" +" SIMPLE_JWT.get(\"ACCESS_TOKEN_LIFETIME\").total_seconds() // 60 if not DEBUG else 3600 # type: ignore [union-attr]\n" +"} {\"minutes\" if not DEBUG else \"hours\"}.\n" +"- Yenileme belirteci ömrü {\n" +" SIMPLE_JWT.get(\"REFRESH_TOKEN_LIFETIME\").total_seconds() // 3600 # type: ignore [union-attr]\n" +"} 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" +"\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" +"- 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" +"\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" +"\n" +"## Sağlık ve İzleme\n" +"- Sağlık kontrolleri: `/health/`\n" +"- Prometheus metrikleri (basic-auth korumalı): `/prometheus/`\n" +"\n" +"## Sürüm\n" +"Geçerli API sürümü: {EVIBES_VERSION}\n" + #: evibes/settings/jazzmin.py:20 msgid "Home" msgstr "Ev" @@ -170,13 +251,9 @@ msgid "GraphQL Docs" msgstr "GraphQL Dokümanları" #: evibes/settings/jazzmin.py:29 -msgid "Platform REST Docs" -msgstr "Platform REST Dokümanları" +msgid "REST Docs" +msgstr "REST Dokümanları" -#: evibes/settings/jazzmin.py:34 -msgid "B2B REST Docs" -msgstr "B2B REST Dokümanları" - -#: evibes/settings/jazzmin.py:38 +#: evibes/settings/jazzmin.py:33 msgid "Support" msgstr "Destek" diff --git a/evibes/locale/vi_VN/LC_MESSAGES/django.mo b/evibes/locale/vi_VN/LC_MESSAGES/django.mo index 006d5b56..fccad674 100644 Binary files a/evibes/locale/vi_VN/LC_MESSAGES/django.mo and b/evibes/locale/vi_VN/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/vi_VN/LC_MESSAGES/django.po b/evibes/locale/vi_VN/LC_MESSAGES/django.po index dd650f86..9a498725 100644 --- a/evibes/locale/vi_VN/LC_MESSAGES/django.po +++ b/evibes/locale/vi_VN/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -70,94 +70,140 @@ msgid "Mail from option" msgstr "Địa chỉ email của người gửi" #: evibes/settings/constance.py:36 -msgid "Payment gateway URL" -msgstr "Đường dẫn URL cổng thanh toán" - -#: evibes/settings/constance.py:37 -msgid "Payment gateway token" -msgstr "Token cổng thanh toán" - -#: evibes/settings/constance.py:38 -msgid "Payment gateway minimum amount" -msgstr "Số tiền tối thiểu cho cổng thanh toán" - -#: evibes/settings/constance.py:39 -msgid "Payment gateway maximum amount" -msgstr "Giới hạn số tiền tối đa qua cổng thanh toán" - -#: evibes/settings/constance.py:40 msgid "Exchange rate API key" msgstr "Khóa API tỷ giá hối đoái" -#: evibes/settings/constance.py:41 +#: evibes/settings/constance.py:37 msgid "OpenStreetMap Nominatim API URL" msgstr "Địa chỉ URL API Nominatim của OpenStreetMap" -#: evibes/settings/constance.py:42 +#: evibes/settings/constance.py:38 msgid "OpenAI API Key" msgstr "Khóa API OpenAI" -#: evibes/settings/constance.py:43 +#: evibes/settings/constance.py:39 msgid "Abstract API Key" msgstr "Tóm tắt Khóa API" -#: evibes/settings/constance.py:44 +#: evibes/settings/constance.py:40 msgid "HTTP Proxy" msgstr "Proxy HTTP" -#: evibes/settings/constance.py:45 +#: evibes/settings/constance.py:41 msgid "Disable buy functionality" msgstr "Vô hiệu hóa chức năng mua hàng" -#: evibes/settings/constance.py:46 +#: evibes/settings/constance.py:42 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:47 +#: evibes/settings/constance.py:43 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:48 +#: evibes/settings/constance.py:44 msgid "Save responses from vendors' APIs" msgstr "Lưu trữ phản hồi từ các API của nhà cung cấp" -#: evibes/settings/constance.py:49 +#: evibes/settings/constance.py:45 msgid "Use Telegram-bot functionality" msgstr "Sử dụng chức năng của Telegram-bot" -#: evibes/settings/constance.py:50 +#: evibes/settings/constance.py:46 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:51 +#: evibes/settings/constance.py:47 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:57 +#: evibes/settings/constance.py:53 msgid "General Options" msgstr "Tùy chọn chung" -#: evibes/settings/constance.py:65 +#: evibes/settings/constance.py:62 msgid "Email Options" msgstr "Tùy chọn email" -#: evibes/settings/constance.py:75 -msgid "Payment Gateway Options" -msgstr "Các tùy chọn cổng thanh toán" - -#: evibes/settings/constance.py:82 +#: evibes/settings/constance.py:72 msgid "Features Options" msgstr "Tính năng và tùy chọn" -#: evibes/settings/constance.py:92 +#: evibes/settings/constance.py:82 msgid "SEO Options" msgstr "Các tùy chọn SEO" -#: evibes/settings/constance.py:96 +#: evibes/settings/constance.py:86 msgid "Debugging Options" msgstr "Các tùy chọn gỡ lỗi" +#: evibes/settings/drf.py:50 +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 {\n" +" SIMPLE_JWT.get(\"ACCESS_TOKEN_LIFETIME\").total_seconds() // 60 if not DEBUG else 3600 # type: ignore [union-attr]\n" +"} {\"minutes\" if not DEBUG else \"hours\"}.\n" +"- Refresh token lifetime is {\n" +" SIMPLE_JWT.get(\"REFRESH_TOKEN_LIFETIME\").total_seconds() // 3600 # type: ignore [union-attr]\n" +"} 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 (basic-auth protected): `/prometheus/`\n" +"\n" +"## Version\n" +"Current API version: {EVIBES_VERSION}\n" +msgstr "" +"\n" +"Chà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 B2B và quản lý bán sỉ.\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á.\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à {\n" +" SIMPLE_JWT.get(\"ACCESS_TOKEN_LIFETIME\").total_seconds() // 60 if not DEBUG else 3600 # type: ignore [union-attr]\n" +"} {\"minutes\" if not DEBUG else \"hours\"}. - Thời hạn sử dụng của token làm mới là {\n" +" SIMPLE_JWT.get(\"REFRESH_TOKEN_LIFETIME\").total_seconds() // 3600 # type: ignore [union-attr]\n" +"} 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 (bảo vệ bằng basic-auth): `/prometheus/` ## Phiên bản Phiên bản API hiện tại: {EVIBES_VERSION}\n" + #: evibes/settings/jazzmin.py:20 msgid "Home" msgstr "Trang chủ" @@ -171,13 +217,9 @@ msgid "GraphQL Docs" msgstr "Tài liệu GraphQL" #: evibes/settings/jazzmin.py:29 -msgid "Platform REST Docs" -msgstr "Tài liệu REST của nền tảng" +msgid "REST Docs" +msgstr "Tài liệu REST" -#: evibes/settings/jazzmin.py:34 -msgid "B2B REST Docs" -msgstr "Tài liệu REST cho doanh nghiệp (B2B)" - -#: evibes/settings/jazzmin.py:38 +#: evibes/settings/jazzmin.py:33 msgid "Support" msgstr "Hỗ trợ" diff --git a/evibes/locale/zh_Hans/LC_MESSAGES/django.mo b/evibes/locale/zh_Hans/LC_MESSAGES/django.mo index 4bac7b6b..76f5e6d9 100644 Binary files a/evibes/locale/zh_Hans/LC_MESSAGES/django.mo and b/evibes/locale/zh_Hans/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/zh_Hans/LC_MESSAGES/django.po b/evibes/locale/zh_Hans/LC_MESSAGES/django.po index 135f6301..e22abdcb 100644 --- a/evibes/locale/zh_Hans/LC_MESSAGES/django.po +++ b/evibes/locale/zh_Hans/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 3.0.0\n" +"Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-26 18:45+0300\n" +"POT-Creation-Date: 2025-11-10 15:53+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -70,93 +70,173 @@ msgid "Mail from option" msgstr "邮件发件人地址" #: evibes/settings/constance.py:36 -msgid "Payment gateway URL" -msgstr "付款网关 URL" - -#: evibes/settings/constance.py:37 -msgid "Payment gateway token" -msgstr "支付网关令牌" - -#: evibes/settings/constance.py:38 -msgid "Payment gateway minimum amount" -msgstr "支付网关最低金额" - -#: evibes/settings/constance.py:39 -msgid "Payment gateway maximum amount" -msgstr "支付网关最高限额" - -#: evibes/settings/constance.py:40 msgid "Exchange rate API key" msgstr "汇率 API 密钥" -#: evibes/settings/constance.py:41 +#: evibes/settings/constance.py:37 msgid "OpenStreetMap Nominatim API URL" msgstr "OpenStreetMap Nominatim API URL" -#: evibes/settings/constance.py:42 +#: evibes/settings/constance.py:38 msgid "OpenAI API Key" msgstr "OpenAI API 密钥" -#: evibes/settings/constance.py:43 +#: evibes/settings/constance.py:39 msgid "Abstract API Key" msgstr "抽象应用程序接口密钥" -#: evibes/settings/constance.py:44 +#: evibes/settings/constance.py:40 msgid "HTTP Proxy" msgstr "HTTP 代理服务器" -#: evibes/settings/constance.py:45 +#: evibes/settings/constance.py:41 msgid "Disable buy functionality" msgstr "禁用购买功能" -#: evibes/settings/constance.py:46 +#: evibes/settings/constance.py:42 msgid "An entity for storing advertisiment data" msgstr "存储广告数据的实体" -#: evibes/settings/constance.py:47 +#: evibes/settings/constance.py:43 msgid "An entity for storing analytics data" msgstr "存储分析数据的实体" -#: evibes/settings/constance.py:48 +#: evibes/settings/constance.py:44 msgid "Save responses from vendors' APIs" msgstr "保存来自供应商应用程序接口的响应" -#: evibes/settings/constance.py:49 +#: evibes/settings/constance.py:45 msgid "Use Telegram-bot functionality" msgstr "使用 Telegram 机器人功能" -#: evibes/settings/constance.py:50 +#: evibes/settings/constance.py:46 msgid "How many days we store messages from anonymous users" msgstr "我们将匿名用户的信息保存多少天" -#: evibes/settings/constance.py:51 +#: evibes/settings/constance.py:47 msgid "How many days we store messages from authenticated users" msgstr "我们会将已验证用户的信息保存多少天" -#: evibes/settings/constance.py:57 +#: evibes/settings/constance.py:53 msgid "General Options" msgstr "一般选项" -#: evibes/settings/constance.py:65 +#: evibes/settings/constance.py:62 msgid "Email Options" msgstr "电子邮件选项" -#: evibes/settings/constance.py:75 -msgid "Payment Gateway Options" -msgstr "支付网关选项" - -#: evibes/settings/constance.py:82 +#: evibes/settings/constance.py:72 msgid "Features Options" msgstr "功能选项" -#: evibes/settings/constance.py:92 +#: evibes/settings/constance.py:82 msgid "SEO Options" msgstr "搜索引擎优化选项" -#: evibes/settings/constance.py:96 +#: evibes/settings/constance.py:86 msgid "Debugging Options" msgstr "调试选项" +#: evibes/settings/drf.py:50 +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 {\n" +" SIMPLE_JWT.get(\"ACCESS_TOKEN_LIFETIME\").total_seconds() // 60 if not DEBUG else 3600 # type: ignore [union-attr]\n" +"} {\"minutes\" if not DEBUG else \"hours\"}.\n" +"- Refresh token lifetime is {\n" +" SIMPLE_JWT.get(\"REFRESH_TOKEN_LIFETIME\").total_seconds() // 3600 # type: ignore [union-attr]\n" +"} 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 (basic-auth protected): `/prometheus/`\n" +"\n" +"## Version\n" +"Current API version: {EVIBES_VERSION}\n" +msgstr "" +"\n" +"欢迎使用 eVibes 文档。\n" +"\n" +"eVibes 是一个功能强大的电子商务平台,只需点击几下,您就可以创建和管理任何类型的网上商店。\n" +"\n" +"## 关键功能\n" +"- 产品目录:** 管理多个类别的产品详情、定价、库存和可用性。\n" +"- 订单管理:** 处理订单、跟踪执行情况并有效处理客户请求。\n" +"- 身份验证和授权:** 使用 JWT 标记和基于角色的权限进行全面的用户身份验证。\n" +"- 支付处理:** 集成多种支付网关,安全管理交易。\n" +"- 博客和内容管理:** 为您的商店创建和管理博客文章和营销内容。\n" +"- B2B 业务:** 用于企业对企业交易和批发管理的专用端点。\n" +"- 多语言支持:** 通过全面的国际化(i18n)功能为全球客户提供服务。\n" +"- 自定义集成:** 可扩展的应用程序接口架构,用于与外部平台和服务集成。\n" +"- 分析和报告:** 生成有关销售、库存和客户行为的详细报告。\n" +"- 实时更新:** 获取有关库存水平、订单状态和定价变化的实时数据。\n" +"\n" +"## 可用的应用程序接口\n" +"- REST API:** 完整的 REST 接口(本文档)\n" +"- **GraphQL 应用程序接口:** 可在 `/graphql/`使用 GraphiQL 接口进行交互式查询\n" +"\n" +"## 验证\n" +"- 通过 JWT 标记进行身份验证。在请求的 `X-EVIBES-AUTH` 头中包含令牌,格式为 `Bearer `。\n" +"- 访问令牌的有效期为 {\n" +" SIMPLE_JWT.get(\"ACCESS_TOKEN_LIFETIME\").total_seconds() // 60 if not DEBUG else 3600 # type: ignore [union-attr]\n" +"}{\"minutes\" if not DEBUG else \"hours\"}。\n" +"- 刷新令牌的有效期为 {\n" +" SIMPLE_JWT.get(\"REFRESH_TOKEN_LIFETIME\").total_seconds() // 3600 # type: ignore [union-attr]\n" +"} 小时。\n" +"- 刷新令牌在使用后会自动轮换和失效,以增强安全性。\n" +"\n" +"### 国际化(i18n)\n" +"- 设置 `Accept-Language` 标头,指定首选语言(例如,`Accept-Language: en-US`)。\n" +"- 可从 `/app/languages/` 端点检索可用语言。\n" +"- 所有面向用户的内容均支持多种语言。\n" +"\n" +"## 响应格式\n" +"应用程序接口支持多种响应格式:\n" +"- **JSON**(默认,驼峰编码格式)\n" +"- **XML**(添加 `?format=xml` 或设置 `Accept: application/xml`)\n" +"- **YAML**(添加 `?format=yaml`或设置`Accept: application/x-yaml)\n" +"\n" +"## 健康与监控\n" +"- 健康检查:健康检查\n" +"- Prometheus 指标(受 basic-auth 保护):`/prometheus/`\n" +"\n" +"## 版本\n" +"当前 API 版本:{EVIBES_VERSION}\n" + #: evibes/settings/jazzmin.py:20 msgid "Home" msgstr "首页" @@ -170,13 +250,9 @@ msgid "GraphQL Docs" msgstr "GraphQL 文档" #: evibes/settings/jazzmin.py:29 -msgid "Platform REST Docs" -msgstr "平台 REST 文档" +msgid "REST Docs" +msgstr "REST 文档" -#: evibes/settings/jazzmin.py:34 -msgid "B2B REST Docs" -msgstr "B2B REST 文档" - -#: evibes/settings/jazzmin.py:38 +#: evibes/settings/jazzmin.py:33 msgid "Support" msgstr "支持" diff --git a/evibes/middleware.py b/evibes/middleware.py index b411eb05..77065f41 100644 --- a/evibes/middleware.py +++ b/evibes/middleware.py @@ -1,5 +1,4 @@ import logging -import traceback from os import getenv from constance import config @@ -14,9 +13,7 @@ from rest_framework_simplejwt.authentication import JWTAuthentication from rest_framework_simplejwt.exceptions import InvalidToken from sentry_sdk import capture_exception -from evibes.settings import DEBUG - -logger = logging.getLogger("django") +logger = logging.getLogger(__name__) class CustomCommonMiddleware(CommonMiddleware): @@ -75,14 +72,10 @@ class BlockInvalidHostMiddleware: "worker:8000", "beat:8000", "localhost:8000", - "api.localhost:8000", - "b2b.localhost:8000", "127.0.0.1:8000", - "api.127.0.0.1:8000", - "b2b.127.0.0.1:8000", ] - if DEBUG: + if bool(int(getenv("DEBUG", "1"))): allowed_hosts += ["*"] else: allowed_hosts += getenv("ALLOWED_HOSTS").split(" ") @@ -109,7 +102,6 @@ class GrapheneLoggingErrorsDebugMiddleware: if any(isinstance(e, error_type) for error_type in self.WARNING_ONLY_ERRORS): logger.warning(str(e)) else: - logger.error(str(e)) - logger.error(traceback.format_exc()) + logger.error(str(e), exc_info=True) capture_exception(e) raise e diff --git a/evibes/models.png b/evibes/models.png deleted file mode 100644 index 5c2377e5..00000000 Binary files a/evibes/models.png and /dev/null differ diff --git a/evibes/settings/base.py b/evibes/settings/base.py index 6bf9de7d..b1ceea49 100644 --- a/evibes/settings/base.py +++ b/evibes/settings/base.py @@ -4,7 +4,9 @@ from os import getenv, name from pathlib import Path from typing import Any -EVIBES_VERSION = "3.1.0" +from django.core.exceptions import ImproperlyConfigured + +EVIBES_VERSION = "2025.4" RELEASE_DATE = datetime(2025, 9, 13) BASE_DIR = Path(__file__).resolve().parent.parent.parent @@ -17,11 +19,7 @@ ALLOWED_HOSTS: set[str] = { "worker", "beat", "localhost", - "api.localhost", - "b2b.localhost", "127.0.0.1", - "api.127.0.0.1", - "b2b.127.0.0.1", } if DEBUG: @@ -34,8 +32,7 @@ ALLOWED_HOSTS: tuple[str, ...] = tuple(ALLOWED_HOSTS) CSRF_TRUSTED_ORIGINS: set[str] = { "http://127.0.0.1", - "http://api.localhost", - "http://b2b.localhost", + "http://localhost", } for entry in getenv("CSRF_TRUSTED_ORIGINS", "").split(" "): @@ -48,8 +45,7 @@ if DEBUG: else: CORS_ALLOWED_ORIGINS: set[str] = { "http://127.0.0.1", - "http://api.localhost", - "http://b2b.localhost", + "http://localhost", } for entry in getenv("CORS_ALLOWED_ORIGINS", "").split(" "): CORS_ALLOWED_ORIGINS.add(entry) @@ -76,7 +72,7 @@ CORS_ALLOW_HEADERS = ( "host", "x-csrftoken", "x-requested-with", - "x-evibes-auth", + "x-evibes-vibes_auth", "baggage", "sentry-trace", "dnt", @@ -122,7 +118,6 @@ INSTALLED_APPS: list[str] = [ "health_check.contrib.db_heartbeat", "health_check.contrib.mail", "cacheops", - "django_hosts", "django_celery_beat", "django_celery_results", "django_extensions", @@ -143,17 +138,21 @@ INSTALLED_APPS: list[str] = [ "django_mailbox", "graphene_django", "channels", - "core", - "payments", - "vibes_auth", - "blog", + "engine.core", + "engine.payments", + "engine.vibes_auth", + "engine.blog", ] +if DEBUG: + wn_app_index = INSTALLED_APPS.index("django.contrib.staticfiles") - 1 + INSTALLED_APPS.insert(wn_app_index, "whitenoise.runserver_nostatic") + MIDDLEWARE: list[str] = [ "evibes.middleware.BlockInvalidHostMiddleware", "django_prometheus.middleware.PrometheusBeforeMiddleware", - "django_hosts.middleware.HostsRequestMiddleware", "django.middleware.security.SecurityMiddleware", + "whitenoise.middleware.WhiteNoiseMiddleware", "django.contrib.sessions.middleware.SessionMiddleware", "corsheaders.middleware.CorsMiddleware", "evibes.middleware.CustomCommonMiddleware", @@ -163,7 +162,6 @@ MIDDLEWARE: list[str] = [ "django.contrib.admindocs.middleware.XViewMiddleware", "django.middleware.clickjacking.XFrameOptionsMiddleware", "evibes.middleware.CustomLocaleMiddleware", - "django_hosts.middleware.HostsResponseMiddleware", "djangorestframework_camel_case.middleware.CamelCaseMiddleWare", "django_prometheus.middleware.PrometheusAfterMiddleware", ] @@ -172,9 +170,9 @@ TEMPLATES: list[dict[str, str | list[str | Path] | dict[str, str | list[str]] | { "BACKEND": "django.template.backends.django.DjangoTemplates", "DIRS": [ - BASE_DIR / "vibes_auth/templates", - BASE_DIR / "core/templates", - BASE_DIR / "payments/templates", + BASE_DIR / "engine/vibes_auth/templates", + BASE_DIR / "engine/core/templates", + BASE_DIR / "engine/payments/templates", ], "APP_DIRS": True, "OPTIONS": { @@ -294,10 +292,12 @@ DEFAULT_AUTO_FIELD: str = "django.db.models.BigAutoField" TIME_ZONE: str = getenv("TIME_ZONE", "Europe/London") -STATIC_URL: str = f"https://api.{getenv('EVIBES_BASE_DOMAIN')}/static/" +WHITENOISE_MANIFEST_STRICT: bool = False + +STATIC_URL: str = "/static/" STATIC_ROOT: Path = BASE_DIR / "static" -MEDIA_URL: str = f"https://api.{getenv('EVIBES_BASE_DOMAIN')}/media/" +MEDIA_URL: str = "/media/" MEDIA_ROOT: Path = BASE_DIR / "media" AUTH_USER_MODEL: str = "vibes_auth.User" @@ -319,8 +319,6 @@ AUTH_PASSWORD_VALIDATORS: list[dict[str, str | int]] = [ APPEND_SLASH: bool = True -ROOT_HOSTCONF: str = "evibes.hosts" -DEFAULT_HOST: str = "api" REDIS_PASSWORD: str = getenv("REDIS_PASSWORD", default="") REDIS_URL: str = f"redis://:{REDIS_PASSWORD}@redis:6379/0" @@ -347,6 +345,7 @@ if getenv("SENTRY_DSN"): def scrub_sensitive(data: dict[str, Any] | list[Any] | str) -> dict[str, Any] | list[Any] | str | None: if isinstance(data, dict): + # noinspection PyShadowingNames cleaned: dict[str, Any] = {} for key, value in data.items(): if key.lower() in ("password", "confirm_password"): @@ -396,18 +395,76 @@ DATA_UPLOAD_MAX_NUMBER_FIELDS: int = 8888 ADMINS: list[tuple[str, ...]] = [("Egor Gorbunov", "contact@fureunoir.com")] -STORAGES: dict[str, dict[str, str | int | bool | None]] = { +STORAGES: dict[str, Any] = { "default": { "BACKEND": "django.core.files.storage.FileSystemStorage", }, "staticfiles": { - "BACKEND": "django.contrib.staticfiles.storage.StaticFilesStorage", - }, - "dbbackup": { - "BACKEND": "django.core.files.storage.FileSystemStorage", + "BACKEND": "whitenoise.storage.CompressedStaticFilesStorage" + if DEBUG + else "whitenoise.storage.CompressedManifestStaticFilesStorage" }, } +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(" ", "_") + + raw_path = getenv("DBBACKUP_PATH", f"/backups/{project_name}/") + cleaned = raw_path.strip("/") + remote_dir = f"{cleaned}/" + + match dbbackup_server_type: + case "sftp": + STORAGES.update( + { + "dbbackup": { + "BACKEND": "storages.backends.sftpstorage.SFTPStorage", + "OPTIONS": { + "host": getenv("DBBACKUP_HOST"), + "root_path": f"/{remote_dir}", + "params": { + "username": getenv("DBBACKUP_USER"), + "password": getenv("DBBACKUP_PASS"), + "allow_agent": False, + "look_for_keys": False, + }, + "interactive": False, + "file_mode": 0o600, + "dir_mode": 0o700, + }, + } + } + ) + + case "ftp": + STORAGES.update( + { + "dbbackup": { + "BACKEND": "evibes.ftpstorage.AbsoluteFTPStorage", + "OPTIONS": { + "location": ( + f"ftp://{getenv('DBBACKUP_USER')}:{getenv('DBBACKUP_PASS')}@{getenv('DBBACKUP_HOST')}:21/{raw_path}" + ), + }, + } + } + ) + + case _: + raise ImproperlyConfigured(f"Invalid DBBACKUP_TYPE: {dbbackup_server_type}") +else: + STORAGES.update( + { + "dbbackup": { + "BACKEND": "django.core.files.storage.FileSystemStorage", + "OPTIONS": { + "location": "/app/backups/", + }, + } + } + ) + if name == "nt": GDAL_LIBRARY_PATH = r"C:\OSGeo4W\bin\gdal311.dll" GEOS_LIBRARY_PATH = r"C:\OSGeo4W\bin\geos_c.dll" diff --git a/evibes/settings/caches.py b/evibes/settings/caches.py index 0216984b..d2b2d3e9 100644 --- a/evibes/settings/caches.py +++ b/evibes/settings/caches.py @@ -31,6 +31,6 @@ else: CACHEOPS = { "vibes_auth.user": {"ops": "get", "timeout": 60 * 15}, "vibes_auth.*": {"ops": {"fetch", "get"}, "timeout": 60 * 60}, - "auth.permission": {"ops": "all", "timeout": 60 * 60}, + "vibes_auth.permission": {"ops": "all", "timeout": 60 * 60}, "core.*": {"ops": "all", "timeout": 60 * 60}, } diff --git a/evibes/settings/celery.py b/evibes/settings/celery.py index 6ff53d01..433383c0 100644 --- a/evibes/settings/celery.py +++ b/evibes/settings/celery.py @@ -26,27 +26,27 @@ CELERY_BEAT_SCHEDULER = "django_celery_beat.schedulers.DatabaseScheduler" CELERY_BEAT_SCHEDULE = { "update_products_task": { - "task": "core.tasks.update_products_task", + "task": "engine.core.tasks.update_products_task", "schedule": timedelta(minutes=60), "options": {"queue": "stock_updater"}, }, "update_orderproducts_task": { - "task": "core.tasks.update_orderproducts_task", + "task": "engine.core.tasks.update_orderproducts_task", "schedule": timedelta(minutes=1), "options": {"queue": "default"}, }, "set_default_caches_task": { - "task": "core.tasks.set_default_caches_task", + "task": "engine.core.tasks.set_default_caches_task", "schedule": timedelta(hours=4), "options": {"queue": "default"}, }, "remove_stale_product_images": { - "task": "core.tasks.remove_stale_product_images", + "task": "engine.core.tasks.remove_stale_product_images", "schedule": timedelta(days=1), "options": {"queue": "default"}, }, "process_promotions": { - "task": "core.tasks.process_promotions", + "task": "engine.core.tasks.process_promotions", "schedule": timedelta(hours=2), "options": {"queue": "default"}, }, diff --git a/evibes/settings/constance.py b/evibes/settings/constance.py index 6188ae2e..395aad0f 100644 --- a/evibes/settings/constance.py +++ b/evibes/settings/constance.py @@ -12,7 +12,7 @@ CONSTANCE_ADDITIONAL_FIELDS = { "django.forms.fields.JSONField", { "required": False, - "widget": "core.widgets.JSONTableWidget", + "widget": "engine.core.widgets.JSONTableWidget", }, ], } @@ -33,10 +33,6 @@ CONSTANCE_CONFIG = OrderedDict( ("EMAIL_HOST_USER", (getenv("EMAIL_HOST_USER", "no-user@fix.this"), _("SMTP username"))), ("EMAIL_HOST_PASSWORD", (getenv("EMAIL_HOST_PASSWORD", "SUPERsecretPASSWORD"), _("SMTP password"))), ("EMAIL_FROM", (getenv("EMAIL_FROM", "eVibes"), _("Mail from option"))), - ("PAYMENT_GATEWAY_URL", (getenv("PAYMENT_GATEWAY_URL", "http://404.org"), _("Payment gateway URL"))), - ("PAYMENT_GATEWAY_TOKEN", (getenv("PAYMENT_GATEWAY_TOKEN", "example token"), _("Payment gateway token"))), - ("PAYMENT_GATEWAY_MINIMUM", (getenv("PAYMENT_GATEWAY_MINIMUM", 5.0), _("Payment gateway minimum amount"))), - ("PAYMENT_GATEWAY_MAXIMUM", (getenv("PAYMENT_GATEWAY_MAXIMUM", 500.0), _("Payment gateway maximum amount"))), ("EXCHANGE_RATE_API_KEY", (getenv("EXCHANGE_RATE_API_KEY", "example token"), _("Exchange rate API key"))), ("NOMINATIM_URL", (getenv("NOMINATIM_URL", ""), _("OpenStreetMap Nominatim API URL"))), ("OPENAI_API_KEY", (getenv("OPENAI_API_KEY", "example key"), _("OpenAI API Key"))), @@ -61,6 +57,7 @@ CONSTANCE_CONFIG_FIELDSETS = OrderedDict( "COMPANY_NAME", "COMPANY_ADDRESS", "COMPANY_PHONE_NUMBER", + "EXCHANGE_RATE_API_KEY", ), gettext_noop("Email Options"): ( "EMAIL_BACKEND", @@ -72,13 +69,6 @@ CONSTANCE_CONFIG_FIELDSETS = OrderedDict( "EMAIL_HOST_PASSWORD", "EMAIL_FROM", ), - gettext_noop("Payment Gateway Options"): ( - "PAYMENT_GATEWAY_URL", - "PAYMENT_GATEWAY_TOKEN", - "EXCHANGE_RATE_API_KEY", - "PAYMENT_GATEWAY_MINIMUM", - "PAYMENT_GATEWAY_MAXIMUM", - ), gettext_noop("Features Options"): ( "TELEGRAM_API_TOKEN", "DAYS_TO_STORE_ANON_MSGS", @@ -105,8 +95,6 @@ EXPOSABLE_KEYS = [ "COMPANY_PHONE_NUMBER", "EMAIL_HOST_USER", "EMAIL_FROM", - "PAYMENT_GATEWAY_MINIMUM", - "PAYMENT_GATEWAY_MAXIMUM", "DAYS_TO_STORE_ANON_MSGS", "DAYS_TO_STORE_AUTH_MSGS", "ADVERTSIMENT", diff --git a/evibes/settings/dbbackup.py b/evibes/settings/dbbackup.py index fca73a7e..a8225a2f 100644 --- a/evibes/settings/dbbackup.py +++ b/evibes/settings/dbbackup.py @@ -1,6 +1,3 @@ -from os import getenv -from django.core.exceptions import ImproperlyConfigured - DBBACKUP_CONNECTORS = { "default": { "SINGLE_TRANSACTION": False, @@ -8,45 +5,3 @@ DBBACKUP_CONNECTORS = { "RESTORE_SUFFIX": "--set ON_ERROR_STOP=off", } } - -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(" ", "_") - - raw_path = getenv("DBBACKUP_PATH", f"/backups/{project_name}/") - cleaned = raw_path.strip("/") - remote_dir = f"{cleaned}/" - - match dbbackup_server_type: - case "sftp": - DBBACKUP_STORAGE = "storages.backends.sftpstorage.SFTPStorage" - DBBACKUP_STORAGE_OPTIONS = { - "host": getenv("DBBACKUP_HOST"), - "root_path": f"/{remote_dir}", - "params": { - "username": getenv("DBBACKUP_USER"), - "password": getenv("DBBACKUP_PASS"), - "allow_agent": False, - "look_for_keys": False, - }, - "interactive": False, - "file_mode": 0o600, - "dir_mode": 0o700, - } - - case "ftp": - DBBACKUP_STORAGE = "evibes.ftpstorage.AbsoluteFTPStorage" - DBBACKUP_STORAGE_OPTIONS = { - "location": ( - f"ftp://{getenv('DBBACKUP_USER')}:{getenv('DBBACKUP_PASS')}@{getenv('DBBACKUP_HOST')}:21/{raw_path}" - ), - } - - case _: - raise ImproperlyConfigured(f"Invalid DBBACKUP_TYPE: {dbbackup_server_type}") - -else: - DBBACKUP_STORAGE = "django.core.files.storage.FileSystemStorage" - DBBACKUP_STORAGE_OPTIONS = { - "location": "/app/backups/", - } diff --git a/evibes/settings/drf.py b/evibes/settings/drf.py index 1f3f636e..4fb2b281 100644 --- a/evibes/settings/drf.py +++ b/evibes/settings/drf.py @@ -1,6 +1,8 @@ from datetime import timedelta from os import getenv +from django.utils.translation import gettext_lazy as _ + from evibes.settings.base import DEBUG, EVIBES_VERSION, SECRET_KEY from evibes.settings.constance import CONSTANCE_CONFIG @@ -45,49 +47,26 @@ SIMPLE_JWT: dict[str, timedelta | str | bool] = { "AUTH_HEADER_NAME": "HTTP_X_EVIBES_AUTH", } -SPECTACULAR_B2B_DESCRIPTION = f""" -Welcome to the { - CONSTANCE_CONFIG.get("PROJECT_NAME")[0] # type: ignore [index] -} B2B API documentation. +SPECTACULAR_DESCRIPTION = _(f""" +Welcome to the eVibes documentation. -The { - CONSTANCE_CONFIG.get("PROJECT_NAME")[0] # type: ignore [index] -} B2B API is designed to provide seamless integration for merchants selling a wide range of electronics. Through this API, partnered merchants can manage products, orders, and inventory with ease, while accessing real-time stock levels. +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. ## Key Features -- **Product Management:** Easily create, update, and manage your product listings with detailed specifications. -- **Order Processing:** Handle bulk orders efficiently with streamlined operations for merchants. -- **Inventory Management:** Keep track of stock levels in real-time, ensuring smooth fulfillment. -- **Secure Transactions:** Secure and encrypted transactions to protect sensitive business information. -- **Multi-Currency Support:** Expand your market reach with multi-currency transactions. -- **Real-Time Notifications:** Stay updated with instant alerts on stock changes and order statuses. +- **Product Catalog:** Manage product details, pricing, inventory, and availability across multiple categories. +- **Order Management:** Process orders, track fulfillment, and handle customer requests efficiently. +- **Authentication & Authorization:** Comprehensive user authentication with JWT tokens and role-based permissions. +- **Payment Processing:** Integrate multiple payment gateways and manage transactions securely. +- **Blog & Content Management:** Create and manage blog posts and marketing content for your store. +- **B2B Operations:** Dedicated endpoints for business-to-business transactions and wholesale management. +- **Multi-language Support:** Serve customers worldwide with full internationalization (i18n) capabilities. +- **Custom Integrations:** Extensible API architecture for integrating with external platforms and services. +- **Analytics & Reporting:** Generate detailed reports on sales, inventory, and customer behavior. +- **Real-Time Updates:** Get live data on inventory levels, order statuses, and pricing changes. -## Authentication -- Authentication is handled via your merchant token. Include the token in the `X-EVIBES-B2B-AUTH` header of your requests in the format `Bearer `. - -## I18N -- Apply an `Accept-Language` header to use non-default language. A list of all languages is available at `/app/languages/`. - -## Version -Current API version: {EVIBES_VERSION} -""" # noqa: E501, F405 - -SPECTACULAR_PLATFORM_DESCRIPTION = f""" -Welcome to the { - CONSTANCE_CONFIG.get("PROJECT_NAME")[0] # type: ignore [index] -} Platform API documentation. - -The { - CONSTANCE_CONFIG.get("PROJECT_NAME")[0] # type: ignore [index] -} API is the central hub for managing product listings, monitoring orders, and accessing analytics for your electronics store. It provides RESTful endpoints for managing your store’s backend operations and includes both REST and GraphQL options. - -## Key Features -- **Product Catalog:** Manage product details, pricing, and availability. -- **Order Management:** Access detailed order information and process customer requests efficiently. -- **User Roles & Permissions:** Set user roles and permissions for internal management. -- **Custom Integrations:** Connect your system with external platforms through powerful APIs. -- **Detailed Reporting:** Generate comprehensive reports on orders, sales performance, and product data. -- **Real-Time Data:** Get live updates on inventory, pricing, and order statuses. +## Available APIs +- **REST API:** Full RESTful interface (this documentation) +- **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 `. @@ -97,20 +76,32 @@ The { - Refresh token lifetime is { SIMPLE_JWT.get("REFRESH_TOKEN_LIFETIME").total_seconds() // 3600 # type: ignore [union-attr] } hours. -- Refresh tokens are automatically invalidated after usage. +- Refresh tokens are automatically rotated and invalidated after usage for enhanced security. -## I18N -- Apply an `Accept-Language` header to use non-default language. A list of all languages is available at `/app/languages/`. +## Internationalization (i18n) +- Set the `Accept-Language` header to specify your preferred language (e.g., `Accept-Language: en-US`). +- Available languages can be retrieved from the `/app/languages/` endpoint. +- All user-facing content supports multiple languages out of the box. + +## Response Formats +The API supports multiple response formats: +- **JSON** (default, camelCase formatted) +- **XML** (add `?format=xml` or set `Accept: application/xml`) +- **YAML** (add `?format=yaml` or set `Accept: application/x-yaml`) + +## Health & Monitoring +- Health checks: `/health/` +- Prometheus metrics (basic-auth protected): `/prometheus/` ## Version Current API version: {EVIBES_VERSION} -""" # noqa: E501, F405 +""") # noqa: E501, F405 -SPECTACULAR_PLATFORM_SETTINGS = { +SPECTACULAR_SETTINGS = { "TITLE": f"{CONSTANCE_CONFIG.get('PROJECT_NAME')[0]} API", # type: ignore [index] - "DESCRIPTION": SPECTACULAR_PLATFORM_DESCRIPTION, + "DESCRIPTION": SPECTACULAR_DESCRIPTION, "VERSION": EVIBES_VERSION, # noqa: F405 - "TOS": "https://wiseless.xyz/evibes/terms-of-service", + "TOS": "https://evibes.wiseless.xyz/terms-of-service", "SWAGGER_UI_DIST": "SIDECAR", "CAMELIZE_NAMES": True, "POSTPROCESSING_HOOKS": [ @@ -156,58 +147,3 @@ SPECTACULAR_PLATFORM_SETTINGS = { "URL": "https://t.me/fureunoir", }, } - -# noinspection Mypy -SPECTACULAR_B2B_SETTINGS = { - "TITLE": f"{CONSTANCE_CONFIG.get('PROJECT_NAME')[0]} API", # type: ignore [index] - "DESCRIPTION": SPECTACULAR_B2B_DESCRIPTION, - "VERSION": EVIBES_VERSION, # noqa: F405 - "TOS": "https://wiseless.xyz/evibes/terms-of-service", - "SWAGGER_UI_DIST": "SIDECAR", - "CAMELIZE_NAMES": True, - "POSTPROCESSING_HOOKS": [ - "drf_spectacular.contrib.djangorestframework_camel_case.camelize_serializer_fields", - "drf_spectacular.hooks.postprocess_schema_enums", - ], - "REDOC_DIST": "SIDECAR", - "ENABLE_DJANGO_DEPLOY_CHECK": not DEBUG, # noqa: F405 - "SWAGGER_UI_FAVICON_HREF": r"/static/favicon.png", - "SWAGGER_UI_SETTINGS": { - "requestInterceptor": """ - function(request) { - const fmt = new URL(request.url).searchParams.get('format'); - if (fmt) { - switch (fmt) { - case 'xml': - request.headers['Accept'] = 'application/xml'; - break; - case 'yaml': - request.headers['Accept'] = 'application/x-yaml'; - break; - case 'yml': - request.headers['Accept'] = 'application/x-yaml'; - break; - default: - request.headers['Accept'] = 'application/json'; - } - } - return request; - } - """, - }, - "SERVERS": [ - { - "url": f"https://b2b.{CONSTANCE_CONFIG.get('BASE_DOMAIN')[0]}/", # type: ignore [index] - "description": "Production Server", - }, - { - "url": f"https://beta.b2b.{CONSTANCE_CONFIG.get('BASE_DOMAIN')[0]}/", # type: ignore [index] - "description": "Beta Solutions Server", - }, - ], - "CONTACT": { - "name": f"{CONSTANCE_CONFIG.get('COMPANY_NAME')[0]}", # type: ignore [index] - "email": f"{CONSTANCE_CONFIG.get('EMAIL_HOST_USER')[0]}", # type: ignore [index] - "URL": f"https://www.{CONSTANCE_CONFIG.get('BASE_DOMAIN')[0]}/help", # type: ignore [index] - }, -} diff --git a/evibes/settings/elasticsearch.py b/evibes/settings/elasticsearch.py index 257262a3..dd2e0ebb 100644 --- a/evibes/settings/elasticsearch.py +++ b/evibes/settings/elasticsearch.py @@ -1,6 +1,6 @@ from os import getenv -from evibes.settings import DEBUG +from evibes.settings.base import DEBUG ELASTICSEARCH_DSL = { "default": { diff --git a/evibes/settings/emailing.py b/evibes/settings/emailing.py index 82dbcd65..e709ffdc 100644 --- a/evibes/settings/emailing.py +++ b/evibes/settings/emailing.py @@ -1,4 +1,4 @@ -from evibes.settings import CONSTANCE_CONFIG +from evibes.settings.constance import CONSTANCE_CONFIG EMAIL_BACKEND = "django.core.mail.backends.smtp.EmailBackend" EMAIL_HOST = CONSTANCE_CONFIG.get("EMAIL_HOST")[0] # type: ignore [index] diff --git a/evibes/settings/jazzmin.py b/evibes/settings/jazzmin.py index a15ceb1e..7e7b253e 100644 --- a/evibes/settings/jazzmin.py +++ b/evibes/settings/jazzmin.py @@ -26,15 +26,10 @@ JAZZMIN_SETTINGS = { "new_window": True, }, { - "name": _("Platform REST Docs"), + "name": _("REST Docs"), "url": f"https://api.{CONSTANCE_CONFIG.get('BASE_DOMAIN')[0]}/docs/swagger", # type: ignore [index] "new_window": True, }, - { - "name": _("B2B REST Docs"), - "url": f"https://b2b.{CONSTANCE_CONFIG.get('BASE_DOMAIN')[0]}/docs/swagger", # type: ignore [index] - "new_window": True, - }, {"name": _("Support"), "url": "https://t.me/fureunoir", "new_window": True}, ], "usermenu_links": [], @@ -44,9 +39,9 @@ JAZZMIN_SETTINGS = { "hide_models": [], "order_with_respect_to": ["vibes_auth", "core", "payments", "blog"], "icons": { - "auth": "fas fa-users-cog", - "auth.user": "fas fa-user", - "auth.Group": "fas fa-users", + "vibes_auth": "fas fa-users-cog", + "vibes_auth.user": "fas fa-user", + "vibes_auth.Group": "fas fa-users", }, "default_icon_parents": "fas fa-chevron-circle-right", "default_icon_children": "fas fa-circle", diff --git a/evibes/settings/logconfig.py b/evibes/settings/logconfig.py index 130730a2..ae41e378 100644 --- a/evibes/settings/logconfig.py +++ b/evibes/settings/logconfig.py @@ -6,15 +6,12 @@ from evibes.settings.base import DEBUG class SkipVariableDoesNotExistFilter(logging.Filter): def filter(self, record: logging.LogRecord) -> bool: if record.exc_info: - exc_type, exc_instance, _ = record.exc_info + exc_type, _, _ = record.exc_info try: - if exc_type is not None: - if exc_type.__name__ == "VariableDoesNotExist": - return False - else: - return True + if exc_type is not None and exc_type.__name__ == "VariableDoesNotExist": + return False except AttributeError: - return True + pass return "VariableDoesNotExist" not in record.getMessage() @@ -24,7 +21,7 @@ LOGGING = { "formatters": { "color": { "()": "colorlog.ColoredFormatter", - "format": "%(asctime)s %(log_color)s[%(levelname)s]%(reset)s %(name)s: %(message)s", + "format": "%(asctime)s %(log_color)s[%(levelname)s]%(reset)s %(name)s:%(module)s:%(lineno)d: %(message)s", "datefmt": "%Y-%m-%d %H:%M:%S", "log_colors": { "DEBUG": "cyan", @@ -40,20 +37,15 @@ LOGGING = { }, }, "filters": { - "require_debug_false": { - "()": "django.utils.log.RequireDebugFalse", - }, - "require_debug_true": { - "()": "django.utils.log.RequireDebugTrue", - }, - "skip_variable_doesnotexist": { - "()": "evibes.settings.logconfig.SkipVariableDoesNotExistFilter", - }, + "require_debug_false": {"()": "django.utils.log.RequireDebugFalse"}, + "require_debug_true": {"()": "django.utils.log.RequireDebugTrue"}, + "skip_variable_doesnotexist": {"()": "evibes.settings.logconfig.SkipVariableDoesNotExistFilter"}, }, "handlers": { "console": { "class": "logging.StreamHandler", "formatter": "color", + "level": "DEBUG" if DEBUG else "INFO", }, "mail_admins": { "level": "ERROR", @@ -61,77 +53,85 @@ LOGGING = { "class": "django.utils.log.AdminEmailHandler", }, }, + "root": { + "handlers": ["console"], + "level": "DEBUG" if DEBUG else "INFO", + }, "loggers": { "django": { - "handlers": [ - "console", - "mail_admins", - ], + "handlers": ["console"], "level": "DEBUG" if DEBUG else "INFO", "propagate": True, }, + "django.request": { + "handlers": ["console"], + "level": "DEBUG" if DEBUG else "ERROR", + "propagate": False, + }, "django.server": { - "level": "INFO", + "handlers": ["console"], + "level": "DEBUG" if DEBUG else "INFO", "propagate": False, }, "django.db.backends": { - "handlers": [ - "console", - "mail_admins", - ], "level": "WARNING", - "propagate": False, + "propagate": True, }, "django.template": { - "handlers": [ - "console", - "mail_admins", - ], "level": "DEBUG" if DEBUG else "ERROR", - "propagate": True, "filters": ["skip_variable_doesnotexist"], + "propagate": True, }, "uvicorn.access": { - "handlers": [ - "console", - ], + "handlers": ["console"], "level": "DEBUG" if DEBUG else "INFO", "propagate": False, }, "uvicorn.error": { - "handlers": [ - "console", - ], - "level": "WARNING", - "propagate": False, - }, - "django_elasticsearch_dsl": { - "handlers": [ - "console", - ], - "level": "WARNING", + "handlers": ["console"], + "level": "DEBUG" if DEBUG else "WARNING", "propagate": False, }, "celery.app.trace": { - "handlers": [ - "console", - ], "level": "DEBUG" if DEBUG else "INFO", - "propagate": False, + "propagate": True, }, "celery.worker.strategy": { - "handlers": [ - "console", - ], "level": "DEBUG" if DEBUG else "INFO", - "propagate": False, + "propagate": True, + }, + "django_elasticsearch_dsl": { + "level": "WARNING", + "propagate": True, }, "elastic_transport.transport": { - "handlers": [ - "console", - ], "level": "ERROR", - "propagate": False, + "propagate": True, + }, + "evibes": { + "handlers": ["console"], + "level": "DEBUG" if DEBUG else "INFO", + "propagate": True, + }, + "blog": { + "handlers": ["console"], + "level": "DEBUG" if DEBUG else "INFO", + "propagate": True, + }, + "core": { + "handlers": ["console"], + "level": "DEBUG" if DEBUG else "INFO", + "propagate": True, + }, + "payments": { + "handlers": ["console"], + "level": "DEBUG" if DEBUG else "INFO", + "propagate": True, + }, + "vibes_auth": { + "handlers": ["console"], + "level": "DEBUG" if DEBUG else "INFO", + "propagate": True, }, }, } diff --git a/evibes/urls.py b/evibes/urls.py index ab9747c7..78e05d6f 100644 --- a/evibes/urls.py +++ b/evibes/urls.py @@ -1,5 +1,95 @@ -from django.urls import URLResolver, include, path +from django.conf import settings +from django.conf.urls.i18n import i18n_patterns +from django.contrib import admin +from django.urls import include, path +from django.views.decorators.csrf import csrf_exempt +from drf_spectacular.views import SpectacularAPIView -urlpatterns: list[URLResolver] = [ - path(r"i18n/", include("django.conf.urls.i18n"), name="i18n"), +from engine.core.graphene.schema import schema +from engine.core.views import ( + CustomGraphQLView, + CustomRedocView, + CustomSwaggerView, + favicon_view, + index, +) + +urlpatterns = [ + ### COMMON URLS ### + path( + r"", + index, + ), + path( + r"health/", + include( + "health_check.urls", + ), + ), + path( + r"prometheus/", + include( + "django_prometheus.urls", + ), + ), + path( + "summernote/", + include("django_summernote.urls"), + ), + path( + r"i18n/", + include("django.conf.urls.i18n"), + ), + path( + r"favicon.ico", + favicon_view, + ), + path( + r"graphql/", + csrf_exempt(CustomGraphQLView.as_view(graphiql=True, schema=schema)), + name="graphql-platform", + ), + ### DOCUMENTATION URLS ### + path( + r"docs/", + SpectacularAPIView.as_view(urlconf="evibes.urls", custom_settings=settings.SPECTACULAR_SETTINGS), + name="schema-platform", + ), + path( + r"docs/swagger/", + CustomSwaggerView.as_view(url_name="schema-platform"), + name="swagger-ui-platform", + ), + path( + r"docs/redoc/", + CustomRedocView.as_view(url_name="schema-platform"), + name="redoc-ui-platform", + ), + ### ENGINE APPS URLS ### + path( + r"b2b/", + include("engine.core.b2b_urls", namespace="core_b2b"), + ), + path( + r"", + include("engine.core.urls", namespace="core"), + ), + path( + r"authv/", + include("engine.vibes_auth.urls", namespace="vibes_auth"), + ), + path( + r"payments/", + include("engine.payments.urls", namespace="payments"), + ), + path( + r"blog/", + include("engine.blog.urls", namespace="blog"), + ), + ### ADMIN URLS ### + path( + "admin/doc/", + include("django.contrib.admindocs.urls"), + ), + *i18n_patterns(path("admin/", admin.site.urls)), ] diff --git a/evibes/utils/misc.py b/evibes/utils/misc.py index de8351fa..abcdb921 100644 --- a/evibes/utils/misc.py +++ b/evibes/utils/misc.py @@ -11,6 +11,10 @@ def create_object(module_name: str, class_name: str, *args: list[Any], **kwargs: return cls(*args, **kwargs) +class LoggingError(Exception): + pass + + class LogLevel(Enum): DEBUG = "debug" INFO = "info" diff --git a/nginx.conf b/nginx.conf index 464aa503..22af2b6c 100644 --- a/nginx.conf +++ b/nginx.conf @@ -11,157 +11,168 @@ upstream storefront_frontend { } server { - listen 443 ssl http2; - server_name api.evibes.com b2b.evibes.com; - ssl_certificate /etc/letsencrypt/live/evibes.com/fullchain.pem; - ssl_certificate_key /etc/letsencrypt/live/evibes.com/privkey.pem; - include /etc/letsencrypt/options-ssl-nginx.conf; - ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; - ssl_session_cache shared:SSL:10m; - add_header Strict-Transport-Security "max-age=31536000; includeSubDomains; preload" always; - add_header X-Frame-Options SAMEORIGIN always; - add_header X-Content-Type-Options nosniff always; - add_header Referrer-Policy no-referrer-when-downgrade always; - client_max_body_size 100M; + listen 443 ssl http2; + server_name api.evibes.com; + + ssl_certificate /etc/letsencrypt/live/evibes.com/fullchain.pem; + ssl_certificate_key /etc/letsencrypt/live/evibes.com/privkey.pem; + include /etc/letsencrypt/options-ssl-nginx.conf; + ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; + ssl_session_cache shared:SSL:10m; + + add_header Strict-Transport-Security "max-age=31536000; includeSubDomains; preload" always; + add_header X-Frame-Options SAMEORIGIN always; + add_header X-Content-Type-Options nosniff always; + add_header Referrer-Policy no-referrer-when-downgrade always; + + client_max_body_size 100M; location / { - proxy_pass http://django_backend; - proxy_set_header Host $host; - proxy_set_header X-Real-IP $remote_addr; - proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; - proxy_set_header X-Forwarded-Proto $scheme; - proxy_http_version 1.1; - proxy_set_header Upgrade $http_upgrade; - proxy_set_header Connection "upgrade"; - proxy_read_timeout 300; - proxy_send_timeout 300; + proxy_pass http://django_backend; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; + proxy_http_version 1.1; + proxy_set_header Upgrade $http_upgrade; + proxy_set_header Connection "upgrade"; + proxy_read_timeout 300; + proxy_send_timeout 300; } location /favicon.ico { - add_header Access-Control-Allow-Origin "*"; - root /var/jenkins/workspace/evibes/static; + add_header Access-Control-Allow-Origin "*"; + root /var/jenkins/workspace/evibes/static; } location = /robots.txt { - add_header Access-Control-Allow-Origin "*"; - alias /var/jenkins/workspace/evibes/static/robots_backend.txt; - default_type text/plain; - } - - location /media/ { - add_header Access-Control-Allow-Origin "*"; - root /var/jenkins/workspace/evibes; + add_header Access-Control-Allow-Origin "*"; + alias /var/jenkins/workspace/evibes/static/robots_backend.txt; + default_type text/plain; } location /static/ { - add_header Access-Control-Allow-Origin "*"; - root /var/jenkins/workspace/evibes; + add_header Access-Control-Allow-Origin "*"; + root /var/jenkins/workspace/evibes; } - error_page 500 502 503 504 /maintenance.html; + location /media/ { + add_header Access-Control-Allow-Origin "*"; + root /var/jenkins/workspace/evibes; + } + + error_page 500 502 503 504 /maintenance.html; + location = /maintenance.html { - add_header Access-Control-Allow-Origin "*"; - root /var/jenkins/workspace/evibes/static; + add_header Access-Control-Allow-Origin "*"; + root /var/jenkins/workspace/evibes/static; internal; } } server { - listen 443 ssl http2; - server_name evibes.com www.evibes.com; - ssl_certificate /etc/letsencrypt/live/evibes.com/fullchain.pem; - ssl_certificate_key /etc/letsencrypt/live/evibes.com/privkey.pem; - include /etc/letsencrypt/options-ssl-nginx.conf; - ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; - ssl_session_cache shared:SSL:10m; - add_header Strict-Transport-Security "max-age=31536000; includeSubDomains; preload" always; - add_header X-Frame-Options SAMEORIGIN always; - add_header X-Content-Type-Options nosniff always; - add_header Referrer-Policy no-referrer-when-downgrade always; + listen 443 ssl http2; + server_name evibes.com www.evibes.com; + + ssl_certificate /etc/letsencrypt/live/evibes.com/fullchain.pem; + ssl_certificate_key /etc/letsencrypt/live/evibes.com/privkey.pem; + include /etc/letsencrypt/options-ssl-nginx.conf; + ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; + ssl_session_cache shared:SSL:10m; + + add_header Strict-Transport-Security "max-age=31536000; includeSubDomains; preload" always; + add_header X-Frame-Options SAMEORIGIN always; + add_header X-Content-Type-Options nosniff always; + add_header Referrer-Policy no-referrer-when-downgrade always; location /favicon.ico { - add_header Access-Control-Allow-Origin "*"; - root /var/jenkins/workspace/evibes/static; + add_header Access-Control-Allow-Origin "*"; + root /var/jenkins/workspace/evibes/static; } location = /robots.txt { - add_header Access-Control-Allow-Origin "*"; - alias /var/jenkins/workspace/evibes/static/robots_frontend.txt; - default_type text/plain; + add_header Access-Control-Allow-Origin "*"; + alias /var/jenkins/workspace/evibes/static/robots_frontend.txt; + default_type text/plain; } location ~ ^/sitemap(?:-(?P
[a-z]+)(?:-(?P\d+))?)?\.xml$ { - proxy_pass http://django_backend$request_uri; - proxy_set_header Host $host; - proxy_set_header X-Real-IP $remote_addr; - proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; - proxy_set_header X-Forwarded-Proto $scheme; - proxy_set_header Accept "application/xml"; + proxy_pass http://django_backend$request_uri; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; + proxy_set_header Accept "application/xml"; } location / { - proxy_pass http://storefront_frontend; - proxy_set_header Host $host; - proxy_set_header X-Real-IP $remote_addr; - proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; - proxy_set_header X-Forwarded-Proto $scheme; + proxy_pass http://storefront_frontend; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; } location @maintenance { - return 503; + return 503; } - error_page 503 404 500 502 504 /maintenance.html; + error_page 503 404 500 502 504 /maintenance.html; + location = /maintenance.html { - add_header Access-Control-Allow-Origin "*"; - root /var/jenkins/workspace/evibes/static; + add_header Access-Control-Allow-Origin "*"; + root /var/jenkins/workspace/evibes/static; internal; } } server { - listen 443 ssl http2; - server_name prometheus.evibes.com; - ssl_certificate /etc/letsencrypt/live/evibes.com/fullchain.pem; - ssl_certificate_key /etc/letsencrypt/live/evibes.com/privkey.pem; - include /etc/letsencrypt/options-ssl-nginx.conf; - ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; - ssl_session_cache shared:SSL:10m; - add_header Strict-Transport-Security "max-age=31536000; includeSubDomains; preload" always; - add_header X-Frame-Options SAMEORIGIN always; - add_header X-Content-Type-Options nosniff always; - add_header Referrer-Policy no-referrer-when-downgrade always; - client_max_body_size 100M; + listen 443 ssl http2; + server_name prometheus.evibes.com; + + ssl_certificate /etc/letsencrypt/live/evibes.com/fullchain.pem; + ssl_certificate_key /etc/letsencrypt/live/evibes.com/privkey.pem; + include /etc/letsencrypt/options-ssl-nginx.conf; + ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; + ssl_session_cache shared:SSL:10m; + + add_header Strict-Transport-Security "max-age=31536000; includeSubDomains; preload" always; + add_header X-Frame-Options SAMEORIGIN always; + add_header X-Content-Type-Options nosniff always; + add_header Referrer-Policy no-referrer-when-downgrade always; + + client_max_body_size 100M; location / { - proxy_pass http://prom_backend; - proxy_set_header Host $host; - proxy_set_header X-Real-IP $remote_addr; - proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; - proxy_set_header X-Forwarded-Proto $scheme; + proxy_pass http://prom_backend; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; } location = /robots.txt { - add_header Access-Control-Allow-Origin "*"; - alias /var/jenkins/workspace/evibes/static/robots_backend.txt; - default_type text/plain; + add_header Access-Control-Allow-Origin "*"; + alias /var/jenkins/workspace/evibes/static/robots_backend.txt; + default_type text/plain; } location /favicon.ico { - add_header Access-Control-Allow-Origin "*"; - root /var/jenkins/workspace/evibes/static; + add_header Access-Control-Allow-Origin "*"; + root /var/jenkins/workspace/evibes/static; } - error_page 500 502 503 504 /maintenance.html; + error_page 500 502 503 504 /maintenance.html; + location = /maintenance.html { - add_header Access-Control-Allow-Origin "*"; - root /var/jenkins/workspace/evibes/static; + add_header Access-Control-Allow-Origin "*"; + root /var/jenkins/workspace/evibes/static; internal; } } server { - listen 80; - server_name api.evibes.com b2b.evibes.com www.evibes.com evibes.com prometheus.evibes.com; - return 301 https://$host$request_uri; + listen 80; + server_name api.evibes.com www.evibes.com evibes.com prometheus.evibes.com; + return 301 https://$host$request_uri; } diff --git a/payments/locale/ar_AR/LC_MESSAGES/django.mo b/payments/locale/ar_AR/LC_MESSAGES/django.mo deleted file mode 100644 index f197aa38..00000000 Binary files a/payments/locale/ar_AR/LC_MESSAGES/django.mo and /dev/null differ diff --git a/payments/locale/cs_CZ/LC_MESSAGES/django.mo b/payments/locale/cs_CZ/LC_MESSAGES/django.mo deleted file mode 100644 index a6552177..00000000 Binary files a/payments/locale/cs_CZ/LC_MESSAGES/django.mo and /dev/null differ diff --git a/payments/locale/da_DK/LC_MESSAGES/django.mo b/payments/locale/da_DK/LC_MESSAGES/django.mo deleted file mode 100644 index 3c9ce481..00000000 Binary files a/payments/locale/da_DK/LC_MESSAGES/django.mo and /dev/null differ diff --git a/payments/locale/de_DE/LC_MESSAGES/django.mo b/payments/locale/de_DE/LC_MESSAGES/django.mo deleted file mode 100644 index d9e91ef9..00000000 Binary files a/payments/locale/de_DE/LC_MESSAGES/django.mo and /dev/null differ diff --git a/payments/locale/en_GB/LC_MESSAGES/django.mo b/payments/locale/en_GB/LC_MESSAGES/django.mo deleted file mode 100644 index a3cf0637..00000000 Binary files a/payments/locale/en_GB/LC_MESSAGES/django.mo and /dev/null differ diff --git a/payments/locale/en_US/LC_MESSAGES/django.mo b/payments/locale/en_US/LC_MESSAGES/django.mo deleted file mode 100644 index 24604e68..00000000 Binary files a/payments/locale/en_US/LC_MESSAGES/django.mo and /dev/null differ diff --git a/payments/locale/es_ES/LC_MESSAGES/django.mo b/payments/locale/es_ES/LC_MESSAGES/django.mo deleted file mode 100644 index 70d6837b..00000000 Binary files a/payments/locale/es_ES/LC_MESSAGES/django.mo and /dev/null differ diff --git a/payments/locale/fr_FR/LC_MESSAGES/django.mo b/payments/locale/fr_FR/LC_MESSAGES/django.mo deleted file mode 100644 index cb7b3ff0..00000000 Binary files a/payments/locale/fr_FR/LC_MESSAGES/django.mo and /dev/null differ diff --git a/payments/locale/he_IL/LC_MESSAGES/django.mo b/payments/locale/he_IL/LC_MESSAGES/django.mo deleted file mode 100644 index 380da9d6..00000000 Binary files a/payments/locale/he_IL/LC_MESSAGES/django.mo and /dev/null differ diff --git a/payments/locale/hi_IN/LC_MESSAGES/django.mo b/payments/locale/hi_IN/LC_MESSAGES/django.mo deleted file mode 100644 index 692bae97..00000000 Binary files a/payments/locale/hi_IN/LC_MESSAGES/django.mo and /dev/null differ diff --git a/payments/locale/id_ID/LC_MESSAGES/django.mo b/payments/locale/id_ID/LC_MESSAGES/django.mo deleted file mode 100644 index e2a2bb86..00000000 Binary files a/payments/locale/id_ID/LC_MESSAGES/django.mo and /dev/null differ diff --git a/payments/locale/it_IT/LC_MESSAGES/django.mo b/payments/locale/it_IT/LC_MESSAGES/django.mo deleted file mode 100644 index 213b45c6..00000000 Binary files a/payments/locale/it_IT/LC_MESSAGES/django.mo and /dev/null differ diff --git a/payments/locale/ja_JP/LC_MESSAGES/django.mo b/payments/locale/ja_JP/LC_MESSAGES/django.mo deleted file mode 100644 index eb0a3313..00000000 Binary files a/payments/locale/ja_JP/LC_MESSAGES/django.mo and /dev/null differ diff --git a/payments/locale/kk_KZ/LC_MESSAGES/django.mo b/payments/locale/kk_KZ/LC_MESSAGES/django.mo deleted file mode 100644 index 692bae97..00000000 Binary files a/payments/locale/kk_KZ/LC_MESSAGES/django.mo and /dev/null differ diff --git a/payments/locale/ko_KR/LC_MESSAGES/django.mo b/payments/locale/ko_KR/LC_MESSAGES/django.mo deleted file mode 100644 index d02f195f..00000000 Binary files a/payments/locale/ko_KR/LC_MESSAGES/django.mo and /dev/null differ diff --git a/payments/locale/nl_NL/LC_MESSAGES/django.mo b/payments/locale/nl_NL/LC_MESSAGES/django.mo deleted file mode 100644 index 5ad211cc..00000000 Binary files a/payments/locale/nl_NL/LC_MESSAGES/django.mo and /dev/null differ diff --git a/payments/locale/no_NO/LC_MESSAGES/django.mo b/payments/locale/no_NO/LC_MESSAGES/django.mo deleted file mode 100644 index 31a4d3e3..00000000 Binary files a/payments/locale/no_NO/LC_MESSAGES/django.mo and /dev/null differ diff --git a/payments/locale/pl_PL/LC_MESSAGES/django.mo b/payments/locale/pl_PL/LC_MESSAGES/django.mo deleted file mode 100644 index 1eb71d66..00000000 Binary files a/payments/locale/pl_PL/LC_MESSAGES/django.mo and /dev/null differ diff --git a/payments/locale/pt_BR/LC_MESSAGES/django.mo b/payments/locale/pt_BR/LC_MESSAGES/django.mo deleted file mode 100644 index bd53f1fa..00000000 Binary files a/payments/locale/pt_BR/LC_MESSAGES/django.mo and /dev/null differ diff --git a/payments/locale/ro_RO/LC_MESSAGES/django.mo b/payments/locale/ro_RO/LC_MESSAGES/django.mo deleted file mode 100644 index f930390c..00000000 Binary files a/payments/locale/ro_RO/LC_MESSAGES/django.mo and /dev/null differ diff --git a/payments/locale/ru_RU/LC_MESSAGES/django.mo b/payments/locale/ru_RU/LC_MESSAGES/django.mo deleted file mode 100644 index 1c89cbd0..00000000 Binary files a/payments/locale/ru_RU/LC_MESSAGES/django.mo and /dev/null differ diff --git a/payments/locale/sv_SE/LC_MESSAGES/django.mo b/payments/locale/sv_SE/LC_MESSAGES/django.mo deleted file mode 100644 index 8396db3b..00000000 Binary files a/payments/locale/sv_SE/LC_MESSAGES/django.mo and /dev/null differ diff --git a/payments/locale/th_TH/LC_MESSAGES/django.mo b/payments/locale/th_TH/LC_MESSAGES/django.mo deleted file mode 100644 index 802ef98f..00000000 Binary files a/payments/locale/th_TH/LC_MESSAGES/django.mo and /dev/null differ diff --git a/payments/locale/tr_TR/LC_MESSAGES/django.mo b/payments/locale/tr_TR/LC_MESSAGES/django.mo deleted file mode 100644 index ffd19d02..00000000 Binary files a/payments/locale/tr_TR/LC_MESSAGES/django.mo and /dev/null differ diff --git a/payments/locale/vi_VN/LC_MESSAGES/django.mo b/payments/locale/vi_VN/LC_MESSAGES/django.mo deleted file mode 100644 index 94451f56..00000000 Binary files a/payments/locale/vi_VN/LC_MESSAGES/django.mo and /dev/null differ diff --git a/payments/locale/zh_Hans/LC_MESSAGES/django.mo b/payments/locale/zh_Hans/LC_MESSAGES/django.mo deleted file mode 100644 index e24ba8c2..00000000 Binary files a/payments/locale/zh_Hans/LC_MESSAGES/django.mo and /dev/null differ diff --git a/pyproject.toml b/pyproject.toml index 75d48081..05a757d0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "eVibes" -version = "3.1.0" +version = "2025.4" 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." authors = [{ name = "fureunoir", email = "contact@fureunoir.com" }] readme = "README.md" @@ -11,19 +11,18 @@ dependencies = [ "channels==4.3.1", "channels-redis>=4.3.0", "colorlog==6.10.1", - "coverage==7.11.0", + "coverage==7.11.1", "click==8.3.0", "cryptography==46.0.3", - "django==5.2.7", + "django==5.2.8", "django-cacheops==7.2", - "django-constance==4.3.2", + "django-constance==4.3.3", "django-cors-headers==4.9.0", - "django-dbbackup==5.0.0", + "django-dbbackup==5.0.1", "django-elasticsearch-dsl==8.2", "django-extensions==4.1", "django-filter==25.2", "django-health-check==3.20.0", - "django-hosts==7.0.0", "django-jazzmin==3.0.1", "django-json-widget==2.1.0", "django-mailbox==4.10.1", @@ -45,8 +44,7 @@ dependencies = [ "djangorestframework-stubs==3.16.5", "djangorestframework-xml==2.0.0", "djangorestframework-yaml==2.0.0", - "docutils==0.21.2", - "drf-spectacular[sidecar]==0.28.0", + "drf-spectacular[sidecar]==0.29.0", "elasticsearch-dsl==8.18.0", "filelock==3.20.0", "filetype==1.2.0", @@ -60,20 +58,21 @@ dependencies = [ "polib==1.2.0", "PyJWT==2.10.1", "python-slugify==8.0.4", - "psutil==7.1.2", + "psutil==7.1.3", "psycopg2==2.9.11", "pymdown-extensions==10.16.1", - "redis==7.0.0", + "redis==7.0.1", "requests==2.32.5", - "sentry-sdk[django,celery,opentelemetry]==2.42.1", + "sentry-sdk[django,celery,opentelemetry]==2.43.0", "six==1.17.0", "swapper==1.4.0", "uvicorn==0.38.0", "zeep==4.3.2", + "whitenoise>=6.11.0", ] [project.optional-dependencies] -testing = ["pytest==8.4.2", "pytest-django==4.11.1", "coverage==7.11.0"] +testing = ["pytest==8.4.2", "pytest-django==4.11.1", "coverage==7.11.1"] graph = ["pygraphviz==1.14; sys_platform != 'win32'"] worker = [ "celery==5.5.3", @@ -86,14 +85,14 @@ jupyter = ["jupyter==1.1.1"] docs = ["sphinx==8.2.3", "sphinx-rtd-theme==3.0.2", "m2r2==0.3.4"] [dependency-groups] -testing = ["pytest==8.4.2", "pytest-django==4.11.1", "coverage==7.11.0"] +testing = ["pytest==8.4.2", "pytest-django==4.11.1", "coverage==7.11.1"] linting = [ "isort==7.0.0", "bandit==1.8.6", "pre-commit==4.3.0", "mypy==1.18.2", "mypy-extensions==1.1.0", - "ruff==0.14.2", + "ruff==0.14.4", "celery-stubs==0.1.3", ] dev = [{ include-group = "testing" }, { include-group = "linting" }] diff --git a/scripts/Unix/generate-environment-file.sh b/scripts/Unix/generate-environment-file.sh index 7c57d637..cdf9e9fa 100755 --- a/scripts/Unix/generate-environment-file.sh +++ b/scripts/Unix/generate-environment-file.sh @@ -43,8 +43,8 @@ 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 b2b.evibes.com") -CSRF_TRUSTED_ORIGINS=$(prompt_default CSRF_TRUSTED_ORIGINS "https://evibes.com https://api.evibes.com https://www.evibes.com https://b2b.evibes.com") +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") CORS_ALLOWED_ORIGINS=$(prompt_default CORS_ALLOWED_ORIGINS "$CSRF_TRUSTED_ORIGINS") POSTGRES_DB=$(prompt_default POSTGRES_DB evibes) diff --git a/scripts/Unix/reboot.sh b/scripts/Unix/reboot.sh index 183c8588..2499628f 100755 --- a/scripts/Unix/reboot.sh +++ b/scripts/Unix/reboot.sh @@ -11,21 +11,13 @@ echo "Spinning services up..." docker compose up -d --build --wait echo "Services are up and healthy!" -echo "Applying migrations..." +echo "Completing pre-run tasks..." docker compose exec app uv run python manage.py migrate --no-input --verbosity 0 -echo "Migrations applied successfully!" - -echo "Collecting static files..." -docker compose exec app uv run python manage.py collectstatic --clear --no-input --verbosity 0 -echo "Static files collected successfully!" - -echo "Setting default caches..." +docker compose exec app uv run python manage.py initialize docker compose exec app uv run python manage.py set_default_caches -echo "Default caches set successfully!" - -echo "Building search Index..." docker compose exec app uv run python manage.py search_index --rebuild -f -echo "Search Index built successfully!" +docker compose exec app uv run python manage.py collectstatic --clear --no-input --verbosity 0 +echo "Pre-run tasks completed successfully!" echo "Cleaning up unused Docker data..." docker system prune -f diff --git a/scripts/Unix/run.sh b/scripts/Unix/run.sh index 6fcaa8df..ce6d5af4 100755 --- a/scripts/Unix/run.sh +++ b/scripts/Unix/run.sh @@ -23,17 +23,13 @@ echo "Spinning services up..." docker compose up --no-build --detach --wait echo "Services are up and healthy!" -echo "Applying migrations..." +echo "Completing pre-run tasks..." docker compose exec app uv run python manage.py migrate --no-input --verbosity 0 -echo "Migrations applied successfully!" - -echo "Collecting static files..." -docker compose exec app uv run python manage.py collectstatic --clear --no-input --verbosity 0 -echo "Static files collected successfully!" - -echo "Setting default caches..." +docker compose exec app uv run python manage.py initialize docker compose exec app uv run python manage.py set_default_caches -echo "Default caches set successfully!" +docker compose exec app uv run python manage.py search_index --rebuild -f +docker compose exec app uv run python manage.py collectstatic --clear --no-input --verbosity 0 +echo "Pre-run tasks completed successfully!" echo "Cleaning unused Docker data..." docker system prune -f diff --git a/scripts/Windows/generate-environment-file.ps1 b/scripts/Windows/generate-environment-file.ps1 index 7499cffd..a364fc96 100644 --- a/scripts/Windows/generate-environment-file.ps1 +++ b/scripts/Windows/generate-environment-file.ps1 @@ -59,8 +59,8 @@ $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 b2b.evibes.com' -$CSRF_TRUSTED_ORIGINS = Prompt-Default 'CSRF_TRUSTED_ORIGINS' 'https://evibes.com https://api.evibes.com https://www.evibes.com https://b2b.evibes.com' +$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' $CORS_ALLOWED_ORIGINS = Prompt-Default 'CORS_ALLOWED_ORIGINS' $CSRF_TRUSTED_ORIGINS $POSTGRES_DB = Prompt-Default 'POSTGRES_DB' 'evibes' diff --git a/scripts/Windows/reboot.ps1 b/scripts/Windows/reboot.ps1 index 4208ca02..43d37708 100644 --- a/scripts/Windows/reboot.ps1 +++ b/scripts/Windows/reboot.ps1 @@ -21,33 +21,28 @@ if ($LASTEXITCODE -ne 0) { } Write-Host "Services are up and healthy!" -ForegroundColor Green -Write-Host "Applying migrations..." -ForegroundColor Magenta -docker compose exec app uv run python manage.py migrate --no-input --verbosity 0 +Write-Host "Completing pre-run tasks..." -ForegroundColor Magenta +docker compose exec app uv run python manage.py migrate --no-input if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE } -Write-Host "Migrations applied successfully!" -ForegroundColor Green - -Write-Host "Collecting static files..." -ForegroundColor Magenta -docker compose exec app uv run python manage.py collectstatic --clear --no-input --verbosity 0 +docker compose exec app uv run python manage.py initialize if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE } -Write-Host "Static files collected successfully!" -ForegroundColor Green - -Write-Host "Setting default caches..." -ForegroundColor Magenta docker compose exec app uv run python manage.py set_default_caches if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE } -Write-Host "Default caches set successfully!" -ForegroundColor Green - -Write-Host "Building search Index..." -ForegroundColor Magenta docker compose exec app uv run python manage.py search_index --rebuild -f if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE } -Write-Host "Search Index built successfully!" -ForegroundColor Green +docker compose exec app uv run python manage.py collectstatic --clear --no-input +if ($LASTEXITCODE -ne 0) { + exit $LASTEXITCODE +} +Write-Host "Pre-run tasks completed successfully!" -ForegroundColor Green Write-Host "Cleaning up unused Docker data..." -ForegroundColor Magenta docker system prune -f diff --git a/scripts/Windows/run.ps1 b/scripts/Windows/run.ps1 index c401978e..1834df01 100644 --- a/scripts/Windows/run.ps1 +++ b/scripts/Windows/run.ps1 @@ -37,26 +37,28 @@ if ($LASTEXITCODE -ne 0) { } Write-Host "Services are up and healthy!" -ForegroundColor Green -Write-Host "Applying migrations..." -ForegroundColor Magenta +Write-Host "Completing pre-run tasks..." -ForegroundColor Magenta docker compose exec app uv run python manage.py migrate --no-input if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE } -Write-Host "Migrations applied successfully!" -ForegroundColor Green - -Write-Host "Collecting static files..." -ForegroundColor Magenta -docker compose exec app uv run python manage.py collectstatic --clear --no-input +docker compose exec app uv run python manage.py initialize if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE } -Write-Host "Static files collected successfully!" -ForegroundColor Green - -Write-Host "Setting default caches..." -ForegroundColor Magenta docker compose exec app uv run python manage.py set_default_caches if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE } -Write-Host "Default caches set successfully!" -ForegroundColor Green +docker compose exec app uv run python manage.py search_index --rebuild -f +if ($LASTEXITCODE -ne 0) { + exit $LASTEXITCODE +} +docker compose exec app uv run python manage.py collectstatic --clear --no-input +if ($LASTEXITCODE -ne 0) { + exit $LASTEXITCODE +} +Write-Host "Pre-run tasks completed successfully!" -ForegroundColor Green Write-Host "Cleaning unused Docker data..." -ForegroundColor Magenta docker system prune -f diff --git a/uv.lock b/uv.lock index fe1df429..b3dc9bd4 100644 --- a/uv.lock +++ b/uv.lock @@ -359,14 +359,14 @@ wheels = [ [[package]] name = "bleach" -version = "6.2.0" +version = "6.3.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "webencodings" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/76/9a/0e33f5054c54d349ea62c277191c020c2d6ef1d65ab2cb1993f91ec846d1/bleach-6.2.0.tar.gz", hash = "sha256:123e894118b8a599fd80d3ec1a6d4cc7ce4e5882b1317a7e1ba69b56e95f991f", size = 203083, upload-time = "2024-10-29T18:30:40.477Z" } +sdist = { url = "https://files.pythonhosted.org/packages/07/18/3c8523962314be6bf4c8989c79ad9531c825210dd13a8669f6b84336e8bd/bleach-6.3.0.tar.gz", hash = "sha256:6f3b91b1c0a02bb9a78b5a454c92506aa0fdf197e1d5e114d2e00c6f64306d22", size = 203533, upload-time = "2025-10-27T17:57:39.211Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/fc/55/96142937f66150805c25c4d0f31ee4132fd33497753400734f9dfdcbdc66/bleach-6.2.0-py3-none-any.whl", hash = "sha256:117d9c6097a7c3d22fd578fcd8d35ff1e125df6736f554da4e432fdd63f31e5e", size = 163406, upload-time = "2024-10-29T18:30:38.186Z" }, + { url = "https://files.pythonhosted.org/packages/cd/3a/577b549de0cc09d95f11087ee63c739bba856cd3952697eec4c4bb91350a/bleach-6.3.0-py3-none-any.whl", hash = "sha256:fe10ec77c93ddf3d13a73b035abaac7a9f5e436513864ccdad516693213c65d6", size = 164437, upload-time = "2025-10-27T17:57:37.538Z" }, ] [[package]] @@ -614,50 +614,50 @@ wheels = [ [[package]] name = "coverage" -version = "7.11.0" +version = "7.11.1" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/1c/38/ee22495420457259d2f3390309505ea98f98a5eed40901cf62196abad006/coverage-7.11.0.tar.gz", hash = "sha256:167bd504ac1ca2af7ff3b81d245dfea0292c5032ebef9d66cc08a7d28c1b8050", size = 811905, upload-time = "2025-10-15T15:15:08.542Z" } +sdist = { url = "https://files.pythonhosted.org/packages/89/12/3e2d2ec71796e0913178478e693a06af6a3bc9f7f9cb899bf85a426d8370/coverage-7.11.1.tar.gz", hash = "sha256:b4b3a072559578129a9e863082a2972a2abd8975bc0e2ec57da96afcd6580a8a", size = 814037, upload-time = "2025-11-07T10:52:41.067Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/c4/db/86f6906a7c7edc1a52b2c6682d6dd9be775d73c0dfe2b84f8923dfea5784/coverage-7.11.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:9c49e77811cf9d024b95faf86c3f059b11c0c9be0b0d61bc598f453703bd6fd1", size = 216098, upload-time = "2025-10-15T15:13:02.916Z" }, - { url = "https://files.pythonhosted.org/packages/21/54/e7b26157048c7ba555596aad8569ff903d6cd67867d41b75287323678ede/coverage-7.11.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:a61e37a403a778e2cda2a6a39abcc895f1d984071942a41074b5c7ee31642007", size = 216331, upload-time = "2025-10-15T15:13:04.403Z" }, - { url = "https://files.pythonhosted.org/packages/b9/19/1ce6bf444f858b83a733171306134a0544eaddf1ca8851ede6540a55b2ad/coverage-7.11.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:c79cae102bb3b1801e2ef1511fb50e91ec83a1ce466b2c7c25010d884336de46", size = 247825, upload-time = "2025-10-15T15:13:05.92Z" }, - { url = "https://files.pythonhosted.org/packages/71/0b/d3bcbbc259fcced5fb67c5d78f6e7ee965f49760c14afd931e9e663a83b2/coverage-7.11.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:16ce17ceb5d211f320b62df002fa7016b7442ea0fd260c11cec8ce7730954893", size = 250573, upload-time = "2025-10-15T15:13:07.471Z" }, - { url = "https://files.pythonhosted.org/packages/58/8d/b0ff3641a320abb047258d36ed1c21d16be33beed4152628331a1baf3365/coverage-7.11.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:80027673e9d0bd6aef86134b0771845e2da85755cf686e7c7c59566cf5a89115", size = 251706, upload-time = "2025-10-15T15:13:09.4Z" }, - { url = "https://files.pythonhosted.org/packages/59/c8/5a586fe8c7b0458053d9c687f5cff515a74b66c85931f7fe17a1c958b4ac/coverage-7.11.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:4d3ffa07a08657306cd2215b0da53761c4d73cb54d9143b9303a6481ec0cd415", size = 248221, upload-time = "2025-10-15T15:13:10.964Z" }, - { url = "https://files.pythonhosted.org/packages/d0/ff/3a25e3132804ba44cfa9a778cdf2b73dbbe63ef4b0945e39602fc896ba52/coverage-7.11.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:a3b6a5f8b2524fd6c1066bc85bfd97e78709bb5e37b5b94911a6506b65f47186", size = 249624, upload-time = "2025-10-15T15:13:12.5Z" }, - { url = "https://files.pythonhosted.org/packages/c5/12/ff10c8ce3895e1b17a73485ea79ebc1896a9e466a9d0f4aef63e0d17b718/coverage-7.11.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fcc0a4aa589de34bc56e1a80a740ee0f8c47611bdfb28cd1849de60660f3799d", size = 247744, upload-time = "2025-10-15T15:13:14.554Z" }, - { url = "https://files.pythonhosted.org/packages/16/02/d500b91f5471b2975947e0629b8980e5e90786fe316b6d7299852c1d793d/coverage-7.11.0-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:dba82204769d78c3fd31b35c3d5f46e06511936c5019c39f98320e05b08f794d", size = 247325, upload-time = "2025-10-15T15:13:16.438Z" }, - { url = "https://files.pythonhosted.org/packages/77/11/dee0284fbbd9cd64cfce806b827452c6df3f100d9e66188e82dfe771d4af/coverage-7.11.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:81b335f03ba67309a95210caf3eb43bd6fe75a4e22ba653ef97b4696c56c7ec2", size = 249180, upload-time = "2025-10-15T15:13:17.959Z" }, - { url = "https://files.pythonhosted.org/packages/59/1b/cdf1def928f0a150a057cab03286774e73e29c2395f0d30ce3d9e9f8e697/coverage-7.11.0-cp312-cp312-win32.whl", hash = "sha256:037b2d064c2f8cc8716fe4d39cb705779af3fbf1ba318dc96a1af858888c7bb5", size = 218479, upload-time = "2025-10-15T15:13:19.608Z" }, - { url = "https://files.pythonhosted.org/packages/ff/55/e5884d55e031da9c15b94b90a23beccc9d6beee65e9835cd6da0a79e4f3a/coverage-7.11.0-cp312-cp312-win_amd64.whl", hash = "sha256:d66c0104aec3b75e5fd897e7940188ea1892ca1d0235316bf89286d6a22568c0", size = 219290, upload-time = "2025-10-15T15:13:21.593Z" }, - { url = "https://files.pythonhosted.org/packages/23/a8/faa930cfc71c1d16bc78f9a19bb73700464f9c331d9e547bfbc1dbd3a108/coverage-7.11.0-cp312-cp312-win_arm64.whl", hash = "sha256:d91ebeac603812a09cf6a886ba6e464f3bbb367411904ae3790dfe28311b15ad", size = 217924, upload-time = "2025-10-15T15:13:23.39Z" }, - { url = "https://files.pythonhosted.org/packages/60/7f/85e4dfe65e400645464b25c036a26ac226cf3a69d4a50c3934c532491cdd/coverage-7.11.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:cc3f49e65ea6e0d5d9bd60368684fe52a704d46f9e7fc413918f18d046ec40e1", size = 216129, upload-time = "2025-10-15T15:13:25.371Z" }, - { url = "https://files.pythonhosted.org/packages/96/5d/dc5fa98fea3c175caf9d360649cb1aa3715e391ab00dc78c4c66fabd7356/coverage-7.11.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f39ae2f63f37472c17b4990f794035c9890418b1b8cca75c01193f3c8d3e01be", size = 216380, upload-time = "2025-10-15T15:13:26.976Z" }, - { url = "https://files.pythonhosted.org/packages/b2/f5/3da9cc9596708273385189289c0e4d8197d37a386bdf17619013554b3447/coverage-7.11.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:7db53b5cdd2917b6eaadd0b1251cf4e7d96f4a8d24e174bdbdf2f65b5ea7994d", size = 247375, upload-time = "2025-10-15T15:13:28.923Z" }, - { url = "https://files.pythonhosted.org/packages/65/6c/f7f59c342359a235559d2bc76b0c73cfc4bac7d61bb0df210965cb1ecffd/coverage-7.11.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:10ad04ac3a122048688387828b4537bc9cf60c0bf4869c1e9989c46e45690b82", size = 249978, upload-time = "2025-10-15T15:13:30.525Z" }, - { url = "https://files.pythonhosted.org/packages/e7/8c/042dede2e23525e863bf1ccd2b92689692a148d8b5fd37c37899ba882645/coverage-7.11.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4036cc9c7983a2b1f2556d574d2eb2154ac6ed55114761685657e38782b23f52", size = 251253, upload-time = "2025-10-15T15:13:32.174Z" }, - { url = "https://files.pythonhosted.org/packages/7b/a9/3c58df67bfa809a7bddd786356d9c5283e45d693edb5f3f55d0986dd905a/coverage-7.11.0-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:7ab934dd13b1c5e94b692b1e01bd87e4488cb746e3a50f798cb9464fd128374b", size = 247591, upload-time = "2025-10-15T15:13:34.147Z" }, - { url = "https://files.pythonhosted.org/packages/26/5b/c7f32efd862ee0477a18c41e4761305de6ddd2d49cdeda0c1116227570fd/coverage-7.11.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:59a6e5a265f7cfc05f76e3bb53eca2e0dfe90f05e07e849930fecd6abb8f40b4", size = 249411, upload-time = "2025-10-15T15:13:38.425Z" }, - { url = "https://files.pythonhosted.org/packages/76/b5/78cb4f1e86c1611431c990423ec0768122905b03837e1b4c6a6f388a858b/coverage-7.11.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:df01d6c4c81e15a7c88337b795bb7595a8596e92310266b5072c7e301168efbd", size = 247303, upload-time = "2025-10-15T15:13:40.464Z" }, - { url = "https://files.pythonhosted.org/packages/87/c9/23c753a8641a330f45f221286e707c427e46d0ffd1719b080cedc984ec40/coverage-7.11.0-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:8c934bd088eed6174210942761e38ee81d28c46de0132ebb1801dbe36a390dcc", size = 247157, upload-time = "2025-10-15T15:13:42.087Z" }, - { url = "https://files.pythonhosted.org/packages/c5/42/6e0cc71dc8a464486e944a4fa0d85bdec031cc2969e98ed41532a98336b9/coverage-7.11.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:5a03eaf7ec24078ad64a07f02e30060aaf22b91dedf31a6b24d0d98d2bba7f48", size = 248921, upload-time = "2025-10-15T15:13:43.715Z" }, - { url = "https://files.pythonhosted.org/packages/e8/1c/743c2ef665e6858cccb0f84377dfe3a4c25add51e8c7ef19249be92465b6/coverage-7.11.0-cp313-cp313-win32.whl", hash = "sha256:695340f698a5f56f795b2836abe6fb576e7c53d48cd155ad2f80fd24bc63a040", size = 218526, upload-time = "2025-10-15T15:13:45.336Z" }, - { url = "https://files.pythonhosted.org/packages/ff/d5/226daadfd1bf8ddbccefbd3aa3547d7b960fb48e1bdac124e2dd13a2b71a/coverage-7.11.0-cp313-cp313-win_amd64.whl", hash = "sha256:2727d47fce3ee2bac648528e41455d1b0c46395a087a229deac75e9f88ba5a05", size = 219317, upload-time = "2025-10-15T15:13:47.401Z" }, - { url = "https://files.pythonhosted.org/packages/97/54/47db81dcbe571a48a298f206183ba8a7ba79200a37cd0d9f4788fcd2af4a/coverage-7.11.0-cp313-cp313-win_arm64.whl", hash = "sha256:0efa742f431529699712b92ecdf22de8ff198df41e43aeaaadf69973eb93f17a", size = 217948, upload-time = "2025-10-15T15:13:49.096Z" }, - { url = "https://files.pythonhosted.org/packages/e5/8b/cb68425420154e7e2a82fd779a8cc01549b6fa83c2ad3679cd6c088ebd07/coverage-7.11.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:587c38849b853b157706407e9ebdca8fd12f45869edb56defbef2daa5fb0812b", size = 216837, upload-time = "2025-10-15T15:13:51.09Z" }, - { url = "https://files.pythonhosted.org/packages/33/55/9d61b5765a025685e14659c8d07037247de6383c0385757544ffe4606475/coverage-7.11.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:b971bdefdd75096163dd4261c74be813c4508477e39ff7b92191dea19f24cd37", size = 217061, upload-time = "2025-10-15T15:13:52.747Z" }, - { url = "https://files.pythonhosted.org/packages/52/85/292459c9186d70dcec6538f06ea251bc968046922497377bf4a1dc9a71de/coverage-7.11.0-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:269bfe913b7d5be12ab13a95f3a76da23cf147be7fa043933320ba5625f0a8de", size = 258398, upload-time = "2025-10-15T15:13:54.45Z" }, - { url = "https://files.pythonhosted.org/packages/1f/e2/46edd73fb8bf51446c41148d81944c54ed224854812b6ca549be25113ee0/coverage-7.11.0-cp313-cp313t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:dadbcce51a10c07b7c72b0ce4a25e4b6dcb0c0372846afb8e5b6307a121eb99f", size = 260574, upload-time = "2025-10-15T15:13:56.145Z" }, - { url = "https://files.pythonhosted.org/packages/07/5e/1df469a19007ff82e2ca8fe509822820a31e251f80ee7344c34f6cd2ec43/coverage-7.11.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:9ed43fa22c6436f7957df036331f8fe4efa7af132054e1844918866cd228af6c", size = 262797, upload-time = "2025-10-15T15:13:58.635Z" }, - { url = "https://files.pythonhosted.org/packages/f9/50/de216b31a1434b94d9b34a964c09943c6be45069ec704bfc379d8d89a649/coverage-7.11.0-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:9516add7256b6713ec08359b7b05aeff8850c98d357784c7205b2e60aa2513fa", size = 257361, upload-time = "2025-10-15T15:14:00.409Z" }, - { url = "https://files.pythonhosted.org/packages/82/1e/3f9f8344a48111e152e0fd495b6fff13cc743e771a6050abf1627a7ba918/coverage-7.11.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:eb92e47c92fcbcdc692f428da67db33337fa213756f7adb6a011f7b5a7a20740", size = 260349, upload-time = "2025-10-15T15:14:02.188Z" }, - { url = "https://files.pythonhosted.org/packages/65/9b/3f52741f9e7d82124272f3070bbe316006a7de1bad1093f88d59bfc6c548/coverage-7.11.0-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:d06f4fc7acf3cabd6d74941d53329e06bab00a8fe10e4df2714f0b134bfc64ef", size = 258114, upload-time = "2025-10-15T15:14:03.907Z" }, - { url = "https://files.pythonhosted.org/packages/0b/8b/918f0e15f0365d50d3986bbd3338ca01178717ac5678301f3f547b6619e6/coverage-7.11.0-cp313-cp313t-musllinux_1_2_riscv64.whl", hash = "sha256:6fbcee1a8f056af07ecd344482f711f563a9eb1c2cad192e87df00338ec3cdb0", size = 256723, upload-time = "2025-10-15T15:14:06.324Z" }, - { url = "https://files.pythonhosted.org/packages/44/9e/7776829f82d3cf630878a7965a7d70cc6ca94f22c7d20ec4944f7148cb46/coverage-7.11.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:dbbf012be5f32533a490709ad597ad8a8ff80c582a95adc8d62af664e532f9ca", size = 259238, upload-time = "2025-10-15T15:14:08.002Z" }, - { url = "https://files.pythonhosted.org/packages/9a/b8/49cf253e1e7a3bedb85199b201862dd7ca4859f75b6cf25ffa7298aa0760/coverage-7.11.0-cp313-cp313t-win32.whl", hash = "sha256:cee6291bb4fed184f1c2b663606a115c743df98a537c969c3c64b49989da96c2", size = 219180, upload-time = "2025-10-15T15:14:09.786Z" }, - { url = "https://files.pythonhosted.org/packages/ac/e1/1a541703826be7ae2125a0fb7f821af5729d56bb71e946e7b933cc7a89a4/coverage-7.11.0-cp313-cp313t-win_amd64.whl", hash = "sha256:a386c1061bf98e7ea4758e4313c0ab5ecf57af341ef0f43a0bf26c2477b5c268", size = 220241, upload-time = "2025-10-15T15:14:11.471Z" }, - { url = "https://files.pythonhosted.org/packages/d5/d1/5ee0e0a08621140fd418ec4020f595b4d52d7eb429ae6a0c6542b4ba6f14/coverage-7.11.0-cp313-cp313t-win_arm64.whl", hash = "sha256:f9ea02ef40bb83823b2b04964459d281688fe173e20643870bb5d2edf68bc836", size = 218510, upload-time = "2025-10-15T15:14:13.46Z" }, - { url = "https://files.pythonhosted.org/packages/5f/04/642c1d8a448ae5ea1369eac8495740a79eb4e581a9fb0cbdce56bbf56da1/coverage-7.11.0-py3-none-any.whl", hash = "sha256:4b7589765348d78fb4e5fb6ea35d07564e387da2fc5efff62e0222971f155f68", size = 207761, upload-time = "2025-10-15T15:15:06.439Z" }, + { url = "https://files.pythonhosted.org/packages/0f/31/04af7e42fdb3681e4d73d37bf3f375f0488aa38d1001ee746c7dbfe09643/coverage-7.11.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:421e2d237dcecdefa9b77cae1aa0dfff5c495f29e053e776172457e289976311", size = 216896, upload-time = "2025-11-07T10:50:31.429Z" }, + { url = "https://files.pythonhosted.org/packages/f5/e9/1c3628a1225bdea66295a117cd2bb1d324d9c433c40078b24d50f55448a7/coverage-7.11.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:08ef89c812072ecd52a862b46e131f75596475d23cc7f5a75410394341d4332f", size = 217261, upload-time = "2025-11-07T10:50:33.008Z" }, + { url = "https://files.pythonhosted.org/packages/2b/80/4d4f943da23c432b2bba8664f4eada9b19911081852e8cc89776c61d0b94/coverage-7.11.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:bc6e0b2d6ed317810b4e435ffabc31b2d517d6ceb4183dfd6af4748c52d170eb", size = 248742, upload-time = "2025-11-07T10:50:34.634Z" }, + { url = "https://files.pythonhosted.org/packages/e3/e1/c4b42f02fbb6ce08e05d7a2b26bcf5df11d3e67a3806e40415f7ab9511e7/coverage-7.11.1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:b59736704df8b1f8b1dafb36b16f2ef8a952e4410465634442459426bd2319ae", size = 251503, upload-time = "2025-11-07T10:50:36.501Z" }, + { url = "https://files.pythonhosted.org/packages/31/a8/3df60e88f1dabccae4994c6df4a2f23d4cd0eee27fc3ae8f0bb2e78cb538/coverage-7.11.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:843816452d8bfc4c2be72546b3b382850cb91150feaa963ec7d2b665ec9d4768", size = 252590, upload-time = "2025-11-07T10:50:38.059Z" }, + { url = "https://files.pythonhosted.org/packages/06/1c/2b9fae11361b0348c2d3612a8179d2cc8b6b245e8b14d5479c75b9f18613/coverage-7.11.1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:19363046125d4a423c25d3d7c90bab3a0230932c16014198f87a6b3960c1b187", size = 249133, upload-time = "2025-11-07T10:50:39.648Z" }, + { url = "https://files.pythonhosted.org/packages/b8/2b/e33712a8eede02762a536bdc2f89e736e0ad87bd13b35d724306585aeb54/coverage-7.11.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4e37486aed7045c280ebdc207026bdef9267730177d929a5e25250e1f33cc125", size = 250524, upload-time = "2025-11-07T10:50:41.59Z" }, + { url = "https://files.pythonhosted.org/packages/84/c9/6181877977a0f6e46b9c93a8382b8c671769fb12df8a15be8d6091541b77/coverage-7.11.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:7c68180e67b4843674bfb1d3ec928ffcfc94081b5da959e616405eca51c23356", size = 248673, upload-time = "2025-11-07T10:50:43.153Z" }, + { url = "https://files.pythonhosted.org/packages/9b/d6/ff26c2eb57d4dcd46c6ed136d6b04aceb7f58f48dcc500c77f7194711a6f/coverage-7.11.1-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:cf825b60f94d1706c22d4887310db26cc3117d545ac6ad4229b4a0d718afcf9a", size = 248251, upload-time = "2025-11-07T10:50:45.069Z" }, + { url = "https://files.pythonhosted.org/packages/f9/ff/411803f1fcb9efe00afbc96442564cc691f537541a8bde377cf1ac04e695/coverage-7.11.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:437149272ff0440df66044bd6ee87cbc252463754ca43cafa496cfb2f57f56dd", size = 250111, upload-time = "2025-11-07T10:50:46.701Z" }, + { url = "https://files.pythonhosted.org/packages/c1/9f/781c045e1e5f8930f8266f224318040413b60837749d2ed11883b7478c81/coverage-7.11.1-cp312-cp312-win32.whl", hash = "sha256:98ea0b8d1addfc333494c2248af367e8ecb27724a99804a18376b801f876da58", size = 219407, upload-time = "2025-11-07T10:50:48.862Z" }, + { url = "https://files.pythonhosted.org/packages/26/59/813d8eedc96a781e8a6f9c37f6ecb4326ebbffdafe2e1154ed2def468b76/coverage-7.11.1-cp312-cp312-win_amd64.whl", hash = "sha256:7d49a473799e55a465bcadd19525977ab80031b8b86baaa622241808df4585cd", size = 220220, upload-time = "2025-11-07T10:50:51.576Z" }, + { url = "https://files.pythonhosted.org/packages/63/5f/c0905d9159d38194943a21d7d013f1c2f0c43e7d63f680ed56269728418a/coverage-7.11.1-cp312-cp312-win_arm64.whl", hash = "sha256:0c77e5951ab176a6ccb70c6f688fca2a7ac834753ba82ee4eb741be655f30b43", size = 218856, upload-time = "2025-11-07T10:50:53.591Z" }, + { url = "https://files.pythonhosted.org/packages/f4/01/0c50c318f5e8f1a482da05d788d0ff06137803ed8fface4a1ba51e04b3ad/coverage-7.11.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:da9930594ca99d66eb6f613d7beba850db2f8dfa86810ee35ae24e4d5f2bb97d", size = 216920, upload-time = "2025-11-07T10:50:55.992Z" }, + { url = "https://files.pythonhosted.org/packages/20/11/9f038e6c2baea968c377ab355b0d1d0a46b5f38985691bf51164e1b78c1f/coverage-7.11.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:cc47a280dc014220b0fc6e5f55082a3f51854faf08fd9635b8a4f341c46c77d3", size = 217301, upload-time = "2025-11-07T10:50:57.609Z" }, + { url = "https://files.pythonhosted.org/packages/68/cd/9dcf93d81d0cddaa0bba90c3b4580e6f1ddf833918b816930d250cc553a4/coverage-7.11.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:74003324321bbf130939146886eddf92e48e616b5910215e79dea6edeb8ee7c8", size = 248277, upload-time = "2025-11-07T10:50:59.442Z" }, + { url = "https://files.pythonhosted.org/packages/11/f5/b2c7c494046c9c783d3cac4c812fc24d6104dd36a7a598e7dd6fea3e7927/coverage-7.11.1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:211f7996265daab60a8249af4ca6641b3080769cbedcffc42cc4841118f3a305", size = 250871, upload-time = "2025-11-07T10:51:01.094Z" }, + { url = "https://files.pythonhosted.org/packages/a5/5a/b359649566954498aa17d7c98093182576d9e435ceb4ea917b3b48d56f86/coverage-7.11.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:70619d194d8fea0cb028cb6bb9c85b519c7509c1d1feef1eea635183bc8ecd27", size = 252115, upload-time = "2025-11-07T10:51:03.087Z" }, + { url = "https://files.pythonhosted.org/packages/f3/17/3cef1ede3739622950f0737605353b797ec564e70c9d254521b10f4b03ba/coverage-7.11.1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:e0208bb59d441cfa3321569040f8e455f9261256e0df776c5462a1e5a9b31e13", size = 248442, upload-time = "2025-11-07T10:51:04.888Z" }, + { url = "https://files.pythonhosted.org/packages/5f/63/d5854c47ae42d9d18855329db6bc528f5b7f4f874257edb00cf8b483f9f8/coverage-7.11.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:545714d8765bda1c51f8b1c96e0b497886a054471c68211e76ef49dd1468587d", size = 250253, upload-time = "2025-11-07T10:51:06.515Z" }, + { url = "https://files.pythonhosted.org/packages/48/e8/c7706f8a5358a59c18b489e7e19e83d6161b7c8bc60771f95920570c94a8/coverage-7.11.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:d0a2b02c1e20158dd405054bcca87f91fd5b7605626aee87150819ea616edd67", size = 248217, upload-time = "2025-11-07T10:51:08.405Z" }, + { url = "https://files.pythonhosted.org/packages/5b/c9/a2136dfb168eb09e2f6d9d6b6c986243fdc0b3866a9376adb263d3c3378b/coverage-7.11.1-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:e0f4aa986a4308a458e0fb572faa3eb3db2ea7ce294604064b25ab32b435a468", size = 248040, upload-time = "2025-11-07T10:51:10.626Z" }, + { url = "https://files.pythonhosted.org/packages/18/9a/a63991c0608ddc6adf65e6f43124951aaf36bd79f41937b028120b8268ea/coverage-7.11.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:d51cc6687e8bbfd1e041f52baed0f979cd592242cf50bf18399a7e03afc82d88", size = 249801, upload-time = "2025-11-07T10:51:12.63Z" }, + { url = "https://files.pythonhosted.org/packages/84/19/947acf7c0c6e90e4ec3abf474133ed36d94407d07e36eafdfd3acb59fee9/coverage-7.11.1-cp313-cp313-win32.whl", hash = "sha256:1b3067db3afe6deeca2b2c9f0ec23820d5f1bd152827acfadf24de145dfc5f66", size = 219430, upload-time = "2025-11-07T10:51:14.329Z" }, + { url = "https://files.pythonhosted.org/packages/35/54/36fef7afb3884450c7b6d494fcabe2fab7c669d547c800ca30f41c1dc212/coverage-7.11.1-cp313-cp313-win_amd64.whl", hash = "sha256:39a4c44b0cd40e3c9d89b2b7303ebd6ab9ae8a63f9e9a8c4d65a181a0b33aebe", size = 220239, upload-time = "2025-11-07T10:51:16.418Z" }, + { url = "https://files.pythonhosted.org/packages/d3/dc/7d38bb99e8e69200b7dd5de15507226bd90eac102dfc7cc891b9934cdc76/coverage-7.11.1-cp313-cp313-win_arm64.whl", hash = "sha256:a2e3560bf82fa8169a577e054cbbc29888699526063fee26ea59ea2627fd6e73", size = 218868, upload-time = "2025-11-07T10:51:18.186Z" }, + { url = "https://files.pythonhosted.org/packages/36/c6/d1ff54fbd6bcad42dbcfd13b417e636ef84aae194353b1ef3361700f2525/coverage-7.11.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:47a4f362a10285897ab3aa7a4b37d28213a4f2626823923613d6d7a3584dd79a", size = 217615, upload-time = "2025-11-07T10:51:21.065Z" }, + { url = "https://files.pythonhosted.org/packages/73/f9/6ed59e7cf1488d6f975e5b14ef836f5e537913523e92175135f8518a83ce/coverage-7.11.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:0df35fa7419ef571db9dacd50b0517bc54dbfe37eb94043b5fc3540bff276acd", size = 217960, upload-time = "2025-11-07T10:51:22.797Z" }, + { url = "https://files.pythonhosted.org/packages/c4/74/2dab1dc2ebe16f074f80ae483b0f45faf278d102be703ac01b32cd85b6c3/coverage-7.11.1-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:e1a2c621d341c9d56f7917e56fbb56be4f73fe0d0e8dae28352fb095060fd467", size = 259262, upload-time = "2025-11-07T10:51:24.467Z" }, + { url = "https://files.pythonhosted.org/packages/15/49/eccfe039663e29a50a54b0c2c8d076acd174d7ac50d018ef8a5b1c37c8dc/coverage-7.11.1-cp313-cp313t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:6c354b111be9b2234d9573d75dd30ca4e414b7659c730e477e89be4f620b3fb5", size = 261326, upload-time = "2025-11-07T10:51:26.232Z" }, + { url = "https://files.pythonhosted.org/packages/f0/bb/2b829aa23fd5ee8318e33cc02a606eb09900921291497963adc3f06af8bb/coverage-7.11.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4589bd44698728f600233fb2881014c9b8ec86637ef454c00939e779661dbe7e", size = 263758, upload-time = "2025-11-07T10:51:27.912Z" }, + { url = "https://files.pythonhosted.org/packages/ac/03/d44c3d70e5da275caf2cad2071da6b425412fbcb1d1d5a81f1f89b45e3f1/coverage-7.11.1-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:c6956fc8754f2309131230272a7213a483a32ecbe29e2b9316d808a28f2f8ea1", size = 258444, upload-time = "2025-11-07T10:51:30.107Z" }, + { url = "https://files.pythonhosted.org/packages/a9/c1/cf61d9f46ae088774c65dd3387a15dfbc72de90c1f6e105025e9eda19b42/coverage-7.11.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:63926a97ed89dc6a087369b92dcb8b9a94cead46c08b33a7f1f4818cd8b6a3c3", size = 261335, upload-time = "2025-11-07T10:51:31.814Z" }, + { url = "https://files.pythonhosted.org/packages/95/9a/b3299bb14f11f2364d78a2b9704491b15395e757af6116694731ce4e5834/coverage-7.11.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:f5311ba00c53a7fb2b293fdc1f478b7286fe2a845a7ba9cda053f6e98178f0b4", size = 258951, upload-time = "2025-11-07T10:51:33.925Z" }, + { url = "https://files.pythonhosted.org/packages/3f/a3/73cb2763e59f14ba6d8d6444b1f640a9be2242bfb59b7e50581c695db7ff/coverage-7.11.1-cp313-cp313t-musllinux_1_2_riscv64.whl", hash = "sha256:31bf5ffad84c974f9e72ac53493350f36b6fa396109159ec704210698f12860b", size = 257840, upload-time = "2025-11-07T10:51:36.092Z" }, + { url = "https://files.pythonhosted.org/packages/85/db/482e72589a952027e238ffa3a15f192c552e0685fd0c5220ad05b5f17d56/coverage-7.11.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:227ee59fbc4a8c57a7383a1d7af6ca94a78ae3beee4045f38684548a8479a65b", size = 260040, upload-time = "2025-11-07T10:51:38.277Z" }, + { url = "https://files.pythonhosted.org/packages/18/a1/b931d3ee099c2dca8e9ea56c07ae84c0f91562f7bbbcccab8c91b3474ef1/coverage-7.11.1-cp313-cp313t-win32.whl", hash = "sha256:a447d97b3ce680bb1da2e6bd822ebb71be6a1fb77ce2c2ad2fe4bd8aacec3058", size = 220102, upload-time = "2025-11-07T10:51:40.017Z" }, + { url = "https://files.pythonhosted.org/packages/9a/53/b553b7bfa6207def4918f0cb72884c844fa4c3f1566e58fbb4f34e54cdc5/coverage-7.11.1-cp313-cp313t-win_amd64.whl", hash = "sha256:d6d11180437c67bde2248563a42b8e5bbf85c8df78fae13bf818ad17bfb15f02", size = 221166, upload-time = "2025-11-07T10:51:41.921Z" }, + { url = "https://files.pythonhosted.org/packages/6b/45/1c1d58b3ed585598764bd2fe41fcf60ccafe15973ad621c322ba52e22d32/coverage-7.11.1-cp313-cp313t-win_arm64.whl", hash = "sha256:1e19a4c43d612760c6f7190411fb157e2d8a6dde00c91b941d43203bd3b17f6f", size = 219439, upload-time = "2025-11-07T10:51:43.753Z" }, + { url = "https://files.pythonhosted.org/packages/76/32/bd9f48c28e23b2f08946f8e83983617b00619f5538dbd7e1045fa7e88c00/coverage-7.11.1-py3-none-any.whl", hash = "sha256:0fa848acb5f1da24765cee840e1afe9232ac98a8f9431c6112c15b34e880b9e8", size = 208689, upload-time = "2025-11-07T10:52:38.646Z" }, ] [[package]] @@ -768,16 +768,16 @@ wheels = [ [[package]] name = "django" -version = "5.2.7" +version = "5.2.8" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "asgiref" }, { name = "sqlparse" }, { name = "tzdata", marker = "sys_platform == 'win32'" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/b1/96/bd84e2bb997994de8bcda47ae4560991084e86536541d7214393880f01a8/django-5.2.7.tar.gz", hash = "sha256:e0f6f12e2551b1716a95a63a1366ca91bbcd7be059862c1b18f989b1da356cdd", size = 10865812, upload-time = "2025-10-01T14:22:12.081Z" } +sdist = { url = "https://files.pythonhosted.org/packages/05/a2/933dbbb3dd9990494960f6e64aca2af4c0745b63b7113f59a822df92329e/django-5.2.8.tar.gz", hash = "sha256:23254866a5bb9a2cfa6004e8b809ec6246eba4b58a7589bc2772f1bcc8456c7f", size = 10849032, upload-time = "2025-11-05T14:07:32.778Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/8f/ef/81f3372b5dd35d8d354321155d1a38894b2b766f576d0abffac4d8ae78d9/django-5.2.7-py3-none-any.whl", hash = "sha256:59a13a6515f787dec9d97a0438cd2efac78c8aca1c80025244b0fe507fe0754b", size = 8307145, upload-time = "2025-10-01T14:22:49.476Z" }, + { url = "https://files.pythonhosted.org/packages/5e/3d/a035a4ee9b1d4d4beee2ae6e8e12fe6dee5514b21f62504e22efcbd9fb46/django-5.2.8-py3-none-any.whl", hash = "sha256:37e687f7bd73ddf043e2b6b97cfe02fcbb11f2dbb3adccc6a2b18c6daa054d7f", size = 8289692, upload-time = "2025-11-05T14:07:28.761Z" }, ] [[package]] @@ -826,11 +826,11 @@ wheels = [ [[package]] name = "django-constance" -version = "4.3.2" +version = "4.3.3" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/c1/08/58100c61c15c0d187d257c0f01277e48fdfdbe96bda60e88ffe043412ecc/django_constance-4.3.2.tar.gz", hash = "sha256:d86e6b6a797157a4b49d0c679f1b7b9c70b1b540f36dfcda5346736997ae51bd", size = 174866, upload-time = "2025-02-06T10:29:34.604Z" } +sdist = { url = "https://files.pythonhosted.org/packages/8e/c2/5a7dbd5554d840415c0f6885534385af217342fef834e6effa6a76fbee22/django_constance-4.3.3.tar.gz", hash = "sha256:6bec5f9b61730abc5b4bdb910849c7625c335e9ddce9898130735d874b63f2cb", size = 175484, upload-time = "2025-11-04T16:46:24.991Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/14/cd/37312ca0a02905fb3d44649a0bd2ec4ec21b60d967c3ccb9ff9d07db157b/django_constance-4.3.2-py3-none-any.whl", hash = "sha256:cd3e08f4cac457016db550a9244177da39cef8e39f4a56859692306cc8f11dc1", size = 64240, upload-time = "2025-02-06T10:28:53.231Z" }, + { url = "https://files.pythonhosted.org/packages/c5/e0/6b7ba6c3f90546741ae2f14fe7d7c7ca1d8326db2ebde8206af0136f72ff/django_constance-4.3.3-py3-none-any.whl", hash = "sha256:94f05d04d30926f92e7aaadffe4c6e0a3dccbabc657d66c42499e6141c83c1bc", size = 64425, upload-time = "2025-11-04T16:46:23.515Z" }, ] [[package]] @@ -848,14 +848,14 @@ wheels = [ [[package]] name = "django-dbbackup" -version = "5.0.0" +version = "5.0.1" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "django" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/df/88/3b8fe59075369d828b31b77de931511b2479b7bd21489132a0123ce0656b/django_dbbackup-5.0.0.tar.gz", hash = "sha256:aa9cc88e1413adfec0e547dd91e0afed6dbb91a02459697663a9b988dbc71f18", size = 25046, upload-time = "2025-08-30T08:17:31.752Z" } +sdist = { url = "https://files.pythonhosted.org/packages/1e/c8/e8d0352f3b5f6f3a0b12ea56a47fc9808aa1bb8753f6d362b7acadec72c6/django_dbbackup-5.0.1.tar.gz", hash = "sha256:52e1ed0c8082eb29b2e96231db0101a47a34442176542c27659992918ae9ef2a", size = 25316, upload-time = "2025-11-07T11:05:05.679Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/72/de/9d7c894b5bdf9825db8e8f3d89d12851a34e32ce43b94f0b88995a9feb1f/django_dbbackup-5.0.0-py3-none-any.whl", hash = "sha256:a0301b14a4bb3c7243a2fde76d09f8f572f16cd7639f75f4cd42d898fc1b82a2", size = 33110, upload-time = "2025-08-30T08:17:30.678Z" }, + { url = "https://files.pythonhosted.org/packages/fb/b1/b0bbab8cf34fb8ca09f19d054b1c44f061b5188f4aa40cc6b274de566ac1/django_dbbackup-5.0.1-py3-none-any.whl", hash = "sha256:5f9f764fcd9be3c7d6acde31ad3a20ec9093fc42014cd3e84e71eae9201d675f", size = 33403, upload-time = "2025-11-07T11:05:04.265Z" }, ] [[package]] @@ -907,15 +907,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/e1/7f/49ba63f078015b0a52e09651b94ba16b41154ac7079c83153edd14e15ca0/django_health_check-3.20.0-py3-none-any.whl", hash = "sha256:bcb2b8f36f463cead0564a028345c5b17e2a2d18e9cc88ecd611b13a26521926", size = 31788, upload-time = "2025-06-16T09:22:32.069Z" }, ] -[[package]] -name = "django-hosts" -version = "7.0.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/ee/c0/cf2b37b6ef4dda89d00f040e69b4f8a3f52fa4f74b33141b68983c0fecce/django_hosts-7.0.0.tar.gz", hash = "sha256:08006bc09f5af69638721ced0657f24044835a22a608732ee1004adc9c95fb7c", size = 36858, upload-time = "2025-06-19T07:43:22.746Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/93/05/8056f3e631b0aee8ac99929a558d132634945d3cb16253fb2a2785b62dcf/django_hosts-7.0.0-py3-none-any.whl", hash = "sha256:93d3c941336463fd0c9377c1773d1c53a49606fa72656ed7ddfa474d2fe1f907", size = 27858, upload-time = "2025-06-19T07:43:33.953Z" }, -] - [[package]] name = "django-jazzmin" version = "3.0.1" @@ -1210,7 +1201,7 @@ wheels = [ [[package]] name = "drf-spectacular" -version = "0.28.0" +version = "0.29.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "django" }, @@ -1220,9 +1211,9 @@ dependencies = [ { name = "pyyaml" }, { name = "uritemplate" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/da/b9/741056455aed00fa51a1df41fad5ad27c8e0d433b6bf490d4e60e2808bc6/drf_spectacular-0.28.0.tar.gz", hash = "sha256:2c778a47a40ab2f5078a7c42e82baba07397bb35b074ae4680721b2805943061", size = 237849, upload-time = "2024-11-30T08:49:02.355Z" } +sdist = { url = "https://files.pythonhosted.org/packages/5e/0e/a4f50d83e76cbe797eda88fc0083c8ca970cfa362b5586359ef06ec6f70a/drf_spectacular-0.29.0.tar.gz", hash = "sha256:0a069339ea390ce7f14a75e8b5af4a0860a46e833fd4af027411a3e94fc1a0cc", size = 241722, upload-time = "2025-11-02T03:40:26.348Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/fb/66/c2929871393b1515c3767a670ff7d980a6882964a31a4ca2680b30d7212a/drf_spectacular-0.28.0-py3-none-any.whl", hash = "sha256:856e7edf1056e49a4245e87a61e8da4baff46c83dbc25be1da2df77f354c7cb4", size = 103928, upload-time = "2024-11-30T08:48:57.288Z" }, + { url = "https://files.pythonhosted.org/packages/32/d9/502c56fc3ca960075d00956283f1c44e8cafe433dada03f9ed2821f3073b/drf_spectacular-0.29.0-py3-none-any.whl", hash = "sha256:d1ee7c9535d89848affb4427347f7c4a22c5d22530b8842ef133d7b72e19b41a", size = 105433, upload-time = "2025-11-02T03:40:24.823Z" }, ] [package.optional-dependencies] @@ -1257,16 +1248,16 @@ wheels = [ [[package]] name = "elasticsearch" -version = "8.19.1" +version = "8.19.2" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "elastic-transport" }, { name = "python-dateutil" }, { name = "typing-extensions" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/98/0d/3ee3cd1122c33499ab55814e298f5d3104b0827e613e4243ae557552269a/elasticsearch-8.19.1.tar.gz", hash = "sha256:7192cd6eff2d6ab48f2858265dea717d15ab42f04cfdc4f571a811bcfcbc7a3a", size = 790617, upload-time = "2025-09-12T12:00:32.846Z" } +sdist = { url = "https://files.pythonhosted.org/packages/42/7b/70b9d16069eda6f91d45fadd9e12faed8e4442f242ca8a81de84bc626f1b/elasticsearch-8.19.2.tar.gz", hash = "sha256:622efa6a3e662db45285f16ab57bf198ea73ac9e137e7ed8b1d1d1e47638959d", size = 797401, upload-time = "2025-10-28T16:36:44.953Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/e3/87/f3f34b99c1590492f0050c51b5eedc15be8a9c4cb7ca4f21a71f8533a4fd/elasticsearch-8.19.1-py3-none-any.whl", hash = "sha256:b511dd4cc26aef1fc02c1b5c1eefe9f16d76127d8f133b0f6900fd052c48d2a4", size = 940480, upload-time = "2025-09-12T12:00:29.377Z" }, + { url = "https://files.pythonhosted.org/packages/56/01/6f77d042b83260ef9ed73ea9647dfa0ef8414eba0a3fc57a509a088ad39b/elasticsearch-8.19.2-py3-none-any.whl", hash = "sha256:c16ba20c4c76cf6952e836dae7f4e724e00ba7bf31b94b79472b873683accdd4", size = 949706, upload-time = "2025-10-28T16:36:41.003Z" }, ] [[package]] @@ -1295,7 +1286,7 @@ wheels = [ [[package]] name = "evibes" -version = "3.1.0" +version = "2025.4" source = { virtual = "." } dependencies = [ { name = "aiogram" }, @@ -1315,7 +1306,6 @@ dependencies = [ { name = "django-extensions" }, { name = "django-filter" }, { name = "django-health-check" }, - { name = "django-hosts" }, { name = "django-jazzmin" }, { name = "django-json-widget" }, { name = "django-mailbox" }, @@ -1337,7 +1327,6 @@ dependencies = [ { name = "djangorestframework-stubs" }, { name = "djangorestframework-xml" }, { name = "djangorestframework-yaml" }, - { name = "docutils" }, { name = "drf-spectacular", extra = ["sidecar"] }, { name = "elasticsearch-dsl" }, { name = "filelock" }, @@ -1361,6 +1350,7 @@ dependencies = [ { name = "six" }, { name = "swapper" }, { name = "uvicorn" }, + { name = "whitenoise" }, { name = "zeep" }, ] @@ -1429,21 +1419,20 @@ requires-dist = [ { name = "channels-redis", specifier = ">=4.3.0" }, { name = "click", specifier = "==8.3.0" }, { name = "colorlog", specifier = "==6.10.1" }, - { name = "coverage", specifier = "==7.11.0" }, - { name = "coverage", marker = "extra == 'testing'", specifier = "==7.11.0" }, + { name = "coverage", specifier = "==7.11.1" }, + { name = "coverage", marker = "extra == 'testing'", specifier = "==7.11.1" }, { name = "cryptography", specifier = "==46.0.3" }, - { name = "django", specifier = "==5.2.7" }, + { name = "django", specifier = "==5.2.8" }, { 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.2" }, + { name = "django-constance", specifier = "==4.3.3" }, { name = "django-cors-headers", specifier = "==4.9.0" }, - { name = "django-dbbackup", specifier = "==5.0.0" }, + { name = "django-dbbackup", specifier = "==5.0.1" }, { 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.0" }, - { name = "django-hosts", specifier = "==7.0.0" }, { name = "django-jazzmin", specifier = "==3.0.1" }, { name = "django-json-widget", specifier = "==2.1.0" }, { name = "django-mailbox", specifier = "==4.10.1" }, @@ -1465,8 +1454,7 @@ requires-dist = [ { name = "djangorestframework-stubs", specifier = "==3.16.5" }, { name = "djangorestframework-xml", specifier = "==2.0.0" }, { name = "djangorestframework-yaml", specifier = "==2.0.0" }, - { name = "docutils", specifier = "==0.21.2" }, - { name = "drf-spectacular", extras = ["sidecar"], specifier = "==0.28.0" }, + { name = "drf-spectacular", extras = ["sidecar"], specifier = "==0.29.0" }, { name = "elasticsearch-dsl", specifier = "==8.18.0" }, { name = "filelock", specifier = "==3.20.0" }, { name = "filetype", specifier = "==1.2.0" }, @@ -1481,7 +1469,7 @@ requires-dist = [ { name = "pillow", specifier = "==12.0.0" }, { name = "pip", specifier = ">=25.3" }, { name = "polib", specifier = "==1.2.0" }, - { name = "psutil", specifier = "==7.1.2" }, + { name = "psutil", specifier = "==7.1.3" }, { name = "psycopg2", specifier = "==2.9.11" }, { name = "pygraphviz", marker = "sys_platform != 'win32' and extra == 'graph'", specifier = "==1.14" }, { name = "pyjwt", specifier = "==2.10.1" }, @@ -1489,14 +1477,15 @@ requires-dist = [ { name = "pytest", marker = "extra == 'testing'", specifier = "==8.4.2" }, { name = "pytest-django", marker = "extra == 'testing'", specifier = "==4.11.1" }, { name = "python-slugify", specifier = "==8.0.4" }, - { name = "redis", specifier = "==7.0.0" }, + { name = "redis", specifier = "==7.0.1" }, { name = "requests", specifier = "==2.32.5" }, - { name = "sentry-sdk", extras = ["django", "celery", "opentelemetry"], specifier = "==2.42.1" }, + { name = "sentry-sdk", extras = ["django", "celery", "opentelemetry"], specifier = "==2.43.0" }, { name = "six", specifier = "==1.17.0" }, { name = "sphinx", marker = "extra == 'docs'", specifier = "==8.2.3" }, { name = "sphinx-rtd-theme", marker = "extra == 'docs'", specifier = "==3.0.2" }, { name = "swapper", specifier = "==1.4.0" }, { name = "uvicorn", specifier = "==0.38.0" }, + { name = "whitenoise", specifier = ">=6.11.0" }, { name = "zeep", specifier = "==4.3.2" }, ] provides-extras = ["testing", "graph", "worker", "openai", "jupyter", "docs"] @@ -1505,14 +1494,14 @@ provides-extras = ["testing", "graph", "worker", "openai", "jupyter", "docs"] dev = [ { name = "bandit", specifier = "==1.8.6" }, { name = "celery-stubs", specifier = "==0.1.3" }, - { name = "coverage", specifier = "==7.11.0" }, + { name = "coverage", specifier = "==7.11.1" }, { name = "isort", specifier = "==7.0.0" }, { name = "mypy", specifier = "==1.18.2" }, { name = "mypy-extensions", specifier = "==1.1.0" }, { name = "pre-commit", specifier = "==4.3.0" }, { name = "pytest", specifier = "==8.4.2" }, { name = "pytest-django", specifier = "==4.11.1" }, - { name = "ruff", specifier = "==0.14.2" }, + { name = "ruff", specifier = "==0.14.4" }, ] linting = [ { name = "bandit", specifier = "==1.8.6" }, @@ -1521,10 +1510,10 @@ linting = [ { name = "mypy", specifier = "==1.18.2" }, { name = "mypy-extensions", specifier = "==1.1.0" }, { name = "pre-commit", specifier = "==4.3.0" }, - { name = "ruff", specifier = "==0.14.2" }, + { name = "ruff", specifier = "==0.14.4" }, ] testing = [ - { name = "coverage", specifier = "==7.11.0" }, + { name = "coverage", specifier = "==7.11.1" }, { name = "pytest", specifier = "==8.4.2" }, { name = "pytest-django", specifier = "==4.11.1" }, ] @@ -1686,11 +1675,11 @@ wheels = [ [[package]] name = "graphql-core" -version = "3.2.6" +version = "3.2.7" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/c4/16/7574029da84834349b60ed71614d66ca3afe46e9bf9c7b9562102acb7d4f/graphql_core-3.2.6.tar.gz", hash = "sha256:c08eec22f9e40f0bd61d805907e3b3b1b9a320bc606e23dc145eebca07c8fbab", size = 505353, upload-time = "2025-01-26T16:36:27.374Z" } +sdist = { url = "https://files.pythonhosted.org/packages/ac/9b/037a640a2983b09aed4a823f9cf1729e6d780b0671f854efa4727a7affbe/graphql_core-3.2.7.tar.gz", hash = "sha256:27b6904bdd3b43f2a0556dad5d579bdfdeab1f38e8e8788e555bdcb586a6f62c", size = 513484, upload-time = "2025-11-01T22:30:40.436Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/ae/4f/7297663840621022bc73c22d7d9d80dbc78b4db6297f764b545cd5dd462d/graphql_core-3.2.6-py3-none-any.whl", hash = "sha256:78b016718c161a6fb20a7d97bbf107f331cd1afe53e45566c59f776ed7f0b45f", size = 203416, upload-time = "2025-01-26T16:36:24.868Z" }, + { url = "https://files.pythonhosted.org/packages/0a/14/933037032608787fb92e365883ad6a741c235e0ff992865ec5d904a38f1e/graphql_core-3.2.7-py3-none-any.whl", hash = "sha256:17fc8f3ca4a42913d8e24d9ac9f08deddf0a0b2483076575757f6c412ead2ec0", size = 207262, upload-time = "2025-11-01T22:30:38.912Z" }, ] [[package]] @@ -1822,7 +1811,7 @@ wheels = [ [[package]] name = "ipykernel" -version = "7.0.1" +version = "7.1.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "appnope", marker = "sys_platform == 'darwin'" }, @@ -1839,14 +1828,14 @@ dependencies = [ { name = "tornado" }, { name = "traitlets" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/a8/4c/9f0024c8457286c6bfd5405a15d650ec5ea36f420ef9bbc58b301f66cfc5/ipykernel-7.0.1.tar.gz", hash = "sha256:2d3fd7cdef22071c2abbad78f142b743228c5d59cd470d034871ae0ac359533c", size = 171460, upload-time = "2025-10-14T16:17:07.325Z" } +sdist = { url = "https://files.pythonhosted.org/packages/b9/a4/4948be6eb88628505b83a1f2f40d90254cab66abf2043b3c40fa07dfce0f/ipykernel-7.1.0.tar.gz", hash = "sha256:58a3fc88533d5930c3546dc7eac66c6d288acde4f801e2001e65edc5dc9cf0db", size = 174579, upload-time = "2025-10-27T09:46:39.471Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/b8/f7/761037905ffdec673533bfa43af8d4c31c859c778dfc3bbb71899875ec18/ipykernel-7.0.1-py3-none-any.whl", hash = "sha256:87182a8305e28954b6721087dec45b171712610111d494c17bb607befa1c4000", size = 118157, upload-time = "2025-10-14T16:17:05.606Z" }, + { url = "https://files.pythonhosted.org/packages/a3/17/20c2552266728ceba271967b87919664ecc0e33efca29c3efc6baf88c5f9/ipykernel-7.1.0-py3-none-any.whl", hash = "sha256:763b5ec6c5b7776f6a8d7ce09b267693b4e5ce75cb50ae696aaefb3c85e1ea4c", size = 117968, upload-time = "2025-10-27T09:46:37.805Z" }, ] [[package]] name = "ipython" -version = "9.6.0" +version = "9.7.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "colorama", marker = "sys_platform == 'win32'" }, @@ -1860,9 +1849,9 @@ dependencies = [ { name = "stack-data" }, { name = "traitlets" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/2a/34/29b18c62e39ee2f7a6a3bba7efd952729d8aadd45ca17efc34453b717665/ipython-9.6.0.tar.gz", hash = "sha256:5603d6d5d356378be5043e69441a072b50a5b33b4503428c77b04cb8ce7bc731", size = 4396932, upload-time = "2025-09-29T10:55:53.948Z" } +sdist = { url = "https://files.pythonhosted.org/packages/29/e6/48c74d54039241a456add616464ea28c6ebf782e4110d419411b83dae06f/ipython-9.7.0.tar.gz", hash = "sha256:5f6de88c905a566c6a9d6c400a8fed54a638e1f7543d17aae2551133216b1e4e", size = 4422115, upload-time = "2025-11-05T12:18:54.646Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/48/c5/d5e07995077e48220269c28a221e168c91123ad5ceee44d548f54a057fc0/ipython-9.6.0-py3-none-any.whl", hash = "sha256:5f77efafc886d2f023442479b8149e7d86547ad0a979e9da9f045d252f648196", size = 616170, upload-time = "2025-09-29T10:55:47.676Z" }, + { url = "https://files.pythonhosted.org/packages/05/aa/62893d6a591d337aa59dcc4c6f6c842f1fe20cd72c8c5c1f980255243252/ipython-9.7.0-py3-none-any.whl", hash = "sha256:bce8ac85eb9521adc94e1845b4c03d88365fd6ac2f4908ec4ed1eb1b0a065f9f", size = 618911, upload-time = "2025-11-05T12:18:52.484Z" }, ] [[package]] @@ -1879,7 +1868,7 @@ wheels = [ [[package]] name = "ipywidgets" -version = "8.1.7" +version = "8.1.8" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "comm" }, @@ -1888,9 +1877,9 @@ dependencies = [ { name = "traitlets" }, { name = "widgetsnbextension" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/3e/48/d3dbac45c2814cb73812f98dd6b38bbcc957a4e7bb31d6ea9c03bf94ed87/ipywidgets-8.1.7.tar.gz", hash = "sha256:15f1ac050b9ccbefd45dccfbb2ef6bed0029d8278682d569d71b8dd96bee0376", size = 116721, upload-time = "2025-05-05T12:42:03.489Z" } +sdist = { url = "https://files.pythonhosted.org/packages/4c/ae/c5ce1edc1afe042eadb445e95b0671b03cee61895264357956e61c0d2ac0/ipywidgets-8.1.8.tar.gz", hash = "sha256:61f969306b95f85fba6b6986b7fe45d73124d1d9e3023a8068710d47a22ea668", size = 116739, upload-time = "2025-11-01T21:18:12.393Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/58/6a/9166369a2f092bd286d24e6307de555d63616e8ddb373ebad2b5635ca4cd/ipywidgets-8.1.7-py3-none-any.whl", hash = "sha256:764f2602d25471c213919b8a1997df04bef869251db4ca8efba1b76b1bd9f7bb", size = 139806, upload-time = "2025-05-05T12:41:56.833Z" }, + { url = "https://files.pythonhosted.org/packages/56/6d/0d9848617b9f753b87f214f1c682592f7ca42de085f564352f10f0843026/ipywidgets-8.1.8-py3-none-any.whl", hash = "sha256:ecaca67aed704a338f88f67b1181b58f821ab5dc89c1f0f5ef99db43c1c2921e", size = 139808, upload-time = "2025-11-01T21:18:10.956Z" }, ] [[package]] @@ -2239,11 +2228,11 @@ wheels = [ [[package]] name = "jupyterlab-widgets" -version = "3.0.15" +version = "3.0.16" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/b9/7d/160595ca88ee87ac6ba95d82177d29ec60aaa63821d3077babb22ce031a5/jupyterlab_widgets-3.0.15.tar.gz", hash = "sha256:2920888a0c2922351a9202817957a68c07d99673504d6cd37345299e971bb08b", size = 213149, upload-time = "2025-05-05T12:32:31.004Z" } +sdist = { url = "https://files.pythonhosted.org/packages/26/2d/ef58fed122b268c69c0aa099da20bc67657cdfb2e222688d5731bd5b971d/jupyterlab_widgets-3.0.16.tar.gz", hash = "sha256:423da05071d55cf27a9e602216d35a3a65a3e41cdf9c5d3b643b814ce38c19e0", size = 897423, upload-time = "2025-11-01T21:11:29.724Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/43/6a/ca128561b22b60bd5a0c4ea26649e68c8556b82bc70a0c396eebc977fe86/jupyterlab_widgets-3.0.15-py3-none-any.whl", hash = "sha256:d59023d7d7ef71400d51e6fee9a88867f6e65e10a4201605d2d7f3e8f012a31c", size = 216571, upload-time = "2025-05-05T12:32:29.534Z" }, + { url = "https://files.pythonhosted.org/packages/ab/b5/36c712098e6191d1b4e349304ef73a8d06aed77e56ceaac8c0a306c7bda1/jupyterlab_widgets-3.0.16-py3-none-any.whl", hash = "sha256:45fa36d9c6422cf2559198e4db481aa243c7a32d9926b500781c830c80f7ecf8", size = 914926, upload-time = "2025-11-01T21:11:28.008Z" }, ] [[package]] @@ -2263,11 +2252,11 @@ wheels = [ [[package]] name = "lark" -version = "1.3.0" +version = "1.3.1" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/1d/37/a13baf0135f348af608c667633cbe5d13aa2c5c15a56ae9ad3e6cba45ae3/lark-1.3.0.tar.gz", hash = "sha256:9a3839d0ca5e1faf7cfa3460e420e859b66bcbde05b634e73c369c8244c5fa48", size = 259551, upload-time = "2025-09-22T13:45:05.072Z" } +sdist = { url = "https://files.pythonhosted.org/packages/da/34/28fff3ab31ccff1fd4f6c7c7b0ceb2b6968d8ea4950663eadcb5720591a0/lark-1.3.1.tar.gz", hash = "sha256:b426a7a6d6d53189d318f2b6236ab5d6429eaf09259f1ca33eb716eed10d2905", size = 382732, upload-time = "2025-10-27T18:25:56.653Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/a8/3e/1c6b43277de64fc3c0333b0e72ab7b52ddaaea205210d60d9b9f83c3d0c7/lark-1.3.0-py3-none-any.whl", hash = "sha256:80661f261fb2584a9828a097a2432efd575af27d20be0fd35d17f0fe37253831", size = 113002, upload-time = "2025-09-22T13:45:03.747Z" }, + { url = "https://files.pythonhosted.org/packages/82/3d/14ce75ef66813643812f3093ab17e46d3a206942ce7376d31ec2d36229e7/lark-1.3.1-py3-none-any.whl", hash = "sha256:c629b661023a014c37da873b4ff58a817398d12635d3bbb2c5a03be7fe5d1e12", size = 113151, upload-time = "2025-10-27T18:25:54.882Z" }, ] [[package]] @@ -2338,11 +2327,11 @@ wheels = [ [[package]] name = "markdown" -version = "3.9" +version = "3.10" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/8d/37/02347f6d6d8279247a5837082ebc26fc0d5aaeaf75aa013fcbb433c777ab/markdown-3.9.tar.gz", hash = "sha256:d2900fe1782bd33bdbbd56859defef70c2e78fc46668f8eb9df3128138f2cb6a", size = 364585, upload-time = "2025-09-04T20:25:22.885Z" } +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" } wheels = [ - { url = "https://files.pythonhosted.org/packages/70/ae/44c4a6a4cbb496d93c6257954260fe3a6e91b7bed2240e5dad2a717f5111/markdown-3.9-py3-none-any.whl", hash = "sha256:9f4d91ed810864ea88a6f32c07ba8bee1346c0cc1f6b1f9f6c822f2a9667d280", size = 107441, upload-time = "2025-09-04T20:25:21.784Z" }, + { 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" }, ] [[package]] @@ -2989,22 +2978,22 @@ wheels = [ [[package]] name = "psutil" -version = "7.1.2" +version = "7.1.3" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/cd/ec/7b8e6b9b1d22708138630ef34c53ab2b61032c04f16adfdbb96791c8c70c/psutil-7.1.2.tar.gz", hash = "sha256:aa225cdde1335ff9684708ee8c72650f6598d5ed2114b9a7c5802030b1785018", size = 487424, upload-time = "2025-10-25T10:46:34.931Z" } +sdist = { url = "https://files.pythonhosted.org/packages/e1/88/bdd0a41e5857d5d703287598cbf08dad90aed56774ea52ae071bae9071b6/psutil-7.1.3.tar.gz", hash = "sha256:6c86281738d77335af7aec228328e944b30930899ea760ecf33a4dba66be5e74", size = 489059, upload-time = "2025-11-02T12:25:54.619Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/b8/d9/b56cc9f883140ac10021a8c9b0f4e16eed1ba675c22513cdcbce3ba64014/psutil-7.1.2-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:0cc5c6889b9871f231ed5455a9a02149e388fffcb30b607fb7a8896a6d95f22e", size = 238575, upload-time = "2025-10-25T10:46:38.728Z" }, - { url = "https://files.pythonhosted.org/packages/36/eb/28d22de383888deb252c818622196e709da98816e296ef95afda33f1c0a2/psutil-7.1.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:8e9e77a977208d84aa363a4a12e0f72189d58bbf4e46b49aae29a2c6e93ef206", size = 239297, upload-time = "2025-10-25T10:46:41.347Z" }, - { url = "https://files.pythonhosted.org/packages/89/5d/220039e2f28cc129626e54d63892ab05c0d56a29818bfe7268dcb5008932/psutil-7.1.2-cp313-cp313t-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7d9623a5e4164d2220ecceb071f4b333b3c78866141e8887c072129185f41278", size = 280420, upload-time = "2025-10-25T10:46:44.122Z" }, - { url = "https://files.pythonhosted.org/packages/ba/7a/286f0e1c167445b2ef4a6cbdfc8c59fdb45a5a493788950cf8467201dc73/psutil-7.1.2-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:364b1c10fe4ed59c89ec49e5f1a70da353b27986fa8233b4b999df4742a5ee2f", size = 283049, upload-time = "2025-10-25T10:46:47.095Z" }, - { url = "https://files.pythonhosted.org/packages/aa/cc/7eb93260794a42e39b976f3a4dde89725800b9f573b014fac142002a5c98/psutil-7.1.2-cp313-cp313t-win_amd64.whl", hash = "sha256:f101ef84de7e05d41310e3ccbdd65a6dd1d9eed85e8aaf0758405d022308e204", size = 248713, upload-time = "2025-10-25T10:46:49.573Z" }, - { url = "https://files.pythonhosted.org/packages/ab/1a/0681a92b53366e01f0a099f5237d0c8a2f79d322ac589cccde5e30c8a4e2/psutil-7.1.2-cp313-cp313t-win_arm64.whl", hash = "sha256:20c00824048a95de67f00afedc7b08b282aa08638585b0206a9fb51f28f1a165", size = 244644, upload-time = "2025-10-25T10:46:51.924Z" }, - { url = "https://files.pythonhosted.org/packages/ae/89/b9f8d47ddbc52d7301fc868e8224e5f44ed3c7f55e6d0f54ecaf5dd9ff5e/psutil-7.1.2-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:c9ba5c19f2d46203ee8c152c7b01df6eec87d883cfd8ee1af2ef2727f6b0f814", size = 237244, upload-time = "2025-10-25T10:47:07.086Z" }, - { url = "https://files.pythonhosted.org/packages/c8/7a/8628c2f6b240680a67d73d8742bb9ff39b1820a693740e43096d5dcb01e5/psutil-7.1.2-cp36-abi3-macosx_11_0_arm64.whl", hash = "sha256:2a486030d2fe81bec023f703d3d155f4823a10a47c36784c84f1cc7f8d39bedb", size = 238101, upload-time = "2025-10-25T10:47:09.523Z" }, - { url = "https://files.pythonhosted.org/packages/30/28/5e27f4d5a0e347f8e3cc16cd7d35533dbce086c95807f1f0e9cd77e26c10/psutil-7.1.2-cp36-abi3-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:3efd8fc791492e7808a51cb2b94889db7578bfaea22df931424f874468e389e3", size = 258675, upload-time = "2025-10-25T10:47:11.082Z" }, - { url = "https://files.pythonhosted.org/packages/e5/5c/79cf60c9acf36d087f0db0f82066fca4a780e97e5b3a2e4c38209c03d170/psutil-7.1.2-cp36-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e2aeb9b64f481b8eabfc633bd39e0016d4d8bbcd590d984af764d80bf0851b8a", size = 260203, upload-time = "2025-10-25T10:47:13.226Z" }, - { url = "https://files.pythonhosted.org/packages/f7/03/0a464404c51685dcb9329fdd660b1721e076ccd7b3d97dee066bcc9ffb15/psutil-7.1.2-cp37-abi3-win_amd64.whl", hash = "sha256:8e17852114c4e7996fe9da4745c2bdef001ebbf2f260dec406290e66628bdb91", size = 246714, upload-time = "2025-10-25T10:47:15.093Z" }, - { url = "https://files.pythonhosted.org/packages/6a/32/97ca2090f2f1b45b01b6aa7ae161cfe50671de097311975ca6eea3e7aabc/psutil-7.1.2-cp37-abi3-win_arm64.whl", hash = "sha256:3e988455e61c240cc879cb62a008c2699231bf3e3d061d7fce4234463fd2abb4", size = 243742, upload-time = "2025-10-25T10:47:17.302Z" }, + { url = "https://files.pythonhosted.org/packages/bd/93/0c49e776b8734fef56ec9c5c57f923922f2cf0497d62e0f419465f28f3d0/psutil-7.1.3-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:0005da714eee687b4b8decd3d6cc7c6db36215c9e74e5ad2264b90c3df7d92dc", size = 239751, upload-time = "2025-11-02T12:25:58.161Z" }, + { url = "https://files.pythonhosted.org/packages/6f/8d/b31e39c769e70780f007969815195a55c81a63efebdd4dbe9e7a113adb2f/psutil-7.1.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:19644c85dcb987e35eeeaefdc3915d059dac7bd1167cdcdbf27e0ce2df0c08c0", size = 240368, upload-time = "2025-11-02T12:26:00.491Z" }, + { url = "https://files.pythonhosted.org/packages/62/61/23fd4acc3c9eebbf6b6c78bcd89e5d020cfde4acf0a9233e9d4e3fa698b4/psutil-7.1.3-cp313-cp313t-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:95ef04cf2e5ba0ab9eaafc4a11eaae91b44f4ef5541acd2ee91d9108d00d59a7", size = 287134, upload-time = "2025-11-02T12:26:02.613Z" }, + { url = "https://files.pythonhosted.org/packages/30/1c/f921a009ea9ceb51aa355cb0cc118f68d354db36eae18174bab63affb3e6/psutil-7.1.3-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1068c303be3a72f8e18e412c5b2a8f6d31750fb152f9cb106b54090296c9d251", size = 289904, upload-time = "2025-11-02T12:26:05.207Z" }, + { url = "https://files.pythonhosted.org/packages/a6/82/62d68066e13e46a5116df187d319d1724b3f437ddd0f958756fc052677f4/psutil-7.1.3-cp313-cp313t-win_amd64.whl", hash = "sha256:18349c5c24b06ac5612c0428ec2a0331c26443d259e2a0144a9b24b4395b58fa", size = 249642, upload-time = "2025-11-02T12:26:07.447Z" }, + { url = "https://files.pythonhosted.org/packages/df/ad/c1cd5fe965c14a0392112f68362cfceb5230819dbb5b1888950d18a11d9f/psutil-7.1.3-cp313-cp313t-win_arm64.whl", hash = "sha256:c525ffa774fe4496282fb0b1187725793de3e7c6b29e41562733cae9ada151ee", size = 245518, upload-time = "2025-11-02T12:26:09.719Z" }, + { url = "https://files.pythonhosted.org/packages/ef/94/46b9154a800253e7ecff5aaacdf8ebf43db99de4a2dfa18575b02548654e/psutil-7.1.3-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:2bdbcd0e58ca14996a42adf3621a6244f1bb2e2e528886959c72cf1e326677ab", size = 238359, upload-time = "2025-11-02T12:26:25.284Z" }, + { url = "https://files.pythonhosted.org/packages/68/3a/9f93cff5c025029a36d9a92fef47220ab4692ee7f2be0fba9f92813d0cb8/psutil-7.1.3-cp36-abi3-macosx_11_0_arm64.whl", hash = "sha256:bc31fa00f1fbc3c3802141eede66f3a2d51d89716a194bf2cd6fc68310a19880", size = 239171, upload-time = "2025-11-02T12:26:27.23Z" }, + { url = "https://files.pythonhosted.org/packages/ce/b1/5f49af514f76431ba4eea935b8ad3725cdeb397e9245ab919dbc1d1dc20f/psutil-7.1.3-cp36-abi3-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:3bb428f9f05c1225a558f53e30ccbad9930b11c3fc206836242de1091d3e7dd3", size = 263261, upload-time = "2025-11-02T12:26:29.48Z" }, + { url = "https://files.pythonhosted.org/packages/e0/95/992c8816a74016eb095e73585d747e0a8ea21a061ed3689474fabb29a395/psutil-7.1.3-cp36-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:56d974e02ca2c8eb4812c3f76c30e28836fffc311d55d979f1465c1feeb2b68b", size = 264635, upload-time = "2025-11-02T12:26:31.74Z" }, + { url = "https://files.pythonhosted.org/packages/55/4c/c3ed1a622b6ae2fd3c945a366e64eb35247a31e4db16cf5095e269e8eb3c/psutil-7.1.3-cp37-abi3-win_amd64.whl", hash = "sha256:f39c2c19fe824b47484b96f9692932248a54c43799a84282cfe58d05a6449efd", size = 247633, upload-time = "2025-11-02T12:26:33.887Z" }, + { url = "https://files.pythonhosted.org/packages/c9/ad/33b2ccec09bf96c2b2ef3f9a6f66baac8253d7565d8839e024a6b905d45d/psutil-7.1.3-cp37-abi3-win_arm64.whl", hash = "sha256:bd0d69cee829226a761e92f28140bec9a5ee9d5b4fb4b0cc589068dbfff559b1", size = 244608, upload-time = "2025-11-02T12:26:36.136Z" }, ] [[package]] @@ -3316,11 +3305,11 @@ wheels = [ [[package]] name = "redis" -version = "7.0.0" +version = "7.0.1" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/d2/0e/80de0c7d9b04360331906b6b713a967e6523d155a92090983eba2e99302e/redis-7.0.0.tar.gz", hash = "sha256:6546ada54354248a53a47342d36abe6172bb156f23d24f018fda2e3c06b9c97a", size = 4754895, upload-time = "2025-10-22T15:38:36.128Z" } +sdist = { url = "https://files.pythonhosted.org/packages/57/8f/f125feec0b958e8d22c8f0b492b30b1991d9499a4315dfde466cf4289edc/redis-7.0.1.tar.gz", hash = "sha256:c949df947dca995dc68fdf5a7863950bf6df24f8d6022394585acc98e81624f1", size = 4755322, upload-time = "2025-10-27T14:34:00.33Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/aa/de/68c1add9d9a49588e6f75a149e079e44bab973e748a35e0582ccada09002/redis-7.0.0-py3-none-any.whl", hash = "sha256:1e66c8355b3443af78367c4937484cd875fdf9f5f14e1fed14aa95869e64f6d1", size = 339526, upload-time = "2025-10-22T15:38:34.901Z" }, + { url = "https://files.pythonhosted.org/packages/e9/97/9f22a33c475cda519f20aba6babb340fb2f2254a02fb947816960d1e669a/redis-7.0.1-py3-none-any.whl", hash = "sha256:4977af3c7d67f8f0eb8b6fec0dafc9605db9343142f634041fb0235f67c0588a", size = 339938, upload-time = "2025-10-27T14:33:58.553Z" }, ] [[package]] @@ -3485,28 +3474,28 @@ wheels = [ [[package]] name = "ruff" -version = "0.14.2" +version = "0.14.4" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/ee/34/8218a19b2055b80601e8fd201ec723c74c7fe1ca06d525a43ed07b6d8e85/ruff-0.14.2.tar.gz", hash = "sha256:98da787668f239313d9c902ca7c523fe11b8ec3f39345553a51b25abc4629c96", size = 5539663, upload-time = "2025-10-23T19:37:00.956Z" } +sdist = { url = "https://files.pythonhosted.org/packages/df/55/cccfca45157a2031dcbb5a462a67f7cf27f8b37d4b3b1cd7438f0f5c1df6/ruff-0.14.4.tar.gz", hash = "sha256:f459a49fe1085a749f15414ca76f61595f1a2cc8778ed7c279b6ca2e1fd19df3", size = 5587844, upload-time = "2025-11-06T22:07:45.033Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/16/dd/23eb2db5ad9acae7c845700493b72d3ae214dce0b226f27df89216110f2b/ruff-0.14.2-py3-none-linux_armv6l.whl", hash = "sha256:7cbe4e593505bdec5884c2d0a4d791a90301bc23e49a6b1eb642dd85ef9c64f1", size = 12533390, upload-time = "2025-10-23T19:36:18.044Z" }, - { url = "https://files.pythonhosted.org/packages/5a/8c/5f9acff43ddcf3f85130d0146d0477e28ccecc495f9f684f8f7119b74c0d/ruff-0.14.2-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:8d54b561729cee92f8d89c316ad7a3f9705533f5903b042399b6ae0ddfc62e11", size = 12887187, upload-time = "2025-10-23T19:36:22.664Z" }, - { url = "https://files.pythonhosted.org/packages/99/fa/047646491479074029665022e9f3dc6f0515797f40a4b6014ea8474c539d/ruff-0.14.2-py3-none-macosx_11_0_arm64.whl", hash = "sha256:5c8753dfa44ebb2cde10ce5b4d2ef55a41fb9d9b16732a2c5df64620dbda44a3", size = 11925177, upload-time = "2025-10-23T19:36:24.778Z" }, - { url = "https://files.pythonhosted.org/packages/15/8b/c44cf7fe6e59ab24a9d939493a11030b503bdc2a16622cede8b7b1df0114/ruff-0.14.2-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3d0bbeffb8d9f4fccf7b5198d566d0bad99a9cb622f1fc3467af96cb8773c9e3", size = 12358285, upload-time = "2025-10-23T19:36:26.979Z" }, - { url = "https://files.pythonhosted.org/packages/45/01/47701b26254267ef40369aea3acb62a7b23e921c27372d127e0f3af48092/ruff-0.14.2-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7047f0c5a713a401e43a88d36843d9c83a19c584e63d664474675620aaa634a8", size = 12303832, upload-time = "2025-10-23T19:36:29.192Z" }, - { url = "https://files.pythonhosted.org/packages/2d/5c/ae7244ca4fbdf2bee9d6405dcd5bc6ae51ee1df66eb7a9884b77b8af856d/ruff-0.14.2-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3bf8d2f9aa1602599217d82e8e0af7fd33e5878c4d98f37906b7c93f46f9a839", size = 13036995, upload-time = "2025-10-23T19:36:31.861Z" }, - { url = "https://files.pythonhosted.org/packages/27/4c/0860a79ce6fd4c709ac01173f76f929d53f59748d0dcdd662519835dae43/ruff-0.14.2-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:1c505b389e19c57a317cf4b42db824e2fca96ffb3d86766c1c9f8b96d32048a7", size = 14512649, upload-time = "2025-10-23T19:36:33.915Z" }, - { url = "https://files.pythonhosted.org/packages/7f/7f/d365de998069720a3abfc250ddd876fc4b81a403a766c74ff9bde15b5378/ruff-0.14.2-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a307fc45ebd887b3f26b36d9326bb70bf69b01561950cdcc6c0bdf7bb8e0f7cc", size = 14088182, upload-time = "2025-10-23T19:36:36.983Z" }, - { url = "https://files.pythonhosted.org/packages/6c/ea/d8e3e6b209162000a7be1faa41b0a0c16a133010311edc3329753cc6596a/ruff-0.14.2-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:61ae91a32c853172f832c2f40bd05fd69f491db7289fb85a9b941ebdd549781a", size = 13599516, upload-time = "2025-10-23T19:36:39.208Z" }, - { url = "https://files.pythonhosted.org/packages/fa/ea/c7810322086db68989fb20a8d5221dd3b79e49e396b01badca07b433ab45/ruff-0.14.2-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1967e40286f63ee23c615e8e7e98098dedc7301568bd88991f6e544d8ae096", size = 13272690, upload-time = "2025-10-23T19:36:41.453Z" }, - { url = "https://files.pythonhosted.org/packages/a9/39/10b05acf8c45786ef501d454e00937e1b97964f846bf28883d1f9619928a/ruff-0.14.2-py3-none-manylinux_2_31_riscv64.whl", hash = "sha256:2877f02119cdebf52a632d743a2e302dea422bfae152ebe2f193d3285a3a65df", size = 13496497, upload-time = "2025-10-23T19:36:43.61Z" }, - { url = "https://files.pythonhosted.org/packages/59/a1/1f25f8301e13751c30895092485fada29076e5e14264bdacc37202e85d24/ruff-0.14.2-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:e681c5bc777de5af898decdcb6ba3321d0d466f4cb43c3e7cc2c3b4e7b843a05", size = 12266116, upload-time = "2025-10-23T19:36:45.625Z" }, - { url = "https://files.pythonhosted.org/packages/5c/fa/0029bfc9ce16ae78164e6923ef392e5f173b793b26cc39aa1d8b366cf9dc/ruff-0.14.2-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:e21be42d72e224736f0c992cdb9959a2fa53c7e943b97ef5d081e13170e3ffc5", size = 12281345, upload-time = "2025-10-23T19:36:47.618Z" }, - { url = "https://files.pythonhosted.org/packages/a5/ab/ece7baa3c0f29b7683be868c024f0838770c16607bea6852e46b202f1ff6/ruff-0.14.2-py3-none-musllinux_1_2_i686.whl", hash = "sha256:b8264016f6f209fac16262882dbebf3f8be1629777cf0f37e7aff071b3e9b92e", size = 12629296, upload-time = "2025-10-23T19:36:49.789Z" }, - { url = "https://files.pythonhosted.org/packages/a4/7f/638f54b43f3d4e48c6a68062794e5b367ddac778051806b9e235dfb7aa81/ruff-0.14.2-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:5ca36b4cb4db3067a3b24444463ceea5565ea78b95fe9a07ca7cb7fd16948770", size = 13371610, upload-time = "2025-10-23T19:36:51.882Z" }, - { url = "https://files.pythonhosted.org/packages/8d/35/3654a973ebe5b32e1fd4a08ed2d46755af7267da7ac710d97420d7b8657d/ruff-0.14.2-py3-none-win32.whl", hash = "sha256:41775927d287685e08f48d8eb3f765625ab0b7042cc9377e20e64f4eb0056ee9", size = 12415318, upload-time = "2025-10-23T19:36:53.961Z" }, - { url = "https://files.pythonhosted.org/packages/71/30/3758bcf9e0b6a4193a6f51abf84254aba00887dfa8c20aba18aa366c5f57/ruff-0.14.2-py3-none-win_amd64.whl", hash = "sha256:0df3424aa5c3c08b34ed8ce099df1021e3adaca6e90229273496b839e5a7e1af", size = 13565279, upload-time = "2025-10-23T19:36:56.578Z" }, - { url = "https://files.pythonhosted.org/packages/2e/5d/aa883766f8ef9ffbe6aa24f7192fb71632f31a30e77eb39aa2b0dc4290ac/ruff-0.14.2-py3-none-win_arm64.whl", hash = "sha256:ea9d635e83ba21569fbacda7e78afbfeb94911c9434aff06192d9bc23fd5495a", size = 12554956, upload-time = "2025-10-23T19:36:58.714Z" }, + { url = "https://files.pythonhosted.org/packages/17/b9/67240254166ae1eaa38dec32265e9153ac53645a6c6670ed36ad00722af8/ruff-0.14.4-py3-none-linux_armv6l.whl", hash = "sha256:e6604613ffbcf2297cd5dcba0e0ac9bd0c11dc026442dfbb614504e87c349518", size = 12606781, upload-time = "2025-11-06T22:07:01.841Z" }, + { url = "https://files.pythonhosted.org/packages/46/c8/09b3ab245d8652eafe5256ab59718641429f68681ee713ff06c5c549f156/ruff-0.14.4-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:d99c0b52b6f0598acede45ee78288e5e9b4409d1ce7f661f0fa36d4cbeadf9a4", size = 12946765, upload-time = "2025-11-06T22:07:05.858Z" }, + { url = "https://files.pythonhosted.org/packages/14/bb/1564b000219144bf5eed2359edc94c3590dd49d510751dad26202c18a17d/ruff-0.14.4-py3-none-macosx_11_0_arm64.whl", hash = "sha256:9358d490ec030f1b51d048a7fd6ead418ed0826daf6149e95e30aa67c168af33", size = 11928120, upload-time = "2025-11-06T22:07:08.023Z" }, + { url = "https://files.pythonhosted.org/packages/a3/92/d5f1770e9988cc0742fefaa351e840d9aef04ec24ae1be36f333f96d5704/ruff-0.14.4-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:81b40d27924f1f02dfa827b9c0712a13c0e4b108421665322218fc38caf615c2", size = 12370877, upload-time = "2025-11-06T22:07:10.015Z" }, + { url = "https://files.pythonhosted.org/packages/e2/29/e9282efa55f1973d109faf839a63235575519c8ad278cc87a182a366810e/ruff-0.14.4-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f5e649052a294fe00818650712083cddc6cc02744afaf37202c65df9ea52efa5", size = 12408538, upload-time = "2025-11-06T22:07:13.085Z" }, + { url = "https://files.pythonhosted.org/packages/8e/01/930ed6ecfce130144b32d77d8d69f5c610e6d23e6857927150adf5d7379a/ruff-0.14.4-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:aa082a8f878deeba955531f975881828fd6afd90dfa757c2b0808aadb437136e", size = 13141942, upload-time = "2025-11-06T22:07:15.386Z" }, + { url = "https://files.pythonhosted.org/packages/6a/46/a9c89b42b231a9f487233f17a89cbef9d5acd538d9488687a02ad288fa6b/ruff-0.14.4-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:1043c6811c2419e39011890f14d0a30470f19d47d197c4858b2787dfa698f6c8", size = 14544306, upload-time = "2025-11-06T22:07:17.631Z" }, + { url = "https://files.pythonhosted.org/packages/78/96/9c6cf86491f2a6d52758b830b89b78c2ae61e8ca66b86bf5a20af73d20e6/ruff-0.14.4-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a9f3a936ac27fb7c2a93e4f4b943a662775879ac579a433291a6f69428722649", size = 14210427, upload-time = "2025-11-06T22:07:19.832Z" }, + { url = "https://files.pythonhosted.org/packages/71/f4/0666fe7769a54f63e66404e8ff698de1dcde733e12e2fd1c9c6efb689cb5/ruff-0.14.4-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:95643ffd209ce78bc113266b88fba3d39e0461f0cbc8b55fb92505030fb4a850", size = 13658488, upload-time = "2025-11-06T22:07:22.32Z" }, + { url = "https://files.pythonhosted.org/packages/ee/79/6ad4dda2cfd55e41ac9ed6d73ef9ab9475b1eef69f3a85957210c74ba12c/ruff-0.14.4-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:456daa2fa1021bc86ca857f43fe29d5d8b3f0e55e9f90c58c317c1dcc2afc7b5", size = 13354908, upload-time = "2025-11-06T22:07:24.347Z" }, + { url = "https://files.pythonhosted.org/packages/b5/60/f0b6990f740bb15c1588601d19d21bcc1bd5de4330a07222041678a8e04f/ruff-0.14.4-py3-none-manylinux_2_31_riscv64.whl", hash = "sha256:f911bba769e4a9f51af6e70037bb72b70b45a16db5ce73e1f72aefe6f6d62132", size = 13587803, upload-time = "2025-11-06T22:07:26.327Z" }, + { url = "https://files.pythonhosted.org/packages/c9/da/eaaada586f80068728338e0ef7f29ab3e4a08a692f92eb901a4f06bbff24/ruff-0.14.4-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:76158a7369b3979fa878612c623a7e5430c18b2fd1c73b214945c2d06337db67", size = 12279654, upload-time = "2025-11-06T22:07:28.46Z" }, + { url = "https://files.pythonhosted.org/packages/66/d4/b1d0e82cf9bf8aed10a6d45be47b3f402730aa2c438164424783ac88c0ed/ruff-0.14.4-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:f3b8f3b442d2b14c246e7aeca2e75915159e06a3540e2f4bed9f50d062d24469", size = 12357520, upload-time = "2025-11-06T22:07:31.468Z" }, + { url = "https://files.pythonhosted.org/packages/04/f4/53e2b42cc82804617e5c7950b7079d79996c27e99c4652131c6a1100657f/ruff-0.14.4-py3-none-musllinux_1_2_i686.whl", hash = "sha256:c62da9a06779deecf4d17ed04939ae8b31b517643b26370c3be1d26f3ef7dbde", size = 12719431, upload-time = "2025-11-06T22:07:33.831Z" }, + { url = "https://files.pythonhosted.org/packages/a2/94/80e3d74ed9a72d64e94a7b7706b1c1ebaa315ef2076fd33581f6a1cd2f95/ruff-0.14.4-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:5a443a83a1506c684e98acb8cb55abaf3ef725078be40237463dae4463366349", size = 13464394, upload-time = "2025-11-06T22:07:35.905Z" }, + { url = "https://files.pythonhosted.org/packages/54/1a/a49f071f04c42345c793d22f6cf5e0920095e286119ee53a64a3a3004825/ruff-0.14.4-py3-none-win32.whl", hash = "sha256:643b69cb63cd996f1fc7229da726d07ac307eae442dd8974dbc7cf22c1e18fff", size = 12493429, upload-time = "2025-11-06T22:07:38.43Z" }, + { url = "https://files.pythonhosted.org/packages/bc/22/e58c43e641145a2b670328fb98bc384e20679b5774258b1e540207580266/ruff-0.14.4-py3-none-win_amd64.whl", hash = "sha256:26673da283b96fe35fa0c939bf8411abec47111644aa9f7cfbd3c573fb125d2c", size = 13635380, upload-time = "2025-11-06T22:07:40.496Z" }, + { url = "https://files.pythonhosted.org/packages/30/bd/4168a751ddbbf43e86544b4de8b5c3b7be8d7167a2a5cb977d274e04f0a1/ruff-0.14.4-py3-none-win_arm64.whl", hash = "sha256:dd09c292479596b0e6fec8cd95c65c3a6dc68e9ad17b8f2382130f87ff6a75bb", size = 12663065, upload-time = "2025-11-06T22:07:42.603Z" }, ] [[package]] @@ -3520,15 +3509,15 @@ wheels = [ [[package]] name = "sentry-sdk" -version = "2.42.1" +version = "2.43.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "certifi" }, { name = "urllib3" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/31/04/ec8c1dd9250847303d98516e917978cb1c7083024770d86d657d2ccb5a70/sentry_sdk-2.42.1.tar.gz", hash = "sha256:8598cc6edcfe74cb8074ba6a7c15338cdee93d63d3eb9b9943b4b568354ad5b6", size = 354839, upload-time = "2025-10-20T12:38:40.45Z" } +sdist = { url = "https://files.pythonhosted.org/packages/b3/18/09875b4323b03ca9025bae7e6539797b27e4fc032998a466b4b9c3d24653/sentry_sdk-2.43.0.tar.gz", hash = "sha256:52ed6e251c5d2c084224d73efee56b007ef5c2d408a4a071270e82131d336e20", size = 368953, upload-time = "2025-10-29T11:26:08.156Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/0f/cb/c21b96ff379923310b4fb2c06e8d560d801e24aeb300faa72a04776868fc/sentry_sdk-2.42.1-py2.py3-none-any.whl", hash = "sha256:f8716b50c927d3beb41bc88439dc6bcd872237b596df5b14613e2ade104aee02", size = 380952, upload-time = "2025-10-20T12:38:38.88Z" }, + { url = "https://files.pythonhosted.org/packages/69/31/8228fa962f7fd8814d634e4ebece8780e2cdcfbdf0cd2e14d4a6861a7cd5/sentry_sdk-2.43.0-py2.py3-none-any.whl", hash = "sha256:4aacafcf1756ef066d359ae35030881917160ba7f6fc3ae11e0e58b09edc2d5d", size = 400997, upload-time = "2025-10-29T11:26:05.77Z" }, ] [package.optional-dependencies] @@ -3913,16 +3902,16 @@ wheels = [ [[package]] name = "virtualenv" -version = "20.35.3" +version = "20.35.4" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "distlib" }, { name = "filelock" }, { name = "platformdirs" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/a4/d5/b0ccd381d55c8f45d46f77df6ae59fbc23d19e901e2d523395598e5f4c93/virtualenv-20.35.3.tar.gz", hash = "sha256:4f1a845d131133bdff10590489610c98c168ff99dc75d6c96853801f7f67af44", size = 6002907, upload-time = "2025-10-10T21:23:33.178Z" } +sdist = { url = "https://files.pythonhosted.org/packages/20/28/e6f1a6f655d620846bd9df527390ecc26b3805a0c5989048c210e22c5ca9/virtualenv-20.35.4.tar.gz", hash = "sha256:643d3914d73d3eeb0c552cbb12d7e82adf0e504dbf86a3182f8771a153a1971c", size = 6028799, upload-time = "2025-10-29T06:57:40.511Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/27/73/d9a94da0e9d470a543c1b9d3ccbceb0f59455983088e727b8a1824ed90fb/virtualenv-20.35.3-py3-none-any.whl", hash = "sha256:63d106565078d8c8d0b206d48080f938a8b25361e19432d2c9db40d2899c810a", size = 5981061, upload-time = "2025-10-10T21:23:30.433Z" }, + { url = "https://files.pythonhosted.org/packages/79/0c/c05523fa3181fdf0c9c52a6ba91a23fbf3246cc095f26f6516f9c60e6771/virtualenv-20.35.4-py3-none-any.whl", hash = "sha256:c21c9cede36c9753eeade68ba7d523529f228a403463376cf821eaae2b650f1b", size = 6005095, upload-time = "2025-10-29T06:57:37.598Z" }, ] [[package]] @@ -3936,11 +3925,11 @@ wheels = [ [[package]] name = "webcolors" -version = "24.11.1" +version = "25.10.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/7b/29/061ec845fb58521848f3739e466efd8250b4b7b98c1b6c5bf4d40b419b7e/webcolors-24.11.1.tar.gz", hash = "sha256:ecb3d768f32202af770477b8b65f318fa4f566c22948673a977b00d589dd80f6", size = 45064, upload-time = "2024-11-11T07:43:24.224Z" } +sdist = { url = "https://files.pythonhosted.org/packages/1d/7a/eb316761ec35664ea5174709a68bbd3389de60d4a1ebab8808bfc264ed67/webcolors-25.10.0.tar.gz", hash = "sha256:62abae86504f66d0f6364c2a8520de4a0c47b80c03fc3a5f1815fedbef7c19bf", size = 53491, upload-time = "2025-10-31T07:51:03.977Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/60/e8/c0e05e4684d13459f93d312077a9a2efbe04d59c393bc2b8802248c908d4/webcolors-24.11.1-py3-none-any.whl", hash = "sha256:515291393b4cdf0eb19c155749a096f779f7d909f7cceea072791cb9095b92e9", size = 14934, upload-time = "2024-11-11T07:43:22.529Z" }, + { url = "https://files.pythonhosted.org/packages/e2/cc/e097523dd85c9cf5d354f78310927f1656c422bd7b2613b2db3e3f9a0f2c/webcolors-25.10.0-py3-none-any.whl", hash = "sha256:032c727334856fc0b968f63daa252a1ac93d33db2f5267756623c210e57a4f1d", size = 14905, upload-time = "2025-10-31T07:51:01.778Z" }, ] [[package]] @@ -3962,12 +3951,21 @@ wheels = [ ] [[package]] -name = "widgetsnbextension" -version = "4.0.14" +name = "whitenoise" +version = "6.11.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/41/53/2e0253c5efd69c9656b1843892052a31c36d37ad42812b5da45c62191f7e/widgetsnbextension-4.0.14.tar.gz", hash = "sha256:a3629b04e3edb893212df862038c7232f62973373869db5084aed739b437b5af", size = 1097428, upload-time = "2025-04-10T13:01:25.628Z" } +sdist = { url = "https://files.pythonhosted.org/packages/15/95/8c81ec6b6ebcbf8aca2de7603070ccf37dbb873b03f20708e0f7c1664bc6/whitenoise-6.11.0.tar.gz", hash = "sha256:0f5bfce6061ae6611cd9396a8231e088722e4fc67bc13a111be74c738d99375f", size = 26432, upload-time = "2025-09-18T09:16:10.995Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/ca/51/5447876806d1088a0f8f71e16542bf350918128d0a69437df26047c8e46f/widgetsnbextension-4.0.14-py3-none-any.whl", hash = "sha256:4875a9eaf72fbf5079dc372a51a9f268fc38d46f767cbf85c43a36da5cb9b575", size = 2196503, upload-time = "2025-04-10T13:01:23.086Z" }, + { url = "https://files.pythonhosted.org/packages/6c/e9/4366332f9295fe0647d7d3251ce18f5615fbcb12d02c79a26f8dba9221b3/whitenoise-6.11.0-py3-none-any.whl", hash = "sha256:b2aeb45950597236f53b5342b3121c5de69c8da0109362aee506ce88e022d258", size = 20197, upload-time = "2025-09-18T09:16:09.754Z" }, +] + +[[package]] +name = "widgetsnbextension" +version = "4.0.15" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/bd/f4/c67440c7fb409a71b7404b7aefcd7569a9c0d6bd071299bf4198ae7a5d95/widgetsnbextension-4.0.15.tar.gz", hash = "sha256:de8610639996f1567952d763a5a41af8af37f2575a41f9852a38f947eb82a3b9", size = 1097402, upload-time = "2025-11-01T21:15:55.178Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3f/0e/fa3b193432cfc60c93b42f3be03365f5f909d2b3ea410295cf36df739e31/widgetsnbextension-4.0.15-py3-none-any.whl", hash = "sha256:8156704e4346a571d9ce73b84bee86a29906c9abfd7223b7228a28899ccf3366", size = 2196503, upload-time = "2025-11-01T21:15:53.565Z" }, ] [[package]] diff --git a/vibes_auth/locale/hi_IN/LC_MESSAGES/django.mo b/vibes_auth/locale/hi_IN/LC_MESSAGES/django.mo deleted file mode 100644 index 692bae97..00000000 Binary files a/vibes_auth/locale/hi_IN/LC_MESSAGES/django.mo and /dev/null differ diff --git a/vibes_auth/locale/kk_KZ/LC_MESSAGES/django.mo b/vibes_auth/locale/kk_KZ/LC_MESSAGES/django.mo deleted file mode 100644 index 692bae97..00000000 Binary files a/vibes_auth/locale/kk_KZ/LC_MESSAGES/django.mo and /dev/null differ diff --git a/vibes_auth/messaging/admin.py b/vibes_auth/messaging/admin.py deleted file mode 100644 index df5fba65..00000000 --- a/vibes_auth/messaging/admin.py +++ /dev/null @@ -1,51 +0,0 @@ -from __future__ import annotations - -from django.contrib import admin -from django.utils.translation import gettext_lazy as _ - -from vibes_auth.messaging.models import ChatMessage, ChatThread, ThreadStatus - - -@admin.register(ChatThread) -class ChatThreadAdmin(admin.ModelAdmin): - list_display = ( - "uuid", - "user", - "email", - "assigned_to", - "status", - "last_message_at", - "is_active", - "created", - "modified", - ) - list_filter = ( - "status", - "is_active", - ("assigned_to", admin.EmptyFieldListFilter), - ) - search_fields = ("uuid", "email", "user__email", "user__username") - autocomplete_fields = ("user", "assigned_to") - actions = ( - "close_threads", - "open_threads", - "delete_selected", - ) - readonly_fields = ("created", "modified") - - @admin.action(description=_("Close selected threads")) - def close_threads(self, request, queryset): # type: ignore[no-untyped-def] - queryset.update(status=ThreadStatus.CLOSED) - - @admin.action(description=_("Open selected threads")) - def open_threads(self, request, queryset): # type: ignore[no-untyped-def] - queryset.update(status=ThreadStatus.OPEN) - - -@admin.register(ChatMessage) -class ChatMessageAdmin(admin.ModelAdmin): - list_display = ("uuid", "thread", "sender_type", "sender_user", "sent_at") - list_filter = ("sender_type",) - search_fields = ("uuid", "thread__uuid", "sender_user__email") - autocomplete_fields = ("thread", "sender_user") - readonly_fields = ("created", "modified")